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/dulwich: ChangeLog dulwich-0.6.0.ebuild
Date: Wed, 26 May 2010 13:59:41
Message-Id: 20100526135931.D88502CEC0@corvid.gentoo.org
1 arfrever 10/05/26 13:59:31
2
3 Modified: ChangeLog
4 Added: dulwich-0.6.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: HEAD/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 dev-python/dulwich/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 21 Apr 2010 18:10:14 -0000 1.10
23 +++ ChangeLog 26 May 2010 13:59:31 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/dulwich
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.10 2010/04/21 18:10:14 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.11 2010/05/26 13:59:31 arfrever Exp $
29 +
30 +*dulwich-0.6.0 (26 May 2010)
31 +
32 + 26 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +dulwich-0.6.0.ebuild:
34 + Version bump.
35
36 21 Apr 2010; Christian Faulhammer <fauli@g.o> dulwich-0.5.0.ebuild:
37 stable x86, bug 313155
38
39
40
41 1.1 dev-python/dulwich/dulwich-0.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/dulwich-0.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/dulwich-0.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dulwich-0.6.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/dulwich-0.6.0.ebuild,v 1.1 2010/05/26 13:59:31 arfrever Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2"
54 SUPPORT_PYTHON_ABIS="1"
55 DISTUTILS_SRC_TEST="nosetests"
56
57 inherit distutils
58
59 DESCRIPTION="Dulwich is a pure-Python implementation of the Git file formats and protocols."
60 HOMEPAGE="http://samba.org/~jelmer/dulwich/ http://pypi.python.org/pypi/dulwich"
61 SRC_URI="http://samba.org/~jelmer/dulwich/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~ppc-macos"
66 IUSE=""
67
68 DEPEND="dev-python/setuptools"
69 RDEPEND=""
70 RESTRICT_PYTHON_ABIS="3.*"
71
72 src_prepare() {
73 distutils_src_prepare
74
75 # Disable failing tests.
76 sed -e "s/test_check/_&/" -i dulwich/tests/test_objects.py || die "sed failed"
77 sed -e "s/test_commit_deleted/_&/" -i dulwich/tests/test_repository.py || die "sed failed"
78 }
79
80 src_install() {
81 distutils_src_install
82
83 # Don't install tests.
84 delete_tests() {
85 rm -fr "${ED}$(python_get_sitedir)/dulwich/tests"
86 }
87 python_execute_function -q delete_tests
88 }