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/packaging/
Date: Mon, 28 Feb 2022 21:56:04
Message-Id: 1646085355.c7dcc6d1b98b96c3f0477edca9826a72c95d3b68.mgorny@gentoo
1 commit: c7dcc6d1b98b96c3f0477edca9826a72c95d3b68
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 28 21:52:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 28 21:55:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7dcc6d1
7
8 dev-python/packaging: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/packaging/packaging-21.3-r1.ebuild | 37 ---------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/dev-python/packaging/packaging-21.3-r1.ebuild b/dev-python/packaging/packaging-21.3-r1.ebuild
16 deleted file mode 100644
17 index c90d7a08688c..000000000000
18 --- a/dev-python/packaging/packaging-21.3-r1.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Core utilities for Python packages"
31 -HOMEPAGE="
32 - https://github.com/pypa/packaging/
33 - https://pypi.org/project/packaging/"
34 -SRC_URI="
35 - https://github.com/pypa/packaging/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
36 -
37 -SLOT="0"
38 -LICENSE="|| ( Apache-2.0 BSD-2 )"
39 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
40 -
41 -RDEPEND="
42 - || (
43 - >=dev-python/pyparsing-3.0.6[${PYTHON_USEDEP}]
44 - <dev-python/pyparsing-3.0.5[${PYTHON_USEDEP}]
45 - )
46 -"
47 -DEPEND="
48 - test? (
49 - dev-python/pretend[${PYTHON_USEDEP}]
50 - )
51 -"
52 -
53 -distutils_enable_tests pytest
54 -
55 -python_test() {
56 - epytest --capture=no
57 -}