Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/arpeggio/
Date: Thu, 01 Nov 2018 20:07:25
Message-Id: 1541102834.a7a395375041869ce3e602b62f077ac285a0d63c.zmedico@gentoo
1 commit: a7a395375041869ce3e602b62f077ac285a0d63c
2 Author: Oleksandr Trotsenko <oleksandr.trotsenko <AT> gmail <DOT> com>
3 AuthorDate: Sun Oct 28 03:53:16 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 1 20:07:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a39537
7
8 dev-python/arpeggio: Version bump to 1.9.0
9
10 Updating the package to the latest available version and introducing support for
11 Python 3.7.
12
13 See: https://github.com/gentoo/gentoo/pull/10198
14 Package-Manager: Portage-2.3.51, Repoman-2.3.11
15 Signed-off-by: Oleksandr Trotsenko <oleksandr.trotsenko <AT> gmail.com>
16 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
17
18 dev-python/arpeggio/Manifest | 1 +
19 dev-python/arpeggio/arpeggio-1.9.0.ebuild | 34 +++++++++++++++++++++++++++++++
20 2 files changed, 35 insertions(+)
21
22 diff --git a/dev-python/arpeggio/Manifest b/dev-python/arpeggio/Manifest
23 index 4441a0268de..87c780b8a7b 100644
24 --- a/dev-python/arpeggio/Manifest
25 +++ b/dev-python/arpeggio/Manifest
26 @@ -1 +1,2 @@
27 DIST Arpeggio-1.5.tar.gz 18856 BLAKE2B 5ceb26d034622c448ea29adc70f6934dc2de8335c526f02d91bc4bccaf435d462516830fa6b124638fdcb0b4aadc859d602e1ec59469077d796b7534fa28f7aa SHA512 533c59635556a3446c04c8b14f53e8ad6a7a39869f39d958bdd52b5a55ad43c533bc42a41999cc149015b34470d8ff0eca295ff1942c75b33a58a403a604c449
28 +DIST arpeggio-1.9.0.tar.gz 757412 BLAKE2B f89850a16b2ac1a87cbac3ae0f10d4c04af6097bfb9292abec24c8b938bdf3b837c4d292650b2e335ee5b4b03cd149e1722e35ceabf1b59fd4577ba7e62a8e44 SHA512 179ec76813476823f316471e1b313f377064a75879c52060e547fd755ae72947594dc4d6e58a798150620e82c8b123fbd88484881c12ccb311c47bc93a45a0cd
29
30 diff --git a/dev-python/arpeggio/arpeggio-1.9.0.ebuild b/dev-python/arpeggio/arpeggio-1.9.0.ebuild
31 new file mode 100644
32 index 00000000000..77211f6a560
33 --- /dev/null
34 +++ b/dev-python/arpeggio/arpeggio-1.9.0.ebuild
35 @@ -0,0 +1,34 @@
36 +# Copyright 1999-2018 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=6
40 +
41 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
42 +
43 +inherit distutils-r1
44 +
45 +MY_PN=Arpeggio
46 +MY_P=${MY_PN}-${PV}
47 +DESCRIPTION="Parser interpreter based on PEG grammars"
48 +HOMEPAGE="https://pypi.org/project/Arpeggio/ https://github.com/igordejanovic/Arpeggio"
49 +SRC_URI="https://github.com/igordejanovic/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE="test"
55 +RESTRICT="!test? ( test )"
56 +
57 +RDEPEND=""
58 +DEPEND="
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + test? (
61 + dev-python/pytest[${PYTHON_USEDEP}]
62 + dev-python/memory_profiler[${PYTHON_USEDEP}]
63 + )
64 +"
65 +S=${WORKDIR}/${MY_P}
66 +
67 +python_test() {
68 + pytest -vv || die "Testing failed"
69 +}