Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/protobuf-python/
Date: Mon, 31 May 2021 23:04:12
Message-Id: 1622502100.35d306f6da31632edea7b38b94a87f20a189cf76.floppym@gentoo
1 commit: 35d306f6da31632edea7b38b94a87f20a189cf76
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Fri May 28 02:00:00 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 23:01:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35d306f6
7
8 dev-python/protobuf-python: Version bump (3.16.0).
9
10 Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
11 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
12
13 dev-python/protobuf-python/Manifest | 1 +
14 .../protobuf-python/protobuf-python-3.16.0.ebuild | 66 ++++++++++++++++++++++
15 2 files changed, 67 insertions(+)
16
17 diff --git a/dev-python/protobuf-python/Manifest b/dev-python/protobuf-python/Manifest
18 index 0737b49db14..42ad9a885e5 100644
19 --- a/dev-python/protobuf-python/Manifest
20 +++ b/dev-python/protobuf-python/Manifest
21 @@ -9,3 +9,4 @@ DIST protobuf-3.15.5.tar.gz 5283712 BLAKE2B 0da6255302014c885aee47d48344a75ee480
22 DIST protobuf-3.15.6.tar.gz 5284018 BLAKE2B 5895f618e233edd5744253821036857aa23f64b76ee3318b99f3530d9dd0c49cc8c386ef15c7394475c2bf0fa33fb631e481fa3fb927c2ab8a88af31234bd0b1 SHA512 673d61b492ce0e85f5c63f3fd7a0174737cc65f7871f79d24380bffa59ea1b312065137ecc63b0f4d4ffa3eb168a09e9c1129c21b0e6c5c3a8c2fabb2cecabb5
23 DIST protobuf-3.15.7.tar.gz 5284817 BLAKE2B 43821bb283a0c1f87930593046a5c55f6efae3f644337289fd438c0612a9b7ef9531b61e48940b74dc5d20253ee1b6a805b902284a442dec2efe8c79f82c5aad SHA512 2b18ccba1ff8a0623c52abed0e0674bc6cfa2cd10d49764031a47e68f654f54083f4a4f9e3a94d833a6808426904ee642f173641063e79cb41a61fc348d603ac
24 DIST protobuf-3.15.8.tar.gz 5285277 BLAKE2B 798fc011ac03cdc2406acf5845c667d8482082044bdace06c2c1d02b5b1b69c1b1f30e29774180dc1801a1d21d62e2ce50325105859564a1e36d3fe478e64d8b SHA512 56fc6df2dae14eee0fb67dd4204fc1ec54a18d994a69c9e42c7888d0cd50d269d1c5e1445d74f0fa705850d4ac86a22d86781e09769a716e5c6f829b15b05592
25 +DIST protobuf-3.16.0.tar.gz 5299781 BLAKE2B 9ace02a6038c31b7393671fb2ccd6a4866a3f8b7d87d2bc8371f49d65b9180f10792ca2430a83449dfa7d785a1244dac23c20756414c9d1e7c7e871a8038b123 SHA512 0191e5a6a23d03f691e883e259f6d06a0ac8eef427455bc7d1cc70b6f0ed260e4ad8f360c836fd4bdc95ec0ca314c887cbf7acbcda60e03cdfe69e4cd275bff5
26
27 diff --git a/dev-python/protobuf-python/protobuf-python-3.16.0.ebuild b/dev-python/protobuf-python/protobuf-python-3.16.0.ebuild
28 new file mode 100644
29 index 00000000000..2469f463853
30 --- /dev/null
31 +++ b/dev-python/protobuf-python/protobuf-python-3.16.0.ebuild
32 @@ -0,0 +1,66 @@
33 +# Copyright 2008-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +PYTHON_COMPAT=(python{3_7,3_8,3_9})
38 +DISTUTILS_USE_SETUPTOOLS="bdepend"
39 +
40 +inherit distutils-r1
41 +
42 +if [[ "${PV}" == "9999" ]]; then
43 + inherit git-r3
44 +
45 + EGIT_REPO_URI="https://github.com/protocolbuffers/protobuf"
46 + EGIT_SUBMODULES=()
47 +fi
48 +
49 +DESCRIPTION="Google's Protocol Buffers - Python bindings"
50 +HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf"
51 +if [[ "${PV}" == "9999" ]]; then
52 + SRC_URI=""
53 +else
54 + SRC_URI="https://github.com/protocolbuffers/protobuf/archive/v${PV}.tar.gz -> protobuf-${PV}.tar.gz"
55 +fi
56 +
57 +LICENSE="BSD"
58 +SLOT="0/27"
59 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
60 +IUSE=""
61 +
62 +BDEPEND="${PYTHON_DEPS}
63 + ~dev-libs/protobuf-${PV}
64 + dev-python/namespace-google[${PYTHON_USEDEP}]
65 + dev-python/six[${PYTHON_USEDEP}]"
66 +DEPEND="${PYTHON_DEPS}
67 + ~dev-libs/protobuf-${PV}"
68 +RDEPEND="${BDEPEND}
69 + !<dev-libs/protobuf-3[python(-)]"
70 +
71 +S="${WORKDIR}/protobuf-${PV}/python"
72 +
73 +if [[ "${PV}" == "9999" ]]; then
74 + EGIT_CHECKOUT_DIR="${WORKDIR}/protobuf-${PV}"
75 +fi
76 +
77 +python_prepare_all() {
78 + pushd "${WORKDIR}/protobuf-${PV}" > /dev/null || die
79 + eapply "${FILESDIR}/${PN}-3.13.0-google.protobuf.pyext._message.PyUnknownFieldRef.patch"
80 + eapply_user
81 + popd > /dev/null || die
82 +
83 + distutils-r1_python_prepare_all
84 +}
85 +
86 +python_configure_all() {
87 + mydistutilsargs=(--cpp_implementation)
88 +}
89 +
90 +python_test() {
91 + esetup.py test
92 +}
93 +
94 +python_install_all() {
95 + distutils-r1_python_install_all
96 +
97 + find "${ED}" -name "*.pth" -type f -delete || die
98 +}