Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/django: django-9999.ebuild
Date: Sun, 02 Aug 2009 19:28:53
Message-Id: E1MXgjj-0003sx-CN@stork.gentoo.org
1 arfrever 09/08/02 19:28:51
2
3 Modified: django-9999.ebuild
4 Log:
5 Update.
6
7 Revision Changes Path
8 1.4 dev-python/django/django-9999.ebuild
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/django/django-9999.ebuild?rev=1.4&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/django/django-9999.ebuild?rev=1.4&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/django/django-9999.ebuild?r1=1.3&r2=1.4
13
14 Index: django-9999.ebuild
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-9999.ebuild,v
17 retrieving revision 1.3
18 retrieving revision 1.4
19 diff -u -r1.3 -r1.4
20 --- django-9999.ebuild 18 May 2009 14:58:48 -0000 1.3
21 +++ django-9999.ebuild 2 Aug 2009 19:28:51 -0000 1.4
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2009 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-9999.ebuild,v 1.3 2009/05/18 14:58:48 arfrever Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-9999.ebuild,v 1.4 2009/08/02 19:28:51 arfrever Exp $
27
28 EAPI="2"
29
30 @@ -17,18 +17,22 @@
31
32 RDEPEND="dev-python/imaging
33 sqlite? ( || (
34 + >=dev-lang/python-2.5[sqlite] )
35 ( dev-python/pysqlite:2 <dev-lang/python-2.5 )
36 - >=dev-lang/python-2.5[sqlite] ) )
37 - test? ( || (
38 - ( dev-python/pysqlite:2 <dev-lang/python-2.5 )
39 - >=dev-lang/python-2.5[sqlite] ) )
40 + )
41 postgres? ( dev-python/psycopg )
42 mysql? ( >=dev-python/mysql-python-1.2.1_p2 )"
43 DEPEND="${RDEPEND}
44 - doc? ( >=dev-python/sphinx-0.3 )"
45 + doc? ( >=dev-python/sphinx-0.3 )
46 + test? ( || (
47 + >=dev-lang/python-2.5[sqlite] )
48 + ( dev-python/pysqlite:2 <dev-lang/python-2.5 )
49 + )"
50
51 S="${WORKDIR}"
52
53 +PYTHON_MODNAME="django"
54 +
55 DOCS="docs/*.txt AUTHORS"
56
57 src_compile() {
58 @@ -45,6 +49,7 @@
59 einfo "Running tests."
60 cat >> tests/settings.py << __EOF__
61 DATABASE_ENGINE='sqlite3'
62 +DATABASE_NAME='test.db'
63 ROOT_URLCONF='tests/urls.py'
64 SITE_ID=1
65 __EOF__