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-registration: django-registration-0.8-r1.ebuild ChangeLog django-registration-0.7.ebuild django-registration-0.8.ebuild
Date: Mon, 27 May 2013 14:27:53
Message-Id: 20130527142749.EBCED2171D@flycatcher.gentoo.org
1 idella4 13/05/27 14:27:49
2
3 Modified: ChangeLog
4 Added: django-registration-0.8-r1.ebuild
5 Removed: django-registration-0.7.ebuild
6 django-registration-0.8.ebuild
7 Log:
8 revbump; migrate -> distutils-r1, add missing test phase, drop old ebuilds
9
10 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
11
12 Revision Changes Path
13 1.4 dev-python/django-registration/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-registration/ChangeLog?rev=1.4&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-registration/ChangeLog?rev=1.4&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-registration/ChangeLog?r1=1.3&r2=1.4
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-python/django-registration/ChangeLog,v
22 retrieving revision 1.3
23 retrieving revision 1.4
24 diff -u -r1.3 -r1.4
25 --- ChangeLog 15 Jan 2013 21:19:45 -0000 1.3
26 +++ ChangeLog 27 May 2013 14:27:49 -0000 1.4
27 @@ -1,6 +1,13 @@
28 # ChangeLog for dev-python/django-registration
29 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django-registration/ChangeLog,v 1.3 2013/01/15 21:19:45 hwoarang Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-registration/ChangeLog,v 1.4 2013/05/27 14:27:49 idella4 Exp $
32 +
33 +*django-registration-0.8-r1 (27 May 2013)
34 +
35 + 27 May 2013; Ian Delaney <idella4@g.o>
36 + +django-registration-0.8-r1.ebuild, -django-registration-0.7.ebuild,
37 + -django-registration-0.8.ebuild:
38 + revbump; migrate -> distutils-r1, add missing test phase, drop old ebuilds
39
40 15 Jan 2013; Markos Chandras <hwoarang@g.o> metadata.xml:
41 Remove myself from metadata
42
43
44
45 1.1 dev-python/django-registration/django-registration-0.8-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-registration/django-registration-0.8-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-registration/django-registration-0.8-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: django-registration-0.8-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-python/django-registration/django-registration-0.8-r1.ebuild,v 1.1 2013/05/27 14:27:49 idella4 Exp $
55
56 EAPI=5
57
58 PYTHON_COMPAT=( python{2_6,2_7} )
59
60 inherit distutils-r1
61
62 DESCRIPTION="An extensible user-registration application for Django"
63 HOMEPAGE="http://www.bitbucket.org/ubernostrum/django-registration/wiki/ http://pypi.python.org/pypi/django-registration"
64 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65
66 LICENSE="BSD"
67 SLOT="0"
68 KEYWORDS="~amd64"
69 IUSE=""
70
71 DEPEND="dev-python/django[${PYTHON_USEDEP}]"
72 RDEPEND="${DEPEND}"
73
74 python_test() {
75 export DJANGO_SETTINGS_MODULE="django.conf"
76 export SECRET_KEY='green'
77 local test
78 for test in registration/tests/{backends.py,forms.py,models.py,urls.py,views.py}
79 do
80 if ! "${PYTHON}" -c \
81 "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" ${test}
82 then
83 die "test ${test} failed under ${EPYTHON}"
84 else
85 einfo "test ${test} passed"
86 fi
87 done
88 einfo "tests passed under ${EPYTHON}"
89 }