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/path-py/
Date: Sat, 24 Jul 2021 17:33:48
Message-Id: 1627148016.990c950799992fa82739ebe191c35a3fb1792799.mgorny@gentoo
1 commit: 990c950799992fa82739ebe191c35a3fb1792799
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 24 17:30:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 24 17:33:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990c9507
7
8 dev-python/path-py: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/path-py/Manifest | 1 -
13 dev-python/path-py/path-py-15.1.2.ebuild | 39 --------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-python/path-py/Manifest b/dev-python/path-py/Manifest
17 index c4cc00b9bd9..7b3396cab6d 100644
18 --- a/dev-python/path-py/Manifest
19 +++ b/dev-python/path-py/Manifest
20 @@ -1,2 +1 @@
21 -DIST path-15.1.2.tar.gz 48280 BLAKE2B 6dd6be743939d4ac1edd5caab18658473d7318eaf255140198db34cfb28c95322ed8ae05284683b18a0146f412ff8a2c14dae60d018740f8bb9cfda861b8ea20 SHA512 76f2a04800154ee8c7b7b9783bf7c63c544da74bb2f92424aeb437448a04dcdec008deab262d3b40d515404e6144bbad44e618d824974654ef10676878415ba4
22 DIST path-16.0.0.tar.gz 44187 BLAKE2B 839c8a9d10cf4ac3f738a9e661fbfb1059554f965fc8224457c05c249578a18118129b69b46276fe569fc8bc33b398be1462d660bb20b905ecc6ab2b4db3f8fc SHA512 3874321d488543219a081adcb692739fcc4935cddaf563b58fe5a97c2cee4b5b683b2be52d220854b2f2224d15ec2bde054a53862352c249f14f1460a72d5e72
23
24 diff --git a/dev-python/path-py/path-py-15.1.2.ebuild b/dev-python/path-py/path-py-15.1.2.ebuild
25 deleted file mode 100644
26 index 1cbdcfd3980..00000000000
27 --- a/dev-python/path-py/path-py-15.1.2.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-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..10} pypy3 )
36 -inherit distutils-r1
37 -
38 -MY_P="path-${PV}"
39 -DESCRIPTION="A module wrapper for os.path"
40 -HOMEPAGE="https://pypi.org/project/path/ https://github.com/jaraco/path"
41 -SRC_URI="mirror://pypi/p/path/${MY_P}.tar.gz"
42 -S=${WORKDIR}/${MY_P}
43 -
44 -SLOT="0"
45 -LICENSE="MIT"
46 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
47 -
48 -RDEPEND="
49 - dev-python/appdirs[${PYTHON_USEDEP}]
50 - !<dev-python/pytest-shutil-1.7.0-r1
51 - !<dev-python/pytest-virtualenv-1.7.0-r1"
52 -BDEPEND="
53 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
54 - dev-python/toml[${PYTHON_USEDEP}]
55 - test? (
56 - dev-python/packaging[${PYTHON_USEDEP}]
57 - )"
58 -
59 -distutils_enable_tests pytest
60 -
61 -python_test() {
62 - local deselect=(
63 - # unreliable, not really meaningful for end users
64 - test_path.py::TestPerformance
65 - )
66 -
67 - PYTHONPATH=. pytest -vv ${deselect[@]/#/--deselect } || die
68 -}