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: Wed, 09 Jun 2021 20:10:58
Message-Id: 1623269405.54d03246ea1acf55a63aa433a863707ddd263285.floppym@gentoo
1 commit: 54d03246ea1acf55a63aa433a863707ddd263285
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Wed Jun 9 02:00:00 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 20:10:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d03246
7
8 dev-python/protobuf-python: Version bump (3.17.3).
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.17.3.ebuild | 65 ++++++++++++++++++++++
15 2 files changed, 66 insertions(+)
16
17 diff --git a/dev-python/protobuf-python/Manifest b/dev-python/protobuf-python/Manifest
18 index e170628b338..87ea4747892 100644
19 --- a/dev-python/protobuf-python/Manifest
20 +++ b/dev-python/protobuf-python/Manifest
21 @@ -3,3 +3,4 @@ DIST protobuf-3.16.0.tar.gz 5299781 BLAKE2B 9ace02a6038c31b7393671fb2ccd6a4866a3
22 DIST protobuf-3.17.0.tar.gz 5185780 BLAKE2B a168619df72cdf097c7ddfd50aca96a2101bf73e7c1c842c020e6ee08a853db8674a86ca999b7706da3dd21d4d3d2159241c93232efc693701962f3a54a382e9 SHA512 36ed2de641849ce01531ff1207f62a0748f811519c40622a119a17a1e709864382de81481fb58f374a025948971c48416e7e6de9c00512a78633c7a8a3aa3a36
23 DIST protobuf-3.17.1.tar.gz 5192666 BLAKE2B 7f912db7e0835aaa42628fcf564a5666e2cbfa021bb35638a5eec53c3c457f1e747225dea54f732b7239a1520febca9bc20c824b1938f100796caa3ac2133bc1 SHA512 5a18aa3c1dab040dc6d22310a8503241081106acf7ca89079d7b416533d7c2cdd47719dc9023e6bc26969f0f1c796550260a04034a403c69752f6a3a7a651bb8
24 DIST protobuf-3.17.2.tar.gz 5192779 BLAKE2B 97f9561848e70b8d26ebcc7fc4fa8da51c4b8267efbe1d2d386c2785308e7ba7edc05f1b3863c274dc8838866d58b58509606d72c51a22b956d1d528584c4c95 SHA512 b3e7ad50ed772668df70a3a20ad1af13a5e82f23b109e4fecd34e6a74947bed300963c9f084907fbfafe28fc18365cde7df1975e2ff9538d2f5a3d2b458bca98
25 +DIST protobuf-3.17.3.tar.gz 5235236 BLAKE2B 2495e678c8f9436d4e5a30ccee8b6226125d418ac7ecf7df20b078a1a16c221cbccab7d846dcd56a90220c106617fa75c410a21b62612fedec378cd7e8571350 SHA512 b4030b4474cc5fb5a62501200725dd488e6e66e3ced4ed12ab4ee029fcfed305e92ec966adafbdd343afffd186908163849422b95eaa500e7e741ac325d01d12
26
27 diff --git a/dev-python/protobuf-python/protobuf-python-3.17.3.ebuild b/dev-python/protobuf-python/protobuf-python-3.17.3.ebuild
28 new file mode 100644
29 index 00000000000..94a49219ee7
30 --- /dev/null
31 +++ b/dev-python/protobuf-python/protobuf-python-3.17.3.ebuild
32 @@ -0,0 +1,65 @@
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_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/28"
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 +
70 +S="${WORKDIR}/protobuf-${PV}/python"
71 +
72 +if [[ "${PV}" == "9999" ]]; then
73 + EGIT_CHECKOUT_DIR="${WORKDIR}/protobuf-${PV}"
74 +fi
75 +
76 +python_prepare_all() {
77 + pushd "${WORKDIR}/protobuf-${PV}" > /dev/null || die
78 + eapply "${FILESDIR}/${PN}-3.13.0-google.protobuf.pyext._message.PyUnknownFieldRef.patch"
79 + eapply_user
80 + popd > /dev/null || die
81 +
82 + distutils-r1_python_prepare_all
83 +}
84 +
85 +python_configure_all() {
86 + mydistutilsargs=(--cpp_implementation)
87 +}
88 +
89 +python_test() {
90 + esetup.py test
91 +}
92 +
93 +python_install_all() {
94 + distutils-r1_python_install_all
95 +
96 + find "${ED}" -name "*.pth" -type f -delete || die
97 +}