diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-12-15 18:09:03 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-12-15 18:09:03 +0000 |
commit | 7bc9c63c9da678a7e6fceb095d56c634afd22c56 (patch) | |
tree | 4a67d50a439e9af63947e5f8b6ba3719af98b6c9 /dev-python/soupsieve | |
parent | b284a3168fa91a038925d2ecf5e4791011ea5e7d (diff) |
gentoo resync : 15.12.2019
Diffstat (limited to 'dev-python/soupsieve')
-rw-r--r-- | dev-python/soupsieve/Manifest | 3 | ||||
-rw-r--r-- | dev-python/soupsieve/metadata.xml | 12 | ||||
-rw-r--r-- | dev-python/soupsieve/soupsieve-1.9.5.ebuild | 33 |
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/soupsieve/Manifest b/dev-python/soupsieve/Manifest new file mode 100644 index 000000000000..4c3836820ee7 --- /dev/null +++ b/dev-python/soupsieve/Manifest @@ -0,0 +1,3 @@ +DIST soupsieve-1.9.5.tar.gz 99119 BLAKE2B adf2f068ca536583557dff5b86fbb8020de8139c346ab124c8f78d91d2c0db49553cc9b8580a4e8af0fb74e19a8f8b6e5459b654a900034d76a677e60ea0fece SHA512 38cf37c7080ec6054291a076eb4b152bbf5267b9fed25f933a340345cd7807f14f4a5300707090fd233382e96841f6a33305876cf02740c96dd6aa9d2af06868 +EBUILD soupsieve-1.9.5.ebuild 902 BLAKE2B 6b874a4b1a9cf3417d656f1bd0480434fcec9cd9bfec78c48974b55359990b99483481d3269fc730d733c90fe6bbc99bcc3dc4757211ec305c34b04d268e3f9a SHA512 fec529a5876d42990a9188a351bc0321d04fc184e4d8ca508d306d6a56bc93c80f7334ac83860caf9b4968f6a81e62e51e6f059daf7ed44d89b8a3d89efa1fdb +MISC metadata.xml 374 BLAKE2B 14941be3b61b2a2c4cdbd3f488d5ee9043a01d2b5d216947d41cc96822a80a34f435ba0bbaaede5ec6bfa21e01e3f7a6ab09d2b79bdc58b843b7da794ed92d25 SHA512 22a17406eaebb4e49a1a78d0edb8c155a8416fd92c21fbfd277ec74f54b65c55de1d08c046c979f1e3a3742900d853d5c820032e22e5e61e4624f2b1bd0c5b45 diff --git a/dev-python/soupsieve/metadata.xml b/dev-python/soupsieve/metadata.xml new file mode 100644 index 000000000000..de74db44b00d --- /dev/null +++ b/dev-python/soupsieve/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">soupsieve</remote-id> + <remote-id type="github">facelessuser/soupsieve</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/soupsieve/soupsieve-1.9.5.ebuild b/dev-python/soupsieve/soupsieve-1.9.5.ebuild new file mode 100644 index 000000000000..0e81dcaba08f --- /dev/null +++ b/dev-python/soupsieve/soupsieve-1.9.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7,8}} pypy{,3} ) + +inherit distutils-r1 + +DESCRIPTION="A modern CSS selector implementation for BeautifulSoup" +HOMEPAGE="https://github.com/facelessuser/soupsieve + https://pypi.python.org/pypi/soupsieve" +SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" + +RDEPEND=" + $(python_gen_cond_dep 'dev-python/backports-functools-lru-cache[${PYTHON_USEDEP}]' -2) +" +BDEPEND="${RDEPEND} + test? ( + dev-python/beautifulsoup[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/lxml[${PYTHON_USEDEP}]' python2_7 'python3*') + dev-python/html5lib[${PYTHON_USEDEP}] + ) +" + +RESTRICT+=" !test? ( test )" + +distutils_enable_tests pytest |