diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-19 05:19:49 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-19 05:19:49 +0100 |
commit | 432ba82ecdcdae75c435f9f7b0a379d6a2da3f16 (patch) | |
tree | 031c56e91290a4dd6cf69a159d44072c7eea0d6e /dev-python/rebulk | |
parent | dev-python/caldav: Bump to 1.1.1 (diff) | |
download | gentoo-432ba82ecdcdae75c435f9f7b0a379d6a2da3f16.tar.gz gentoo-432ba82ecdcdae75c435f9f7b0a379d6a2da3f16.tar.bz2 gentoo-432ba82ecdcdae75c435f9f7b0a379d6a2da3f16.zip |
dev-python/rebulk: Bump to 3.2.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/rebulk')
-rw-r--r-- | dev-python/rebulk/Manifest | 1 | ||||
-rw-r--r-- | dev-python/rebulk/rebulk-3.2.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest index 069eda8d1fc1..2ac8ae77309a 100644 --- a/dev-python/rebulk/Manifest +++ b/dev-python/rebulk/Manifest @@ -1 +1,2 @@ DIST rebulk-3.1.0.gh.tar.gz 252775 BLAKE2B 9624a02f8df950e3efa77c0fe7c3dfa083c255b10c118a571aa4f4fb8ee95f663f7ba45e66e77ec4c3fb801a6a1e8e369b04a6ec1323aeed6c8b13deb286614c SHA512 591bbfeef1d472722d6250cd35f308c0ac9c5f2dee77f4702f1d9fa1e41bb1a16bbf7c4aa634d0b4f43d7f9093bc1e2faa38edb0170212fea2502ff6a284fcab +DIST rebulk-3.2.0.gh.tar.gz 254923 BLAKE2B ea9501aa70d7842fecab8621ca7c58aed76dba419c46f92e0fc7fa7e300f0ac9d7a457fc3b6bd14d02296449e15c918d63be8060ab1df4a51fe77e383daf6c33 SHA512 17928a0fcf1a78a592289bb9c7c0ea48e8b4d93ccd77793065a51a54258c2af857e9da6955cad552fa53caf76a95ee002a789c35fe248a909971c8afc7b6dfa5 diff --git a/dev-python/rebulk/rebulk-3.2.0.ebuild b/dev-python/rebulk/rebulk-3.2.0.ebuild new file mode 100644 index 000000000000..2040332eb271 --- /dev/null +++ b/dev-python/rebulk/rebulk-3.2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python library that performs advanced searches in strings" +HOMEPAGE=" + https://github.com/Toilal/rebulk/ + https://pypi.org/project/rebulk/ +" +SRC_URI=" + https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +distutils_enable_tests pytest + +python_prepare_all() { + # Remove base64-encoded zip archive with pytest. + rm runtests.py || die + + distutils-r1_python_prepare_all +} |