🇮🇱🎗✡EmanuelBronshtein 🇮🇱🎗✡

Results 139 comments of 🇮🇱🎗✡EmanuelBronshtein 🇮🇱🎗✡

The code of https://try.diffoscope.org/ is open, you can take a look, to see how something like this is implemented (beware it's AGPL license) https://salsa.debian.org/reproducible-builds/try.diffoscope.org it's running published container, so #357...

Here the `Containerfile` that I use on latest fedora: Build by: `podman build --rm -t jscpd .` Run by: `podman run --name jscpd -v $(pwd):/f/:ro,Z -v jscpdreports:/home/appuser/report/ --network none --rm...

development Containerfile: (it's using COPY instruction, should be run after `git clone` or master.zip download) ```dockerfile FROM docker.io/node:alpine RUN set -ex; \ apk update; \ apk upgrade; \ # Runtime...

issue upstream is fixed: https://github.com/protobufjs/protobuf.js/issues/1538#issuecomment-1191220081

.aar generation tracked in issue: https://github.com/hsjoberg/blixt-wallet/issues/319 will update the result of diffing later when managed to compile it. > I extracted a "universal" apk using bundletool to get the apk...

Building with debian based image latest version v0.5.1 with Containerfile ```dockerfile FROM docker.io/debian:sid-slim RUN set -ex; \ mkdir -p /usr/share/man/man1/; \ apt-get update; \ DEBIAN_FRONTEND=noninteractive apt-get install --yes -o APT::Install-Suggests=false...

Regarding striping metadata from ZIP files, look at the implementation in: https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git/tree/lib/File/StripNondeterminism/handlers/zip.pm from strip-nondeterminism: https://packages.debian.org/sid/strip-nondeterminism it also contain handlers (code to strip metadata) from other archives/file-formats: https://anonscm.debian.org/git/reproducible/strip-nondeterminism.git/tree/lib/File/StripNondeterminism/handlers/

The problem is that in directory: https://github.com/MixinNetwork/android-app/tree/master/app/src/main/cpp/opus/lib There only folders: > arm64-v8a/ armeabi-v7a/ x86/ That contain files: > libogg.a libopus.a libopusenc.a But no folder `x86_64` that also need to contain...

> I haven't seen any Android projects that use this specification, so won't integrate it now. Android Bitcoin Wallets that implement this: 1. Green wallet by Blockstream: https://github.com/Blockstream/green_android/blob/master/gradle/verification-metadata.xml See also...

This also require fixing #2559 and writing scripts to re-generate the pre-build files in this repo (such as .a files) either by coping them from distro packages or re-building them....