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/subvertpy: ChangeLog subvertpy-0.8.0.ebuild
Date: Thu, 03 Mar 2011 01:57:45
Message-Id: 20110303015735.71E8820054@flycatcher.gentoo.org
1 arfrever 11/03/03 01:57:35
2
3 Modified: ChangeLog
4 Added: subvertpy-0.8.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha26_p5/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.28 dev-python/subvertpy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 11 Jan 2011 22:06:51 -0000 1.27
24 +++ ChangeLog 3 Mar 2011 01:57:35 -0000 1.28
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/subvertpy
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.27 2011/01/11 22:06:51 arfrever Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.28 2011/03/03 01:57:35 arfrever Exp $
30 +
31 +*subvertpy-0.8.0 (03 Mar 2011)
32 +
33 + 03 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +subvertpy-0.8.0.ebuild:
35 + Version bump.
36
37 11 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
38 -subvertpy-0.7.3.1.ebuild, -subvertpy-0.7.4.ebuild:
39
40
41
42 1.1 dev-python/subvertpy/subvertpy-0.8.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: subvertpy-0.8.0.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/subvertpy/subvertpy-0.8.0.ebuild,v 1.1 2011/03/03 01:57:35 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.* *-jython"
57 DISTUTILS_SRC_TEST="nosetests"
58
59 inherit distutils
60
61 DESCRIPTION="Alternative Python bindings for Subversion"
62 HOMEPAGE="http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy"
63 SRC_URI="http://samba.org/~jelmer/${PN}/${P}.tar.gz"
64
65 LICENSE="|| ( LGPL-2.1 LGPL-3 )"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND=">=dev-vcs/subversion-1.4"
71 RDEPEND="${DEPEND}"
72
73 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
74
75 DOCS="NEWS AUTHORS"
76
77 distutils_src_test_pre_hook() {
78 local module
79 for module in _ra client repos wc; do
80 ln -fs "../$(ls -d build-${PYTHON_ABI}/lib.*)/subvertpy/${module}.so" "subvertpy/${module}.so" || die "Symlinking subvertpy/${module}.so failed with $(python_get_implementation) $(python_get_version)"
81 done
82 }
83
84 src_install() {
85 distutils_src_install
86
87 delete_tests() {
88 rm -fr "${ED}$(python_get_sitedir)/subvertpy/tests"
89 }
90 python_execute_function -q delete_tests
91 }