dev-python/python-distutils-extra: add 3.3

Bug: https://bugs.gentoo.org/719788
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2026-05-15 01:22:22 +02:00
parent 403e0e2637
commit 36f5314cee
2 changed files with 43 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST python-distutils-extra-2.47.tar.bz2 38346 BLAKE2B 2f9ad3c8c429570bd45c06af3eb2b12bf5f539c49e3b3a40c3558e67a4e4fc9f0bca0c4217bac6c8792e0514d75ac2b4b112dbeaffa96d626fffcc237860342d SHA512 b848b8ccfd84289e5482ba264a8d8d81cdbeba97358c9fff6fb02040eeb740bacfcc19b302e56a95b400528f7e03390ea4073b8c80d1e5a5e61e1b6c46b39648
DIST python-distutils-extra-debian-3.3.tar.bz2 36563 BLAKE2B 033e83a69ec1ffc2980b4c4040dec1a0a466d3da7ff52e552c8d145e0f6b7bd3d93c4d214fde824ba09aa576054f6b8644e4c68bad30b9a0d3768ca43a6c7e5e SHA512 062c92a0eb6654d38e1d5934d1f98d04a83a3514d0f0fa997a84dd28d9b56d89c60dd000e0a89625d96cf94c1204ced00bc7b132b5d5be011f370afd9fd69a91

View File

@@ -0,0 +1,42 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
MY_P="${PN}-debian-${PV}"
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
DESCRIPTION="Gettext support, themed icons and scrollkeeper-based documentation in distutils"
HOMEPAGE="
https://salsa.debian.org/python-team/packages/python-distutils-extra/
https://launchpad.net/python-distutils-extra/
"
SRC_URI="
https://salsa.debian.org/python-team/packages/python-distutils-extra/-/archive/debian/${PV}/${MY_P}.tar.bz2
"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS=( doc/{README,FAQ} )
BDEPEND="
test? (
>=dev-libs/gobject-introspection-1.82.0-r2
dev-python/httplib2[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
dev-util/intltool
)
"
python_test() {
local -x SETUPTOOLS_USE_DISTUTILS=stdlib
"${EPYTHON}" test/auto.py -v || die "Tests fail with ${EPYTHON}"
}