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-libs/ntirpc/
Date: Tue, 25 Sep 2018 08:06:29
Message-Id: 1537862777.a5866943d09d09ee5b6561d5e2f44c8bb0e80afb.polynomial-c@gentoo
1 commit: a5866943d09d09ee5b6561d5e2f44c8bb0e80afb
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 25 08:05:57 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 25 08:06:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5866943
7
8 net-libs/ntirpc: Bump to version 1.7.0
9
10 Package-Manager: Portage-2.3.50, Repoman-2.3.11
11
12 net-libs/ntirpc/Manifest | 1 +
13 net-libs/ntirpc/ntirpc-1.7.0.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/net-libs/ntirpc/Manifest b/net-libs/ntirpc/Manifest
17 index c8e476b8921..a8116621fa1 100644
18 --- a/net-libs/ntirpc/Manifest
19 +++ b/net-libs/ntirpc/Manifest
20 @@ -1 +1,2 @@
21 DIST ntirpc-1.6.1.tar.gz 397485 BLAKE2B 2dcc4c3a14eff55b4db52f297b65a48d5dff46ef4b1659912c65ca9104958cca02d542bb3b72f2ce63993414c5d53bb9716b1b1d4ce4b335735ee99da77f3770 SHA512 d176fbe71f1f66e5ee477c1ec2722b77742d36d67856eb4029f1b01474b08349171779a9943c0039d2a30e05debc9ab389d92ea137eabb4d7737fc91e47b0b24
22 +DIST ntirpc-1.7.0.tar.gz 373195 BLAKE2B 5cfb6c16d1fa3569d37a6b8f51990dd18e713aaaf0f6e6309c36fb8b0bdb6fa0dfcfa81f0e9e185c18dac5b6d422bd9d1b796b245b3dfa519b0f53300ce5c725 SHA512 84fdf62b8a72bcf1b90854536df3c1e3f06c58858d7a2403ee6c085f8585a5d389921a2feb9e0f27ef238dea3a36a9c94b66ea582f290168a8ed21405a452723
23
24 diff --git a/net-libs/ntirpc/ntirpc-1.7.0.ebuild b/net-libs/ntirpc/ntirpc-1.7.0.ebuild
25 new file mode 100644
26 index 00000000000..07720adb249
27 --- /dev/null
28 +++ b/net-libs/ntirpc/ntirpc-1.7.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2018 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="6"
34 +
35 +inherit cmake-multilib
36 +
37 +DESCRIPTION="Transport Independent RPC library for nfs-ganesha"
38 +HOMEPAGE="https://github.com/nfs-ganesha/ntirpc"
39 +SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="gssapi rdma"
45 +
46 +# Since the GSS option only controls some extra files to be enabled,
47 +# there's nothing to list in the depend string for it.
48 +RDEPEND="app-crypt/mit-krb5
49 + net-libs/libnsl
50 + rdma? ( sys-fabric/librdmacm )"
51 +DEPEND="${RDEPEND}"
52 +
53 +multilib_src_configure() {
54 + local mycmakeargs=(
55 + -DUSE_GSS="$(usex gssapi)"
56 + -DUSE_RPC_RDMA="$(usex rdma)"
57 + )
58 + cmake-utils_src_configure
59 +}