diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-03-19 08:23:00 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-03-19 08:36:24 +0100 |
commit | fe7bb05a3da99459b02a1b3bcb05016120298ca6 (patch) | |
tree | 517180d4d20a6f0e1f880e37abafda012c83c894 /dev-python/soupsieve | |
parent | sci-calculators/bc-gh: remove old versions (diff) | |
download | gentoo-fe7bb05a3da99459b02a1b3bcb05016120298ca6.tar.gz gentoo-fe7bb05a3da99459b02a1b3bcb05016120298ca6.tar.bz2 gentoo-fe7bb05a3da99459b02a1b3bcb05016120298ca6.zip |
dev-python/soupsieve: Bump to 2.2.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/soupsieve')
-rw-r--r-- | dev-python/soupsieve/Manifest | 1 | ||||
-rw-r--r-- | dev-python/soupsieve/soupsieve-2.2.1.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/soupsieve/Manifest b/dev-python/soupsieve/Manifest index 89038333174c..3d9b4676238f 100644 --- a/dev-python/soupsieve/Manifest +++ b/dev-python/soupsieve/Manifest @@ -1 +1,2 @@ +DIST soupsieve-2.2.1.tar.gz 99298 BLAKE2B 94532421f3b8e49d6ab75a54a60ac861a78eee9f6792ded096e39a8a43d46d195cff9b7d8feab918b0f2debc8a6dd35226ab714384fa7f4d795176e269b6c4cb SHA512 c1339cfca237af7f8915b6d644b8271f769f9a37aa68f8acf536236551baaf9bb44a2f2a736f9168a7649cde14d37b8c24614c9491acbf81e3f4fdaea96b4928 DIST soupsieve-2.2.tar.gz 99261 BLAKE2B 637bed198a62a7f92f6b3c022dcb9a579c15a3dcb1e3581b5a18b9ff804c2075c976c3478f86d2400841c177f3160dc05da41991ca56731c91e6db5b95262671 SHA512 26402c831c19c9b133442dd8ea31363e1eadc3cafe172b933cdbc746df6dc9961e930d4fbe8399b847848bf3fcd5893d2449e912ed0cdf8766468997acf5ee87 diff --git a/dev-python/soupsieve/soupsieve-2.2.1.ebuild b/dev-python/soupsieve/soupsieve-2.2.1.ebuild new file mode 100644 index 000000000000..4dfffada94ea --- /dev/null +++ b/dev-python/soupsieve/soupsieve-2.2.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A modern CSS selector implementation for BeautifulSoup" +HOMEPAGE="https://github.com/facelessuser/soupsieve/ + https://pypi.org/project/soupsieve/" +SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos" + +BDEPEND=" + test? ( + dev-python/beautifulsoup[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |