Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/formencode: ChangeLog formencode-1.2.1.ebuild
Date: Sun, 26 Apr 2009 09:06:54
Message-Id: E1Ly0K2-0006GO-7z@stork.gentoo.org
1 patrick 09/04/26 09:06:50
2
3 Modified: ChangeLog
4 Added: formencode-1.2.1.ebuild
5 Log:
6 Bump to 1.2.1, dep for bug #260168
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 dev-python/formencode/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/formencode/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/formencode/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/formencode/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 22 Apr 2008 13:44:38 -0000 1.16
23 +++ ChangeLog 26 Apr 2009 09:06:50 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/formencode
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v 1.16 2008/04/22 13:44:38 chtekk Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/ChangeLog,v 1.17 2009/04/26 09:06:50 patrick Exp $
30 +
31 +*formencode-1.2.1 (26 Apr 2009)
32 +
33 + 26 Apr 2009; Patrick Lauer <patrick@g.o> +formencode-1.2.1.ebuild:
34 + Bump to 1.2.1, dep for bug #260168
35
36 22 Apr 2008; Luca Longinotti <chtekk@g.o> formencode-1.0.1.ebuild:
37 Empty RDEPEND.
38
39
40
41 1.1 dev-python/formencode/formencode-1.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/formencode/formencode-1.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/formencode/formencode-1.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: formencode-1.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/formencode/formencode-1.2.1.ebuild,v 1.1 2009/04/26 09:06:50 patrick Exp $
51
52 NEED_PYTHON=2.3
53
54 inherit distutils
55
56 MY_PN="FormEncode"
57 MY_P="${MY_PN}-${PV}"
58
59 DESCRIPTION="HTML form validation, generation and conversion package."
60 HOMEPAGE="http://formencode.org/"
61 SRC_URI="http://cheeseshop.python.org/packages/source/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
62 LICENSE="PSF-2.4"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
65 IUSE="doc"
66
67 DEPEND="dev-python/setuptools"
68 RDEPEND=""
69
70 S="${WORKDIR}/${MY_P}"
71
72 src_install() {
73 distutils_src_install
74
75 if use doc ; then
76 cd "${S}"
77 dodoc docs/*.txt
78
79 insinto /usr/share/doc/${PF}
80 doins -r examples
81 fi
82 }