From owner-dev-commits-ports-all@freebsd.org Sat Aug 21 15:59:41 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D85526748FE; Sat, 21 Aug 2021 15:59:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GsNVj5VM6z4vqm; Sat, 21 Aug 2021 15:59:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A643B7C21; Sat, 21 Aug 2021 15:59:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 17LFxfN8048332; Sat, 21 Aug 2021 15:59:41 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17LFxfEQ048331; Sat, 21 Aug 2021 15:59:41 GMT (envelope-from git) Date: Sat, 21 Aug 2021 15:59:41 GMT Message-Id: <202108211559.17LFxfEQ048331@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Matthias Andree Subject: git: 99d4ddef914d - main - sysutils/e2fsprogs: regression fix update 1.46.4 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mandree X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 99d4ddef914d90456d0120cfcf2b88af1b7dcdd5 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Aug 2021 15:59:41 -0000 The branch main has been updated by mandree: URL: https://cgit.FreeBSD.org/ports/commit/?id=99d4ddef914d90456d0120cfcf2b88af1b7dcdd5 commit 99d4ddef914d90456d0120cfcf2b88af1b7dcdd5 Author: Matthias Andree AuthorDate: 2021-08-21 15:56:04 +0000 Commit: Matthias Andree CommitDate: 2021-08-21 15:59:25 +0000 sysutils/e2fsprogs: regression fix update 1.46.4 Release Notes: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.46.4 and local port changes: * do not hardlink to symlinks, neither dump/restore nor our libarchive-based tar can copy them * pkg-install texts add a blank before the full stop character, to ease copy & paste * tst/bitops.c patch was integrated upstream Since this contains regression fixes vs. 1.46.3: MFH: 2021Q3 --- sysutils/e2fsprogs/Makefile | 9 ++++----- sysutils/e2fsprogs/distinfo | 6 +++--- sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c | 11 ----------- sysutils/e2fsprogs/pkg-install | 14 ++++++++++---- 4 files changed, 17 insertions(+), 23 deletions(-) diff --git a/sysutils/e2fsprogs/Makefile b/sysutils/e2fsprogs/Makefile index 577ecec3b840..0c6501a02da3 100644 --- a/sysutils/e2fsprogs/Makefile +++ b/sysutils/e2fsprogs/Makefile @@ -13,7 +13,7 @@ # ext2/ext3/ext4 file systems at boot, before PREFIX is mounted PORTNAME= e2fsprogs -PORTVERSION= 1.46.3 +PORTVERSION= 1.46.4 PORTREVISION?= 0 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -336,10 +336,9 @@ post-install: .else ${INSTALL_PROGRAM} ${WRKSRC}/fsck_ext2fs ${STAGEDIR}${PREFIX}/sbin/ .endif - # these are made hardlinks to symlinks - -P avoids following them to /sbin: - ${LN} -fP ${STAGEDIR}${PREFIX}/sbin/e2fsck ${STAGEDIR}${PREFIX}/sbin/fsck.ext2 - ${LN} -fP ${STAGEDIR}${PREFIX}/sbin/e2fsck ${STAGEDIR}${PREFIX}/sbin/fsck.ext3 - ${LN} -fP ${STAGEDIR}${PREFIX}/sbin/e2fsck ${STAGEDIR}${PREFIX}/sbin/fsck.ext4 + ${LN} -fs e2fsck ${STAGEDIR}${PREFIX}/sbin/fsck.ext2 + ${LN} -fs e2fsck ${STAGEDIR}${PREFIX}/sbin/fsck.ext3 + ${LN} -fs e2fsck ${STAGEDIR}${PREFIX}/sbin/fsck.ext4 # now the remainder of the usual post-install jobs: ${INSTALL_MAN} ${FILESDIR}/fsck_ext2fs.8 ${STAGEDIR}${PREFIX}/man/man8/ .if ${PORT_OPTIONS:MDOCS} diff --git a/sysutils/e2fsprogs/distinfo b/sysutils/e2fsprogs/distinfo index ecf7673b166a..0722d23204bc 100644 --- a/sysutils/e2fsprogs/distinfo +++ b/sysutils/e2fsprogs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628091626 -SHA256 (e2fsprogs-1.46.3.tar.xz) = 86d1580facdd49f2e0e6b027e26b1e6c48af538762dc40aeed2a87153c1f11b7 -SIZE (e2fsprogs-1.46.3.tar.xz) = 7024896 +TIMESTAMP = 1629558567 +SHA256 (e2fsprogs-1.46.4.tar.xz) = b11042533c1b1dcf17512f0da48e05b0c573dada1dd8b762864d10f4dc399713 +SIZE (e2fsprogs-1.46.4.tar.xz) = 7035200 diff --git a/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c b/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c deleted file mode 100644 index d6285d651187..000000000000 --- a/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/ext2fs/tst_bitops.c.orig 2014-10-16 00:29:23 UTC -+++ lib/ext2fs/tst_bitops.c -@@ -104,7 +104,7 @@ int main(int argc, char **argv) - bigarray = malloc(1 << 29); - if (!bigarray) { - fprintf(stderr, "Failed to allocate scratch memory!\n"); -- exit(1); -+ exit(0); - } - - bigarray[BIG_TEST_BIT >> 3] = 0; diff --git a/sysutils/e2fsprogs/pkg-install b/sysutils/e2fsprogs/pkg-install index 34a21e9364f0..114087fa032a 100644 --- a/sysutils/e2fsprogs/pkg-install +++ b/sysutils/e2fsprogs/pkg-install @@ -17,13 +17,16 @@ POST-INSTALL) else rc=0 grep -q ext4dev ${PKG_PREFIX}/etc/mke2fs.conf || rc=$? + # !!! the echo messages below deliberately contain spacing errors + # so that the file names can be double-clicked in a typical console + # window for copying and pasting without keen targeting with the mouse. case $rc in 1) # ext4dev not found (old name) cp -f -p ${PKG_PREFIX}/etc/mke2fs.conf.dist \ ${PKG_PREFIX}/etc/mke2fs.conf.e2fsprogs-new echo "===========================================================================" echo "Warning: installing mke2fs.conf in ${PKG_PREFIX}/etc/mke2fs.conf.e2fsprogs-new" - echo "Check to see if you need to update your ${PKG_PREFIX}/etc/mke2fs.conf" + echo "Check to see if you need to update your ${PKG_PREFIX}/etc/mke2fs.conf ." echo "===========================================================================" ;; 0) # ext4dev found (old name) @@ -33,7 +36,7 @@ POST-INSTALL) ${PKG_PREFIX}/etc/mke2fs.conf echo "===========================================================================" echo "Your mke2fs.conf is too old. Backing up old version in" - echo "${PKG_PREFIX}/etc/mke2fs.conf.e2fsprogs-old. Please check to see" + echo "${PKG_PREFIX}/etc/mke2fs.conf.e2fsprogs-old . Please check to see" echo "if you have any local customizations that you wish to preserve." echo "===========================================================================" ;; @@ -50,13 +53,16 @@ POST-INSTALL) ;; DEINSTALL) + # !!! the echo messages below deliberately contain spacing errors + # so that the file names can be double-clicked in a typical console + # window for copying and pasting without keen targeting with the mouse. if cmp -s ${PKG_PREFIX}/etc/mke2fs.conf \ ${PKG_PREFIX}/etc/mke2fs.conf.dist then rm -f ${PKG_PREFIX}/etc/mke2fs.conf elif [ "_${PKG_UPGRADE-upgrade}" = _upgrade ] ; then echo "If and only if you are deleting e2fsprogs forever," - echo "remember to delete ${PKG_PREFIX}/etc/mke2fs.conf." + echo "remember to delete ${PKG_PREFIX}/etc/mke2fs.conf ." fi # e2fsck.conf is no longer part of the distribution, but still supported, # => no pkg-list @sample line possible @@ -64,7 +70,7 @@ DEINSTALL) if test -f ${PKG_PREFIX}/etc/e2fsck.conf -a "_${PKG_UPGRADE-upgrade}" = _upgrade then echo "If and only if you are deleting e2fsprogs forever," - echo "remember to delete ${PKG_PREFIX}/etc/e2fsck.conf." + echo "remember to delete ${PKG_PREFIX}/etc/e2fsck.conf ." fi ;; esac