Skip to content

Latest commit

 

History

History
executable file
·
36 lines (27 loc) · 686 Bytes

make-update

File metadata and controls

executable file
·
36 lines (27 loc) · 686 Bytes
 
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
#!/bin/bash
if [ $# != 2 ]; then
echo "Usage: $0 last-release-date package-to-update"
echo " e.g. $0 20131030 sepolgen"
exit 1
fi
TAG=$1
PKG=$2
DEST=../update-$TAG
mkdir -p $DEST
if [ \! -d $PKG ]; then
echo "$PKG does not exist."
exit 1
fi
cd $PKG
VERS=`cat VERSION`
ARCHIVE=$PKG-$VERS.tar.gz
git tag $PKG-$VERS
git archive --format=tar --prefix=$PKG-$VERS/ $PKG-$VERS | gzip > ../$DEST/$ARCHIVE
cd ..
cd $DEST
echo "Copy $ARCHIVE from $DEST to the server and update its download link and checksum on the Releases wiki page:"
echo ""
echo "[http://userspace.selinuxproject.org/releases/$TAG/$ARCHIVE $ARCHIVE]"
echo ""
echo "`sha256sum $ARCHIVE`"
echo ""