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, 03 Jan 2022 22:30:17
Message-Id: 1641248986.acf80f4500c658217e67c0240d6e8cc64904c826.mgorny@gentoo
1 commit: acf80f4500c658217e67c0240d6e8cc64904c826
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 3 22:28:31 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 3 22:29:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acf80f45
7
8 dev-python/packaging: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/packaging/Manifest | 1 -
13 dev-python/packaging/packaging-21.0.ebuild | 34 ------------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/packaging/Manifest b/dev-python/packaging/Manifest
17 index 5b1b36bc6fa5..9cb854a5d2cd 100644
18 --- a/dev-python/packaging/Manifest
19 +++ b/dev-python/packaging/Manifest
20 @@ -1,2 +1 @@
21 -DIST packaging-21.0.gh.tar.gz 79977 BLAKE2B 4ddfa5069f463abeab09ed92650a174d58622927d24b22eed184506d36d9144520e90cd5ea6570e7c06af3c768eda608decc4befb402942e6d6cd1ba5cb10b42 SHA512 612744ad8d0b834709af5d4e2415679271e4cdc304a2e9297ec741e37e62241a041b678568130cd733828a1bf2e5885d62de706934f4018195566107989a6f6b
22 DIST packaging-21.3.gh.tar.gz 80471 BLAKE2B a16ba1e74f0c868816131a7cb07b7aa0c14760cf3ad4c3d6737ac30ef99276c33b1f018d29e710f28e8d0cfb0e3e6b91e375d1d17e2b7ec6302164377cd503d0 SHA512 8960deacda26877b73d98a3b632e760e902a16ec7a04707f84044980e4d4fb33e4f584db115c9008066aa876079f28633bafe37fbd5ce9a23830b6b89eb4ae7a
23
24 diff --git a/dev-python/packaging/packaging-21.0.ebuild b/dev-python/packaging/packaging-21.0.ebuild
25 deleted file mode 100644
26 index 86b426ef567e..000000000000
27 --- a/dev-python/packaging/packaging-21.0.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Core utilities for Python packages"
40 -HOMEPAGE="
41 - https://github.com/pypa/packaging/
42 - https://pypi.org/project/packaging/"
43 -SRC_URI="
44 - https://github.com/pypa/packaging/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
45 -
46 -SLOT="0"
47 -LICENSE="|| ( Apache-2.0 BSD-2 )"
48 -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"
49 -
50 -RDEPEND="
51 - <dev-python/pyparsing-3[${PYTHON_USEDEP}]
52 -"
53 -DEPEND="
54 - test? (
55 - dev-python/pretend[${PYTHON_USEDEP}]
56 - )
57 -"
58 -
59 -distutils_enable_tests pytest
60 -
61 -python_test() {
62 - epytest --capture=no
63 -}