Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/buildutils: buildutils-0.3.ebuild ChangeLog
Date: Thu, 01 Oct 2009 23:00:12
Message-Id: E1MtUd8-0001vr-Ct@stork.gentoo.org
1 arfrever 09/10/01 23:00:10
2
3 Modified: buildutils-0.3.ebuild ChangeLog
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: 14471-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/buildutils/buildutils-0.3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild?r1=1.1&r2=1.2
14
15 Index: buildutils-0.3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- buildutils-0.3.ebuild 5 Apr 2008 14:51:48 -0000 1.1
22 +++ buildutils-0.3.ebuild 1 Oct 2009 23:00:10 -0000 1.2
23 @@ -1,36 +1,38 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.1 2008/04/05 14:51:48 hawking Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/buildutils-0.3.ebuild,v 1.2 2009/10/01 23:00:10 arfrever Exp $
29
30 -NEED_PYTHON=2.4
31 +EAPI="2"
32 +SUPPORT_PYTHON_ABIS="1"
33
34 inherit distutils eutils
35
36 -KEYWORDS="~amd64 ~x86"
37 -
38 DESCRIPTION="Extensions for developing Python libraries and applications."
39 -HOMEPAGE="http://buildutils.lesscode.org/"
40 -SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
41 +HOMEPAGE="http://buildutils.lesscode.org http://pypi.python.org/pypi/buildutils"
42 +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 LICENSE="MIT"
45 SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 IUSE="doc"
48
49 DEPEND="dev-python/setuptools
50 doc? ( dev-python/pudge )"
51 RDEPEND=""
52 +RESTRICT_PYTHON_ABIS="3.*"
53
54 -src_unpack() {
55 - distutils_src_unpack
56 +src_prepare() {
57 + distutils_src_prepare
58
59 # pudge command is disabled by default, enable it.
60 - epatch "${FILESDIR}"/${P}-pudge_addcommand.patch
61 + epatch "${FILESDIR}/${P}-pudge_addcommand.patch"
62 }
63
64 src_compile() {
65 distutils_src_compile
66 - if use doc ; then
67 - einfo "Generating docs as requested..."
68 - "${python}" setup.py pudge || die "generating docs failed"
69 + if use doc; then
70 + einfo "Generation of documentation"
71 + "${python}" setup.py pudge || die "Generation of documentation failed"
72 fi
73 }
74
75
76
77
78 1.6 dev-python/buildutils/ChangeLog
79
80 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/ChangeLog?rev=1.6&view=markup
81 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/ChangeLog?rev=1.6&content-type=text/plain
82 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/buildutils/ChangeLog?r1=1.5&r2=1.6
83
84 Index: ChangeLog
85 ===================================================================
86 RCS file: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v
87 retrieving revision 1.5
88 retrieving revision 1.6
89 diff -u -r1.5 -r1.6
90 --- ChangeLog 5 Apr 2008 14:51:48 -0000 1.5
91 +++ ChangeLog 1 Oct 2009 23:00:10 -0000 1.6
92 @@ -1,6 +1,10 @@
93 # ChangeLog for dev-python/buildutils
94 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
95 -# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v 1.5 2008/04/05 14:51:48 hawking Exp $
96 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
97 +# $Header: /var/cvsroot/gentoo-x86/dev-python/buildutils/ChangeLog,v 1.6 2009/10/01 23:00:10 arfrever Exp $
98 +
99 + 01 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
100 + buildutils-0.3.ebuild:
101 + Set SUPPORT_PYTHON_ABIS.
102
103 *buildutils-0.3 (05 Apr 2008)