Am 17.01.25 um 16:43 schrieb Dr. Tobias Quathamer:
Hi Michael,
I hope to have a fix for the FTBFS bug in AVFS, which is currently
stopping my package worker from entering testing.
I've just uploaded an NMU with the fix and will monitor if AVFS now
builds on armel again. The patch is attached.
Hi Michael,
the previous fix did not work out ... :-)
I've now attached the patch for my next NMU, which should hopefully sort
out the FTBFS on armel. I've tested it on an armel porterbox, and it did
build fine.
Regards,
Tobias
diff --git a/debian/changelog b/debian/changelog
index 5954342..7221231 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
+avfs (1.1.5-1.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Revert previous NMU, because the intended fix did not work.
+ * Fix FTBFS on armel due to missing linking with libatomic.
+ (Closes: #1068264)
+
+ -- Dr. Tobias Quathamer <to...@debian.org> Mon, 20 Jan 2025 10:03:41 +0100
+
+avfs (1.1.5-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS on armel due to missing linking with libatomic.
+ (Closes: #1068264)
+
+ -- Dr. Tobias Quathamer <to...@debian.org> Fri, 17 Jan 2025 16:27:49 +0100
+
avfs (1.1.5-1) unstable; urgency=medium
* New upstream version 1.1.5 (Closes: #1042511)
diff --git a/debian/patches/add_atomic_library.patch b/debian/patches/add_atomic_library.patch
new file mode 100644
index 0000000..4f6d1fe
--- /dev/null
+++ b/debian/patches/add_atomic_library.patch
@@ -0,0 +1,20 @@
+From: "Dr. Tobias Quathamer" <to...@debian.org>
+Date: Sun, 19 Jan 2025 00:36:04 +0100
+Subject: Add atomic library
+
+---
+ configure.ac | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/configure.ac b/configure.ac
+index 5660b1f..e3c6903 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -224,6 +224,7 @@ fi
+ AC_SEARCH_LIBS(nanosleep, posix4)
+ AC_SEARCH_LIBS(gethostbyname, nsl)
+ AC_SEARCH_LIBS(socket, socket inet)
++AC_SEARCH_LIBS(__atomic_fetch_add_8, atomic)
+
+ neon_found=no
+ if test "$dav" = yes; then
diff --git a/debian/patches/series b/debian/patches/series
index c4b2239..4cc6a84 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@ umountavfs
extfs
configure
udar
+add_atomic_library.patch