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-appconf/
Date: Wed, 03 Jan 2018 09:12:00
Message-Id: 1514970685.1249cacd8d1a4a0e13f3667e6a4f92d05b562307.mgorny@gentoo
1 commit: 1249cacd8d1a4a0e13f3667e6a4f92d05b562307
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 22:52:05 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 09:11:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1249cacd
7
8 dev-python/django-appconf: Clean old up
9
10 dev-python/django-appconf/Manifest | 1 -
11 .../django-appconf/django-appconf-0.6.ebuild | 43 ----------------------
12 2 files changed, 44 deletions(-)
13
14 diff --git a/dev-python/django-appconf/Manifest b/dev-python/django-appconf/Manifest
15 index 5e9f282fcf6..c780e008d41 100644
16 --- a/dev-python/django-appconf/Manifest
17 +++ b/dev-python/django-appconf/Manifest
18 @@ -1,2 +1 @@
19 -DIST django-appconf-0.6.tar.gz 14072 BLAKE2B e065a71568daf38994cdf943a0c4fd02801c394f64d042f92d724722d363f3e8d452bac897b6c3d5375c0e3a842e243e7934eb9d966276b7483d9fa067b364be SHA512 d2a4aea07eeabdc32ed85cf0625702f3e7861b82d1e47660f3761dedff42a3bd3bfcc54dc3d46072758bea1a34af160f7a908bf0925c05b7409f1224f4a7245d
20 DIST django-appconf-1.0.1.tar.gz 16743 BLAKE2B 0f40d2bac6ca596c83dd67b1109c0a298d845a8091565aceb57230132004f634e9227aeaf07766a3e690feae9833ec1395bc6f409f4412648d8e7df4c2533ba1 SHA512 b6075bed0372f7f9da7c7af49124a08a2d119533ea15b284529166bcc09e61a541ce179a696dd426a9323ea1874c219880869ef7934345f4d40b1b3201eb2c6d
21
22 diff --git a/dev-python/django-appconf/django-appconf-0.6.ebuild b/dev-python/django-appconf/django-appconf-0.6.ebuild
23 deleted file mode 100644
24 index 864e276edf8..00000000000
25 --- a/dev-python/django-appconf/django-appconf-0.6.ebuild
26 +++ /dev/null
27 @@ -1,43 +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 -PYTHON_COMPAT=( python{2_7,3_4} )
33 -
34 -inherit distutils-r1
35 -
36 -DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
37 -HOMEPAGE="https://github.com/jezdez/django-appconf http://django-appconf.readthedocs.org/"
38 -SRC_URI="https://github.com/jezdez/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 -KEYWORDS="amd64 x86"
40 -IUSE="doc test"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -
45 -RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]
46 - dev-python/six[${PYTHON_USEDEP}]"
47 -DEPEND="${RDEPEND}
48 - dev-python/setuptools[${PYTHON_USEDEP}]
49 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
50 - test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}]
51 - dev-python/flake8[${PYTHON_USEDEP}]
52 - dev-python/coverage[${PYTHON_USEDEP}] )"
53 -
54 -PATCHES=( "${FILESDIR}"/docs.patch )
55 -
56 -python_compile_all() {
57 - use doc && emake -C docs html
58 -}
59 -
60 -python_test() {
61 - cd appconf/tests || die
62 - set -- django-admin.py test appconf --settings=appconf.test_settings
63 - echo "$@"
64 - "$@" || die "Testing failed with ${EPYTHON}"
65 -}
66 -
67 -python_install_all() {
68 - use doc && HTML_DOCS=( docs/_build/html/. )
69 - distutils-r1_python_install_all
70 -}