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/django-debug-toolbar/
Date: Wed, 03 Jan 2018 09:12:01
Message-Id: 1514970686.2f5ead4e49238cbad0dd2a3442608d47c3458001.mgorny@gentoo
1 commit: 2f5ead4e49238cbad0dd2a3442608d47c3458001
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 22:52:26 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 09:11:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f5ead4e
7
8 dev-python/django-debug-toolbar: Clean old up
9
10 dev-python/django-debug-toolbar/Manifest | 1 -
11 .../django-debug-toolbar-1.3.2.ebuild | 52 ----------------------
12 2 files changed, 53 deletions(-)
13
14 diff --git a/dev-python/django-debug-toolbar/Manifest b/dev-python/django-debug-toolbar/Manifest
15 index 880b43fab37..01ba026b592 100644
16 --- a/dev-python/django-debug-toolbar/Manifest
17 +++ b/dev-python/django-debug-toolbar/Manifest
18 @@ -1,2 +1 @@
19 -DIST django-debug-toolbar-1.3.2.tar.gz 316106 BLAKE2B 41ca813e252d54096ae6077e247f36292d986a1ecc5d8e34bf856edd9f272e74d8078b6402aaa44805837b9dcbd762702b08502726f104f5363226b14ca668db SHA512 d1428f1f729a190ddbf3a260bc428d7a78421519be60c7f07ad3e7f3498414d4ac0ec64d5772fcf89d6521f83bd9226fae104c43b4f0ad4deaf7cfb427d24b1c
20 DIST django-debug-toolbar-1.5.tar.gz 315928 BLAKE2B 8dde3c655baa6bd5f3b5d3ae0ba57b8c5746fc41bcfae9f506ad5c49ff64cdb51f0b9d67ee42695f884493cf21bd76fdcf943d88d97641b5d804d54c59163562 SHA512 9a421b80016bdaee8dd3ba2a9b7c3b788b54a4f464cdd5697e36536268e4d3d926bf77088a715e87f192dc8a20a100d8adac68c9c26a1191a5343e377240bf64
21
22 diff --git a/dev-python/django-debug-toolbar/django-debug-toolbar-1.3.2.ebuild b/dev-python/django-debug-toolbar/django-debug-toolbar-1.3.2.ebuild
23 deleted file mode 100644
24 index 558b7505df8..00000000000
25 --- a/dev-python/django-debug-toolbar/django-debug-toolbar-1.3.2.ebuild
26 +++ /dev/null
27 @@ -1,52 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 python3_4 pypy )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="A configurable set of panels that display debug information"
38 -HOMEPAGE="
39 - https://pypi.python.org/pypi/django-debug-toolbar/
40 - https://github.com/django-debug-toolbar/django-debug-toolbar/"
41 -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -SLOT="0"
44 -LICENSE="BSD"
45 -KEYWORDS="amd64 x86"
46 -IUSE="doc examples"
47 -
48 -RDEPEND="
49 - >=dev-python/django-1.4.2[${PYTHON_USEDEP}]
50 - >=dev-python/python-sqlparse-0.1.10[${PYTHON_USEDEP}]
51 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
52 -"
53 -DEPEND="${RDEPEND}
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 -"
56 -
57 -python_prepare_all() {
58 - # Prevent non essential d'loading by intersphinx
59 - sed -e 's:intersphinx_mapping:_&:' -i docs/conf.py || die
60 -
61 - # This prevents distutils from installing 'tests' package, rm magic no more needed
62 - sed -e "/find_packages/s:'tests':'tests.\*', 'tests':" -i setup.py || die
63 -
64 - distutils-r1_python_prepare_all
65 -}
66 -
67 -python_compile_all() {
68 - use doc && emake -C docs html
69 -}
70 -
71 -python_test() {
72 - emake test
73 -}
74 -
75 -python_install_all() {
76 - use doc && local HTML_DOCS=( docs/_build/html/. )
77 - use examples && local EXAMPLES=( example/. )
78 - distutils-r1_python_install_all
79 -}