aboutsummaryrefslogtreecommitdiff
path: root/common/hooks/pre-pkg
diff options
context:
space:
mode:
authorEnno Boland <g@s01.de>2016-02-19 12:45:49 +0000
committerEnno Boland <g@s01.de>2016-02-19 15:21:56 +0000
commit16050ad3f292306b0421ee6133b174db3f1b227d (patch)
tree06c9ed93d6aa4b820b30d435b4a6fa6576911e6f /common/hooks/pre-pkg
parentbb03d78ad09097250c8105601f87845a025115b6 (diff)
downloadvoid-packages-16050ad3f292306b0421ee6133b174db3f1b227d.tar
void-packages-16050ad3f292306b0421ee6133b174db3f1b227d.tar.gz
void-packages-16050ad3f292306b0421ee6133b174db3f1b227d.tar.bz2
void-packages-16050ad3f292306b0421ee6133b174db3f1b227d.tar.lz
void-packages-16050ad3f292306b0421ee6133b174db3f1b227d.tar.xz
void-packages-16050ad3f292306b0421ee6133b174db3f1b227d.tar.zst
void-packages-16050ad3f292306b0421ee6133b174db3f1b227d.zip
hooks/pre-pkg: fixed mtime support for packages.
overwrites the mtime of all files in a package with the commit-date of the package.
Diffstat (limited to 'common/hooks/pre-pkg')
-rw-r--r--common/hooks/pre-pkg/90-set-timestamps.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/common/hooks/pre-pkg/90-set-timestamps.sh b/common/hooks/pre-pkg/90-set-timestamps.sh
new file mode 100644
index 00000000000..a60a90f1ddf
--- /dev/null
+++ b/common/hooks/pre-pkg/90-set-timestamps.sh
@@ -0,0 +1,26 @@
+# This hook executes the following tasks:
+# - sets the timestamps in a package to the commit date
+
+hook() {
+ local GIT_CMD date basepkg
+
+ # If XBPS_USE_GIT_COMMIT_DATE is disabled in conf file don't continue.
+ if [ -z $XBPS_USE_GIT_COMMIT_DATE ]; then
+ return
+ fi
+
+ if command -v chroot-git &>/dev/null; then
+ GIT_CMD=$(command -v chroot-git)
+ elif command -v git &>/dev/null; then
+ GIT_CMD=$(command -v git)
+ else
+ msg_error "$pkgver: cannot find chroot-git or git utility, exiting...\n"
+ fi
+ basepkg=$pkgname
+ if [ -L "${XBPS_SRCPKGDIR}/$basepkg" ]; then
+ basepkg=$(readlink "${XBPS_SRCPKGDIR}/$basepkg")
+ fi
+ date=$($GIT_CMD -C ${XBPS_SRCPKGDIR}/${basepkg} log --pretty='%ci' --date=iso -n1 .)
+ msg_normal "$pkgver: setting mtimes to %s\n" "$(date --date "$date")"
+ find $PKGDESTDIR -print0 | xargs -0 touch --date "$date"
+}