diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 21:03:06 +0100 |
commit | 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 (patch) | |
tree | 7681bbd4e8b05407772df40a4bf04cbbc8afc3fa /dev-python/regex | |
parent | 30a9caf154332f12ca60756e1b75d2f0e3e1822d (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/regex')
-rw-r--r-- | dev-python/regex/Manifest | 3 | ||||
-rw-r--r-- | dev-python/regex/metadata.xml | 12 | ||||
-rw-r--r-- | dev-python/regex/regex-2017.04.05.ebuild | 46 |
3 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/regex/Manifest b/dev-python/regex/Manifest new file mode 100644 index 000000000000..8b031af3fd05 --- /dev/null +++ b/dev-python/regex/Manifest @@ -0,0 +1,3 @@ +DIST regex-2017.04.05.tar.gz 601638 BLAKE2B a7c094887b602f24e68c51c92098604c462d506b13f064beaebdec081fd28d39dac9934fface0de0444dc6145af5f4c0e8ab2cd3b65ecfc2c1ca522682b3bf95 SHA512 4c3e440e11f57e2323892e10fbed7f2c89b35771fdc970164ba69bb154dde535f6edb51a0997c924eb776c61e5efd1d04001abd343110518a89b5b7bf148ae49 +EBUILD regex-2017.04.05.ebuild 1213 BLAKE2B cdaf15318c99a8b8bcb3f288f5e62aebf6ce4835d1086a05cfa1e90874aa51e7a01df68b06c8519ea7cbc749da6f523118e8b5653d4461d09345d06522351175 SHA512 862d5f08a3a19d6bf23a5302ce9e1412e86a07b567b3ddfdce80c8dcbe17f0a409f76cbe9d1219f417a249a3c1abf732df01491c130caeff7761d4e6b84a4dbb +MISC metadata.xml 384 BLAKE2B 4928f66b54b5e4de6a8b913207ec6e46c124e55510eac304a7fd46c6ca63cce60704757e9289bf35d2d58e9ddcd4aa98d751a079c79f09dda9206553096e0561 SHA512 3db0a8abe7036cd9d0fd8b1450598436dbb30581806380ad51c3d0f49d129325aba1bad9700d14adffc7cfd199c4ec3377e6eb0225244bfc82368bbb50548e07 diff --git a/dev-python/regex/metadata.xml b/dev-python/regex/metadata.xml new file mode 100644 index 000000000000..91a476b448aa --- /dev/null +++ b/dev-python/regex/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> + <upstream> + <remote-id type="pypi">regex</remote-id> + <remote-id type="bitbucket">mrabarnett/mrab-regex</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/regex/regex-2017.04.05.ebuild b/dev-python/regex/regex-2017.04.05.ebuild new file mode 100644 index 000000000000..bde151338bb2 --- /dev/null +++ b/dev-python/regex/regex-2017.04.05.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) + +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() { + local DOCS="${DOCS} docs/UnicodeProperties.txt" + use doc && local HTML_DOCS=( docs/Features.html ) + + distutils-r1_python_install_all +} |