Lines Matching +full:- +full:- +full:dest +full:- +full:dir
4 set -e
7 cd "$(dirname -- "$0")/.."
11 if ! [ -d "$WIKIDIR" ]; then
16 DEST="releases/$RELEASE_TAG"
26 selinux-dbus
27 selinux-gui
28 selinux-python
29 selinux-sandbox
30 semodule-utils
33 if git rev-parse "$RELEASE_TAG" &> /dev/null ; then
36 git tag -a "$RELEASE_TAG" -m "Release $RELEASE_TAG"
39 rm -rf "$DEST"
40 mkdir -p "$DEST"
43 DIR="${COMPONENT#selinux-}"
44 VERS="$(cat "$DIR/VERSION")"
45 TAG="$COMPONENT-$VERS"
46 if git rev-parse "$TAG" &> /dev/null ; then
51 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_…
65 …https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/RELEASE-$RELEASE_TAG.txt)"
67 echo "[full log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/log-$RELE…
69 …ttps://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/shortlog-$RELEASE_TAG.txt)"
73 DIR="${COMPONENT#selinux-}"
74 VERS="$(cat "$DIR/VERSION")"
75 TAG="$COMPONENT-$VERS"
77 …echo -n "[$tarball](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/$tarb…
78 sha256sum "$DEST/$tarball" | cut -d " " -f 1
86 echo -n "[selinux-${RELEASE_TAG}.tar.gz](https://github.com/SELinuxProject/selinux/releases/downloa…
87 sha256sum "$DEST/selinux-${RELEASE_TAG}.tar.gz" | cut -d " " -f 1
92 echo " git commit -m \"Release $RELEASE_TAG\" -a -s"
98 echo " git push --tags"