Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rply/
Date: Thu, 28 Jun 2018 12:20:45
Message-Id: 1530188386.68d26db644e282e4f2d6e5b2b44580ceda805b3e.alexxy@gentoo
1 commit: 68d26db644e282e4f2d6e5b2b44580ceda805b3e
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 28 11:55:39 2018 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 28 12:19:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68d26db6
7
8 dev-python/rply: Version bump
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/rply/Manifest | 1 +
13 dev-python/rply/rply-0.7.6.ebuild | 36 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/rply/Manifest b/dev-python/rply/Manifest
17 index 304529764eb..56b94d70940 100644
18 --- a/dev-python/rply/Manifest
19 +++ b/dev-python/rply/Manifest
20 @@ -1,2 +1,3 @@
21 DIST rply-0.7.4.tar.gz 27392 BLAKE2B 3604550646e083bf685a192dcf0dbc80c03cf4b97f6771ed37e228c84909c2518a58bde73ea584085351f1a2b5c865418ae671843087660d48f08e0e44e3ab2c SHA512 e3c3a828eb4b3cb20751ecb2d91efaabddbe3702d52b9adefe1748c07c843da1899e3944bcf0ab79f627ae428b8879cf99739ea7e0c6fd1acffc4ac4dee1b652
22 DIST rply-0.7.5.tar.gz 27462 BLAKE2B 0f438e6fd786e7436f135da50fe90208970a0950422bb0d8e26b06cc2def964c0ebd7c3e5e3e282a1d56dbb9e804ac267095dc4da16eb57899f455d66fed2d71 SHA512 ccecc451d9e2e0fdf9df7eaaeabface782d9159cc1caf1feae6e46210f6384aa1a78c15ea3c0e9dcc0bd0d2b28e3b1328c8d37e94a8968b07ef7938e5f5ce201
23 +DIST rply-0.7.6.tar.gz 26216 BLAKE2B 5ec93739179df0d34762ea0ee004a00defa235a23af8b5cbf283e1e44c250469a704c9247463a8cdf9796c35da8aed0be025e73fe21aece3d376b1e66ffda1c3 SHA512 b0edcff1ca32c465b404a0b2f548f90d312bcb98d3f4aa4a61fb44986c8aa7ecb6f046e72112e2c1f5654173bcfcc96ab4e0625632e908ccf17b43cdb3d8d99d
24
25 diff --git a/dev-python/rply/rply-0.7.6.ebuild b/dev-python/rply/rply-0.7.6.ebuild
26 new file mode 100644
27 index 00000000000..9c020e78595
28 --- /dev/null
29 +++ b/dev-python/rply/rply-0.7.6.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Pure python parser generator that also works with RPython"
41 +HOMEPAGE="https://github.com/alex/rply"
42 +SRC_URI="https://github.com/alex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 + dev-python/appdirs[${PYTHON_USEDEP}]
51 + test? (
52 + dev-python/py[${PYTHON_USEDEP}]
53 + dev-python/pytest[${PYTHON_USEDEP}] )"
54 +
55 +python_prepare() {
56 + # https://github.com/alex/rply/issues/26; fail under py[3-4]
57 + if python_is_python3; then
58 + sed -e s':test_simple:_&:' -e s':test_empty_production:_&:' \
59 + -i tests/test_parsergenerator.py
60 + fi
61 + distutils-r1_python_prepare
62 +}
63 +
64 +python_test() {
65 + py.test || die "Tests fail with ${EPYTHON}"
66 +}