Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/dulwich: ChangeLog dulwich-0.8.0.ebuild
Date: Thu, 01 Sep 2011 13:08:12
Message-Id: 20110901130752.7D48E20054@flycatcher.gentoo.org
1 grobian 11/09/01 13:07:52
2
3 Modified: ChangeLog dulwich-0.8.0.ebuild
4 Log:
5 Fix compilation on older Darwin hosts, upstream bug 822427
6
7 (Portage version: 2.2.01.19074-prefix/cvs/SunOS i386)
8
9 Revision Changes Path
10 1.35 dev-python/dulwich/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 1 Sep 2011 12:14:48 -0000 1.34
23 +++ ChangeLog 1 Sep 2011 13:07:52 -0000 1.35
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/dulwich
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.34 2011/09/01 12:14:48 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.35 2011/09/01 13:07:52 grobian Exp $
29 +
30 + 01 Sep 2011; Fabian Groffen <grobian@g.o> dulwich-0.8.0.ebuild,
31 + +files/dulwich-0.8.0-darwin.patch:
32 + Fix compilation on older Darwin hosts, upstream bug 822427
33
34 01 Sep 2011; Fabian Groffen <grobian@g.o> dulwich-0.8.0.ebuild:
35 Marked ~amd64-linux dulwich-0.8.0.ebuild
36
37
38
39 1.4 dev-python/dulwich/dulwich-0.8.0.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/dulwich-0.8.0.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/dulwich-0.8.0.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dulwich/dulwich-0.8.0.ebuild?r1=1.3&r2=1.4
44
45 Index: dulwich-0.8.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/dulwich/dulwich-0.8.0.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- dulwich-0.8.0.ebuild 1 Sep 2011 12:14:48 -0000 1.3
52 +++ dulwich-0.8.0.ebuild 1 Sep 2011 13:07:52 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/dulwich-0.8.0.ebuild,v 1.3 2011/09/01 12:14:48 grobian Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/dulwich-0.8.0.ebuild,v 1.4 2011/09/01 13:07:52 grobian Exp $
58
59 EAPI="3"
60 PYTHON_DEPEND="2"
61 @@ -8,7 +8,7 @@
62 RESTRICT_PYTHON_ABIS="3.* *-jython"
63 DISTUTILS_SRC_TEST="nosetests"
64
65 -inherit distutils
66 +inherit distutils eutils
67
68 DESCRIPTION="Dulwich is a pure-Python implementation of the Git file formats and protocols."
69 HOMEPAGE="http://samba.org/~jelmer/dulwich/ http://pypi.python.org/pypi/dulwich"
70 @@ -25,6 +25,7 @@
71
72 src_prepare() {
73 distutils_src_prepare
74 + epatch "${FILESDIR}"/${P}-darwin.patch
75 sed -e "s/test_fetch_from_dulwich(/_&/" -i dulwich/tests/compat/server_utils.py
76 }