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/pyro: ChangeLog pyro-3.9.ebuild
Date: Sun, 26 Apr 2009 14:52:35
Message-Id: E1Ly5ib-00008a-O4@stork.gentoo.org
1 patrick 09/04/26 14:52:33
2
3 Modified: ChangeLog
4 Added: pyro-3.9.ebuild
5 Log:
6 Bump to 3.9, fixes #267550
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 dev-python/pyro/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 5 Jun 2007 08:05:41 -0000 1.15
23 +++ ChangeLog 26 Apr 2009 14:52:33 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/pyro
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.15 2007/06/05 08:05:41 lucass Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.16 2009/04/26 14:52:33 patrick Exp $
30 +
31 +*pyro-3.9 (26 Apr 2009)
32 +
33 + 26 Apr 2009; Patrick Lauer <patrick@g.o> +pyro-3.9.ebuild:
34 + Bump to 3.9, fixes #267550
35
36 *pyro-3.7 (05 Jun 2007)
37
38
39
40
41 1.1 dev-python/pyro/pyro-3.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/pyro-3.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/pyro-3.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyro-3.9.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-3.9.ebuild,v 1.1 2009/04/26 14:52:33 patrick Exp $
51
52 inherit distutils eutils
53
54 MY_P="Pyro-${PV}"
55 DESCRIPTION="advanced and powerful Distributed Object Technology system written entirely in Python"
56 HOMEPAGE="http://pyro.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/pyro/${MY_P}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
62 IUSE="doc examples"
63
64 S="${WORKDIR}/${MY_P}"
65
66 src_install() {
67 distutils_src_install
68
69 if use examples; then
70 insinto /usr/share/doc/${PF}
71 doins -r examples
72 fi
73
74 if use doc; then
75 dohtml -r docs/*
76 fi
77 }