* [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3
@ 2026-04-21 18:38 Bernd Kuhls
2026-04-21 18:38 ` [Buildroot] [PATCH 2/3] package/neon: fix build with zlib Bernd Kuhls
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Bernd Kuhls @ 2026-04-21 18:38 UTC (permalink / raw)
To: buildroot
https://github.com/alisarctl/davfs2/blob/rel-1-7-3/ChangeLog
Removed patch 0002 which is not needed anymore due to upstream removal
of the neon version check:
https://github.com/alisarctl/davfs2/commit/6b614bed3e814eb820a43a433c1f2c715c301f61
Upstream added musl support with this version:
https://github.com/alisarctl/davfs2/commit/270607253e4cbfa40ff59fc67a850b252bf0b0fa
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
...2-configure.ac-add-neon-version-0.33.patch | 27 -------------------
package/davfs2/Config.in | 6 ++---
package/davfs2/davfs2.hash | 2 +-
package/davfs2/davfs2.mk | 4 +--
4 files changed, 5 insertions(+), 34 deletions(-)
delete mode 100644 package/davfs2/0002-configure.ac-add-neon-version-0.33.patch
diff --git a/package/davfs2/0002-configure.ac-add-neon-version-0.33.patch b/package/davfs2/0002-configure.ac-add-neon-version-0.33.patch
deleted file mode 100644
index 93eff48cd5..0000000000
--- a/package/davfs2/0002-configure.ac-add-neon-version-0.33.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 1c539d158ae73e867d0d30b8c3d27f48d742ed06 Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Sat, 30 Mar 2024 09:18:15 +0100
-Subject: [PATCH] configure.ac: add neon version 0.33
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Upstream: https://savannah.nongnu.org/bugs/?65247
----
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 4f86cde..ede9b1e 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -36,7 +36,7 @@ AC_PROG_LN_S
- # Checks for libraries.
- AM_GNU_GETTEXT_VERSION(0.19.8)
- AM_GNU_GETTEXT([external])
--NE_REQUIRE_VERSIONS([0], [27 28 29 30 31 32])
-+NE_REQUIRE_VERSIONS([0], [27 28 29 30 31 32 33])
- DAV_CHECK_NEON
-
- # Checks for header files.
---
-2.43.0
-
diff --git a/package/davfs2/Config.in b/package/davfs2/Config.in
index 31a680563c..082a422059 100644
--- a/package/davfs2/Config.in
+++ b/package/davfs2/Config.in
@@ -1,10 +1,10 @@
-comment "davfs2 needs a glibc toolchain"
+comment "davfs2 needs a glibc or musl toolchain"
depends on BR2_USE_MMU
- depends on !BR2_TOOLCHAIN_USES_GLIBC
+ depends on BR2_TOOLCHAIN_USES_UCLIBC
config BR2_PACKAGE_DAVFS2
bool "davfs2"
- depends on BR2_TOOLCHAIN_USES_GLIBC # fstab.h
+ depends on !BR2_TOOLCHAIN_USES_UCLIBC # fstab.h
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_NEON
select BR2_PACKAGE_NEON_XML
diff --git a/package/davfs2/davfs2.hash b/package/davfs2/davfs2.hash
index 1cbacc388f..f23f21aed5 100644
--- a/package/davfs2/davfs2.hash
+++ b/package/davfs2/davfs2.hash
@@ -1,4 +1,4 @@
# Locally calculated
-sha256 251db75a27380cca1330b1b971700c5e5dcc0c90e5a47622285f0140edfe3a2f davfs2-1.7.0.tar.gz
+sha256 a5368161eb5055651d7e5e8180c1606da95e78c941b6bb8a9286df7923cfcba9 davfs2-1.7.3.tar.gz
# License file, locally calculated
sha256 0ae0485a5bd37a63e63603596417e4eb0e653334fa6c7f932ca3a0e85d4af227 COPYING
diff --git a/package/davfs2/davfs2.mk b/package/davfs2/davfs2.mk
index 9f9e4a7073..be30dd0c45 100644
--- a/package/davfs2/davfs2.mk
+++ b/package/davfs2/davfs2.mk
@@ -4,13 +4,11 @@
#
################################################################################
-DAVFS2_VERSION = 1.7.0
+DAVFS2_VERSION = 1.7.3
DAVFS2_SITE = http://download.savannah.nongnu.org/releases/davfs2
DAVFS2_LICENSE = GPL-3.0+
DAVFS2_LICENSE_FILES = COPYING
DAVFS2_CPE_ID_VENDOR = werner_baumann
-# 0002-configure.ac-add-neon-version-0.33.patch
-DAVFS2_AUTORECONF = YES
DAVFS2_DEPENDENCIES = \
neon \
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/3] package/neon: fix build with zlib
2026-04-21 18:38 [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Bernd Kuhls
@ 2026-04-21 18:38 ` Bernd Kuhls
2026-05-04 14:47 ` Thomas Perale via buildroot
2026-04-21 18:38 ` [Buildroot] [PATCH 3/3] package/neon: bump version to 0.37.1 Bernd Kuhls
2026-04-24 21:42 ` [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Julien Olivain via buildroot
2 siblings, 1 reply; 5+ messages in thread
From: Bernd Kuhls @ 2026-04-21 18:38 UTC (permalink / raw)
To: buildroot
Building this defconfig
BR2_x86_64=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_PACKAGE_NEON=y
BR2_PACKAGE_NEON_ZLIB=y
does not build libneon with zlib support, quoting configure log:
configure: zlib not enabled
although the configure parameter
--with-zlib=/home/bernd/buildroot/output/host/x86_64-buildroot-linux-gnu/sysroot
was used.
The reason is the addition of "=$(STAGING_DIR)" to --with-zlib which was
added to buildroot in 2008 with commit
cc6562ff839502a65a3b202ffe7fa3c67bae0856.
The upstream code, which expects only "yes", all other values lead to
the else-condition, is unchanged since 2004:
https://github.com/notroj/neon/blame/0.37.1/macros/neon.m4#L478
so a backport of this patch to LTS branches should be considered.
With this patch the configure log shows:
checking for zlib.h... yes
checking for inflate in -lz... yes
configure: zlib support enabled, using -lz
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/neon/neon.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/neon/neon.mk b/package/neon/neon.mk
index e7872df3c9..39abbaef48 100644
--- a/package/neon/neon.mk
+++ b/package/neon/neon.mk
@@ -16,7 +16,7 @@ NEON_DEPENDENCIES = host-pkgconf $(TARGET_NLS_DEPENDENCIES)
NEON_CONF_ENV = ne_cv_libsfor_bindtextdomain=$(TARGET_NLS_LIBS)
ifeq ($(BR2_PACKAGE_NEON_ZLIB),y)
-NEON_CONF_OPTS += --with-zlib=$(STAGING_DIR)
+NEON_CONF_OPTS += --with-zlib
NEON_DEPENDENCIES += zlib
else
NEON_CONF_OPTS += --without-zlib
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 3/3] package/neon: bump version to 0.37.1
2026-04-21 18:38 [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Bernd Kuhls
2026-04-21 18:38 ` [Buildroot] [PATCH 2/3] package/neon: fix build with zlib Bernd Kuhls
@ 2026-04-21 18:38 ` Bernd Kuhls
2026-04-24 21:42 ` [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Julien Olivain via buildroot
2 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2026-04-21 18:38 UTC (permalink / raw)
To: buildroot
https://github.com/notroj/neon/blob/0.37.1/NEWS
Updated license hash due to a copyright year bump:
https://github.com/notroj/neon/commit/dc575f32f479895762548bdeb0b4ff81e929047f
This bump depends on the bump of davfs2 to 1.7.3.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/neon/neon.hash | 4 ++--
package/neon/neon.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/neon/neon.hash b/package/neon/neon.hash
index d773b0f316..c5964ba669 100644
--- a/package/neon/neon.hash
+++ b/package/neon/neon.hash
@@ -1,6 +1,6 @@
# Locally computed
-sha256 659a5cc9cea05e6e7864094f1e13a77abbbdbab452f04d751a8c16a9447cf4b8 neon-0.33.0.tar.gz
+sha256 a99b7262525a454d1065cf76dd17240fd808dfc4ef15636990ff83a5d0d9e740 neon-0.37.1.tar.gz
# Hash for license files
-sha256 6c4f5d59a60a66cc970642c0f3799cf03b40a81c9dccbc4a254f20487d143f74 README.md
+sha256 a982d694ca4b8c3ae8b05bf07c701e7e8c7013a416356caa0746354d2d86c7e1 README.md
sha256 d7bf9d064ac3e5840f9dd02422b7eeec4f1fd03f37fadbd043602be5e882304f src/COPYING.LIB
sha256 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad test/COPYING
diff --git a/package/neon/neon.mk b/package/neon/neon.mk
index 39abbaef48..71bad567a1 100644
--- a/package/neon/neon.mk
+++ b/package/neon/neon.mk
@@ -4,7 +4,7 @@
#
################################################################################
-NEON_VERSION = 0.33.0
+NEON_VERSION = 0.37.1
NEON_SITE = https://notroj.github.io/neon
NEON_LICENSE = LGPL-2.0+ (library), GPL-2.0+ (manual and tests)
NEON_LICENSE_FILES = src/COPYING.LIB test/COPYING README.md
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3
2026-04-21 18:38 [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Bernd Kuhls
2026-04-21 18:38 ` [Buildroot] [PATCH 2/3] package/neon: fix build with zlib Bernd Kuhls
2026-04-21 18:38 ` [Buildroot] [PATCH 3/3] package/neon: bump version to 0.37.1 Bernd Kuhls
@ 2026-04-24 21:42 ` Julien Olivain via buildroot
2 siblings, 0 replies; 5+ messages in thread
From: Julien Olivain via buildroot @ 2026-04-24 21:42 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: buildroot
On 21/04/2026 20:38, Bernd Kuhls wrote:
> https://github.com/alisarctl/davfs2/blob/rel-1-7-3/ChangeLog
>
> Removed patch 0002 which is not needed anymore due to upstream removal
> of the neon version check:
> https://github.com/alisarctl/davfs2/commit/6b614bed3e814eb820a43a433c1f2c715c301f61
>
> Upstream added musl support with this version:
> https://github.com/alisarctl/davfs2/commit/270607253e4cbfa40ff59fc67a850b252bf0b0fa
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Series applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 2/3] package/neon: fix build with zlib
2026-04-21 18:38 ` [Buildroot] [PATCH 2/3] package/neon: fix build with zlib Bernd Kuhls
@ 2026-05-04 14:47 ` Thomas Perale via buildroot
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Perale via buildroot @ 2026-05-04 14:47 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: Thomas Perale, buildroot
In reply of:
> Building this defconfig
>
> BR2_x86_64=y
> BR2_TOOLCHAIN_EXTERNAL=y
> BR2_PACKAGE_NEON=y
> BR2_PACKAGE_NEON_ZLIB=y
>
> does not build libneon with zlib support, quoting configure log:
>
> configure: zlib not enabled
>
> although the configure parameter
>
> --with-zlib=/home/bernd/buildroot/output/host/x86_64-buildroot-linux-gnu/sysroot
>
> was used.
>
> The reason is the addition of "=$(STAGING_DIR)" to --with-zlib which was
> added to buildroot in 2008 with commit
> cc6562ff839502a65a3b202ffe7fa3c67bae0856.
>
> The upstream code, which expects only "yes", all other values lead to
> the else-condition, is unchanged since 2004:
> https://github.com/notroj/neon/blame/0.37.1/macros/neon.m4#L478
> so a backport of this patch to LTS branches should be considered.
>
> With this patch the configure log shows:
>
> checking for zlib.h... yes
> checking for inflate in -lz... yes
> configure: zlib support enabled, using -lz
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Applied to 2025.02.x & 2026.02.x. Thanks
> ---
> package/neon/neon.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/neon/neon.mk b/package/neon/neon.mk
> index e7872df3c9..39abbaef48 100644
> --- a/package/neon/neon.mk
> +++ b/package/neon/neon.mk
> @@ -16,7 +16,7 @@ NEON_DEPENDENCIES = host-pkgconf $(TARGET_NLS_DEPENDENCIES)
> NEON_CONF_ENV = ne_cv_libsfor_bindtextdomain=$(TARGET_NLS_LIBS)
>
> ifeq ($(BR2_PACKAGE_NEON_ZLIB),y)
> -NEON_CONF_OPTS += --with-zlib=$(STAGING_DIR)
> +NEON_CONF_OPTS += --with-zlib
> NEON_DEPENDENCIES += zlib
> else
> NEON_CONF_OPTS += --without-zlib
> --
> 2.47.3
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-05-04 14:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-21 18:38 [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Bernd Kuhls
2026-04-21 18:38 ` [Buildroot] [PATCH 2/3] package/neon: fix build with zlib Bernd Kuhls
2026-05-04 14:47 ` Thomas Perale via buildroot
2026-04-21 18:38 ` [Buildroot] [PATCH 3/3] package/neon: bump version to 0.37.1 Bernd Kuhls
2026-04-24 21:42 ` [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3 Julien Olivain via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox