File: make-update

package info (click to toggle)
android-platform-external-libselinux 8.1.0%2Br23-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 33,252 kB
  • sloc: ansic: 142,533; python: 23,929; makefile: 1,760; yacc: 1,367; sh: 1,108; lex: 448; xml: 176
file content (36 lines) | stat: -rwxr-xr-x 686 bytes parent folder | download | duplicates (4)
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 ""