commit:     57e4c01a240742b060026e73e92a21ac3e27b4c0
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 18 10:14:47 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Sep 18 10:30:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e4c01a

net-fs/libnfs: Removed old

Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 net-fs/libnfs/Manifest                       |  2 -
 net-fs/libnfs/files/libnfs-3.0.0-utils.patch | 20 ----------
 net-fs/libnfs/libnfs-2.0.0.ebuild            | 48 ------------------------
 net-fs/libnfs/libnfs-3.0.0.ebuild            | 55 ----------------------------
 4 files changed, 125 deletions(-)

diff --git a/net-fs/libnfs/Manifest b/net-fs/libnfs/Manifest
index 7b2a8831f6f..9081fa425b0 100644
--- a/net-fs/libnfs/Manifest
+++ b/net-fs/libnfs/Manifest
@@ -1,3 +1 @@
-DIST libnfs-2.0.0.tar.gz 200932 BLAKE2B 
df5ae4487bd7e19428551f047a1d61df712ecc73b3db33995121abfba2df8f9283ef69f4a0d897266d7d476010bfcfa5fdea109b265f82fe4df8904cd6d05c6c
 SHA512 
701dd5317b0395523be89123d473f4da5c3ff53c2e30004a922f649f0dbbd97546ee39ab34fce06278a8148c13200ca383726a0822d09846fad6e308f29e42c7
-DIST libnfs-3.0.0.tar.gz 249035 BLAKE2B 
321bbc6eb2d926c41afae95a873cd9103446d2bda0015f159341a7bca2245d708abaa283f9a8f505a320a0b446166b36106cd9f54e885a02cb486168c87a2a7f
 SHA512 
9af31f8824431e9d28267c468dafc7cfc4062b1a280ca141036bc28a2ba544c4470a67955b5e5fbcc6c175435812381013b4c5d3d3d1a175d5efc7b802ae9b3b
 DIST libnfs-4.0.0.tar.gz 251662 BLAKE2B 
b6c33c42eb1715b8a996a432b0cc28af1a98cca3389a779378df0931e4d37418937e3ea4938efb4d075b39aac33facca86df3a02bd62d2c7b262859e8d04ecc1
 SHA512 
3d93d83d1909f24de304c0d47fa6240da7ecf43ce2488a242a58ddabe51d774caf813f5a90ae720a8edd251a765b30e88c0e5b6a13ecb254dfecdc98e30737fa

diff --git a/net-fs/libnfs/files/libnfs-3.0.0-utils.patch 
b/net-fs/libnfs/files/libnfs-3.0.0-utils.patch
deleted file mode 100644
index b26716158b5..00000000000
--- a/net-fs/libnfs/files/libnfs-3.0.0-utils.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index a1f51d0..f96879a 100755
---- a/configure.ac
-+++ b/configure.ac
-@@ -25,11 +25,13 @@ fi
- AC_SYS_LARGEFILE
- 
- #option: utils
-+MAYBE_UTILS="utils"
- AC_ARG_ENABLE([utils],
-               [AC_HELP_STRING([--enable-utils],
-                               [Build util programs])],
--            [MAYBE_UTILS=""],
--            [MAYBE_UTILS="utils"])
-+            [if test $enableval = no ; then
-+                  MAYBE_UTILS=""
-+             fi])
- AC_SUBST(MAYBE_UTILS)
- 
- #option: examples

diff --git a/net-fs/libnfs/libnfs-2.0.0.ebuild 
b/net-fs/libnfs/libnfs-2.0.0.ebuild
deleted file mode 100644
index d238b549811..00000000000
--- a/net-fs/libnfs/libnfs-2.0.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-AUTOTOOLS_AUTORECONF="1"
-
-inherit autotools autotools-utils eutils
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git";
-       inherit git-r3
-else
-       SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz";
-       KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 
x86"
-fi
-
-DESCRIPTION="Client library for accessing NFS shares over a network"
-HOMEPAGE="https://github.com/sahlberg/libnfs";
-
-LICENSE="LGPL-2.1 GPL-3"
-SLOT="0/11"  # sub-slot matches SONAME major
-IUSE="examples static-libs"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-S="${WORKDIR}/${PN}-${P}"
-
-src_prepare() {
-       default
-
-       epatch_user
-
-       eautoreconf
-}
-
-src_install() {
-       autotools-utils_src_install
-       if use examples; then
-               # --enable-examples configure switch just compiles them
-               # better install sources instead
-               exeinto /usr/share/doc/${PF}/examples/
-               for program in $(grep PROGRAMS examples/Makefile.am | cut -d= 
-f2); do
-                       doexe examples/${program}.c
-               done
-       fi
-}

diff --git a/net-fs/libnfs/libnfs-3.0.0.ebuild 
b/net-fs/libnfs/libnfs-3.0.0.ebuild
deleted file mode 100644
index e5153c2d254..00000000000
--- a/net-fs/libnfs/libnfs-3.0.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-if [[ ${PV} == "9999" ]] ; then
-       inherit git-r3
-       EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git";
-else
-       SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz";
-       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~x86"
-       S="${WORKDIR}/${PN}-${P}"
-fi
-
-DESCRIPTION="Client library for accessing NFS shares over a network"
-HOMEPAGE="https://github.com/sahlberg/libnfs";
-
-LICENSE="LGPL-2.1 GPL-3"
-SLOT="0/12"  # sub-slot matches SONAME major
-IUSE="examples static-libs utils"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-3.0.0-utils.patch"
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_enable static-libs static)
-               $(use_enable utils)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-       if use examples; then
-               # --enable-examples configure switch just compiles them
-               # better install sources instead
-               exeinto /usr/share/doc/${PF}/examples/
-               for program in $(grep PROGRAMS examples/Makefile.am | cut -d= 
-f2); do
-                       doexe examples/${program}.c
-               done
-       fi
-       find "${ED}" -name "*.la" -delete || die
-}

Reply via email to