Gentoo Archives: gentoo-commits

From: Tony Vroon <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysmi/
Date: Fri, 09 Aug 2019 10:51:12
Message-Id: 1565347847.4c4a76ef7eb7a2de076c79e913f1903b568e4766.chainsaw@gentoo
1 commit: 4c4a76ef7eb7a2de076c79e913f1903b568e4766
2 Author: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 9 10:50:47 2019 +0000
4 Commit: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 9 10:50:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4a76ef
7
8 dev-python/pysmi: Version bump to 0.3.4
9
10 This adds Python 3.7 support, the absence of which is holding up pysnmp work.
11
12 Closes: https://bugs.gentoo.org/691548
13 Requested-By: Jeroen Roovers <jer <AT> gentoo.org>
14 Signed-Off-By: Tony Vroon <chainsaw <AT> gentoo.org>
15 Package-Manager: Portage-2.3.69, Repoman-2.3.16
16
17 dev-python/pysmi/Manifest | 1 +
18 dev-python/pysmi/pysmi-0.3.4.ebuild | 18 ++++++++++++++++++
19 2 files changed, 19 insertions(+)
20
21 diff --git a/dev-python/pysmi/Manifest b/dev-python/pysmi/Manifest
22 index 126301ba410..d653584a4b7 100644
23 --- a/dev-python/pysmi/Manifest
24 +++ b/dev-python/pysmi/Manifest
25 @@ -1,2 +1,3 @@
26 DIST pysmi-0.1.3.tar.gz 78325 BLAKE2B 8f82d86e096a47944eccbd4b7ef846f3d9ca155f3f6e0790eecad88cf872c20a725a4071c8c2b9295fc348fa20efbd41ae7d0479cbd4ffe054e9956a6b6784f1 SHA512 d321fbbc68e4b6b2b18de5c1215dc450ad2ba2ea6c70cbeee9d981d2e2106b59582eae42b09da72bc02af789f7f58a6fc97712869b74f0137d8f7fd7238b2211
27 DIST pysmi-0.3.1.tar.gz 93003 BLAKE2B 91fa382aa693d8849299baf27a2fe10116441cc0661aa553321d9b5584e64751df547172f185e207a7eb0c6438ded60a0acef5aa51263cc1f29219dd8cdef2fc SHA512 b7ffff85689a1f99c53fdfecaed3d9dc1b5c3685388695e715cde9b42eb8511aac8a47b04dcce243c0fb09a4823a799d80a0033ed576637356b991c71bc660c8
28 +DIST pysmi-0.3.4.tar.gz 93985 BLAKE2B 71b0ed936c196381f895b4f56e8e2e328ac274b08801a77b404b964201e00f8da2cbce2719414da358a4feb7992a3d04e732942f6e7006a0cceea4496f96b758 SHA512 720c8948a590130583d6ea388f0ade5d3bfe9e845821add7ffbf1b5495b5fe00b768ffb94f67b82465c6d86234f5306c6e1a5c2e49f4825bb9c31a0df629f7bd
29
30 diff --git a/dev-python/pysmi/pysmi-0.3.4.ebuild b/dev-python/pysmi/pysmi-0.3.4.ebuild
31 new file mode 100644
32 index 00000000000..273421218aa
33 --- /dev/null
34 +++ b/dev-python/pysmi/pysmi-0.3.4.ebuild
35 @@ -0,0 +1,18 @@
36 +# Copyright 2017-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Python Lex & Yacc"
45 +HOMEPAGE="https://github.com/etingof/pysmi"
46 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
51 +
52 +RDEPEND="dev-python/ply[${PYTHON_USEDEP}]"
53 +DEPEND="${RDEPEND}"