diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-05-11 19:48:25 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-05-11 19:48:25 +0200 |
commit | 8724ef2454665c68cfbb4ca0276a740f8cf3fc62 (patch) | |
tree | 59ee1860de22b83bab718908262520e82f51b998 /dev-python/webassets | |
parent | dev-python/vcrpy: Remove old (diff) | |
download | gentoo-8724ef2454665c68cfbb4ca0276a740f8cf3fc62.tar.gz gentoo-8724ef2454665c68cfbb4ca0276a740f8cf3fc62.tar.bz2 gentoo-8724ef2454665c68cfbb4ca0276a740f8cf3fc62.zip |
dev-python/webassets: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/webassets')
-rw-r--r-- | dev-python/webassets/Manifest | 1 | ||||
-rw-r--r-- | dev-python/webassets/webassets-0.12.1.ebuild | 39 |
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/webassets/Manifest b/dev-python/webassets/Manifest index 1520f131cb55..0680de17ed94 100644 --- a/dev-python/webassets/Manifest +++ b/dev-python/webassets/Manifest @@ -1,2 +1 @@ -DIST webassets-0.12.1.tar.gz 181402 BLAKE2B 907a4184e0274a9543bda2b7c2fdfeabef346b0920d98e04abbfb3b9858ecae3c0da32b65efe8e4b52d82ab938e182e2e37f005ba25afb1d62235dcc5bc9bee7 SHA512 1e65956afc63dd4bbf43b3b7e220ec6edb8d69d817c6361de67bf8fc7a90b34d3f7e4d0bae4cc45cb3fc043802d2e5d5c8a7cc87421186000212a36605fbc26e DIST webassets-2.0.tar.gz 185864 BLAKE2B 8aaa7091c27644c6c464d13d106218e28531415458e67696c0243943a92a3869e23c7ff0aa8461abb876a178e3ad44f4b47a5366edb885d308dd8ec0f17ad034 SHA512 6d62d4e5c1ed81a2d235c24776b632574f3670ae3d863c5f5a79d0e1afc7acfa7965e532b7975503df758dbe6c8dbd857b250a6ea8e4b414c8f1ae12fb8addd7 diff --git a/dev-python/webassets/webassets-0.12.1.ebuild b/dev-python/webassets/webassets-0.12.1.ebuild deleted file mode 100644 index 89d0a354b5d4..000000000000 --- a/dev-python/webassets/webassets-0.12.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="Asset management for Python web development" -HOMEPAGE="https://github.com/miracle2k/webassets" -SRC_URI="https://github.com/miracle2k/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -# ^^ pypi tarball is missing tests -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] )" - -python_prepare_all() { - # webassets wants /usr/bin/babel from babeljs, - # but we have only one from openbabel - # ... and we don't have postcss - sed -i \ - -e 's|\(TestBabel\)|No\1|' \ - -e 's|\(TestAutoprefixer6Filter\)|No\1|' \ - tests/test_filters.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - py.test -v || die -} |