blob: 73721ebf54cb98122949f4ac7797bdb5e9c9efce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
# $Id$
# Public domain. Originally written 2016, Norbert Preining
# Sign a file for release in TeX Live.
if test $# -ne 1; then
echo "$0: Exactly one argument must be given, the file to sign." >&2
exit 1
fi
# remove previous signature
rm -f "$1.asc"
prg=gpg
gpgopts="--batch --homedir /home/texlive/.gnupg \
--passphrase-file /home/texlive/.gnupg/passphrase \
--armor --detach-sign --local-user 0x06BAB6BC "
if test -n "$TL_GNUPG" ; then
# use the environment variable TL_GNUPG
prg=$TL_GNUPG
fi
if test -n "$TL_GNUPGOPTS" ; then
# use the environment variable TL_GNUPGOPTS
gpgopts=$TL_GNUPGOPTS
fi
# sign
"$prg" $gpgopts "$1"
|