Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/antlr4-python3-runtime/
Date: Sun, 01 May 2022 13:42:33
Message-Id: 1651411339.3f4e31db7f5c41dbeabd3fcd66a7ffd1841961d7.mgorny@gentoo
1 commit: 3f4e31db7f5c41dbeabd3fcd66a7ffd1841961d7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 13:22:19 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 13:22:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f4e31db
7
8 dev-python/antlr4-python3-runtime: Bump to 4.10.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/antlr4-python3-runtime/Manifest | 1 +
13 .../antlr4-python3-runtime-4.10.1.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/antlr4-python3-runtime/Manifest b/dev-python/antlr4-python3-runtime/Manifest
17 index a6fd2f18785c..af8337274b9a 100644
18 --- a/dev-python/antlr4-python3-runtime/Manifest
19 +++ b/dev-python/antlr4-python3-runtime/Manifest
20 @@ -1,2 +1,3 @@
21 +DIST antlr-4.10.1.tar.gz 4599964 BLAKE2B 72688b3835350da11c015558a2840428fe69332a7b48992e118cb410005efce6ca5e02e8e5b1cf5edbf2cea506ec30fe516cce5061c52febbdb71f735c1c2cd1 SHA512 d950171d279b57b0fa977c77dd33e56848ca0aaf7f6ba40e5d49d69d5963e4c2e36fde5ee89e98c594064a909396d6fed9cc20129c3a1895d864eb889581e982
22 DIST antlr-4.10.tar.gz 4599769 BLAKE2B 030a4cef752aec2199a816717e242b12245d869634e8c3b94825990f1ad99c000d8bc247c95b182b8146ae57f705a437b3a43fe91f9855958ed2f2115cdbef40 SHA512 af865442047ad8880172e62d17b7eb68d5eeda668ed55995b05cae69ee5e47a89d7a757ddd429ab8d93f5bad50269f0e3dc2e9cf121a9b3d6a87674787858309
23 DIST antlr-4.9.3.tar.gz 4640242 BLAKE2B fb58f5e533051cb2c439c32f0462c1d463c99df862ba7e1a37a1c61378ab36a9edb9525c2a342de5b517da6f02d8291de5976c550932314f3464aad1a778afb9 SHA512 61452404c9639b5a0908cda16605f17c0fed0c9adfc3278c7408f9971420e9d1fe8f9e974e0826c2e3e780fdd83324094c0246cd5b28fa63f5686b094ea08127
24
25 diff --git a/dev-python/antlr4-python3-runtime/antlr4-python3-runtime-4.10.1.ebuild b/dev-python/antlr4-python3-runtime/antlr4-python3-runtime-4.10.1.ebuild
26 new file mode 100644
27 index 000000000000..9240a6802564
28 --- /dev/null
29 +++ b/dev-python/antlr4-python3-runtime/antlr4-python3-runtime-4.10.1.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python 3 runtime for ANTLR"
42 +HOMEPAGE="
43 + https://www.antlr.org/
44 + https://github.com/antlr/antlr4/
45 + https://pypi.org/project/antlr4-python3-runtime/
46 +"
47 +SRC_URI="
48 + https://github.com/antlr/antlr4/archive/${PV}.tar.gz
49 + -> antlr-${PV}.tar.gz
50 +"
51 +S="${WORKDIR}/antlr4-${PV}/runtime/Python3"
52 +
53 +LICENSE="BSD"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~x86"
56 +
57 +python_test() {
58 + "${EPYTHON}" tests/run.py -v || die "Tests failed with ${EPYTHON}"
59 +}