diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-10-29 20:57:06 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-10-29 21:37:42 +0200 |
commit | b6d24667ef56cd0878f23a37e9e5905635677b0d (patch) | |
tree | 519220568cd4a6f797a82c31dc355872ca8ed962 /dev-python/pyicu | |
parent | sys-cluster/kube-scheduler: 1.22.3 bump (diff) | |
download | gentoo-b6d24667ef56cd0878f23a37e9e5905635677b0d.tar.gz gentoo-b6d24667ef56cd0878f23a37e9e5905635677b0d.tar.bz2 gentoo-b6d24667ef56cd0878f23a37e9e5905635677b0d.zip |
dev-python/pyicu: Bump to 2.8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyicu')
-rw-r--r-- | dev-python/pyicu/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyicu/pyicu-2.8.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/pyicu/Manifest b/dev-python/pyicu/Manifest index 5baa55744157..cccd750bd899 100644 --- a/dev-python/pyicu/Manifest +++ b/dev-python/pyicu/Manifest @@ -1 +1,2 @@ DIST pyicu-v2.7.4.tar.bz2 241794 BLAKE2B b76455809704b417a42a60f002b1bfcc0fdf03dd4934b514464b06c4c53d1afa2f99645d9b69a131c3c9218f36a18a4412a6742a912450ce47f856dfc088e568 SHA512 bc68d94d2bd070cd1b7a2f214f998831d2f75a3f4528ad5b1d3394b343d357c24daa6b29443d35a7c984ab0bbafd3b45949d1ccbf89b061423329efa08181fc0 +DIST pyicu-v2.8.tar.bz2 242791 BLAKE2B 0492b1fbbb97a92fb90620fb720cf82ddb2e404d4ce4d20d4204c271ae0c32c526e5832f5658205893381c074f6b1e2a3274f1935efac094241fe2afbc7b9c07 SHA512 c8ecc11322de79d42aa0f0336cdc47637af203bbf2782107132d3c194cef3725114ba6fc40bbd2bffc26ce168d6d4e39f069904aa268d0d095c506ddca292051 diff --git a/dev-python/pyicu/pyicu-2.8.ebuild b/dev-python/pyicu/pyicu-2.8.ebuild new file mode 100644 index 000000000000..4c203aac2bbc --- /dev/null +++ b/dev-python/pyicu/pyicu-2.8.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +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 ~x86" + +RDEPEND="dev-libs/icu:=" +DEPEND="${RDEPEND}" +BDEPEND=" + test? ( dev-python/six[${PYTHON_USEDEP}] )" + +DOCS=( CHANGES CREDITS README.md ) + +distutils_enable_tests pytest |