From: Patrick McLean Date: Tue, 26 Nov 2019 23:55:49 +0000 (-0800) Subject: dev-python/soupsieve: New package X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=39dc3e2d3a694e5ca23c5b79b3150e53a764d8a0;p=gentoo.git dev-python/soupsieve: New package Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Patrick McLean --- diff --git a/dev-python/soupsieve/Manifest b/dev-python/soupsieve/Manifest new file mode 100644 index 000000000000..9facd4bb0ed6 --- /dev/null +++ b/dev-python/soupsieve/Manifest @@ -0,0 +1 @@ +DIST soupsieve-1.9.5.tar.gz 99119 BLAKE2B adf2f068ca536583557dff5b86fbb8020de8139c346ab124c8f78d91d2c0db49553cc9b8580a4e8af0fb74e19a8f8b6e5459b654a900034d76a677e60ea0fece SHA512 38cf37c7080ec6054291a076eb4b152bbf5267b9fed25f933a340345cd7807f14f4a5300707090fd233382e96841f6a33305876cf02740c96dd6aa9d2af06868 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 @@ + + + + + python@gentoo.org + Python + + + soupsieve + facelessuser/soupsieve + + 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..71975a1c656b --- /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 ~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