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/quixote: ChangeLog quixote-2.6.ebuild
Date: Mon, 01 Nov 2010 00:55:02
Message-Id: 20101101005454.ED33320051@flycatcher.gentoo.org
1 arfrever 10/11/01 00:54:54
2
3 Modified: ChangeLog quixote-2.6.ebuild
4 Log:
5 Update EAPI. Fix dependencies. Set SUPPORT_PYTHON_ABIS. Avoid breaking strict-aliasing rules.
6
7 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.32 dev-python/quixote/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/quixote/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/quixote/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/quixote/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 1 Nov 2010 00:49:25 -0000 1.31
23 +++ ChangeLog 1 Nov 2010 00:54:54 -0000 1.32
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/quixote
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v 1.31 2010/11/01 00:49:25 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/ChangeLog,v 1.32 2010/11/01 00:54:54 arfrever Exp $
29 +
30 + 01 Nov 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + quixote-2.6.ebuild:
32 + Update EAPI. Fix dependencies. Set SUPPORT_PYTHON_ABIS. Avoid breaking
33 + strict-aliasing rules.
34
35 01 Nov 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
36 -quixote-0.6.1.ebuild:
37
38
39
40 1.7 dev-python/quixote/quixote-2.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/quixote/quixote-2.6.ebuild?rev=1.7&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/quixote/quixote-2.6.ebuild?rev=1.7&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/quixote/quixote-2.6.ebuild?r1=1.6&r2=1.7
45
46 Index: quixote-2.6.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-2.6.ebuild,v
49 retrieving revision 1.6
50 retrieving revision 1.7
51 diff -u -r1.6 -r1.7
52 --- quixote-2.6.ebuild 7 Jan 2010 21:54:49 -0000 1.6
53 +++ quixote-2.6.ebuild 1 Nov 2010 00:54:54 -0000 1.7
54 @@ -1,12 +1,17 @@
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-2.6.ebuild,v 1.6 2010/01/07 21:54:49 josejx Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-2.6.ebuild,v 1.7 2010/11/01 00:54:54 arfrever Exp $
59 +
60 +EAPI="3"
61 +PYTHON_DEPEND="2"
62 +SUPPORT_PYTHON_ABIS="1"
63 +RESTRICT_PYTHON_ABIS="3.*"
64
65 inherit distutils
66
67 -MY_P=${P/q/Q}
68 +MY_P="${P/q/Q}"
69
70 -DESCRIPTION="Python HTML templating framework for developing web applications."
71 +DESCRIPTION="Python HTML templating framework for developing web applications"
72 HOMEPAGE="http://quixote.ca"
73 SRC_URI="http://quixote.ca/releases/${MY_P}.tar.gz"
74
75 @@ -15,13 +20,16 @@
76 KEYWORDS="amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
77 IUSE=""
78
79 -DEPEND=">=dev-lang/python-2.3"
80 +DEPEND=""
81 +RDEPEND=""
82
83 S="${WORKDIR}"/${MY_P}
84
85 +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
86 +
87 +DOCS="ACKS.txt CHANGES.txt doc/*.txt"
88 +
89 src_install() {
90 - DOCS="ACKS.txt CHANGES.txt"
91 distutils_src_install
92 - dodoc doc/*.txt
93 - dohtml doc/*.html
94 + dohtml doc/*.html || die "dohtml failed"
95 }