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/arpeggio/
Date: Sun, 01 Nov 2020 17:40:55
Message-Id: 1604252430.7fa892f78e548fd4230d1787f07b47b3fdc50a64.mgorny@gentoo
1 commit: 7fa892f78e548fd4230d1787f07b47b3fdc50a64
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 1 17:25:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 1 17:40:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa892f7
7
8 dev-python/arpeggio: Bump to 1.10.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/arpeggio/Manifest | 1 +
13 dev-python/arpeggio/arpeggio-1.10.0.ebuild | 33 ++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/arpeggio/Manifest b/dev-python/arpeggio/Manifest
17 index a56b413d596..707e6994db0 100644
18 --- a/dev-python/arpeggio/Manifest
19 +++ b/dev-python/arpeggio/Manifest
20 @@ -1 +1,2 @@
21 +DIST Arpeggio-1.10.0.tar.gz 766416 BLAKE2B 75898c5be536998a12ec0efb8ca0729913e9ac7ac8481f614cb1bfd5332015bd2c22722cc6836511e1b77d933fe497538db1a00804e2cbf409af7cc153ba15c6 SHA512 368c478114ddedbf40c94b4e656945063df5661deacc9c75780ddca18198a9e3e504718fc6c9a1e84c11c5c8f2b454584d1cfc5a14ea2b783e97b8e317047023
22 DIST arpeggio-1.9.2.tar.gz 761920 BLAKE2B ba8c8a5cb8965325c1c3be68a481e024b0ab703d5f60fd9ccb2589fe5efe2618fd24f2b9bc36823005897c83e233bc97372a0e3d2010cf2e2399b96aec58feb5 SHA512 fa1057caaa0b5d26937c6e5aed719f64b293d3332e3ce0277a586bd48ca136792a4811c292fd87f2e58148874e008a6f2f621630052c5dfaf0e0efe2e8039353
23
24 diff --git a/dev-python/arpeggio/arpeggio-1.10.0.ebuild b/dev-python/arpeggio/arpeggio-1.10.0.ebuild
25 new file mode 100644
26 index 00000000000..13f0348512f
27 --- /dev/null
28 +++ b/dev-python/arpeggio/arpeggio-1.10.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Parser interpreter based on PEG grammars"
39 +HOMEPAGE="https://pypi.org/project/Arpeggio/ https://github.com/textX/Arpeggio"
40 +SRC_URI="https://github.com/textX/Arpeggio/archive/${PV}.tar.gz -> ${P^}.tar.gz"
41 +S=${WORKDIR}/${P^}
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +RDEPEND=""
48 +DEPEND="
49 + test? (
50 + dev-python/memory_profiler[${PYTHON_USEDEP}]
51 + )
52 +"
53 +
54 +distutils_enable_tests pytest
55 +
56 +python_prepare_all() {
57 + sed -e '/^setup_requires/,/^[^[:space:]]/d' \
58 + -e '/^exclude/a\
59 + examples.*' \
60 + -i setup.cfg || die
61 + distutils-r1_python_prepare_all
62 +}