summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2023-09-23 02:50:04 +0200
committerJakov Smolić <jsmolic@gentoo.org>2023-09-23 02:50:04 +0200
commitef0ca954c1a777046f328f5f06e171f1c2a5034b (patch)
tree2d997524d13f6cf5105eedbb101905f8cfeeb654
parentsys-devel/gcc: add 12.3.1_p20230922 (diff)
downloadgentoo-ef0ca954c1a777046f328f5f06e171f1c2a5034b.tar.gz
gentoo-ef0ca954c1a777046f328f5f06e171f1c2a5034b.tar.bz2
gentoo-ef0ca954c1a777046f328f5f06e171f1c2a5034b.zip
dev-python/importlib-resources: treeclean
Closes: https://bugs.gentoo.org/910549 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
-rw-r--r--dev-python/importlib-resources/Manifest2
-rw-r--r--dev-python/importlib-resources/importlib-resources-5.12.0.ebuild46
-rw-r--r--dev-python/importlib-resources/importlib-resources-6.0.0.ebuild46
-rw-r--r--dev-python/importlib-resources/metadata.xml21
-rw-r--r--profiles/package.mask6
-rw-r--r--profiles/updates/2Q-20231
6 files changed, 0 insertions, 122 deletions
diff --git a/dev-python/importlib-resources/Manifest b/dev-python/importlib-resources/Manifest
deleted file mode 100644
index 75ff8b79c797..000000000000
--- a/dev-python/importlib-resources/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST importlib_resources-5.12.0.tar.gz 39894 BLAKE2B bbae92bd62b54afc0093f8daa8f0fabaf18da7b2c9c578a2e6b6b7cc3207384e4fd037762c4ac8bc862900ac2da112a3b8ae236b1d3ca072c739f2d1ad3edd36 SHA512 00875d82cf3d2103872079ee2882c4000cc65141d97988265721cc6861a64dfe480e5c2191a2b22d0b9b9e42de1fc06d54f6d8eb4f37aaf91a819ee9306dc06f
-DIST importlib_resources-6.0.0.tar.gz 35570 BLAKE2B c71f0dbfe49eebd63c0e56e25f019cb30d9fbddd6e4db8fa739bd44d5c00f429bf732a1e2f2be74ebc051c020c0fc0a678cf8eb6c2b9b52e340abe1a62144aae SHA512 c7475b0be67bf8655998df78d2683a733f20e85eb4b03f04508b3408a8751e0b4a8fcbe695feb83144c9b6de6e4ba93dd3419647d1db2ad8d92ff7dbbf6970c4
diff --git a/dev-python/importlib-resources/importlib-resources-5.12.0.ebuild b/dev-python/importlib-resources/importlib-resources-5.12.0.ebuild
deleted file mode 100644
index d1ac2513af5f..000000000000
--- a/dev-python/importlib-resources/importlib-resources-5.12.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_PEP517=flit
-# This is a backport of importlib.resources that's present since py3.9.
-# However, the version in 3.9 is buggy, so matplotlib needs it on 3.9
-# as well.
-PYTHON_COMPAT=( pypy3 python3_9 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Read resources from Python packages"
-HOMEPAGE="
- https://github.com/python/importlib_resources/
- https://pypi.org/project/importlib-resources/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos ~x64-solaris"
-
-RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/zipp-3.7.0-r1[${PYTHON_USEDEP}]
- ' 3.8 3.9)
-"
-
-distutils_enable_tests unittest
-
-src_configure() {
- grep -q 'build-backend = "setuptools' pyproject.toml ||
- die "Upstream changed build-backend, recheck"
- # write a custom pyproject.toml to ease setuptools bootstrap
- cat > pyproject.toml <<-EOF || die
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
-
- [project]
- name = "importlib_resources"
- version = "${PV}"
- description = "Read resources from Python packages"
- EOF
-}
diff --git a/dev-python/importlib-resources/importlib-resources-6.0.0.ebuild b/dev-python/importlib-resources/importlib-resources-6.0.0.ebuild
deleted file mode 100644
index 2bf49ea9e1e8..000000000000
--- a/dev-python/importlib-resources/importlib-resources-6.0.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_PEP517=flit
-# This is a backport of importlib.resources that's present since py3.9.
-# However, the version in 3.9 is buggy, so matplotlib needs it on 3.9
-# as well.
-PYTHON_COMPAT=( pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Read resources from Python packages"
-HOMEPAGE="
- https://github.com/python/importlib_resources/
- https://pypi.org/project/importlib-resources/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris"
-
-RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/zipp-3.7.0-r1[${PYTHON_USEDEP}]
- ' 3.8 3.9)
-"
-
-distutils_enable_tests unittest
-
-src_configure() {
- grep -q 'build-backend = "setuptools' pyproject.toml ||
- die "Upstream changed build-backend, recheck"
- # write a custom pyproject.toml to ease setuptools bootstrap
- cat > pyproject.toml <<-EOF || die
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
-
- [project]
- name = "importlib_resources"
- version = "${PV}"
- description = "Read resources from Python packages"
- EOF
-}
diff --git a/dev-python/importlib-resources/metadata.xml b/dev-python/importlib-resources/metadata.xml
deleted file mode 100644
index 705cf06b9e86..000000000000
--- a/dev-python/importlib-resources/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches/>
- <longdescription>
- Backport of Python standard library importlib.resources module
- for Python 2.7, and 3.4 through 3.8. Users of Python 3.9 and beyond
- should use the standard library module, since for these versions,
- importlib_resources just delegates to that module.
- </longdescription>
- <upstream>
- <remote-id type="github">python/importlib_resources</remote-id>
- <remote-id type="pypi">importlib-resources</remote-id>
- <bugs-to>https://github.com/python/importlib_resources/issues</bugs-to>
- <doc>https://importlib-resources.readthedocs.io/</doc>
- </upstream>
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index 3037dc4ca2ad..8c5887495193 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -310,12 +310,6 @@ sys-apps/systemd-tmpfiles
sys-boot/systemd-boot
sys-fs/udev
-# Michał Górny <mgorny@gentoo.org> (2023-07-19)
-# Backport package specific to Python 3.9. No longer necessary now
-# that pypy3 is 3.10.
-# Removal on 2023-08-18. Bug #910549.
-dev-python/importlib-resources
-
# Mike Pagano <mpagano@gentoo.org> (2023-07-18)
# Mask impacted kernels vulnerable to StackRot and
# ones with a memory corruption bug
diff --git a/profiles/updates/2Q-2023 b/profiles/updates/2Q-2023
index ce332d5bfb43..a45974bf253c 100644
--- a/profiles/updates/2Q-2023
+++ b/profiles/updates/2Q-2023
@@ -1,7 +1,6 @@
move dev-python/jupyter_core dev-python/jupyter-core
move dev-python/mkdocs_pymdownx_material_extras dev-python/mkdocs-pymdownx-material-extras
move dev-python/jupyter_client dev-python/jupyter-client
-move dev-python/importlib_resources dev-python/importlib-resources
move dev-python/importlib_metadata dev-python/importlib-metadata
move dev-python/python-keyutils dev-python/keyutils
move dev-python/notebook_shim dev-python/notebook-shim