From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EFEF4158018 for ; Mon, 4 Oct 2021 23:12:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43CE9E092D; Mon, 4 Oct 2021 23:12:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E6BEE092D for ; Mon, 4 Oct 2021 23:12:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6253C342DCB for ; Mon, 4 Oct 2021 23:12:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DFC5EC for ; Mon, 4 Oct 2021 23:12:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1633389163.8d3af136164ed42f4dce8e0e0265bb21d4a2e3a7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/, net-fs/davfs2/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/davfs2/davfs2-1.6.0.ebuild net-fs/davfs2/files/davfs2-1.6.0-neon-0.32-support.patch X-VCS-Directories: net-fs/davfs2/ net-fs/davfs2/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8d3af136164ed42f4dce8e0e0265bb21d4a2e3a7 X-VCS-Branch: master Date: Mon, 4 Oct 2021 23:12:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 736a5ab9-bed4-429c-8449-2fb0f665b77a X-Archives-Hash: b32ab30f911a8db04ed59dba56a9648b commit: 8d3af136164ed42f4dce8e0e0265bb21d4a2e3a7 Author: Christophe Lermytte lermytte be> AuthorDate: Mon Oct 4 22:57:35 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Oct 4 23:12:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3af136 net-fs/davfs2: fix support for neon-0.32 Just making the configure script happy. Signed-off-by: Christophe Lermytte lermytte.be> Closes: https://bugs.gentoo.org/816294 Closes: https://github.com/gentoo/gentoo/pull/22490 Signed-off-by: Sam James gentoo.org> net-fs/davfs2/davfs2-1.6.0.ebuild | 7 +++++++ net-fs/davfs2/files/davfs2-1.6.0-neon-0.32-support.patch | 13 +++++++++++++ 2 files changed, 20 insertions(+) diff --git a/net-fs/davfs2/davfs2-1.6.0.ebuild b/net-fs/davfs2/davfs2-1.6.0.ebuild index f967945cae1..67767035ccb 100644 --- a/net-fs/davfs2/davfs2-1.6.0.ebuild +++ b/net-fs/davfs2/davfs2-1.6.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit autotools + DESCRIPTION="Linux FUSE (or coda) driver that allows you to mount a WebDAV resource" HOMEPAGE="https://savannah.nongnu.org/projects/davfs2" SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" @@ -26,6 +28,10 @@ RDEPEND="${RDEPEND} acct-user/davfs2 " +PATCHES=( + "${FILESDIR}"/${PN}-1.6.0-neon-0.32-support.patch +) + src_prepare() { local f @@ -35,6 +41,7 @@ src_prepare() { done < <(find "${S}"/man -type f -name 'Makefile.in' -print0) default + eautoreconf } src_configure() { diff --git a/net-fs/davfs2/files/davfs2-1.6.0-neon-0.32-support.patch b/net-fs/davfs2/files/davfs2-1.6.0-neon-0.32-support.patch new file mode 100644 index 00000000000..3a7c316e374 --- /dev/null +++ b/net-fs/davfs2/files/davfs2-1.6.0-neon-0.32-support.patch @@ -0,0 +1,13 @@ +# Gentoo bug https://bugs.gentoo.org/816294 + +--- 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]) ++NE_REQUIRE_VERSIONS([0], [27 28 29 30 31 32]) + DAV_CHECK_NEON + + # Checks for header files.