Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/elixir: ChangeLog elixir-0.6.1.ebuild elixir-0.3.0.ebuild
Date: Tue, 30 Sep 2008 03:47:46
Message-Id: E1KkWD7-00064P-Nw@stork.gentoo.org
1 neurogeek 08/09/30 03:47:41
2
3 Modified: ChangeLog
4 Added: elixir-0.6.1.ebuild
5 Removed: elixir-0.3.0.ebuild
6 Log:
7 Version bump. Removed older version
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.18-gentoo-r3 i686)
9
10 Revision Changes Path
11 1.5 dev-python/elixir/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/elixir/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/elixir/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/elixir/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/elixir/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 17 Jul 2008 17:32:22 -0000 1.4
24 +++ ChangeLog 30 Sep 2008 03:47:41 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/elixir
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/ChangeLog,v 1.4 2008/07/17 17:32:22 hawking Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/ChangeLog,v 1.5 2008/09/30 03:47:41 neurogeek Exp $
30 +
31 +*elixir-0.6.1 (30 Sep 2008)
32 +
33 + 30 Sep 2008; Jesus Rivero <neurogeek@g.o> -elixir-0.3.0.ebuild,
34 + +elixir-0.6.1.ebuild:
35 + Version bump. Removed older version
36
37 17 Jul 2008; Ali Polatel <hawking@g.o> elixir-0.5.2.ebuild:
38 Update sqlalchemy dependency, #232073
39
40
41
42 1.1 dev-python/elixir/elixir-0.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/elixir/elixir-0.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/elixir/elixir-0.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: elixir-0.6.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.6.1.ebuild,v 1.1 2008/09/30 03:47:41 neurogeek Exp $
52
53 NEED_PYTHON=2.4
54
55 inherit distutils
56
57 KEYWORDS="~amd64 ~x86"
58
59 MY_PN=Elixir
60 MY_P=${MY_PN}-${PV}
61
62 DESCRIPTION="A declarative layer on top of SQLAlchemy."
63 HOMEPAGE="http://elixir.ematia.de/"
64 SRC_URI="http://cheeseshop.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
65 LICENSE="MIT"
66 SLOT="0"
67 IUSE="doc examples test"
68
69 RDEPEND=">=dev-python/sqlalchemy-0.4.0"
70 DEPEND="${RDEPEND}
71 dev-python/setuptools
72 doc? ( >=dev-python/docutils-0.4-r3
73 >=dev-python/elementtree-1.2.6
74 >=dev-python/kid-0.9
75 >=dev-python/pygments-0.8.1
76 >=dev-python/pudge-0.1.3
77 >=dev-python/buildutils-0.3 )
78 test? ( dev-python/nose )"
79
80 S=${WORKDIR}/${MY_P}
81
82 src_compile() {
83 distutils_src_compile
84 if use doc ; then
85 einfo "Generating docs as requested..."
86 ${python} setup.py addcommand -p buildutils.pudge_command
87 PYTHONPATH=. "${python}" setup.py pudge || die "generating docs failed"
88 fi
89 }
90
91 src_install() {
92 distutils_src_install
93 use doc && dohtml -r build/doc/*
94 if use examples ; then
95 insinto /usr/share/doc/${PF}
96 doins -r examples
97 fi
98 }
99
100 src_test() {
101 PYTHONPATH=. "${python}" setup.py test || die "tests failed"
102 }