Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/dulwich: ChangeLog dulwich-0.4.1.ebuild
Date: Mon, 04 Jan 2010 08:19:01
Message-Id: E1NRi9Q-0005y1-0j@stork.gentoo.org
1 djc 10/01/04 08:18:56
2
3 Modified: ChangeLog
4 Added: dulwich-0.4.1.ebuild
5 Log:
6 Bump dev-python/dulwich to 0.4.1.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-python/dulwich/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/dulwich/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/dulwich/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/dulwich/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 1 Dec 2009 10:16:32 -0000 1.3
23 +++ ChangeLog 4 Jan 2010 08:18:55 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/dulwich
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.3 2009/12/01 10:16:32 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.4 2010/01/04 08:18:55 djc Exp $
30 +
31 +*dulwich-0.4.1 (04 Jan 2010)
32 +
33 + 04 Jan 2010; Dirkjan Ochtman <djc@g.o> +dulwich-0.4.1.ebuild:
34 + Bump to 0.4.1.
35
36 01 Dec 2009; Markus Meier <maekke@g.o> dulwich-0.4.0.ebuild:
37 amd64/x86 stable, bug #295213
38
39
40
41 1.1 dev-python/dulwich/dulwich-0.4.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/dulwich/dulwich-0.4.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/dulwich/dulwich-0.4.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dulwich-0.4.1.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.4.1.ebuild,v 1.1 2010/01/04 08:18:55 djc Exp $
51
52 EAPI="2"
53 SUPPORT_PYTHON_ABIS="1"
54
55 inherit distutils
56
57 DESCRIPTION="Dulwich is a pure-Python implementation of the Git file formats and protocols."
58 HOMEPAGE="http://samba.org/~jelmer/dulwich/ http://pypi.python.org/pypi/dulwich"
59 SRC_URI="http://samba.org/~jelmer/dulwich/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 DEPEND="test? ( dev-python/nose )"
67 RDEPEND=""
68 RESTRICT_PYTHON_ABIS="3.*"
69
70 src_test() {
71 testing() {
72 PYTHONPATH="build-${PYTHON_ABI}/lib" nosetests-${PYTHON_ABI}
73 }
74 python_execute_function testing
75 }