platform_external_selinux/scripts/make-update
Stephen Smalley f64918ff71 Add make-update script and fix release script.
make-update script is for generating an update for an existing release,
e.g. for a bug fix update.

release script is for generating a new release.

Per-package tagging may fail on the release script if the version
has not changed; this is harmless.

Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
2013-10-31 14:34:02 -04:00

36 lines
686 B
Bash
Executable file

#!/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 ""