blob: 1d49e0821709e9c297e0fc9c942c9fe1c61da380 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
#!/bin/sh
if [ -z "$1" ]; then
echo "Usage: pull-updates keyring [dir | keyring]" >&2
exit 1
fi
# avoid gnupg touching ~/.gnupg
GNUPGHOME=$(mktemp -d -t jetring.XXXXXXXX)
export GNUPGHOME
cat > "$GNUPGHOME"/gpg.conf <<EOF
keyid-format 0xlong
import-options import-clean,merge-only
export-options export-clean,no-export-attributes
no-auto-check-trustdb
no-autostart
quiet
EOF
trap cleanup exit
cleanup () {
rm -rf "$GNUPGHOME"
}
if [ ! -e output/keyrings/debian-keyring.gpg ]; then
echo "Keyrings don't appear to be built. Run make?"
exit 1
fi
# Build a set of keyrings
cat output/keyrings/debian-keyring.gpg output/keyrings/debian-nonupload.gpg \
output/keyrings/debian-maintainers.gpg > $GNUPGHOME/pubring.gpg
mkdir updates/
if [ ! -z "$2" -a -d "$2" ]; then
# Old style with directory as second parameter
scripts/explode-keyring $1 updates
else
# New style. Keyrings all the way.
touch update-keyring.gpg
echo Exploding keyrings
for keyring in $*; do
scripts/explode-keyring $keyring updates
cd updates
for i in 0x*; do
if [ ! -e ../debian-*-gpg/$i ]; then
echo $i no longer exists, removing.
rm $i
elif cmp -s $i ../debian-*-gpg/$i; then
echo $i matches old key version, removing.
rm $i
fi
done
cat 0x* >> ../update-keyring.gpg
rm 0x*
cd ..
done
echo Importing updates
gpg --import update-keyring.gpg
echo Exploding keyring
for key in $(gpg --list-keys --with-colons < update-keyring.gpg | awk -F: '/^pub/ {print $5}'); do
gpg --export 0x$key > updates/0x$key
done
rm update-keyring.gpg
fi
cd updates
for i in 0x*; do
if [ ! -e ../debian-*-gpg/$i ]; then
echo $i no longer exists, removing.
rm $i
elif cmp -s $i ../debian-*-gpg/$i; then
echo $i matches old key version, removing.
rm $i
fi
done
echo Updated keys are:
ls
cd ..
for i in updates/0x*; do
if [ -f $i ]; then
scripts/update-key --no-clean $i \
$(dirname debian-*-gpg/$(basename $i))
rm $i
fi
done
rmdir updates/
|