commit: 5adde50126bb46fbdc072b536198525886a4d79f Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Nov 5 02:56:48 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Nov 5 02:56:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5adde501
dev-python/pyicu: Remove old Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pyicu/Manifest | 1 - dev-python/pyicu/files/pyicu-2.15.2-gcc15.patch | 21 ----------- dev-python/pyicu/pyicu-2.15.2.ebuild | 49 ------------------------- 3 files changed, 71 deletions(-) diff --git a/dev-python/pyicu/Manifest b/dev-python/pyicu/Manifest index 49de0eb46ffa..8d8e07c68e0d 100644 --- a/dev-python/pyicu/Manifest +++ b/dev-python/pyicu/Manifest @@ -1,2 +1 @@ -DIST pyicu-v2.15.2.tar.bz2 199619 BLAKE2B ae08a808d74a574a61eae2f3b2701a2fb379c790115ca6018a1511b1fc4e84864a2c9f426e3566e924285047ccf432a8f09b81529a3e0c9ef8284e8d72b75fcd SHA512 5effb58c9da01d5cc37289991dc82cf1d6aac07b381f8b7355171a3a4cce8528c550ae27ba58342b28ff8ad15ba6266fdaccf2e3c38347c9073c2caeebf04c81 DIST pyicu-v2.15.3.tar.bz2 199667 BLAKE2B fc5f689be3383b6ce148a77e03ca6f25c884ea72cea5c6542d5cd8cb4f4e7ba69489257c85e9186a13ea0fbaafe81e9b4056c7bf84a57766b8544c0dbd0f3475 SHA512 a566badd7c0b0031e60b2d595db26bce1d874473d570facabfa76b5a099afb9bfa88c5ecced10a399c9032d75deb819a302cb4addbce61c1d33a7d58fdaffcb4 diff --git a/dev-python/pyicu/files/pyicu-2.15.2-gcc15.patch b/dev-python/pyicu/files/pyicu-2.15.2-gcc15.patch deleted file mode 100644 index aa95cd0b5551..000000000000 --- a/dev-python/pyicu/files/pyicu-2.15.2-gcc15.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bugs.gentoo.org/954147 -https://gitlab.pyicu.org/main/pyicu/-/commit/82fa082b149db81c894e0d887c0fff67c3d2826f - -From 82fa082b149db81c894e0d887c0fff67c3d2826f Mon Sep 17 00:00:00 2001 -From: Andi Vajda <[email protected]> -Date: Mon, 5 May 2025 18:55:09 -0700 -Subject: [PATCH] switch to is_trivially_copyable for sake of g++ 15+ - ---- a/arg.h -+++ b/arg.h -@@ -853,7 +853,7 @@ public: - }; - - #define _IS_POD(T) \ -- static_assert(std::is_trivial<T>::value); \ -+ static_assert(std::is_trivially_copyable<T>::value); \ - static_assert(std::is_standard_layout<T>::value) - - _IS_POD(AnyPythonObject); --- -GitLab diff --git a/dev-python/pyicu/pyicu-2.15.2.ebuild b/dev-python/pyicu/pyicu-2.15.2.ebuild deleted file mode 100644 index c9f4cec08d7e..000000000000 --- a/dev-python/pyicu/pyicu-2.15.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..14} ) - -inherit distutils-r1 - -MY_P=${P/-/-v} -DESCRIPTION="Python bindings for dev-libs/icu" -HOMEPAGE=" - https://gitlab.pyicu.org/main/pyicu/ - https://pypi.org/project/pyicu/ -" -SRC_URI=" - https://gitlab.pyicu.org/main/pyicu/-/archive/v${PV}/${MY_P}.tar.bz2 -" -S=${WORKDIR}/${MY_P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86 ~arm64-macos ~x64-macos" - -DEPEND=" - dev-libs/icu:= -" -RDEPEND=" - ${DEPEND} -" -BDEPEND=" - test? ( - dev-python/six[${PYTHON_USEDEP}] - ) -" - -DOCS=( CHANGES CREDITS README.md ) - -PATCHES=( - "${FILESDIR}"/${P}-gcc15.patch -) - -distutils_enable_tests pytest - -python_test() { - epytest test -}
