summaryrefslogtreecommitdiff
path: root/dev-python/pyicu
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-11-05 19:02:56 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-11-05 19:02:56 +0000
commit864ccd3aba62b24728eb0b963d8a1093555475c0 (patch)
treebb5a89762d7f5ee123655bf5cdf9406b27dc1759 /dev-python/pyicu
parent64f2ecf7f878941ddcb49fbeb10e26352844b683 (diff)
downloadbaldeagleos-repo-864ccd3aba62b24728eb0b963d8a1093555475c0.tar.gz
baldeagleos-repo-864ccd3aba62b24728eb0b963d8a1093555475c0.tar.xz
baldeagleos-repo-864ccd3aba62b24728eb0b963d8a1093555475c0.zip
Adding metadata
Diffstat (limited to 'dev-python/pyicu')
-rw-r--r--dev-python/pyicu/Manifest2
-rw-r--r--dev-python/pyicu/files/pyicu-2.15.2-gcc15.patch21
-rw-r--r--dev-python/pyicu/pyicu-2.16.ebuild (renamed from dev-python/pyicu/pyicu-2.15.2.ebuild)7
3 files changed, 3 insertions, 27 deletions
diff --git a/dev-python/pyicu/Manifest b/dev-python/pyicu/Manifest
index 49de0eb46ffa..e9e51931f8f4 100644
--- a/dev-python/pyicu/Manifest
+++ b/dev-python/pyicu/Manifest
@@ -1,2 +1,2 @@
-DIST pyicu-v2.15.2.tar.bz2 199619 BLAKE2B ae08a808d74a574a61eae2f3b2701a2fb379c790115ca6018a1511b1fc4e84864a2c9f426e3566e924285047ccf432a8f09b81529a3e0c9ef8284e8d72b75fcd SHA512 5effb58c9da01d5cc37289991dc82cf1d6aac07b381f8b7355171a3a4cce8528c550ae27ba58342b28ff8ad15ba6266fdaccf2e3c38347c9073c2caeebf04c81
DIST pyicu-v2.15.3.tar.bz2 199667 BLAKE2B fc5f689be3383b6ce148a77e03ca6f25c884ea72cea5c6542d5cd8cb4f4e7ba69489257c85e9186a13ea0fbaafe81e9b4056c7bf84a57766b8544c0dbd0f3475 SHA512 a566badd7c0b0031e60b2d595db26bce1d874473d570facabfa76b5a099afb9bfa88c5ecced10a399c9032d75deb819a302cb4addbce61c1d33a7d58fdaffcb4
+DIST pyicu-v2.16.tar.bz2 200082 BLAKE2B 084b872357b8211da6499a020091f8bde8b4480eab25d3dd4d0db6f888c53e5c3a8e60e20703babd1c29196b7f6dd434fe8ada261ce6d1a2eaf033d260fe577b SHA512 ade25fa86c16c94a2c4d7553d591a6bc3ceb1ea33c2801b77fb9d93bb043e31de45fc4451068e177feefd2e9b11609973b29c486ec6e2c114915b39166fdcbc1
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 <vajda@pyicu.org>
-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.16.ebuild
index f8960a8c5589..5e62930ecb08 100644
--- a/dev-python/pyicu/pyicu-2.15.2.ebuild
+++ b/dev-python/pyicu/pyicu-2.16.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86 ~arm64-macos ~x64-macos"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86 ~arm64-macos ~x64-macos"
DEPEND="
dev-libs/icu:=
@@ -38,10 +38,7 @@ BDEPEND="
DOCS=( CHANGES CREDITS README.md )
-PATCHES=(
- "${FILESDIR}"/${P}-gcc15.patch
-)
-
+EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {