Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Bernd Kuhls <bernd@kuhls.net>
To: buildroot@buildroot.org
Subject: [Buildroot] [PATCH 1/3] package/davfs2: bump version to 1.7.3
Date: Tue, 21 Apr 2026 20:38:43 +0200	[thread overview]
Message-ID: <20260421183845.2456995-1-bernd@kuhls.net> (raw)

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

             reply	other threads:[~2026-04-21 18:39 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-21 18:38 Bernd Kuhls [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260421183845.2456995-1-bernd@kuhls.net \
    --to=bernd@kuhls.net \
    --cc=buildroot@buildroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox