Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/grpc/
Date: Mon, 16 Jul 2018 19:32:07
Message-Id: 1531769514.c60c136a1bbe24d31ee50cfb2c87f7ef57f8e25d.gyakovlev@gentoo
1 commit: c60c136a1bbe24d31ee50cfb2c87f7ef57f8e25d
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 16 19:31:05 2018 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 16 19:31:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c60c136a
7
8 net-libs/grpc: version bump to 1.13.1
9
10 Clarified python dependencies.
11
12 Package-Manager: Portage-2.3.43, Repoman-2.3.10
13
14 net-libs/grpc/Manifest | 1 +
15 net-libs/grpc/grpc-1.13.1.ebuild | 172 +++++++++++++++++++++++++++++++++++++++
16 2 files changed, 173 insertions(+)
17
18 diff --git a/net-libs/grpc/Manifest b/net-libs/grpc/Manifest
19 index 93ed53e4b94..c694829ef8a 100644
20 --- a/net-libs/grpc/Manifest
21 +++ b/net-libs/grpc/Manifest
22 @@ -1,4 +1,5 @@
23 DIST grpc-1.12.0.tar.gz 13692310 BLAKE2B 86b9063416140453718c51df4f238bb3d5ac8549ece065c95d3c461c069358badec5a9a77aef694cd11a09f53e060f9ea51f3b40d9a2424837605c4899a21c57 SHA512 68a8c261ea570790974769d6c0ca8138cf4242b79e9ff74a11b10d35a27f98ff24c03f3d05932ac46811c0ba7d1a094388ae8dbeb495fc8e723ad74695994d49
24 DIST grpc-1.12.1.tar.gz 13692045 BLAKE2B d35706b553917d0f27e4474509f361ec7962b738031f11ca814d7ec33429f848b3b3356cae9a28b9a0cb376df5a6348d312c80ed4eeb51b81e68b317584a2e4a SHA512 9dd6d8c4b4e2713cf27ed55b1e97fdf5ed6d80f43b798b83f08e2f4646387dfd0696b21d4f44dbd99a061d388790dc15da49ac5afb0bb06116cfd6f07b7d6962
25 DIST grpc-1.13.0.tar.gz 13755973 BLAKE2B 533f0a7d4eb606b8a55f12aade503285dbff2cfa29ff2af71d407e3df25f3ec4b7572335c455d5dd0069eb343f18f8641a4f9326065cc118922942f77d2d2403 SHA512 25a489cd67d12219696c397afa75282eb702bd0af418381990b2eeb4b56483a46276d05314710582dd17be04c80aaf9bb16e01e2c1729d9a59d84ff273baa254
26 +DIST grpc-1.13.1.tar.gz 13757818 BLAKE2B 9387efb980a0cff20c36d7653f24fb7982809428f7f35af0819786753d6cf380a581af81bde72f3682fcdfb3f41c71d628e5ef3b6b83663c8d3d182b4fdb6272 SHA512 f44028299d47865814ada2b8b93dc98dc51c8729bedc9c30dd79c04f6ecc3789ff06bbe7555e5d3512d9aec027751761ae10a80a09a94cf85bbd3260d651b356
27 DIST protobuf-3.5.2.tar.gz 4584659 BLAKE2B f582212169d802a5844574eb900c9f8cbb343b7e73f2074e5ff0bfc544ebd13f4bc2b78271fb70f4465d78fdc39972ed68339f453c0d3ffe98d8564fbf520544 SHA512 09d10cf0c07a0ba249428bbf20f5dbed840965fa06b3c09682f286a4dee9d84bb96f3b5b50e993d48ef1f20440531255ce7d0e60a648bf3fe536a5f2b0b74181
28
29 diff --git a/net-libs/grpc/grpc-1.13.1.ebuild b/net-libs/grpc/grpc-1.13.1.ebuild
30 new file mode 100644
31 index 00000000000..620789c5cc9
32 --- /dev/null
33 +++ b/net-libs/grpc/grpc-1.13.1.ebuild
34 @@ -0,0 +1,172 @@
35 +# Copyright 1999-2018 Gentoo Foundation
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
41 +DISTUTILS_OPTIONAL=1
42 +
43 +inherit distutils-r1 flag-o-matic toolchain-funcs
44 +
45 +# should match pinned git submodule version of third_party/protobuf
46 +# look it up here https://github.com/grpc/grpc/tree/v"${PV}"/third_party
47 +# also should ~depend on same version of dev-libs/protobuf below
48 +PROTOBUF_VERSION="3.5.2"
49 +
50 +DESCRIPTION="Modern open source high performance RPC framework"
51 +HOMEPAGE="http://www.grpc.io"
52 +SRC_URI="
53 + https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
54 + tools? ( https://github.com/google/protobuf/archive/v${PROTOBUF_VERSION}.tar.gz -> protobuf-${PROTOBUF_VERSION}.tar.gz )
55 +"
56 +
57 +LICENSE="Apache-2.0"
58 +SLOT="0"
59 +KEYWORDS="~amd64 ~x86"
60 +IUSE="examples doc python systemtap static-libs tools"
61 +
62 +REQUIRED_USE="
63 + python? ( ${PYTHON_REQUIRED_USE} )
64 + tools? ( python )
65 +"
66 +
67 +RDEPEND="
68 + >=dev-libs/openssl-1.0.2:0=[-bindist]
69 + >=dev-libs/protobuf-${PROTOBUF_VERSION}:=
70 + dev-util/google-perftools
71 + net-dns/c-ares:=
72 + sys-libs/zlib:=
73 + python? ( ${PYTHON_DEPS}
74 + dev-python/cython[${PYTHON_USEDEP}]
75 + dev-python/setuptools[${PYTHON_USEDEP}]
76 + dev-python/six[${PYTHON_USEDEP}]
77 + virtual/python-enum34[${PYTHON_USEDEP}]
78 + virtual/python-futures[${PYTHON_USEDEP}]
79 + tools? ( >=dev-python/protobuf-python-3.5.1:=[${PYTHON_USEDEP}] )
80 + )
81 + systemtap? ( dev-util/systemtap )
82 +"
83 +
84 +DEPEND="${RDEPEND}
85 + virtual/pkgconfig
86 + doc? (
87 + python? (
88 + dev-python/sphinx[${PYTHON_USEDEP}]
89 + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
90 + )
91 + )
92 +"
93 +
94 +PATCHES=(
95 + "${FILESDIR}/0001-grpc-1.13.0-fix-host-ar-handling.patch"
96 + "${FILESDIR}/0002-grpc-1.3.0-Fix-unsecure-.pc-files.patch"
97 + "${FILESDIR}/0003-grpc-1.3.0-Don-t-run-ldconfig.patch"
98 + "${FILESDIR}/0004-grpc-1.11.0-fix-cpp-so-version.patch"
99 + "${FILESDIR}/0005-grpc-1.11.0-pkgconfig-libdir.patch"
100 + "${FILESDIR}/0009-grpc-1.12.1-gcc8-fixes.patch"
101 +)
102 +
103 +src_prepare() {
104 + sed -i 's@$(prefix)/lib@$(prefix)/$(INSTALL_LIBDIR)@g' Makefile || die "fix libdir"
105 + default
106 + use python && distutils-r1_src_prepare
107 +}
108 +
109 +python_prepare() {
110 + if use tools; then
111 + rm -r third_party/protobuf || die "removing empty protobuf dir failed"
112 + ln -s "${S}"/../protobuf-"${PROTOBUF_VERSION}" third_party/protobuf || die
113 + pushd tools/distrib/python/grpcio_tools >/dev/null || die
114 + # absolute symlinks will fail
115 + # ./src -> ${S}/src
116 + ln -s ../../../../src ./ || die
117 + # ./third_party -> ${S}/third_party
118 + ln -s ../../../../third_party ./ || die
119 + # ./grpc_root -> ${S}
120 + ln -s ../../../../ ./grpc_root || die
121 + # prevent above symlinks creating huge SOURCES.TXT files, bug #661244
122 + echo "prune grpc_root/tools/distrib/python/grpcio_tools" >> MANIFEST.in
123 + popd >/dev/null || die
124 + fi
125 +}
126 +
127 +src_compile() {
128 + tc-export CC CXX PKG_CONFIG
129 +
130 + emake \
131 + V=1 \
132 + prefix=/usr \
133 + INSTALL_LIBDIR="$(get_libdir)" \
134 + AR="$(tc-getAR)" \
135 + AROPTS="rcs" \
136 + CFLAGS="${CFLAGS}" \
137 + CXXFLAGS="${CXXFLAGS}" \
138 + LD="${CC}" \
139 + LDXX="${CXX}" \
140 + STRIP=/bin/true \
141 + HOST_CC="$(tc-getBUILD_CC)" \
142 + HOST_CXX="$(tc-getBUILD_CXX)" \
143 + HOST_LD="$(tc-getBUILD_CC)" \
144 + HOST_LDXX="$(tc-getBUILD_CXX)" \
145 + HOST_AR="$(tc-getBUILD_AR)" \
146 + HAS_SYSTEMTAP="$(usex systemtap true false)"
147 +
148 + use python && distutils-r1_src_compile
149 +}
150 +
151 +python_compile() {
152 + export GRPC_PYTHON_BUILD_SYSTEM_CARES=1
153 + export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1
154 + export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1
155 + export GRPC_PYTHON_BUILD_WITH_CYTHON=1
156 + distutils-r1_python_compile
157 +
158 + if use tools; then
159 + pushd tools/distrib/python/grpcio_tools >/dev/null || die
160 + distutils-r1_python_compile
161 + popd >/dev/null || die
162 + fi
163 +}
164 +
165 +python_compile_all() {
166 + if use doc; then
167 + esetup.py doc
168 + mv doc/build doc/html || die
169 + fi
170 +}
171 +
172 +src_install() {
173 + emake \
174 + prefix="${D}"/usr \
175 + INSTALL_LIBDIR="$(get_libdir)" \
176 + STRIP=/bin/true \
177 + install
178 +
179 + use static-libs || find "${ED}" -name '*.a' -delete
180 +
181 + if use examples; then
182 + find examples -name '.gitignore' -delete || die
183 + dodoc -r examples
184 + docompress -x /usr/share/doc/${PF}/examples
185 + fi
186 +
187 + if use doc; then
188 + find doc -name '.gitignore' -delete || die
189 + local DOCS=( AUTHORS README.md doc/. )
190 + fi
191 +
192 + einstalldocs
193 +
194 + use python && distutils-r1_src_install
195 +
196 +}
197 +
198 +python_install() {
199 + distutils-r1_python_install
200 +
201 + if use tools; then
202 + pushd tools/distrib/python/grpcio_tools >/dev/null || die
203 + distutils-r1_python_install
204 + popd >/dev/null || die
205 + fi
206 +}