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: subvertpy-0.7.3.1.ebuild ChangeLog
Date: Tue, 27 Jul 2010 19:06:10
Message-Id: 20100727190606.048C22CF37@corvid.gentoo.org
1 arfrever 10/07/27 19:06:05
2
3 Modified: ChangeLog
4 Added: subvertpy-0.7.3.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: HEAD/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 dev-python/subvertpy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 21 Jul 2010 11:42:29 -0000 1.16
24 +++ ChangeLog 27 Jul 2010 19:06:05 -0000 1.17
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/subvertpy
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.16 2010/07/21 11:42:29 djc Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/ChangeLog,v 1.17 2010/07/27 19:06:05 arfrever Exp $
30 +
31 +*subvertpy-0.7.3.1 (27 Jul 2010)
32 +
33 + 27 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +subvertpy-0.7.3.1.ebuild:
35 + Version bump.
36
37 *subvertpy-0.7.3 (21 Jul 2010)
38
39
40
41
42 1.1 dev-python/subvertpy/subvertpy-0.7.3.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/subvertpy-0.7.3.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/subvertpy/subvertpy-0.7.3.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: subvertpy-0.7.3.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/subvertpy/subvertpy-0.7.3.1.ebuild,v 1.1 2010/07/27 19:06:05 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.*"
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="test"
69
70 RDEPEND=">=dev-vcs/subversion-1.4
71 !<dev-util/bzr-svn-0.5.0_rc2"
72 DEPEND="${RDEPEND}
73 test? ( dev-python/nose )"
74
75 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
76
77 DOCS="NEWS AUTHORS"
78
79 distutils_src_test_pre_hook() {
80 local module
81 for module in _ra client repos wc; do
82 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)"
83 done
84 }