sys-block/partclone: Version bump to 0.3.32

Drop the jfs USE flag because we lack libjfs. I can't find any trace of it
anywhere! I gather jfs might be dropped from the kernel soon anyway.

I've bumped fuse to version 3, but only for the non-static build because the
newer version lacks the static-libs USE flag. partclone supports both.

Signed-off-by: James Le Cuirot <chewi@gentoo.org>
This commit is contained in:
James Le Cuirot
2024-10-27 17:14:12 +00:00
parent 97df0a4e48
commit 2ee4f8fec2
4 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
https://github.com/Thomas-Tsai/partclone/pull/254
From 1e1b01b67d2a2779f38647fd16bb9b6b5b1d730e Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Sun, 27 Oct 2024 17:07:40 +0000
Subject: [PATCH] ntfstime.h uses the time.h, sys/stat.h, sys/time.h headers
Not doing this check can result in an implicit declaration error.
---
configure.ac | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure.ac b/configure.ac
index bb9ed99..00f4688 100644
--- a/configure.ac
+++ b/configure.ac
@@ -290,6 +290,7 @@ if test "$enable_ntfs" = "yes"; then
#check library of some filesystems
dnl Check for NTFS-3g
AS_MESSAGE([checking for NTFS-3g Library and Header files ... ...])
+ AC_CHECK_HEADERS([sys/time.h sys/stat.h time.h])
AC_CHECK_HEADERS([ntfs-3g/misc.h], ntfs_3g_h=1,
AC_MSG_WARN([*** NTFS(libntfs-3g-dev) header not found]))
AC_CHECK_LIB([ntfs-3g], [ntfs_mount], ntfs_3g_l=1,
--
2.47.0

View File

@@ -0,0 +1,33 @@
https://github.com/Thomas-Tsai/partclone/pull/253
From 94e8111b9a1b001548f8ffb993c9a31d54f7c3ca Mon Sep 17 00:00:00 2001
From: James Le Cuirot <chewi@gentoo.org>
Date: Sun, 27 Oct 2024 16:55:40 +0000
Subject: [PATCH] Conditionally run the reiser4 test
The line to add the test was uncommented a while ago, possibly
intentionally, but the surrounding lines to make it conditional were
not. Disclaimer: I have not actually tried to run the test.
---
tests/Makefile.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index ee190f1..36d91d2 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -19,9 +19,9 @@ if ENABLE_REISERFS
TESTS += reiserfs.test
endif
-#if ENABLE_REISER4
+if ENABLE_REISER4
TESTS += reiser4.test
-#endif
+endif
if ENABLE_HFSP
TESTS += hfsplus.test
--
2.47.0