summaryrefslogtreecommitdiff
path: root/libarchive/libarchive-2.8.0/build/bump-version.sh
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2023-12-17 16:55:58 +0100
committerTomas Bzatek <tbzatek@redhat.com>2023-12-17 16:55:58 +0100
commitb22a4476a66a913a07d5e80334c0400a9b162206 (patch)
treed896eb5f6f9212b5ef424219c45571ce5f152cc0 /libarchive/libarchive-2.8.0/build/bump-version.sh
parent7592788feb1a8cb79b85e6a9911a206a5d55896d (diff)
downloadtuxcmd-modules-b22a4476a66a913a07d5e80334c0400a9b162206.tar.xz
libarchive: Remove in-tree libarchive package
Libarchive has become a standard package in most distributions, no need to carry the sources along here.
Diffstat (limited to 'libarchive/libarchive-2.8.0/build/bump-version.sh')
-rw-r--r--libarchive/libarchive-2.8.0/build/bump-version.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/libarchive/libarchive-2.8.0/build/bump-version.sh b/libarchive/libarchive-2.8.0/build/bump-version.sh
deleted file mode 100644
index 0304cf3..0000000
--- a/libarchive/libarchive-2.8.0/build/bump-version.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh +v
-
-# Start from the build directory, where the version file is located
-if [ -f build/version ]; then
- cd build
-fi
-
-if [ \! -f version ]; then
- echo "Can't find version file"
- exit 1
-fi
-
-# Update the build number in the 'version' file.
-# Separate number from additional alpha/beta/etc marker
-MARKER=`cat version | sed 's/[0-9.]//g'`
-# Bump the number
-VN=`cat version | sed 's/[^0-9.]//g'`
-# Reassemble and write back out
-VN=$(($VN + 1))
-rm -f version.old
-mv version version.old
-chmod +w version.old
-echo $VN$MARKER > version
-VS="$(($VN/1000000)).$(( ($VN/1000)%1000 )).$(( $VN%1000 ))$MARKER"
-cd ..
-
-ANNOUNCE=`date +"%b %d, %Y:"`" libarchive $VS released"
-
-echo $ANNOUNCE
-
-# Add a version notice to NEWS
-mv NEWS NEWS.bak
-chmod +w NEWS.bak
-echo > NEWS
-echo $ANNOUNCE >> NEWS
-cat NEWS.bak >> NEWS