platform_external_selinux/scripts/release

34 lines
760 B
Text
Raw Normal View History

2009-03-12 06:23:32 +01:00
#!/bin/bash
DEST=../selinux-$(date '+%Y%m%d')
DIRS="libsepol libselinux libsemanage policycoreutils checkpolicy secilc sepolgen"
2009-03-12 06:23:32 +01:00
git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
rm -rf $DEST
mkdir -p $DEST
2009-03-12 06:23:32 +01:00
for i in $DIRS; do
cd $i
VERS=`cat VERSION`
ARCHIVE=$i-$VERS.tar.gz
git tag $i-$VERS > /dev/null 2>&1
git archive --format=tar --prefix=$i-$VERS/ $i-$VERS | gzip > ../$DEST/$ARCHIVE
2009-03-12 06:23:32 +01:00
cd ..
done
cd $DEST
echo "Copy *.tar.gz from $DEST to the server and add the following to the Releases wiki page:"
echo ""
2014-08-27 17:32:34 +02:00
echo "## Release $(date '+%Y-%m-%d')"
for i in *.tar.gz; do
2014-08-27 17:32:34 +02:00
echo -n "[$i](https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/$(date '+%Y%m%d')/$i) "
sha256sum $i | cut -d " " -f 1
echo ""
done