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/pep517/
Date: Sun, 27 Feb 2022 18:58:53
Message-Id: 1645988250.35ed3f406cecfd6f92a2aa674a63742f4df095b3.mgorny@gentoo
1 commit: 35ed3f406cecfd6f92a2aa674a63742f4df095b3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:57:30 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:57:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ed3f40
7
8 dev-python/pep517: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pep517/pep517-0.12.0.ebuild | 41 ----------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/pep517/pep517-0.12.0.ebuild b/dev-python/pep517/pep517-0.12.0.ebuild
16 deleted file mode 100644
17 index b6e0572eddbe..000000000000
18 --- a/dev-python/pep517/pep517-0.12.0.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 2021-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
27 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Wrappers to build Python packages using PEP 517 hooks"
32 -HOMEPAGE="
33 - https://pypi.org/project/pep517/
34 - https://github.com/pypa/pep517/
35 - https://pep517.readthedocs.io/"
36 -SRC_URI="
37 - https://github.com/pypa/pep517/archive/v${PV}.tar.gz
38 - -> ${P}.gh.tar.gz"
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
43 -
44 -RDEPEND="
45 - dev-python/tomli[${PYTHON_USEDEP}]"
46 -BDEPEND="
47 - test? (
48 - dev-python/testpath[${PYTHON_USEDEP}]
49 - )"
50 -
51 -distutils_enable_tests pytest
52 -
53 -EPYTEST_IGNORE=(
54 - # require Internet
55 - tests/test_meta.py
56 -)
57 -
58 -src_prepare() {
59 - sed -i -e '/--flake8/d' pytest.ini || die
60 - distutils-r1_src_prepare
61 -}