summaryrefslogtreecommitdiffstats
path: root/scripts/sdist-sign
blob: 50758a30a4409132393d9857bfef7398f8eb6b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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 setup.py sdist

D=dist/borgbackup-$R.tar.gz

$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output $D.asc $D