File: sdist-sign

package info (click to toggle)
borgbackup 1.4.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 15,236 kB
  • sloc: python: 26,074; pascal: 3,099; ansic: 2,597; sh: 151; makefile: 133; tcl: 94
file content (20 lines) | stat: -rwxr-xr-x 305 bytes parent folder | download | duplicates (4)
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 -m build

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

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