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/formencode: ChangeLog formencode-1.2.4.ebuild
Date: Sun, 03 Apr 2011 21:16:09
Message-Id: 20110403211559.2A0F820054@flycatcher.gentoo.org
1 arfrever 11/04/03 21:15:59
2
3 Modified: ChangeLog
4 Added: formencode-1.2.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha29_p8/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.22 dev-python/formencode/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/formencode/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/formencode/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/formencode/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 8 Nov 2009 20:05:22 -0000 1.21
24 +++ ChangeLog 3 Apr 2011 21:15:58 -0000 1.22
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/formencode
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v 1.21 2009/11/08 20:05:22 nixnut Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v 1.22 2011/04/03 21:15:58 arfrever Exp $
31 +
32 +*formencode-1.2.4 (03 Apr 2011)
33 +
34 + 03 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + +formencode-1.2.4.ebuild:
36 + Version bump.
37
38 08 Nov 2009; nixnut <nixnut@g.o> formencode-1.2.2.ebuild:
39 ppc stable #290611
40
41
42
43 1.1 dev-python/formencode/formencode-1.2.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/formencode/formencode-1.2.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/formencode/formencode-1.2.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: formencode-1.2.4.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/formencode-1.2.4.ebuild,v 1.1 2011/04/03 21:15:58 arfrever Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.*"
58
59 inherit distutils
60
61 MY_PN="FormEncode"
62 MY_P="${MY_PN}-${PV}"
63
64 DESCRIPTION="HTML form validation, generation, and conversion package"
65 HOMEPAGE="http://formencode.org/ http://pypi.python.org/pypi/FormEncode"
66 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
67
68 LICENSE="PSF-2.4"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
71 IUSE=""
72
73 DEPEND="dev-python/setuptools"
74 RDEPEND=""
75
76 S="${WORKDIR}/${MY_P}"
77
78 DOCS="docs/*.txt"
79
80 src_prepare() {
81 distutils_src_prepare
82
83 # Avoid test failure when dev-python/formencode isn't already installed.
84 sed -e "/pkg_resources/d" -i tests/__init__.py
85 }