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: pyro-3.9.1.ebuild ChangeLog
Date: Mon, 01 Jun 2009 00:38:31
Message-Id: E1MAvXp-0000bx-PM@stork.gentoo.org
1 patrick 09/06/01 00:38:29
2
3 Modified: ChangeLog
4 Added: pyro-3.9.1.ebuild
5 Log:
6 Bump to 3.9.1, fixes #271202
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 dev-python/pyro/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 26 Apr 2009 14:52:33 -0000 1.16
23 +++ ChangeLog 1 Jun 2009 00:38:29 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/pyro
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.16 2009/04/26 14:52:33 patrick Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.17 2009/06/01 00:38:29 patrick Exp $
30 +
31 +*pyro-3.9.1 (01 Jun 2009)
32 +
33 + 01 Jun 2009; Patrick Lauer <patrick@g.o> +pyro-3.9.1.ebuild:
34 + Bump to 3.9.1, fixes #271202
35
36 *pyro-3.9 (26 Apr 2009)
37
38
39
40
41 1.1 dev-python/pyro/pyro-3.9.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/pyro-3.9.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyro/pyro-3.9.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyro-3.9.1.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.1.ebuild,v 1.1 2009/06/01 00:38:29 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 }