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/ntirpc/, net-libs/ntirpc/files/
Date: Sun, 25 Feb 2018 23:30:16
Message-Id: 1519601383.4676232a53d77ad98745a2aea4b8ecaa45f507a0.whissi@gentoo
1 commit: 4676232a53d77ad98745a2aea4b8ecaa45f507a0
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 25 23:23:43 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 25 23:29:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4676232a
7
8 net-libs/ntirpc: Cleanup old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-libs/ntirpc/Manifest | 3 --
13 .../ntirpc/files/ntirpc-1.4.1-city-header.patch | 60 ----------------------
14 net-libs/ntirpc/ntirpc-1.4.1.ebuild | 33 ------------
15 net-libs/ntirpc/ntirpc-1.5.2.ebuild | 29 -----------
16 net-libs/ntirpc/ntirpc-1.5.3.ebuild | 32 ------------
17 5 files changed, 157 deletions(-)
18
19 diff --git a/net-libs/ntirpc/Manifest b/net-libs/ntirpc/Manifest
20 index 737c2dc2546..c8e476b8921 100644
21 --- a/net-libs/ntirpc/Manifest
22 +++ b/net-libs/ntirpc/Manifest
23 @@ -1,4 +1 @@
24 -DIST ntirpc-1.4.1.tar.gz 446025 BLAKE2B 07966a9411b7919b14c318b5427c0f69b151a42c1e2137902bae9287be76dd681270b9e7baae415f4ce9acfda1007af490a6dabbd996dda0c6e7286278ea9418 SHA512 49a27dbd68b3e292437392acf2c010cc968b4d29b82b6e1a84e6c81a0c3979d3b38338212b391294b543ccd321073a33b16d7231ab68d797ead414d1b919137c
25 -DIST ntirpc-1.5.2.tar.gz 433706 BLAKE2B ea531472f418d66fc1f530236eddef4c92ac1092150c68f19764af41e9b10e016b38073b98dc7b4a4991542977aa63b3b4330604ea5866f304fe41ac2fd85d12 SHA512 5bbc48ab5bf2aba7e4c473a6faf586c1aef27a2009bf92082495456c436c707dfdcfc5e16a56c3e31ba3fb68afc3d2d47e8d27ed03be5c0be44e22e24a0cb68e
26 -DIST ntirpc-1.5.3.tar.gz 434096 BLAKE2B c39eaa48e4a9e648a8ce6c34e749f766bee0b9235747138a3d7535b9e07eb2dee5e85076b0dfc30907a931d8145c014938d40e65cb142ae3256eaf408b410bd2 SHA512 bc879e5cb9c16bf76b173f09fac50475ed7616837a625abd433175610cc16399abba2294a8657aadc71d4f45b4b53c97414a77bd52b1f81df3dd990407957363
27 DIST ntirpc-1.6.1.tar.gz 397485 BLAKE2B 2dcc4c3a14eff55b4db52f297b65a48d5dff46ef4b1659912c65ca9104958cca02d542bb3b72f2ce63993414c5d53bb9716b1b1d4ce4b335735ee99da77f3770 SHA512 d176fbe71f1f66e5ee477c1ec2722b77742d36d67856eb4029f1b01474b08349171779a9943c0039d2a30e05debc9ab389d92ea137eabb4d7737fc91e47b0b24
28
29 diff --git a/net-libs/ntirpc/files/ntirpc-1.4.1-city-header.patch b/net-libs/ntirpc/files/ntirpc-1.4.1-city-header.patch
30 deleted file mode 100644
31 index 25c10e39379..00000000000
32 --- a/net-libs/ntirpc/files/ntirpc-1.4.1-city-header.patch
33 +++ /dev/null
34 @@ -1,60 +0,0 @@
35 -From c2416e1996f694ea0cefb217f806e45931ef0b03 Mon Sep 17 00:00:00 2001
36 -From: Dylan Reid <dgreid@××××××××.org>
37 -Date: Wed, 15 Feb 2017 12:31:55 -0800
38 -Subject: [PATCH] Make city.h includes consistent
39 -
40 -Most of the code base already uses <misc/city.h>. Modify the places
41 -that include "city.h" to follow that pattern. cmake doesn't add misc to
42 -the include paths passed to the compiler. I ran into "can't find
43 -city.h" errors when attempting to add an ebuild for gentoo.
44 -
45 -Change-Id: I1e07d82bbe58fbae4759263734ac22170220eeb7
46 -Signed-off-by: Dylan Reid <dgreid@××××××××.org>
47 ----
48 - ntirpc/misc/citycrc.h | 2 +-
49 - src/city-test.c | 2 +-
50 - src/citycrc.h | 2 +-
51 - 3 files changed, 3 insertions(+), 3 deletions(-)
52 -
53 -diff --git a/ntirpc/misc/citycrc.h b/ntirpc/misc/citycrc.h
54 -index 57069344f1f8..d3620158a5ca 100644
55 ---- a/ntirpc/misc/citycrc.h
56 -+++ b/ntirpc/misc/citycrc.h
57 -@@ -34,7 +34,7 @@
58 - #ifndef CITY_HASH_CRC_H_
59 - #define CITY_HASH_CRC_H_
60 -
61 --#include "city.h"
62 -+#include <misc/city.h>
63 -
64 - /* Hash function for a byte array. */
65 - uint128 CityHashCrc128(const char *s, size_t len);
66 -diff --git a/src/city-test.c b/src/city-test.c
67 -index 03d98a2ba9ec..8b504dd5c57c 100644
68 ---- a/src/city-test.c
69 -+++ b/src/city-test.c
70 -@@ -27,7 +27,7 @@
71 - #include <string.h>
72 - #include <stdio.h>
73 -
74 --#include "city.h"
75 -+#include <misc/city.h>
76 - #ifdef __SSE4_2__
77 - #include "citycrc.h"
78 - #endif
79 -diff --git a/src/citycrc.h b/src/citycrc.h
80 -index f6cab94eff04..7998521b68cf 100644
81 ---- a/src/citycrc.h
82 -+++ b/src/citycrc.h
83 -@@ -33,7 +33,7 @@
84 - #ifndef CITY_HASH_CRC_H_
85 - #define CITY_HASH_CRC_H_
86 -
87 --#include "city.h"
88 -+#include <misc/city.h>
89 -
90 - /* Hash function for a byte array. */
91 - uint128 CityHashCrc128(const char *s, size_t len);
92 ---
93 -2.11.1
94 -
95
96 diff --git a/net-libs/ntirpc/ntirpc-1.4.1.ebuild b/net-libs/ntirpc/ntirpc-1.4.1.ebuild
97 deleted file mode 100644
98 index 61ddf68d5d6..00000000000
99 --- a/net-libs/ntirpc/ntirpc-1.4.1.ebuild
100 +++ /dev/null
101 @@ -1,33 +0,0 @@
102 -# Copyright 1999-2017 Gentoo Foundation
103 -# Distributed under the terms of the GNU General Public License v2
104 -
105 -EAPI="5"
106 -
107 -inherit cmake-multilib
108 -
109 -DESCRIPTION="Transport Independent RPC library for nfs-ganesha"
110 -HOMEPAGE="https://github.com/linuxbox2/ntirpc"
111 -SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
112 -
113 -LICENSE="BSD"
114 -SLOT="0"
115 -KEYWORDS="~amd64 ~x86"
116 -IUSE="gssapi rdma"
117 -
118 -# Since the GSS option only controls some extra files to be enabled,
119 -# there's nothing to list in the depend string for it.
120 -RDEPEND="app-crypt/mit-krb5
121 - rdma? ( sys-fabric/librdmacm )"
122 -DEPEND="${RDEPEND}"
123 -
124 -PATCHES=(
125 - "${FILESDIR}"/${P}-city-header.patch
126 -)
127 -
128 -multilib_src_configure() {
129 - local mycmakeargs=(
130 - $(cmake-utils_use_use gssapi GSS)
131 - $(cmake-utils_use_use rdma RPC_RDMA)
132 - )
133 - cmake-utils_src_configure
134 -}
135
136 diff --git a/net-libs/ntirpc/ntirpc-1.5.2.ebuild b/net-libs/ntirpc/ntirpc-1.5.2.ebuild
137 deleted file mode 100644
138 index 0f07315803a..00000000000
139 --- a/net-libs/ntirpc/ntirpc-1.5.2.ebuild
140 +++ /dev/null
141 @@ -1,29 +0,0 @@
142 -# Copyright 1999-2017 Gentoo Foundation
143 -# Distributed under the terms of the GNU General Public License v2
144 -
145 -EAPI=6
146 -
147 -inherit cmake-multilib
148 -
149 -DESCRIPTION="Transport Independent RPC library for nfs-ganesha"
150 -HOMEPAGE="https://github.com/linuxbox2/ntirpc"
151 -SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
152 -
153 -LICENSE="BSD"
154 -SLOT="0"
155 -KEYWORDS="~amd64 ~x86"
156 -IUSE="gssapi rdma"
157 -
158 -# Since the GSS option only controls some extra files to be enabled,
159 -# there's nothing to list in the depend string for it.
160 -RDEPEND="app-crypt/mit-krb5
161 - rdma? ( sys-fabric/librdmacm )"
162 -DEPEND="${RDEPEND}"
163 -
164 -multilib_src_configure() {
165 - local mycmakeargs=(
166 - -DUSE_GSS="$(usex gssapi)"
167 - -DUSE_PRC_RDMA="$(usex rdma)"
168 - )
169 - cmake-utils_src_configure
170 -}
171
172 diff --git a/net-libs/ntirpc/ntirpc-1.5.3.ebuild b/net-libs/ntirpc/ntirpc-1.5.3.ebuild
173 deleted file mode 100644
174 index baba07b564d..00000000000
175 --- a/net-libs/ntirpc/ntirpc-1.5.3.ebuild
176 +++ /dev/null
177 @@ -1,32 +0,0 @@
178 -# Copyright 1999-2017 Gentoo Foundation
179 -# Distributed under the terms of the GNU General Public License v2
180 -
181 -EAPI=6
182 -
183 -inherit cmake-multilib
184 -
185 -COMMIT="fadcbdedb65998925482b26c88964b4213b9e1ac"
186 -DESCRIPTION="Transport Independent RPC library for nfs-ganesha"
187 -HOMEPAGE="https://github.com/linuxbox2/ntirpc"
188 -SRC_URI="${HOMEPAGE}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
189 -
190 -LICENSE="BSD"
191 -SLOT="0"
192 -KEYWORDS="~amd64 ~x86"
193 -IUSE="gssapi rdma"
194 -
195 -# Since the GSS option only controls some extra files to be enabled,
196 -# there's nothing to list in the depend string for it.
197 -RDEPEND="app-crypt/mit-krb5
198 - rdma? ( sys-fabric/librdmacm )"
199 -DEPEND="${RDEPEND}"
200 -
201 -S="${WORKDIR}/${PN}-${COMMIT}"
202 -
203 -multilib_src_configure() {
204 - local mycmakeargs=(
205 - -DUSE_GSS="$(usex gssapi)"
206 - -DUSE_PRC_RDMA="$(usex rdma)"
207 - )
208 - cmake-utils_src_configure
209 -}