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/executing/
Date: Tue, 06 Jul 2021 07:13:04
Message-Id: 1625555578.6fc53050dedf0976973f391a7fdb1de16d0571f8.mgorny@gentoo
1 commit: 6fc53050dedf0976973f391a7fdb1de16d0571f8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 07:09:44 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 07:12:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fc53050
7
8 dev-python/executing: Bump to 0.7.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/executing/Manifest | 1 +
13 dev-python/executing/executing-0.7.0.ebuild | 37 +++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
17 index 1439d278479..54651edfaaf 100644
18 --- a/dev-python/executing/Manifest
19 +++ b/dev-python/executing/Manifest
20 @@ -1 +1,2 @@
21 DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7
22 +DIST executing-0.7.0.gh.tar.gz 452550 BLAKE2B 9b3bdb49b3b00ca17952db747d3f0f3995e8dffbc170bcb2260e7c34ce9e6b0c8e1620be2e2776445a6114add4e2437eaeae8a308391e2c121b6484b5bc6056c SHA512 08ee347f0bcaf04ca2c6010762a6d2d5b054b3590029c55d18d6efae5a5db7c6c5a0948cce9d9684e4bfbfd9ea19326e4ac2c96be40535c0500c28c28ce81e07
23
24 diff --git a/dev-python/executing/executing-0.7.0.ebuild b/dev-python/executing/executing-0.7.0.ebuild
25 new file mode 100644
26 index 00000000000..fc9d9501f8e
27 --- /dev/null
28 +++ b/dev-python/executing/executing-0.7.0.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 2020-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Get information about what a Python frame is currently doing"
39 +HOMEPAGE="
40 + https://github.com/alexmojaki/executing/
41 + https://pypi.org/project/executing/"
42 +SRC_URI="
43 + https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
44 + -> ${P}.gh.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
49 +
50 +# asttokens is optional runtime dep
51 +BDEPEND="
52 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
53 + dev-python/toml[${PYTHON_USEDEP}]
54 + test? (
55 + dev-python/asttokens[${PYTHON_USEDEP}]
56 + )"
57 +
58 +distutils_enable_tests pytest
59 +
60 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
61 +
62 +python_test() {
63 + # this test explodes when collected by pytest
64 + "${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
65 + epytest tests/test_pytest.py
66 +}