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: Wed, 26 May 2021 13:32:31
Message-Id: 1622035914.ef4422b573bb31afff2562907f3344221e310363.mgorny@gentoo
1 commit: ef4422b573bb31afff2562907f3344221e310363
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 13:30:36 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 13:31:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef4422b5
7
8 dev-python/executing: Remove old
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.5.4.ebuild | 44 -----------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/executing/Manifest b/dev-python/executing/Manifest
17 index 4532a2330b3..1439d278479 100644
18 --- a/dev-python/executing/Manifest
19 +++ b/dev-python/executing/Manifest
20 @@ -1,2 +1 @@
21 -DIST executing-0.5.4.gh.tar.gz 330687 BLAKE2B 10f526dfb3a9f72dda788af97547e011425a56d1af73c30f5704fb8d348beb4e4538e118355dd415ec6125507ca9b2b015c02dc0bd81a2ef732a60aafb89f12a SHA512 3953ee1f6667c32fea28f964b395d53e99fa7869e27495a241f70179577865ec430ddfa07776995b6b1aaddd660adf6c6b61a8e8931589c0faeea94743fbc209
22 DIST executing-0.6.0.gh.tar.gz 330731 BLAKE2B f6a86072907c5140aefb45beb46bcc8c6e3e242e2e821046e59f0eafe1d5c16efe3c08dd1b19b1ce85388fd9cc4757bfe586b95fb490a594cfee4f5e69b5a0af SHA512 5d2f621ff4cbfd55ac43b555f771b129ade5d20f882f4e5d6a060a1a099abad73cc4128c9e6bd32fccc40c4c85c51c28b3be40ab16f163e1ceaaad07f1936ab7
23
24 diff --git a/dev-python/executing/executing-0.5.4.ebuild b/dev-python/executing/executing-0.5.4.ebuild
25 deleted file mode 100644
26 index d75b67883db..00000000000
27 --- a/dev-python/executing/executing-0.5.4.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 2020-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..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 -src_prepare() {
63 - # Kill off useless wheel dep
64 - sed -i -e 's/wheel; //' setup.cfg || die
65 -
66 - distutils-r1_src_prepare
67 -}
68 -
69 -python_test() {
70 - # this test explodes when collected by pytest
71 - "${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
72 - pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
73 -}