Skip to content

Latest commit

 

History

History
executable file
·
104 lines (82 loc) · 2.58 KB

release

File metadata and controls

executable file
·
104 lines (82 loc) · 2.58 KB
 
1
2
#!/bin/bash
6
7
# Ensure the script is running from the top level directory
cd "$(dirname -- "$0")/.."
11
12
13
if ! [ -d "$WIKIDIR" ]; then
git clone git@github.com:SELinuxProject/selinux.wiki.git "$WIKIDIR"
fi
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
RELEASE_TAG="$(cat VERSION)"
DEST="releases/$RELEASE_TAG"
DIRS=(
checkpolicy
libselinux
libsemanage
libsepol
mcstrans
policycoreutils
restorecond
secilc
selinux-dbus
selinux-gui
selinux-python
selinux-sandbox
semodule-utils
)
if git rev-parse "$RELEASE_TAG" &> /dev/null ; then
echo "Warning: tag $RELEASE_TAG already exists"
else
git tag -a "$RELEASE_TAG" -m "Release $RELEASE_TAG"
fi
39
40
41
42
43
44
45
46
47
48
49
50
51
rm -rf "$DEST"
mkdir -p "$DEST"
for COMPONENT in "${DIRS[@]}"; do
DIR="${COMPONENT#selinux-}"
VERS="$(cat "$DIR/VERSION")"
TAG="$COMPONENT-$VERS"
if git rev-parse "$TAG" &> /dev/null ; then
echo "Warning: tag $TAG already exists"
else
git tag "$TAG" > /dev/null
fi
git -C "$DIR" archive -o "../$DEST/$TAG.tar.gz" --prefix="$TAG/" "$TAG"
52
gpg -b -a "../$DEST/$TAG.tar.gz"
55
git archive -o "$DEST/selinux-${RELEASE_TAG}.tar.gz" --prefix="selinux-${RELEASE_TAG}/" "${RELEASE_TAG}"
57
echo "Add the following to the $WIKIDIR/Releases.md wiki page:"
61
echo "## Release $RELEASE_TAG"
63
64
65
66
67
68
69
70
71
echo ""
echo "[Release Notes](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/RELEASE-$RELEASE_TAG.txt)"
echo ""
echo "[full log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/log-$RELEASE_TAG.txt)"
echo ""
echo "[short log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/shortlog-$RELEASE_TAG.txt)"
echo ""
72
73
74
75
76
77
78
for COMPONENT in "${DIRS[@]}"; do
DIR="${COMPONENT#selinux-}"
VERS="$(cat "$DIR/VERSION")"
TAG="$COMPONENT-$VERS"
tarball="$TAG.tar.gz"
echo -n "[$tarball](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/$tarball) "
sha256sum "$DEST/$tarball" | cut -d " " -f 1
82
83
84
85
86
87
88
89
echo "### Source repository snapshot"
echo ""
echo -n "[selinux-${RELEASE_TAG}.tar.gz](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/selinux-${RELEASE_TAG}.tar.gz) "
sha256sum "$DEST/selinux-${RELEASE_TAG}.tar.gz" | cut -d " " -f 1
echo ""
90
echo "And then run:"
91
echo " cd $WIKIDIR"
92
echo " git commit -m \"Release $RELEASE_TAG\" -a -s"
93
echo " git push"
96
97
98
echo "Push the release and its tags to git via:"
echo " git push"
echo " git push --tags"
99
100
101
102
103
104
echo ""
echo "Create a new release from the latest tag on https://github.com/SELinuxProject/selinux/tags"
echo ""
echo "Add files from releases/$RELEASE_TAG as assets to the new github release"