commit:     8413cf2c2955533fdf212fea3970c99cf193d4a1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 10 10:19:40 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Feb 10 10:30:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8413cf2c

dev-python/re-assert: Add a fallback to `re` for PyPy3

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../files/re-assert-1.1.0-re-fallback.patch        | 16 ++++++++++
 dev-python/re-assert/re-assert-1.1.0-r2.ebuild     | 36 ++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/re-assert/files/re-assert-1.1.0-re-fallback.patch 
b/dev-python/re-assert/files/re-assert-1.1.0-re-fallback.patch
new file mode 100644
index 000000000000..ad04e09ae5bc
--- /dev/null
+++ b/dev-python/re-assert/files/re-assert-1.1.0-re-fallback.patch
@@ -0,0 +1,16 @@
+diff --git a/re_assert.py b/re_assert.py
+index f6ea6b9..66479c3 100644
+--- a/re_assert.py
++++ b/re_assert.py
+@@ -3,7 +3,10 @@ from __future__ import annotations
+ from typing import Any
+ from typing import Pattern
+ 
+-import regex
++try:
++    import regex
++except ImportError:
++    import re as regex
+ 
+ 
+ class Matches:  # TODO: Generic[AnyStr] (binary pattern support)

diff --git a/dev-python/re-assert/re-assert-1.1.0-r2.ebuild 
b/dev-python/re-assert/re-assert-1.1.0-r2.ebuild
new file mode 100644
index 000000000000..3265b1484c5a
--- /dev/null
+++ b/dev-python/re-assert/re-assert-1.1.0-r2.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Show where your regex match assertion failed"
+HOMEPAGE="
+       https://github.com/asottile/re-assert/
+       https://pypi.org/project/re-assert/
+"
+SRC_URI="
+       https://github.com/asottile/re-assert/archive/v${PV}.tar.gz
+               -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+       $(python_gen_cond_dep '
+               dev-python/regex[${PYTHON_USEDEP}]
+       ' 'python*')
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+       # use `re` as fallback since `regex` doesn't support PyPy
+       "${FILESDIR}/${P}-re-fallback.patch"
+)

Reply via email to