Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyparted: ChangeLog pyparted-3.5.ebuild
Date: Thu, 27 Jan 2011 12:21:38
Message-Id: 20110127122123.DE07220054@flycatcher.gentoo.org
1 jer 11/01/27 12:21:23
2
3 Modified: ChangeLog
4 Added: pyparted-3.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux i686)
9
10 Revision Changes Path
11 1.58 dev-python/pyparted/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparted/ChangeLog?rev=1.58&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparted/ChangeLog?rev=1.58&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparted/ChangeLog?r1=1.57&r2=1.58
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyparted/ChangeLog,v
20 retrieving revision 1.57
21 retrieving revision 1.58
22 diff -u -r1.57 -r1.58
23 --- ChangeLog 29 Oct 2010 18:46:37 -0000 1.57
24 +++ ChangeLog 27 Jan 2011 12:21:23 -0000 1.58
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyparted
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparted/ChangeLog,v 1.57 2010/10/29 18:46:37 halcy0n Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparted/ChangeLog,v 1.58 2011/01/27 12:21:23 jer Exp $
31 +
32 +*pyparted-3.5 (27 Jan 2011)
33 +
34 + 27 Jan 2011; Jeroen Roovers <jer@g.o> +pyparted-3.5.ebuild:
35 + Version bump.
36
37 29 Oct 2010; Mark Loeser <halcy0n@g.o> pyparted-3.4.ebuild:
38 Mark ~ppc64; bug #300106
39
40
41
42 1.1 dev-python/pyparted/pyparted-3.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparted/pyparted-3.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparted/pyparted-3.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyparted-3.5.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/pyparted/pyparted-3.5.ebuild,v 1.1 2011/01/27 12:21:23 jer Exp $
52
53 EAPI="2"
54
55 inherit autotools multilib python
56
57 DESCRIPTION="Python bindings for sys-block/parted"
58 HOMEPAGE="https://fedorahosted.org/pyparted/"
59 SRC_URI="https://fedorahosted.org/releases/p/y/${PN}/${P}.tar.gz"
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE=""
64
65 DEPEND="
66 sys-libs/ncurses
67 >=dev-lang/python-2.4
68 >=sys-block/parted-2.3
69 dev-python/decorator
70 "
71 RDEPEND="${DEPEND}"
72
73 src_prepare() {
74 sed -i -e 's/-avoid-version/& -shared /' src/Makefile.am || die "sed failed"
75 eautoreconf
76 }
77
78 src_install() {
79 python_need_rebuild
80 emake DESTDIR="${D}" install || die "emake install failed"
81 python_clean_installation_image
82 dodoc ChangeLog NEWS README TODO
83 }