Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/webassets/
Date: Mon, 11 May 2020 17:49:08
Message-Id: 1589219305.8724ef2454665c68cfbb4ca0276a740f8cf3fc62.mgorny@gentoo
1 commit: 8724ef2454665c68cfbb4ca0276a740f8cf3fc62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 17:48:25 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:48:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8724ef24
7
8 dev-python/webassets: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/webassets/Manifest | 1 -
13 dev-python/webassets/webassets-0.12.1.ebuild | 39 ----------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-python/webassets/Manifest b/dev-python/webassets/Manifest
17 index 1520f131cb5..0680de17ed9 100644
18 --- a/dev-python/webassets/Manifest
19 +++ b/dev-python/webassets/Manifest
20 @@ -1,2 +1 @@
21 -DIST webassets-0.12.1.tar.gz 181402 BLAKE2B 907a4184e0274a9543bda2b7c2fdfeabef346b0920d98e04abbfb3b9858ecae3c0da32b65efe8e4b52d82ab938e182e2e37f005ba25afb1d62235dcc5bc9bee7 SHA512 1e65956afc63dd4bbf43b3b7e220ec6edb8d69d817c6361de67bf8fc7a90b34d3f7e4d0bae4cc45cb3fc043802d2e5d5c8a7cc87421186000212a36605fbc26e
22 DIST webassets-2.0.tar.gz 185864 BLAKE2B 8aaa7091c27644c6c464d13d106218e28531415458e67696c0243943a92a3869e23c7ff0aa8461abb876a178e3ad44f4b47a5366edb885d308dd8ec0f17ad034 SHA512 6d62d4e5c1ed81a2d235c24776b632574f3670ae3d863c5f5a79d0e1afc7acfa7965e532b7975503df758dbe6c8dbd857b250a6ea8e4b414c8f1ae12fb8addd7
23
24 diff --git a/dev-python/webassets/webassets-0.12.1.ebuild b/dev-python/webassets/webassets-0.12.1.ebuild
25 deleted file mode 100644
26 index 89d0a354b5d..00000000000
27 --- a/dev-python/webassets/webassets-0.12.1.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_6 )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Asset management for Python web development"
39 -HOMEPAGE="https://github.com/miracle2k/webassets"
40 -SRC_URI="https://github.com/miracle2k/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -# ^^ pypi tarball is missing tests
42 -LICENSE="BSD-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~arm64 x86"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND=""
49 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 - test? ( dev-python/pytest[${PYTHON_USEDEP}]
51 - dev-python/nose[${PYTHON_USEDEP}]
52 - dev-python/mock[${PYTHON_USEDEP}] )"
53 -
54 -python_prepare_all() {
55 - # webassets wants /usr/bin/babel from babeljs,
56 - # but we have only one from openbabel
57 - # ... and we don't have postcss
58 - sed -i \
59 - -e 's|\(TestBabel\)|No\1|' \
60 - -e 's|\(TestAutoprefixer6Filter\)|No\1|' \
61 - tests/test_filters.py || die
62 -
63 - distutils-r1_python_prepare_all
64 -}
65 -
66 -python_test() {
67 - py.test -v || die
68 -}