commit: e8fbfdd38559c2aa964aaef86a9df4b56e79e8d4 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Nov 4 06:19:17 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Nov 4 06:49:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8fbfdd3
dev-python/regex: Bump to 2025.11.3 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/regex/Manifest | 1 + dev-python/regex/regex-2025.11.3.ebuild | 37 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/dev-python/regex/Manifest b/dev-python/regex/Manifest index ef6bdc8ea1e6..725c8e40d6c8 100644 --- a/dev-python/regex/Manifest +++ b/dev-python/regex/Manifest @@ -1,2 +1,3 @@ DIST regex-2025.10.23.tar.gz 401266 BLAKE2B 56441db882934d0472f8ccec3c4f50ce6b45db66ee49d5275f4b90ec2d4d4c552e68fb53b965b45bb37d4e4ce864f8cb4b0341228e92959b90a71adbf7a18ef1 SHA512 6ce878dc9950dff432d358e8a5955df8ba0ff3cada1a70c37812aa3f4f168d9ea8f4c05976b29c6bafbfdb45e2c0692a60613f5144c4d531b7dbd603a993320c +DIST regex-2025.11.3.tar.gz 414669 BLAKE2B df6ddec6ab70f9119ecc780a5a69061cd19ed2067d8d5311712e2804b2d039988e243921366224c2e983cbbc4d4c38516839f7683b710e956a77e66d0ec1efc8 SHA512 929c4de507416c435343d7e27f2ce05520166c1b7499887747055c10dd05e7a424e009d3bf9661038707fbe99bd3cd0eda1eab2d5743d5bd8cae4bfd576390c4 DIST regex-2025.9.18.tar.gz 400917 BLAKE2B 0239c15afed04de12985576709abcdf294b248d084a9b9126fd3bc734ddb51df83a35578602675af04df82819b9dcf65228b918c4d39fc762106f62b470b96ad SHA512 15fa2b951045cc1fa1d11d95cf6223f33f2d0d5b51637a9e5e99966176aa973deb34cf9a8baf5c6ebe49b26e3edb64bda1432bbf4610aefa3981385a404d1f51 diff --git a/dev-python/regex/regex-2025.11.3.ebuild b/dev-python/regex/regex-2025.11.3.ebuild new file mode 100644 index 000000000000..0ba32131518c --- /dev/null +++ b/dev-python/regex/regex-2025.11.3.ebuild @@ -0,0 +1,37 @@ +# 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 +# pypy isn't supported upstream because of its UTF8 representation for strings +# See https://github.com/mrabarnett/mrab-regex/issues/521#issuecomment-1936260187. +PYTHON_COMPAT=( python3_{11..14} python3_{13,14}t ) + +inherit distutils-r1 pypi + +DESCRIPTION="Alternative regular expression module to replace re" +HOMEPAGE=" + https://github.com/mrabarnett/mrab-regex/ + https://pypi.org/project/regex/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos" +IUSE="doc" + +distutils_enable_tests unittest + +python_install_all() { + use doc && local HTML_DOCS=( docs/Features.html ) + local DOCS=( README.rst docs/*.rst ) + + distutils-r1_python_install_all +} + +python_test() { + cd "${BUILD_DIR}/install$(python_get_sitedir)/regex/tests" || die + eunittest +}
