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/apsw: ChangeLog apsw-3.7.0.1.ebuild
Date: Sun, 25 Jul 2010 21:13:41
Message-Id: 20100725211339.29C612CE15@corvid.gentoo.org
1 arfrever 10/07/25 21:13:39
2
3 Modified: ChangeLog
4 Added: apsw-3.7.0.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: HEAD/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 dev-python/apsw/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/apsw/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 11 Jun 2010 17:36:12 -0000 1.29
24 +++ ChangeLog 25 Jul 2010 21:13:38 -0000 1.30
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/apsw
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/ChangeLog,v 1.29 2010/06/11 17:36:12 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/ChangeLog,v 1.30 2010/07/25 21:13:38 arfrever Exp $
30 +
31 +*apsw-3.7.0.1 (25 Jul 2010)
32 +
33 + 25 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +apsw-3.7.0.1.ebuild:
35 + Version bump.
36
37 11 Jun 2010; Pawel Hajdan jr <phajdan.jr@g.o>
38 apsw-3.6.23.1.1.ebuild:
39
40
41
42 1.1 dev-python/apsw/apsw-3.7.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/apsw-3.7.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/apsw/apsw-3.7.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: apsw-3.7.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/apsw-3.7.0.1.ebuild,v 1.1 2010/07/25 21:13:38 arfrever Exp $
52
53 EAPI="3"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils eutils versionator
57
58 MY_PV="$(replace_version_separator 3 -r)"
59
60 DESCRIPTION="APSW - Another Python SQLite Wrapper"
61 HOMEPAGE="http://code.google.com/p/apsw/"
62 SRC_URI="http://apsw.googlecode.com/files/${PN}-${MY_PV}.zip"
63
64 LICENSE="as-is"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc64 ~x86"
67 IUSE=""
68
69 RDEPEND=">=dev-db/sqlite-3.7.0"
70 DEPEND="${RDEPEND}
71 app-arch/unzip"
72
73 S="${WORKDIR}/${PN}-${MY_PV}"
74
75 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
76
77 src_prepare() {
78 distutils_src_prepare
79 epatch "${FILESDIR}/${PN}-3.6.20.1-fix_tests.patch"
80 }
81
82 src_compile() {
83 distutils_src_compile --omit=LOAD_EXTENSION
84 }
85
86 src_test() {
87 testing() {
88 PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" tests.py -v
89 }
90 python_execute_function testing
91 }
92
93 src_install() {
94 distutils_src_install
95 dodoc doc/_sources/*
96 dohtml -r doc/*
97 }