summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-03-05 13:35:32 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-03-05 13:35:32 +0000
commit0ff1e932b4f520057c8f24d2bf1cb3fa318144ef (patch)
treebbd4c0c271d11d5889436ddc27361b3627232b0f /dev-python/django-appconf
parentRemove old. (diff)
downloadgentoo-2-0ff1e932b4f520057c8f24d2bf1cb3fa318144ef.tar.gz
gentoo-2-0ff1e932b4f520057c8f24d2bf1cb3fa318144ef.tar.bz2
gentoo-2-0ff1e932b4f520057c8f24d2bf1cb3fa318144ef.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/django-appconf')
-rw-r--r--dev-python/django-appconf/ChangeLog7
-rw-r--r--dev-python/django-appconf/django-appconf-0.5.ebuild55
2 files changed, 5 insertions, 57 deletions
diff --git a/dev-python/django-appconf/ChangeLog b/dev-python/django-appconf/ChangeLog
index 775adc960d7f..57e24bac7825 100644
--- a/dev-python/django-appconf/ChangeLog
+++ b/dev-python/django-appconf/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-appconf
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.9 2014/06/06 13:47:30 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.10 2015/03/05 13:35:32 mrueg Exp $
+
+ 05 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -django-appconf-0.5.ebuild:
+ Remove old.
06 Jun 2014; Ian Delaney <idella4@gentoo.org> django-appconf-0.6.ebuild:
drop py2.6 add py3 support, upgrade HOMEPAGE, SRC_URI to github, complete deps
diff --git a/dev-python/django-appconf/django-appconf-0.5.ebuild b/dev-python/django-appconf/django-appconf-0.5.ebuild
deleted file mode 100644
index ff6eb00cdb84..000000000000
--- a/dev-python/django-appconf/django-appconf-0.5.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.5.ebuild,v 1.2 2012/05/16 13:32:04 tampakrap Exp $
-
-EAPI=4
-PYTHON_DEPEND="2:2.6"
-SUPPORT_PYTHON_ABIS=1
-RESTRICT_PYTHON_ABIS="2.5 3.*"
-
-inherit distutils
-
-DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
-HOMEPAGE="http://pypi.python.org/pypi/django-appconf http://django-appconf.readthedocs.org/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-LICENSE="BSD"
-SLOT="0"
-
-PYTHON_MODNAME="appconf"
-
-RDEPEND=">=dev-python/django-1.1.4"
-DEPEND="${RDEPEND}
- dev-python/setuptools
- doc? ( dev-python/sphinx )"
-
-src_compile() {
- if use doc; then
- emake -C docs pickle htmlhelp
- fi
- distutils_src_compile
-}
-
-src_test() {
- export DJANGO_SETTINGS_MODULE="django.conf"
- testing() {
- pushd build-${PYTHON_ABI}/lib > /dev/null
- "$(PYTHON)" -m appconf.tests.tests
- popd > /dev/null
- }
-
- python_execute_function testing
-}
-
-src_install() {
- if use doc; then
- dohtml -r docs/_build
-
- insinto usr/share/doc/${PF}/html/doctrees
- doins -r docs/_build/doctrees/
- fi
-
- distutils_src_install
-}