Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/rpcsvc-proto/
Date: Sat, 30 Dec 2017 19:12:55
Message-Id: 1514661156.3e80fdd6483e859f3d22425a0f2216364687ab81.whissi@gentoo
1 commit: 3e80fdd6483e859f3d22425a0f2216364687ab81
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 30 19:12:25 2017 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 30 19:12:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e80fdd6
7
8 net-libs/rpcsvc-proto: Bump to v1.3
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 net-libs/rpcsvc-proto/Manifest | 1 +
13 net-libs/rpcsvc-proto/rpcsvc-proto-1.3.ebuild | 29 +++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/net-libs/rpcsvc-proto/Manifest b/net-libs/rpcsvc-proto/Manifest
17 index 873d326aa33..6e85822ce8f 100644
18 --- a/net-libs/rpcsvc-proto/Manifest
19 +++ b/net-libs/rpcsvc-proto/Manifest
20 @@ -1 +1,2 @@
21 DIST rpcsvc-proto-1.2.tar.gz 59883 BLAKE2B 178f9f9fced73dc2e4b587f1bd7924c2811f0b96b5efc048e9a6d3cb4abd32a2c34ff0f5b01576f3dc51f07ca6a06266cd7a055f278f7b205cbb9e30563015e4 SHA512 59e6ac2c3e551daef584878e8ae8fc2da7cb80a04c20f96de561abc972fcfac1fbb57a5ee0dbe7bf5288a1527c9b87fc3f73a259b30393982a9a642cf4b4deb4
22 +DIST rpcsvc-proto-1.3.tar.gz 59202 BLAKE2B 88c74806419e097b20fc41bb63ff66401a6c21a2b7100474e55f1b6452a32d669e879248f00349604237e996167b21b9173158e69876f0db3a1394fb922df7af SHA512 5880ea39a750ee1f69dcedfe32afd617e695ee5328d6386977bbd11babb7bd18d8cb50c2d5f8daf35650aa8a94a4f6dda1171c1159917bb596108b1057c5a158
23
24 diff --git a/net-libs/rpcsvc-proto/rpcsvc-proto-1.3.ebuild b/net-libs/rpcsvc-proto/rpcsvc-proto-1.3.ebuild
25 new file mode 100644
26 index 00000000000..56b2e7ba095
27 --- /dev/null
28 +++ b/net-libs/rpcsvc-proto/rpcsvc-proto-1.3.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="rpcsvc protocol definitions from glibc"
38 +HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto"
39 +SRC_URI="https://github.com/thkukuk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +SLOT="0"
42 +LICENSE="LGPL-2.1+ BSD"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
44 +IUSE=""
45 +
46 +RDEPEND="!<sys-libs/glibc-2.26"
47 +
48 +src_prepare(){
49 + default
50 + eautoreconf
51 +}
52 +
53 +src_install(){
54 + default
55 +
56 + # provided by sys-fs/quota[rpc]
57 + rm "${ED}"/usr/include/rpcsvc/rquota.{x,h} || die
58 +}