borg/scripts/sdist-sign
Thomas Waldmann 1a544845a2
use less setup.py, use pip and build
todo: clean clean2 build_usage build_man
2024-01-02 19:50:59 +01:00

21 lines
309 B
Bash
Executable File

#!/bin/bash
R=$1
if [ "$R" = "" ]; then
echo "Usage: sdist-sign 1.2.3"
exit
fi
if [ "$QUBES_GPG_DOMAIN" = "" ]; then
GPG=gpg
else
GPG=qubes-gpg-client-wrapper
fi
python -m build
D=dist/borgbackup-$R.tar.gz
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output "$D.asc" "$D"