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: Mon, 05 Sep 2022 07:18:04
Message-Id: 1662362275.7cc41a45740c4a047610d856abf2c34f2ae30e85.mgorny@gentoo
1 commit: 7cc41a45740c4a047610d856abf2c34f2ae30e85
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 06:52:56 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 07:17:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc41a45
7
8 dev-python/antlr4-python3-runtime: Bump to 4.11.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.11.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 aa437ca8d82e..61b9f77d9bf6 100644
18 --- a/dev-python/antlr4-python3-runtime/Manifest
19 +++ b/dev-python/antlr4-python3-runtime/Manifest
20 @@ -1 +1,2 @@
21 DIST antlr-4.10.1.tar.gz 4599964 BLAKE2B 72688b3835350da11c015558a2840428fe69332a7b48992e118cb410005efce6ca5e02e8e5b1cf5edbf2cea506ec30fe516cce5061c52febbdb71f735c1c2cd1 SHA512 d950171d279b57b0fa977c77dd33e56848ca0aaf7f6ba40e5d49d69d5963e4c2e36fde5ee89e98c594064a909396d6fed9cc20129c3a1895d864eb889581e982
22 +DIST antlr-4.11.1.gh.tar.gz 4383139 BLAKE2B ac6e49ae8d4d44923e40eba98fa2c850cb594929ae1a29223678377aabe6f35d57f95e125393aa6b7145828c876442608883356b594ab43346c891ca932d9fd5 SHA512 a81f2ebcbcb6e63eb651731ceafab55f66401a3da0a6b2688cfe96d3bda299542dab5b05aaf4c8a8520ba32891b23adbf912011a4e45afae492a2a350d333ae9
23
24 diff --git a/dev-python/antlr4-python3-runtime/antlr4-python3-runtime-4.11.1.ebuild b/dev-python/antlr4-python3-runtime/antlr4-python3-runtime-4.11.1.ebuild
25 new file mode 100644
26 index 000000000000..13f1fbcbd807
27 --- /dev/null
28 +++ b/dev-python/antlr4-python3-runtime/antlr4-python3-runtime-4.11.1.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python 3 runtime for ANTLR"
41 +HOMEPAGE="
42 + https://www.antlr.org/
43 + https://github.com/antlr/antlr4/
44 + https://pypi.org/project/antlr4-python3-runtime/
45 +"
46 +SRC_URI="
47 + https://github.com/antlr/antlr4/archive/${PV}.tar.gz
48 + -> antlr-${PV}.gh.tar.gz
49 +"
50 +S="${WORKDIR}/antlr4-${PV}/runtime/Python3"
51 +
52 +LICENSE="BSD"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~x86"
55 +
56 +python_test() {
57 + "${EPYTHON}" tests/run.py -v || die "Tests failed with ${EPYTHON}"
58 +}