Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/south: south-0.7.3.ebuild ChangeLog
Date: Mon, 31 Jan 2011 12:14:11
Message-Id: 20110131121401.3FA4A20054@flycatcher.gentoo.org
1 djc 11/01/31 12:14:01
2
3 Modified: ChangeLog
4 Added: south-0.7.3.ebuild
5 Log:
6 Version bump south to 0.7.3 (bug 347581).
7
8 (Portage version: 2.1.9.35/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-python/south/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/south/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 27 Aug 2010 17:27:31 -0000 1.1
24 +++ ChangeLog 31 Jan 2011 12:14:01 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/south
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/south/ChangeLog,v 1.1 2010/08/27 17:27:31 dev-zero Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/south/ChangeLog,v 1.2 2011/01/31 12:14:01 djc Exp $
31 +
32 +*south-0.7.3 (31 Jan 2011)
33 +
34 + 31 Jan 2011; Dirkjan Ochtman <djc@g.o> +south-0.7.3.ebuild:
35 + Version bump to 0.7.3 (bug 347581).
36
37 *south-0.7.2 (27 Aug 2010)
38
39
40
41
42 1.1 dev-python/south/south-0.7.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/south-0.7.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/south/south-0.7.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: south-0.7.3.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/south/south-0.7.3.ebuild,v 1.1 2011/01/31 12:14:01 djc Exp $
52
53 EAPI="3"
54
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.*"
58
59 inherit distutils
60
61 DESCRIPTION="Intelligent schema migrations for Django apps."
62 HOMEPAGE="http://south.aeracode.org/"
63 SRC_URI="http://www.aeracode.org/releases/${PN}/${P}.tar.gz"
64
65 LICENSE="Apache-2.0"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE="doc"
69
70 RDEPEND="dev-python/django"
71 DEPEND="${RDEPEND}
72 dev-python/setuptools
73 doc? ( dev-python/sphinx )"
74
75 S="${WORKDIR}/${PN}"
76
77 src_compile() {
78 distutils_src_compile
79
80 if use doc ; then
81 emake -C docs html || die "building docs failed"
82 fi
83 }
84
85 src_install() {
86 distutils_src_install
87
88 use doc && dohtml -r docs/_build/html/*
89 }
90
91 pkg_postinst() {
92 distutils_pkg_postinst
93 elog "In order to use the south schema migrations for your Django project,"
94 elog "just add 'south' to your INSTALLED_APPS in the settings.py file."
95 elog "manage.py will now automagically offer the new functions."
96 }