mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
sysutils/e2fsprogs: update to 1.46.5 (bug fixes)
Release notes: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.46.5 Workarounds: * patch CPPFLAGS to avoid __GNUC_PREREQ internal GCC macro, upstream regression in d55f8b8c 2021-08-17 | fix unused-function -Wall warnings (reported to Theodore Y. Ts'o by e-mail); macro is unavailable in clang. * timeout(1) not providing a -v; cherry-picking upstream's 8535250a 2022-01-03 | tests: support older versions of timeout in r_corrupt_fs
This commit is contained in:
parent
849299d0d6
commit
f35c75e711
@ -13,8 +13,8 @@
|
||||
# ext2/ext3/ext4 file systems at boot, before PREFIX is mounted
|
||||
|
||||
PORTNAME= e2fsprogs
|
||||
PORTVERSION= 1.46.4
|
||||
PORTREVISION?= 3
|
||||
PORTVERSION= 1.46.5
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES?= sysutils
|
||||
MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION}
|
||||
|
||||
@ -61,6 +61,8 @@ CONFLICTS_INSTALL= e2fsprogs e2fsprogs-nobootfsck e2fsprogs-roothardlinks
|
||||
PORTSCOUT= ignore:1 # cannot handle the version in the directory
|
||||
|
||||
.if !defined(MASTERDIR)
|
||||
CPPFLAGS+= -D__GNUC_PREREQ\(a,b\)=1
|
||||
|
||||
INSTALL_TARGET= install install-libs
|
||||
|
||||
OPTIONS_DEFINE= DOCS NLS FUSEFS PARALLELTESTS SLOWTESTS BASHTESTS LIBUNWIND
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1629558567
|
||||
SHA256 (e2fsprogs-1.46.4.tar.xz) = b11042533c1b1dcf17512f0da48e05b0c573dada1dd8b762864d10f4dc399713
|
||||
SIZE (e2fsprogs-1.46.4.tar.xz) = 7035200
|
||||
TIMESTAMP = 1643233594
|
||||
SHA256 (e2fsprogs-1.46.5.tar.xz) = 2f16c9176704cf645dc69d5b15ff704ae722d665df38b2ed3cfc249757d8d81e
|
||||
SIZE (e2fsprogs-1.46.5.tar.xz) = 7040672
|
||||
|
26
sysutils/e2fsprogs/files/patch-ZZZ-g8535250a
Normal file
26
sysutils/e2fsprogs/files/patch-ZZZ-g8535250a
Normal file
@ -0,0 +1,26 @@
|
||||
commit 8535250a8eeeb441cf466124cc420724935022eb
|
||||
Author: Theodore Ts'o <tytso@mit.edu>
|
||||
Date: Mon Jan 3 22:45:37 2022 -0500
|
||||
|
||||
tests: support older versions of timeout in r_corrupt_fs
|
||||
|
||||
Older versions of the timeout program in coreutils don't support the
|
||||
-v option. (This is apparently still in use in the GNU/FreeBSD Debain
|
||||
port since coreutils hasn't built successfully since Coreutils version
|
||||
8.28.)
|
||||
|
||||
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
|
||||
|
||||
diff --git a/tests/r_corrupt_fs/script b/tests/r_corrupt_fs/script
|
||||
index 08af91ed..f6d3a89d 100644
|
||||
--- ./tests/r_corrupt_fs/script
|
||||
+++ b/tests/r_corrupt_fs/script
|
||||
@@ -17,7 +17,7 @@ $MKE2FS -q -F -t ext4 -o Linux -b 1024 $TMPFILE 32M >> $OUT.new 2>&1
|
||||
echo debugfs -w -R \"set_bg 1 free_blocks_count 65536\" /tmp/foo.img >> $OUT.new
|
||||
$DEBUGFS -w -R "set_bg 1 free_blocks_count 65536" $TMPFILE > /dev/null 2>&1
|
||||
|
||||
-if type timeout > /dev/null 2>&1 ; then
|
||||
+if timeout -v 1s true > /dev/null 2>&1 ; then
|
||||
TIMEOUT="timeout -v 30s"
|
||||
else
|
||||
TIMEOUT=
|
@ -1,66 +0,0 @@
|
||||
commit da33289073de254ab4bacb80b1b83cf9d27c76ea
|
||||
Author: Lukas Czerner <lczerner@redhat.com>
|
||||
Date: Tue Aug 24 14:10:20 2021 +0200
|
||||
|
||||
tests: update expect files for f_large_dir and f_large_dir_csum
|
||||
|
||||
Update expect files for f_large_dir and f_large_dir_csum tests to
|
||||
include the warning about missing y2038 support with 128-byte inodes.
|
||||
|
||||
Fixes: a23b50cd ("mke2fs: warn about missing y2038 support when formatting fresh ext4 fs")
|
||||
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
|
||||
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
|
||||
|
||||
diff --git a/tests/f_large_dir/expect b/tests/f_large_dir/expect
|
||||
index 028234cc..495ea85d 100644
|
||||
--- ./tests/f_large_dir/expect
|
||||
+++ b/tests/f_large_dir/expect
|
||||
@@ -1,3 +1,4 @@
|
||||
+128-byte inodes cannot handle dates beyond 2038 and are deprecated
|
||||
Creating filesystem with 108341 1k blocks and 65072 inodes
|
||||
Superblock backups stored on blocks:
|
||||
8193, 24577, 40961, 57345, 73729
|
||||
diff --git a/tests/f_large_dir_csum/expect b/tests/f_large_dir_csum/expect
|
||||
index aa9f33f1..44770f7b 100644
|
||||
--- ./tests/f_large_dir_csum/expect
|
||||
+++ b/tests/f_large_dir_csum/expect
|
||||
@@ -1,3 +1,4 @@
|
||||
+128-byte inodes cannot handle dates beyond 2038 and are deprecated
|
||||
Creating filesystem with 31002 1k blocks and 64 inodes
|
||||
Superblock backups stored on blocks:
|
||||
8193, 24577
|
||||
commit 8b2beb24819a976f575e8cec04e3fe6ca8851017
|
||||
Author: Lukas Czerner <lczerner@redhat.com>
|
||||
Date: Tue Aug 24 14:10:19 2021 +0200
|
||||
|
||||
tests: update expect files for f_mmp_garbage
|
||||
|
||||
Update expect file for f_mmp_garbage test to work correctly with the
|
||||
new default 256 inode size.
|
||||
|
||||
Fixes: d730be5ceeba ("tests: update mke2fs.conf to create 256 byte inodes by default")
|
||||
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
|
||||
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
|
||||
|
||||
diff --git a/tests/f_mmp_garbage/expect.1 b/tests/f_mmp_garbage/expect.1
|
||||
index a8add101..4134eaea 100644
|
||||
--- ./tests/f_mmp_garbage/expect.1
|
||||
+++ b/tests/f_mmp_garbage/expect.1
|
||||
@@ -5,5 +5,5 @@ Pass 2: Checking directory structure
|
||||
Pass 3: Checking directory connectivity
|
||||
Pass 4: Checking reference counts
|
||||
Pass 5: Checking group summary information
|
||||
-test_filesys: 11/64 files (0.0% non-contiguous), 13/100 blocks
|
||||
+test_filesys: 11/64 files (0.0% non-contiguous), 15/100 blocks
|
||||
Exit status is 0
|
||||
diff --git a/tests/f_mmp_garbage/expect.2 b/tests/f_mmp_garbage/expect.2
|
||||
index 66300025..3bca182e 100644
|
||||
--- ./tests/f_mmp_garbage/expect.2
|
||||
+++ b/tests/f_mmp_garbage/expect.2
|
||||
@@ -3,5 +3,5 @@ Pass 2: Checking directory structure
|
||||
Pass 3: Checking directory connectivity
|
||||
Pass 4: Checking reference counts
|
||||
Pass 5: Checking group summary information
|
||||
-test_filesys: 11/64 files (0.0% non-contiguous), 13/100 blocks
|
||||
+test_filesys: 11/64 files (0.0% non-contiguous), 15/100 blocks
|
||||
Exit status is 0
|
Loading…
Reference in New Issue
Block a user