Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnfsidmap/
Date: Wed, 09 May 2018 15:11:09
Message-Id: 1525878640.1a70f92081a3e7cd112085b6b2cf835aae102817.zlogene@gentoo
1 commit: 1a70f92081a3e7cd112085b6b2cf835aae102817
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 9 15:10:40 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Wed May 9 15:10:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a70f920
7
8 net-libs/libnfsidmap: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-libs/libnfsidmap/Manifest | 1 -
13 net-libs/libnfsidmap/libnfsidmap-0.24.ebuild | 45 ----------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/net-libs/libnfsidmap/Manifest b/net-libs/libnfsidmap/Manifest
17 index 5ebc397e543..a1269755bcc 100644
18 --- a/net-libs/libnfsidmap/Manifest
19 +++ b/net-libs/libnfsidmap/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST libnfsidmap-0.24.tar.gz 328720 BLAKE2B 4b33a589b9d4b47530d2044a0912481dfda770de86f7aa90e80771f2df4b555857535a7f162a485b68c9b1d48be563d246e128fa3ca1e3c79d9bf0af69b8401d SHA512 1283a4af1bcf3c6f941ab294acc0b2b4bd9ca947f2d3c2e866717478ba2e7a2190a5467b71d7e9136c5c83de564c4892f9e3304323ae17e3988af2e40c43982b
22 DIST libnfsidmap-0.25.tar.gz 346587 BLAKE2B dbf31779371ba29737ed7a5901cf46f17e4a1b2ac444c2959d3ae76f41815e9a15a2ee892e417c5b7f97cf5f8396024071430fed028a8cd583aeed1a95e350df SHA512 8acf30790cdd19341c75cb8a4f7ee4dbc9f688c8514258046e55c8f4245df213709ccb7d5327a11b146b0e3b7266d3d4da018699c6be47fbedcc4cd384b54557
23 DIST libnfsidmap-0.27.tar.bz2 303900 BLAKE2B c6cb8d81042426552fd3cde9dfd26f805d3c92281a65c3ca2d12671477eb697f3cd51a6d8313a658eb70232136e5615e0cb9ad090a92e747e245f49e60cfcf8a SHA512 0698079abb4bb9ebeaccbcabca725b022c1daaa3d287944d9c4c2a2134489b649b44fcbcd9916e91dd6d91cdc67d267adf5741c5404150c66cc8243b9f15970d
24
25 diff --git a/net-libs/libnfsidmap/libnfsidmap-0.24.ebuild b/net-libs/libnfsidmap/libnfsidmap-0.24.ebuild
26 deleted file mode 100644
27 index 6cf4e36fb64..00000000000
28 --- a/net-libs/libnfsidmap/libnfsidmap-0.24.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="2"
35 -
36 -inherit autotools eutils
37 -
38 -DESCRIPTION="NFSv4 ID <-> name mapping library"
39 -HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/"
40 -SRC_URI="http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${P}.tar.gz"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
45 -IUSE="ldap static-libs"
46 -
47 -DEPEND="ldap? ( net-nds/openldap )"
48 -RDEPEND="${DEPEND}
49 - !<net-fs/nfs-utils-1.2.2
50 - !net-fs/idmapd"
51 -
52 -src_prepare() {
53 - epatch "${FILESDIR}"/${PN}-0.19-getgrouplist.patch #169909
54 - epatch "${FILESDIR}"/${PN}-0.21-headers.patch
55 - eautoreconf
56 -}
57 -
58 -src_configure() {
59 - econf \
60 - --disable-dependency-tracking \
61 - $(use_enable static-libs static) \
62 - $(use_enable ldap)
63 -}
64 -
65 -src_install() {
66 - emake install DESTDIR="${D}" || die
67 - dodoc AUTHORS ChangeLog NEWS README
68 -
69 - insinto /etc
70 - doins idmapd.conf || die
71 -
72 - # remove useless files
73 - rm -f "${D}"/usr/lib*/libnfsidmap/*.{a,la}
74 - use static-libs || rm -f "${D}"/usr/lib*/*.la
75 -}