Merge pull request #4345 from ThomasWaldmann/update-scripts-master

signing binaries with Qubes OS support, docs
This commit is contained in:
TW 2019-02-11 02:45:46 +01:00 committed by GitHub
commit fa9d3263de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 4 deletions

View File

@ -338,7 +338,9 @@ Checklist:
scripts/sdist-sign X.Y.Z
scripts/upload-pypi X.Y.Z test
scripts/upload-pypi X.Y.Z
- put binaries into dist/borg-OSNAME and sign them:
scripts/sign-binaries 201912312359
- close the release milestone on GitHub
- announce on:

View File

@ -1,9 +1,20 @@
#!/bin/bash
# usage: sign-binaries 201512312359
D=$1
if [ "$D" = "" ]; then
echo "Usage: sign-binaries 201912312359"
exit
fi
if [ "$QUBES_GPG_DOMAIN" = "" ]; then
GPG=gpg
else
GPG=qubes-gpg-client-wrapper
fi
for file in dist/borg-*; do
gpg --armor --detach-sign $file
$GPG --local-user "Thomas Waldmann" --armor --detach-sign --output $file.asc $file
done
touch -t $1 dist/*
touch -t $D dist/*