Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/libnfs/files/, net-fs/libnfs/
Date: Fri, 18 Sep 2020 10:30:28
Message-Id: 1600425005.57e4c01a240742b060026e73e92a21ac3e27b4c0.polynomial-c@gentoo
1 commit: 57e4c01a240742b060026e73e92a21ac3e27b4c0
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 18 10:14:47 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 18 10:30:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e4c01a
7
8 net-fs/libnfs: Removed old
9
10 Package-Manager: Portage-3.0.7, Repoman-3.0.1
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 net-fs/libnfs/Manifest | 2 -
14 net-fs/libnfs/files/libnfs-3.0.0-utils.patch | 20 ----------
15 net-fs/libnfs/libnfs-2.0.0.ebuild | 48 ------------------------
16 net-fs/libnfs/libnfs-3.0.0.ebuild | 55 ----------------------------
17 4 files changed, 125 deletions(-)
18
19 diff --git a/net-fs/libnfs/Manifest b/net-fs/libnfs/Manifest
20 index 7b2a8831f6f..9081fa425b0 100644
21 --- a/net-fs/libnfs/Manifest
22 +++ b/net-fs/libnfs/Manifest
23 @@ -1,3 +1 @@
24 -DIST libnfs-2.0.0.tar.gz 200932 BLAKE2B df5ae4487bd7e19428551f047a1d61df712ecc73b3db33995121abfba2df8f9283ef69f4a0d897266d7d476010bfcfa5fdea109b265f82fe4df8904cd6d05c6c SHA512 701dd5317b0395523be89123d473f4da5c3ff53c2e30004a922f649f0dbbd97546ee39ab34fce06278a8148c13200ca383726a0822d09846fad6e308f29e42c7
25 -DIST libnfs-3.0.0.tar.gz 249035 BLAKE2B 321bbc6eb2d926c41afae95a873cd9103446d2bda0015f159341a7bca2245d708abaa283f9a8f505a320a0b446166b36106cd9f54e885a02cb486168c87a2a7f SHA512 9af31f8824431e9d28267c468dafc7cfc4062b1a280ca141036bc28a2ba544c4470a67955b5e5fbcc6c175435812381013b4c5d3d3d1a175d5efc7b802ae9b3b
26 DIST libnfs-4.0.0.tar.gz 251662 BLAKE2B b6c33c42eb1715b8a996a432b0cc28af1a98cca3389a779378df0931e4d37418937e3ea4938efb4d075b39aac33facca86df3a02bd62d2c7b262859e8d04ecc1 SHA512 3d93d83d1909f24de304c0d47fa6240da7ecf43ce2488a242a58ddabe51d774caf813f5a90ae720a8edd251a765b30e88c0e5b6a13ecb254dfecdc98e30737fa
27
28 diff --git a/net-fs/libnfs/files/libnfs-3.0.0-utils.patch b/net-fs/libnfs/files/libnfs-3.0.0-utils.patch
29 deleted file mode 100644
30 index b26716158b5..00000000000
31 --- a/net-fs/libnfs/files/libnfs-3.0.0-utils.patch
32 +++ /dev/null
33 @@ -1,20 +0,0 @@
34 -diff --git a/configure.ac b/configure.ac
35 -index a1f51d0..f96879a 100755
36 ---- a/configure.ac
37 -+++ b/configure.ac
38 -@@ -25,11 +25,13 @@ fi
39 - AC_SYS_LARGEFILE
40 -
41 - #option: utils
42 -+MAYBE_UTILS="utils"
43 - AC_ARG_ENABLE([utils],
44 - [AC_HELP_STRING([--enable-utils],
45 - [Build util programs])],
46 -- [MAYBE_UTILS=""],
47 -- [MAYBE_UTILS="utils"])
48 -+ [if test $enableval = no ; then
49 -+ MAYBE_UTILS=""
50 -+ fi])
51 - AC_SUBST(MAYBE_UTILS)
52 -
53 - #option: examples
54
55 diff --git a/net-fs/libnfs/libnfs-2.0.0.ebuild b/net-fs/libnfs/libnfs-2.0.0.ebuild
56 deleted file mode 100644
57 index d238b549811..00000000000
58 --- a/net-fs/libnfs/libnfs-2.0.0.ebuild
59 +++ /dev/null
60 @@ -1,48 +0,0 @@
61 -# Copyright 1999-2020 Gentoo Authors
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI="5"
65 -
66 -AUTOTOOLS_AUTORECONF="1"
67 -
68 -inherit autotools autotools-utils eutils
69 -if [[ ${PV} == "9999" ]] ; then
70 - EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
71 - inherit git-r3
72 -else
73 - SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"
74 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 x86"
75 -fi
76 -
77 -DESCRIPTION="Client library for accessing NFS shares over a network"
78 -HOMEPAGE="https://github.com/sahlberg/libnfs"
79 -
80 -LICENSE="LGPL-2.1 GPL-3"
81 -SLOT="0/11" # sub-slot matches SONAME major
82 -IUSE="examples static-libs"
83 -
84 -RDEPEND=""
85 -DEPEND="${RDEPEND}
86 - virtual/pkgconfig"
87 -
88 -S="${WORKDIR}/${PN}-${P}"
89 -
90 -src_prepare() {
91 - default
92 -
93 - epatch_user
94 -
95 - eautoreconf
96 -}
97 -
98 -src_install() {
99 - autotools-utils_src_install
100 - if use examples; then
101 - # --enable-examples configure switch just compiles them
102 - # better install sources instead
103 - exeinto /usr/share/doc/${PF}/examples/
104 - for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do
105 - doexe examples/${program}.c
106 - done
107 - fi
108 -}
109
110 diff --git a/net-fs/libnfs/libnfs-3.0.0.ebuild b/net-fs/libnfs/libnfs-3.0.0.ebuild
111 deleted file mode 100644
112 index e5153c2d254..00000000000
113 --- a/net-fs/libnfs/libnfs-3.0.0.ebuild
114 +++ /dev/null
115 @@ -1,55 +0,0 @@
116 -# Copyright 1999-2020 Gentoo Authors
117 -# Distributed under the terms of the GNU General Public License v2
118 -
119 -EAPI=6
120 -
121 -inherit autotools
122 -if [[ ${PV} == "9999" ]] ; then
123 - inherit git-r3
124 - EGIT_REPO_URI="https://github.com/sahlberg/${PN}.git"
125 -else
126 - SRC_URI="https://github.com/sahlberg/${PN}/archive/${P}.tar.gz"
127 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
128 - S="${WORKDIR}/${PN}-${P}"
129 -fi
130 -
131 -DESCRIPTION="Client library for accessing NFS shares over a network"
132 -HOMEPAGE="https://github.com/sahlberg/libnfs"
133 -
134 -LICENSE="LGPL-2.1 GPL-3"
135 -SLOT="0/12" # sub-slot matches SONAME major
136 -IUSE="examples static-libs utils"
137 -
138 -RDEPEND=""
139 -DEPEND="${RDEPEND}
140 - virtual/pkgconfig"
141 -
142 -PATCHES=(
143 - "${FILESDIR}/${PN}-3.0.0-utils.patch"
144 -)
145 -
146 -src_prepare() {
147 - default
148 - eautoreconf
149 -}
150 -
151 -src_configure() {
152 - local myeconfargs=(
153 - $(use_enable static-libs static)
154 - $(use_enable utils)
155 - )
156 - econf "${myeconfargs[@]}"
157 -}
158 -
159 -src_install() {
160 - default
161 - if use examples; then
162 - # --enable-examples configure switch just compiles them
163 - # better install sources instead
164 - exeinto /usr/share/doc/${PF}/examples/
165 - for program in $(grep PROGRAMS examples/Makefile.am | cut -d= -f2); do
166 - doexe examples/${program}.c
167 - done
168 - fi
169 - find "${ED}" -name "*.la" -delete || die
170 -}