Improve the reproducible build process.

* Moved stuff into it's own `reproducible-builds` directory.
* Improved reproducible build by using a debian snapshot and more clearly listing dependencies.
* Removed signing from assembleReelase.
* Updated README.
This commit is contained in:
Greyson Parrelli
2020-10-12 19:32:58 -04:00
parent de7f103130
commit 83e63ff854
10 changed files with 116 additions and 132 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
while read dep; do
dep_name=$(echo $dep | cut -f1 -d '=')
version=$(dpkg -s $dep_name | grep 'Version: ' | cut -f2 -d ' ')
echo "$dep_name=$version"
done < $1