commit: 5289370e4569f2479802d0c37b3e51fd22c914cd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 31 10:14:54 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 31 10:19:11 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5289370e
dev-python/exceptiongroup: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/exceptiongroup/Manifest | 1 -
.../exceptiongroup/exceptiongroup-1.2.2.ebuild | 39 ----------------------
2 files changed, 40 deletions(-)
diff --git a/dev-python/exceptiongroup/Manifest
b/dev-python/exceptiongroup/Manifest
index f6594f642742..057140d5394f 100644
--- a/dev-python/exceptiongroup/Manifest
+++ b/dev-python/exceptiongroup/Manifest
@@ -1,2 +1 @@
-DIST exceptiongroup-1.2.2.tar.gz 28883 BLAKE2B
713a1dcce6575eb8513fc5016b5ef5c11cafeb910f96ab556916da4c109be228cabc078551244d04acb9521ae7af65e1d93a02d7f40fa985760421138f7ccb73
SHA512
dedee1401577d1047a99078552cf24346c55f1e9a281845f327d8ace30b22659877743ce1c8b60fa605988abcac14432138020e9d1c109df911f86993cbe2082
DIST exceptiongroup-1.3.0.tar.gz 29749 BLAKE2B
42b449f2de3b42433c96b939e256dfb1d609fcb478724e3b715aebbb46697c9ae99ad08012a2b7a1c23e1e479f315ff8643e0f13bd87d4c369eb2ddf4f388fca
SHA512
b8cbdaf7e7199240b931ca37676a2d5c3465e6ed09efcc23fe660c9fd911d5dde092fb66dfa70ec82dc49404e669bbdb5c55b2b26ef816c189e54797b6225833
diff --git a/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild
b/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild
deleted file mode 100644
index 6c4d0bca4306..000000000000
--- a/dev-python/exceptiongroup/exceptiongroup-1.2.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit_scm
-PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Backport of PEP 654 (exception groups)"
-HOMEPAGE="
- https://github.com/agronholm/exceptiongroup/
- https://pypi.org/project/exceptiongroup/
-"
-
-LICENSE="MIT PSF-2.4"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv
~s390 sparc x86"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
-
- case ${EPYTHON} in
- pypy3.11)
- # exception message mismatch
- # https://github.com/agronholm/exceptiongroup/issues/141
- EPYTEST_DESELECT+=(
-
tests/test_exceptions.py::BadConstructorArgs::test_bad_EG_construction__too_few_args
-
tests/test_exceptions.py::BadConstructorArgs::test_bad_EG_construction__too_many_args
- )
- ;;
- esac
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}