Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
Date: Sat, 18 May 2013 13:48:30
Message-Id: 20130518134824.DF5132171E@flycatcher.gentoo.org
1 idella4 13/05/18 13:48:24
2
3 Modified: ChangeLog
4 Added: django-appconf-0.6.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.4 dev-python/django-appconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 13 Nov 2012 11:39:10 -0000 1.3
24 +++ ChangeLog 18 May 2013 13:48:24 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/django-appconf
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.3 2012/11/13 11:39:10 idella4 Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.4 2013/05/18 13:48:24 idella4 Exp $
31 +
32 +*django-appconf-0.6 (18 May 2013)
33 +
34 + 18 May 2013; Ian Delaney <idella4@g.o> +django-appconf-0.6.ebuild,
35 + +files/docs.patch:
36 + bump
37
38 14 Nov 2012; Ian Delaney <idella4@g.o> metadata.xml:
39 Updating maintainer, metadata.xml
40
41
42
43 1.1 dev-python/django-appconf/django-appconf-0.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: django-appconf-0.6.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.1 2013/05/18 13:48:24 idella4 Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python{2_6,2_7} )
56
57 inherit distutils-r1
58
59 DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
60 HOMEPAGE="http://pypi.python.org/pypi/django-appconf http://django-appconf.readthedocs.org/"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc"
64
65 LICENSE="BSD"
66 SLOT="0"
67
68 RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]"
69 DEPEND="${RDEPEND}
70 dev-python/setuptools[${PYTHON_USEDEP}]
71 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
72
73 PATCHES=( "${FILESDIR}"/docs.patch )
74
75 python_compile_all() {
76 use doc && emake -C docs html
77 }
78
79 python_test() {
80 export DJANGO_SETTINGS_MODULE="django.conf"
81 pushd "${BUILD_DIR}"/lib > /dev/null
82 if ! "${PYTHON}" -c \
83 "from django.conf import global_settings;global_settings.SECRET_KEY='green'" -m appconf.tests.tests
84 then
85 die "test ${test} failed under ${EPYTHON}"
86 else
87 einfo "test ${test} passed under ${EPYTHON}"
88 fi
89 }
90
91 python_install_all() {
92 use doc && HTML_DOCS=( docs/_build/html/. )
93 distutils-r1_python_install_all
94 }