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