Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/louie: metadata.xml ChangeLog louie-1.1.ebuild
Date: Sat, 28 Feb 2009 20:04:32
Message-Id: E1LdVQE-0002Uy-13@stork.gentoo.org
1 patrick 09/02/28 20:04:30
2
3 Added: metadata.xml ChangeLog louie-1.1.ebuild
4 Log:
5 Initial import. Fixes #225475. Initial ebuild by Maciej Blizinski.
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-python/louie/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/louie/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/louie/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>python</herd>
20 </pkgmetadata>
21
22
23
24 1.1 dev-python/louie/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/louie/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/louie/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-python/louie
32 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.1 2009/02/28 20:04:29 patrick Exp $
34
35 *louie-1.1 (28 Feb 2009)
36
37 28 Feb 2009; Patrick Lauer <patrick@g.o> +metadata.xml,
38 +louie-1.1.ebuild:
39 Initial import. Fixes #225475. Initial ebuild by Maciej Blizinski.
40
41
42
43
44 1.1 dev-python/louie/louie-1.1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/louie/louie-1.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/louie/louie-1.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: louie-1.1.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/louie/louie-1.1.ebuild,v 1.1 2009/02/28 20:04:29 patrick Exp $
54
55 inherit distutils
56
57 MY_P="Louie-${PV}"
58 DESCRIPTION="Signal dispatching mechanism for Python"
59 HOMEPAGE="http://pylouie.org/"
60 SRC_URI="http://cheeseshop.python.org/packages/source/L/Louie/${MY_P}.tar.gz"
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~x86 ~amd64"
64 IUSE=""
65
66 DEPEND="dev-python/setuptools"
67 RDEPEND=""
68
69 S="${WORKDIR}/${MY_P}"
70
71 # This has changed with upstream migrating to setuptools. No idea how to actually run them tests now ...
72 #src_test() {
73 # python selftest.py || die "selftest.py failed"
74 #}