Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/torrentinfo: ChangeLog torrentinfo-1.0.2.ebuild
Date: Thu, 22 Apr 2010 17:50:30
Message-Id: 20100422175025.3CD4B28AEE@corvid.gentoo.org
1 hwoarang 10/04/22 17:50:25
2
3 Modified: ChangeLog torrentinfo-1.0.2.ebuild
4 Log:
5 Refactor ebuild to use python functions correctly. Fixes bug #315867
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.5 net-p2p/torrentinfo/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/torrentinfo/ChangeLog?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/torrentinfo/ChangeLog?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/torrentinfo/ChangeLog?r1=1.4&r2=1.5
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-p2p/torrentinfo/ChangeLog,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- ChangeLog 19 Apr 2010 16:56:58 -0000 1.4
22 +++ ChangeLog 22 Apr 2010 17:50:25 -0000 1.5
23 @@ -1,6 +1,10 @@
24 # ChangeLog for net-p2p/torrentinfo
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/torrentinfo/ChangeLog,v 1.4 2010/04/19 16:56:58 hwoarang Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/torrentinfo/ChangeLog,v 1.5 2010/04/22 17:50:25 hwoarang Exp $
28 +
29 + 22 Apr 2010; Markos Chandras <hwoarang@g.o>
30 + torrentinfo-1.0.2.ebuild:
31 + Refactor ebuild to use python functions correctly. Fixes bug #315867
32
33 19 Apr 2010; Markos Chandras <hwoarang@g.o>
34 torrentinfo-1.0.2.ebuild:
35
36
37
38 1.5 net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild?r1=1.4&r2=1.5
43
44 Index: torrentinfo-1.0.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- torrentinfo-1.0.2.ebuild 19 Apr 2010 16:56:58 -0000 1.4
51 +++ torrentinfo-1.0.2.ebuild 22 Apr 2010 17:50:25 -0000 1.5
52 @@ -1,10 +1,10 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild,v 1.4 2010/04/19 16:56:58 hwoarang Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/torrentinfo/torrentinfo-1.0.2.ebuild,v 1.5 2010/04/22 17:50:25 hwoarang Exp $
57
58 PYTHON_DEPEND="2:2.6"
59
60 -inherit distutils
61 +inherit python distutils
62
63 DESCRIPTION="A torrent file parser"
64 HOMEPAGE="http://vrai.net/project.php?project=torrentinfo"
65 @@ -14,3 +14,7 @@
66 SLOT="0"
67 KEYWORDS="amd64 x86"
68 IUSE=""
69 +
70 +pkg_setup() {
71 + python_set_active_version 2
72 +}