summaryrefslogtreecommitdiffstats
path: root/linhes/clean-chroot-manager/ccm.install
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2022-11-10 21:49:52 (GMT)
committerBritney Fransen <brfransen@gmail.com>2022-11-10 21:49:52 (GMT)
commit3356459a8300e68b5699b97731a92bc84a24d5c4 (patch)
tree19e84e117b0fa94b88401fd2f34c8b55a4c212b0 /linhes/clean-chroot-manager/ccm.install
parent1e9553ece6915d143d83dda80cc7ef953c8764a2 (diff)
downloadlinhes_pkgbuild-3356459a8300e68b5699b97731a92bc84a24d5c4.zip
linhes_pkgbuild-3356459a8300e68b5699b97731a92bc84a24d5c4.tar.gz
linhes_pkgbuild-3356459a8300e68b5699b97731a92bc84a24d5c4.tar.bz2
clean-chroot-manager: initial inclusion
Diffstat (limited to 'linhes/clean-chroot-manager/ccm.install')
-rw-r--r--linhes/clean-chroot-manager/ccm.install28
1 files changed, 28 insertions, 0 deletions
diff --git a/linhes/clean-chroot-manager/ccm.install b/linhes/clean-chroot-manager/ccm.install
new file mode 100644
index 0000000..e36c57f
--- /dev/null
+++ b/linhes/clean-chroot-manager/ccm.install
@@ -0,0 +1,28 @@
+## arg 1: the new package version
+## arg 2: the old package version
+
+post_upgrade() {
+ # define the versions for which a change is needed
+ for test in 2.92-1 2.87-1 2.81-1 2.73-1 2.72-1 2.55-1 2.17-1 2.22-1 2.69-1 2.93-1 2.101-1 2.201-1 2.202-1 2.208-1 2.212-1 2.213-1 2.221-1; do
+ if [ "$(vercmp $2 $test)" -lt 0 ]; then
+ cat <<END
+
+>>> New features/changes have been made with this release.
+ Check \$XDG_CONFIG_HOME/clean-chroot-manager.conf against
+ /usr/share/clean-chroot-manager/ccm.skel to ensure it is updated!
+
+END
+ fi
+ done
+
+ for test in 2.217-1; do
+ if [ "$(vercmp $2 $test)" -lt 0 ]; then
+ cat <<END
+
+>>> WARNING: Changes to this release require some users to nuke any existing
+ buildroot before using ccm with this release!
+
+END
+ fi
+ done
+}