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/python-ptrace: ChangeLog python-ptrace-0.6.3.ebuild
Date: Thu, 28 Jul 2011 20:19:56
Message-Id: 20110728201922.3F36D2004B@flycatcher.gentoo.org
1 patrick 11/07/28 20:19:22
2
3 Modified: ChangeLog
4 Added: python-ptrace-0.6.3.ebuild
5 Log:
6 Bump for #375895
7
8 (Portage version: 2.2.0_alpha47/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 dev-python/python-ptrace/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ptrace/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ptrace/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ptrace/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-ptrace/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 8 Feb 2010 08:44:19 -0000 1.6
24 +++ ChangeLog 28 Jul 2011 20:19:22 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/python-ptrace
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ptrace/ChangeLog,v 1.6 2010/02/08 08:44:19 pva Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ptrace/ChangeLog,v 1.7 2011/07/28 20:19:22 patrick Exp $
31 +
32 +*python-ptrace-0.6.3 (28 Jul 2011)
33 +
34 + 28 Jul 2011; Patrick Lauer <patrick@g.o> +python-ptrace-0.6.3.ebuild:
35 + Bump for #375895
36
37 08 Feb 2010; Peter Volkov <pva@g.o> python-ptrace-0.6.ebuild,
38 python-ptrace-0.6.2.ebuild:
39
40
41
42 1.1 dev-python/python-ptrace/python-ptrace-0.6.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ptrace/python-ptrace-0.6.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-ptrace/python-ptrace-0.6.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-ptrace-0.6.3.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/python-ptrace/python-ptrace-0.6.3.ebuild,v 1.1 2011/07/28 20:19:22 patrick Exp $
52
53 EAPI="3"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils eutils
57
58 DESCRIPTION="python-ptrace is a debugger using ptrace (Linux, BSD and Darwin system call to trace processes)."
59 HOMEPAGE="http://bitbucket.org/haypo/python-ptrace/ http://pypi.python.org/pypi/python-ptrace"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND=""
68 RDEPEND="dev-libs/distorm64"
69 RESTRICT_PYTHON_ABIS="2.4"
70
71 DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
72 PYTHON_MODNAME="ptrace"
73
74 src_prepare() {
75 python_copy_sources
76
77 conversion() {
78 [[ "${PYTHON_ABI}" == 2.* ]] && return
79
80 2to3-${PYTHON_ABI} -w . > /dev/null || die "2to3 failed"
81 2to3-${PYTHON_ABI} -dw . > /dev/null || die "2to3 failed"
82 }
83 python_execute_function --action-message 'Applying patches for Python ${PYTHON_ABI}' --failure-message 'Applying patches for Python ${PYTHON_ABI} failed' -s conversion
84 }