Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtirpc/
Date: Sun, 25 Apr 2021 09:17:03
Message-Id: 1619342200.ae4515ffc3204eb16bb71daf4c26cad00cc349ce.soap@gentoo
1 commit: ae4515ffc3204eb16bb71daf4c26cad00cc349ce
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 25 09:16:40 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 09:16:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae4515ff
7
8 net-libs/libtirpc: Remove old 1.2.6
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-libs/libtirpc/Manifest | 1 -
14 net-libs/libtirpc/libtirpc-1.2.6.ebuild | 60 ---------------------------------
15 2 files changed, 61 deletions(-)
16
17 diff --git a/net-libs/libtirpc/Manifest b/net-libs/libtirpc/Manifest
18 index ccb8c655851..1a758389e71 100644
19 --- a/net-libs/libtirpc/Manifest
20 +++ b/net-libs/libtirpc/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST libtirpc-1.2.6.tar.bz2 513150 BLAKE2B 81ca8d1897b84897b31bd81c17e446213b798e00de80f03736f73eaf6b2e9e436b1569243bf9a8c5ad22de7da51339432decd2a8d3f1b8135151fd7e0f703e54 SHA512 bcb6b5c062c1301aa1246ec93ae0a5c1d221b8421126d020863517cb814b43ed038fb6c0c2faf4e68ff133b69abefe4f4d42bfc870671da6c27ca941a30b155a
23 DIST libtirpc-1.3.1.tar.bz2 513399 BLAKE2B 8cc42292cdbde55a0095669bd9ccb3666b9e33d6ec9880ac79d034d42155d1b585f4181ff92f8290d7b5cce01bace2629d1ddfe0d61813f00851216f2be5ed0d SHA512 131f746800ac7280cc3900597018fc8dbc8da50c14e29dbaccf36a6d110eded117351108c6b069eaac90d77cfec17014b08e9afddcf153fda2d780ba64260cbc
24 DIST libtirpc-glibc-nfs.tar.xz 8948 BLAKE2B 7316623d9f2b6928e296137fe2bf6794b208d549c2ffba9e4a35b47f7b04bf023798a09f38c02d039debf6adc466d7689cf3c8274d71a22eaff08729642c0a28 SHA512 90255bf0a27af16164e0710dd940778609925d473f4343093ff19d98cc4f23023788bf4edf0178eae1961afc0ba8b69b273de95b7d7e2afdb706701d8ba6f7ba
25
26 diff --git a/net-libs/libtirpc/libtirpc-1.2.6.ebuild b/net-libs/libtirpc/libtirpc-1.2.6.ebuild
27 deleted file mode 100644
28 index ec87a461675..00000000000
29 --- a/net-libs/libtirpc/libtirpc-1.2.6.ebuild
30 +++ /dev/null
31 @@ -1,60 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit multilib-minimal usr-ldscript
38 -
39 -DESCRIPTION="Transport Independent RPC library (SunRPC replacement)"
40 -HOMEPAGE="https://sourceforge.net/projects/libtirpc/"
41 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
42 - mirror://gentoo/${PN}-glibc-nfs.tar.xz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0/3" # subslot matches SONAME major
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
47 -IUSE="ipv6 kerberos static-libs"
48 -
49 -RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )"
50 -DEPEND="${RDEPEND}
51 - elibc_musl? ( sys-libs/queue-standalone )"
52 -BDEPEND="
53 - app-arch/xz-utils
54 - virtual/pkgconfig"
55 -
56 -src_prepare() {
57 - cp -r "${WORKDIR}"/tirpc "${S}"/ || die
58 - default
59 -}
60 -
61 -multilib_src_configure() {
62 - local myeconfargs=(
63 - $(use_enable ipv6)
64 - $(use_enable kerberos gssapi)
65 - $(use_enable static-libs static)
66 - )
67 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
68 -}
69 -
70 -multilib_src_install() {
71 - default
72 -
73 - # libtirpc replaces rpc support in glibc, so we need it in /
74 - gen_usr_ldscript -a tirpc
75 -}
76 -
77 -multilib_src_install_all() {
78 - einstalldocs
79 -
80 - insinto /etc
81 - doins doc/netconfig
82 -
83 - insinto /usr/include/tirpc
84 - doins -r "${WORKDIR}"/tirpc/*
85 -
86 - # makes sure that the linking order for nfs-utils is proper, as
87 - # libtool would inject a libgssglue dependency in the list.
88 - if ! use static-libs ; then
89 - find "${ED}" -name "*.la" -delete || die
90 - fi
91 -}