summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-09-16 07:07:21 +0200
committerMichał Górny <mgorny@gentoo.org>2025-09-16 07:47:58 +0200
commit1e5599e37756eb0469878d239ae90ee933df3409 (patch)
treea1eece323747bea200bb990e2bbdc01a34328a39 /dev-python
parentcb994444950c44ea02dd2d5d4c60bc8e8ecea760 (diff)
downloadgentoo-1e5599e37756eb0469878d239ae90ee933df3409.tar.gz
gentoo-1e5599e37756eb0469878d239ae90ee933df3409.tar.bz2
gentoo-1e5599e37756eb0469878d239ae90ee933df3409.zip
dev-python/pyicu: Bump to 2.15.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pyicu/Manifest1
-rw-r--r--dev-python/pyicu/pyicu-2.15.3.ebuild46
2 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/pyicu/Manifest b/dev-python/pyicu/Manifest
index 72203dde249c..49de0eb46ffa 100644
--- a/dev-python/pyicu/Manifest
+++ b/dev-python/pyicu/Manifest
@@ -1 +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
diff --git a/dev-python/pyicu/pyicu-2.15.3.ebuild b/dev-python/pyicu/pyicu-2.15.3.ebuild
new file mode 100644
index 000000000000..94e7a953dfc1
--- /dev/null
+++ b/dev-python/pyicu/pyicu-2.15.3.ebuild
@@ -0,0 +1,46 @@
+# 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 )
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ epytest test
+}