You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
686 B
36 lines
686 B
#!/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 ""
|
|
|