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/argparse: ChangeLog argparse-1.1.ebuild
Date: Mon, 01 Mar 2010 20:13:55
Message-Id: E1NmC00-0007Oi-ED@stork.gentoo.org
1 arfrever 10/03/01 20:13:52
2
3 Modified: ChangeLog
4 Added: argparse-1.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 15511-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-python/argparse/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/argparse/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/argparse/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/argparse/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/argparse/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 2 Dec 2009 10:49:48 -0000 1.3
23 +++ ChangeLog 1 Mar 2010 20:13:51 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/argparse
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/argparse/ChangeLog,v 1.3 2009/12/02 10:49:48 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/argparse/ChangeLog,v 1.4 2010/03/01 20:13:51 arfrever Exp $
30 +
31 +*argparse-1.1 (01 Mar 2010)
32 +
33 + 01 Mar 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +argparse-1.1.ebuild:
35 + Version bump.
36
37 02 Dec 2009; Markus Meier <maekke@g.o> argparse-1.0.1.ebuild:
38 amd64/x86 stable, bug #295222
39
40
41
42 1.1 dev-python/argparse/argparse-1.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/argparse/argparse-1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/argparse/argparse-1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: argparse-1.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/argparse/argparse-1.1.ebuild,v 1.1 2010/03/01 20:13:51 arfrever Exp $
52
53 EAPI="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 DESCRIPTION="Provides an easy, declarative interface for creating command line tools."
59 HOMEPAGE="http://code.google.com/p/argparse/ http://pypi.python.org/pypi/argparse"
60 SRC_URI="http://argparse.googlecode.com/files/${P}.zip"
61 LICENSE="Apache-2.0"
62
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND=""
68 RDEPEND=""
69
70 PYTHON_MODNAME="argparse.py"
71
72 src_test() {
73 testing() {
74 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_argparse.py
75 }
76 python_execute_function testing
77 }