diff options
author | Nils Freydank <holgersson@posteo.de> | 2018-10-27 19:54:10 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-10-30 10:32:18 +0100 |
commit | b0236ec7c52e3b15f1c97cdeab7844325ded1f1b (patch) | |
tree | 53b099ef3ba639d15ac243b85c06b18266aa7c5f /dev-python/regex | |
parent | dev-python/python-markdown-math: Add new package 0.6 (diff) | |
download | gentoo-b0236ec7c52e3b15f1c97cdeab7844325ded1f1b.tar.gz gentoo-b0236ec7c52e3b15f1c97cdeab7844325ded1f1b.tar.bz2 gentoo-b0236ec7c52e3b15f1c97cdeab7844325ded1f1b.zip |
dev-python/regex: Add pypy3 support
Signed-off-by: Nils Freydank <holgersson@posteo.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Pull-Request: https://github.com/gentoo/gentoo/pull/10166
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/regex')
-rw-r--r-- | dev-python/regex/regex-2017.04.05-r1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/regex/regex-2017.04.05-r1.ebuild b/dev-python/regex/regex-2017.04.05-r1.ebuild new file mode 100644 index 000000000000..f67aa62e686e --- /dev/null +++ b/dev-python/regex/regex-2017.04.05-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 ) + +inherit distutils-r1 flag-o-matic + +DESCRIPTION="Alternative regular expression module to replace re" +HOMEPAGE="https://bitbucket.org/mrabarnett/mrab-regex" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" +IUSE="doc" + +DOCS=( README docs/UnicodeProperties.txt ) + +python_compile() { + if ! python_is_python3; then + local CFLAGS=${CFLAGS} + append-cflags -fno-strict-aliasing + fi + distutils-r1_python_compile +} + +python_test() { + local msg="tests failed under ${EPYTHON}" + # https://bitbucket.org/mrabarnett/mrab-regex/issue/145/1-fail-in-testsuite-under-pypy + einfo "There is one trivial fail of test test_empty_array under pypy" + + if python_is_python3; then + "${PYTHON}" Python3/test_regex.py || die "${msg}" + else + "${PYTHON}" Python2/test_regex.py || die "${msg}" + fi +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/Features.html ) + + distutils-r1_python_install_all +} |