public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/, net-fs/davfs2/files/
Date: Fri, 15 Nov 2024 20:19:46 +0000 (UTC)	[thread overview]
Message-ID: <1731701962.196b6af803d9f5c389cfad0a3b8f02b71d251a82.asturm@gentoo> (raw)

commit:     196b6af803d9f5c389cfad0a3b8f02b71d251a82
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 14 05:33:15 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Nov 15 20:19:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=196b6af8

net-fs/davfs2: drop 1.6.0-r2

Closes: https://bugs.gentoo.org/941473
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-fs/davfs2/Manifest                             |  1 -
 net-fs/davfs2/davfs2-1.6.0-r2.ebuild               | 61 ----------------------
 .../files/davfs2-1.6.0-neon-0.32-support.patch     | 13 -----
 3 files changed, 75 deletions(-)

diff --git a/net-fs/davfs2/Manifest b/net-fs/davfs2/Manifest
index 996f227204d5..0d4bcf722961 100644
--- a/net-fs/davfs2/Manifest
+++ b/net-fs/davfs2/Manifest
@@ -1,3 +1,2 @@
-DIST davfs2-1.6.0.tar.gz 472511 BLAKE2B aed1ec060d5639fb90a58257038a75c25c2f77a7d6393130ffa3b4d36b92433654b8396dfe4615e4f2ea06d5c6d961d5de27b0347e62d730a22eddd003db71e1 SHA512 e016eb847152b7d0c20abfdafd36f43fcff29339362be6765202a45692a186c70b1c33d3566ed8ca695c399a7f0ca1aef7b05d378cdda33d892cb684da34de33
 DIST davfs2-1.6.1.tar.gz 472426 BLAKE2B b24a3f17604838e763cbcf86f62719ee41b5569e58732441a621d210dd0c2e619d4f363d90e9b13d1616e84a3da940da941a15ad6eadfa2b339d14a6e26c75a2 SHA512 12f9eadd2049741b7cb61c5583be6c6982559e702e5cbd4767c655110187524d7afad0a6ff8ad00d457e194ad75b3ce391f5fe566fb4a0bbaed0a705caa3f163
 DIST davfs2-1.7.0.tar.gz 476244 BLAKE2B 671d473bc94c2a0cfc3d2cfb47b6eb558fee0e834ed4de9c3670279643f8903568d9fb077b6fbc2f81e848d076ff02ea5b07d885f16e89331393a28df62055a6 SHA512 6ee5820b60ed28ad100949bb4db65ea07bbae1ad0128cd35e7bb69f7f6bdde99606e8cf704ddb197f1400abadc3934d34ab85f298f9100b6ea9e60813c2345f2

diff --git a/net-fs/davfs2/davfs2-1.6.0-r2.ebuild b/net-fs/davfs2/davfs2-1.6.0-r2.ebuild
deleted file mode 100644
index 2f0191604584..000000000000
--- a/net-fs/davfs2/davfs2-1.6.0-r2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc x86"
-IUSE="nls"
-RESTRICT="test"
-
-RDEPEND="dev-libs/libxml2
-	<net-libs/neon-0.33.0
-	sys-libs/zlib
-	nls? ( virtual/libintl virtual/libiconv )
-"
-DEPEND="${RDEPEND}
-	nls? ( sys-devel/gettext )
-"
-RDEPEND="${RDEPEND}
-	acct-group/davfs2
-	acct-user/davfs2
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-1.6.0-neon-0.32-support.patch
-)
-
-src_prepare() {
-	local f
-
-	# Let the package manager handle man page compression
-	while IFS="" read -d $'\0' -r f ; do
-		sed -e '/^manual[58]_DATA/ s/[.]gz//g' -i "${f}" || die
-	done < <(find "${S}"/man -type f -name 'Makefile.in' -print0)
-
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf --enable-largefile $(use_enable nls) ssbindir="${EPREFIX}/usr/sbin"
-}
-
-pkg_postinst() {
-	elog
-	elog "Quick setup:"
-	elog "   (as root)"
-	elog "   # gpasswd -a \${your_user} davfs2"
-	elog "   # echo 'https://path/to/dav /home/\${your_user}/dav davfs rw,user,noauto  0  0' >> /etc/fstab"
-	elog "   (as user)"
-	elog "   \$ mkdir -p ~/dav"
-	elog "   \$ mount ~/dav"
-	elog
-}

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
deleted file mode 100644
index 3a7c316e374b..000000000000
--- a/net-fs/davfs2/files/davfs2-1.6.0-neon-0.32-support.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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.


             reply	other threads:[~2024-11-15 20:19 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-15 20:19 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-10-04 23:12 [gentoo-commits] repo/gentoo:master commit in: net-fs/davfs2/, net-fs/davfs2/files/ Sam James
2021-02-13 10:27 David Seifert
2020-05-06  1:27 Göktürk Yüksek
2020-01-28  2:32 Göktürk Yüksek
2015-12-08  9:03 Patrice Clement

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=1731701962.196b6af803d9f5c389cfad0a3b8f02b71d251a82.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.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