Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cram/
Date: Wed, 09 Sep 2020 01:03:14
Message-Id: 1599613385.1de3f18466379593f24c382f66e069dc9ba1b181.sam@gentoo
1 commit: 1de3f18466379593f24c382f66e069dc9ba1b181
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 2 11:55:29 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 9 01:03:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de3f184
7
8 dev-util/cram: add python3.9 support
9
10 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-util/cram/cram-0.7-r1.ebuild | 21 +++++++++++++++++++++
14 1 file changed, 21 insertions(+)
15
16 diff --git a/dev-util/cram/cram-0.7-r1.ebuild b/dev-util/cram/cram-0.7-r1.ebuild
17 new file mode 100644
18 index 00000000000..008e8aa0cfd
19 --- /dev/null
20 +++ b/dev-util/cram/cram-0.7-r1.ebuild
21 @@ -0,0 +1,21 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Functional testing framework for command line applications"
32 +HOMEPAGE="https://bitheap.org/cram/"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86"
38 +
39 +python_test() {
40 + distutils_install_for_testing
41 + "${EPYTHON}" "${TEST_DIR}"/scripts/cram tests || die "Tests fail with ${EPYTHON}"
42 +}