Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-pipeline/
Date: Tue, 03 Nov 2015 10:25:04
Message-Id: 1446546280.b752bcf721082841a16d28e00fa31977eb678b59.jlec@gentoo
1 commit: b752bcf721082841a16d28e00fa31977eb678b59
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 3 08:16:05 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 3 10:24:40 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b752bcf7
7
8 dev-python/django-pipeline: Drop old
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/django-pipeline/Manifest | 1 -
14 .../django-pipeline/django-pipeline-1.3.25.ebuild | 51 ----------------------
15 2 files changed, 52 deletions(-)
16
17 diff --git a/dev-python/django-pipeline/Manifest b/dev-python/django-pipeline/Manifest
18 index 1886b93..2225d00 100644
19 --- a/dev-python/django-pipeline/Manifest
20 +++ b/dev-python/django-pipeline/Manifest
21 @@ -1,2 +1 @@
22 -DIST django-pipeline-1.3.25.tar.gz 41008 SHA256 92c4ba5543d3ad980cd3a65a121ced62a6ad6449a773269a693f54e0ca5c565f SHA512 2c66b8b60076a8d19049947a9465d96fd80098c6e560f6cb6ffa26fd17d267830d87913041f9876da1276b0224ef3e8b0183c56367741e11c0f010a236b87169 WHIRLPOOL 15ac71f71988b2c7f5bb2d7c322843c35f6e34532af526b72bc90c15458b512948b97af333aaa5d52f71fd785f70d9b04018f8337eefc037be2dd24f04c77d7f
23 DIST django-pipeline-1.3.26.tar.gz 41054 SHA256 58433fc07cc81f213686b892caeb8d17d6ed4e00444ef95b35f21a5a3cc6357e SHA512 106c89e6a5509305548f6169f9b38d3a288bdf260c4b933ac1372c8471e897b8f6109cdecf70a4f77dff670e2b97abe4ed990903abfc188a59600189d0473284 WHIRLPOOL 7ead1f6dbc6df1a5c4b26869e6b4ae73cd416ed52f22ba1ff16b57a295f476c7973a56af9c05d1b50097e82dcd286207f648920b3acadd88fc40ad26aae10285
24
25 diff --git a/dev-python/django-pipeline/django-pipeline-1.3.25.ebuild b/dev-python/django-pipeline/django-pipeline-1.3.25.ebuild
26 deleted file mode 100644
27 index f9ddebd..0000000
28 --- a/dev-python/django-pipeline/django-pipeline-1.3.25.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="An asset packaging library for Django"
41 -HOMEPAGE="https://pypi.python.org/pypi/django-pipeline/ https://github.com/cyberdelia/django-pipeline"
42 -
43 -# PyPi releases lack docs/ subdir:
44 -# https://github.com/cyberdelia/django-pipeline/pull/254
45 -SRC_URI="https://github.com/cyberdelia/django-pipeline/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="doc test"
51 -
52 -RDEPEND=">=dev-python/django-1.5.8[${PYTHON_USEDEP}]
53 - dev-python/jsmin[${PYTHON_USEDEP}]
54 - virtual/python-futures[${PYTHON_USEDEP}]"
55 -DEPEND="${RDEPEND}
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - test? (
59 - dev-python/jinja[${PYTHON_USEDEP}]
60 - dev-python/mock[${PYTHON_USEDEP}] )"
61 -# As usual for test phase
62 -DISTUTILS_IN_SOURCE_BUILD=1
63 -
64 -python_compile_all() {
65 - use doc && emake -C docs html
66 -}
67 -
68 -python_test() {
69 - PYTHONPATH=. django-admin.py test --settings=tests.settings tests \
70 - || die "Tests failed under ${EPYTHON}"
71 -}
72 -
73 -python_install_all() {
74 - use doc && HTML_DOCS=( docs/_build/html/. )
75 - distutils-r1_python_install_all
76 -}
77 -
78 -python_install() {
79 - export PIPELINE_JS_COMPRESSOR = 'pipeline.compressors.jsmin.JSMinCompressor'
80 - distutils-r1_python_install
81 -}