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/colander: colander-0.9.4.ebuild ChangeLog
Date: Tue, 07 Feb 2012 08:04:03
Message-Id: 20120207080354.601962004B@flycatcher.gentoo.org
1 patrick 12/02/07 08:03:54
2
3 Modified: ChangeLog
4 Added: colander-0.9.4.ebuild
5 Log:
6 Bump for #402445
7
8 (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-python/colander/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 30 Jul 2011 01:43:51 -0000 1.1
24 +++ ChangeLog 7 Feb 2012 08:03:54 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/colander
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v 1.1 2011/07/30 01:43:51 rafaelmartins Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v 1.2 2012/02/07 08:03:54 patrick Exp $
31 +
32 +*colander-0.9.4 (07 Feb 2012)
33 +
34 + 07 Feb 2012; Patrick Lauer <patrick@g.o> +colander-0.9.4.ebuild:
35 + Bump for #402445
36
37 *colander-0.9.3 (30 Jul 2011)
38
39
40
41
42 1.1 dev-python/colander/colander-0.9.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/colander-0.9.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/colander-0.9.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: colander-0.9.4.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/colander/colander-0.9.4.ebuild,v 1.1 2012/02/07 08:03:54 patrick Exp $
52
53 EAPI=3
54
55 SUPPORT_PYTHON_ABIS=1
56 PYTHON_DEPEND="2"
57 RESTRICT_PYTHON_ABIS="3.*"
58 DISTUTILS_SRC_TEST="setup.py"
59
60 inherit distutils
61
62 DESCRIPTION="A simple schema-based serialization and deserialization library"
63 HOMEPAGE="http://docs.repoze.org/colander http://pypi.python.org/pypi/colander"
64 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65
66 LICENSE="repoze"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="doc test"
70
71 RDEPEND="dev-python/translationstring
72 dev-python/iso8601"
73
74 DEPEND="${RDEPEND}
75 dev-python/setuptools
76 doc? ( dev-python/sphinx )"
77
78 src_prepare() {
79 distutils_src_prepare
80
81 # fix sphinx theme. pylons theme not include in source
82 sed -i -e 's/pylons/default/' docs/conf.py || die 'sed failed.'
83 }
84
85 src_compile() {
86 distutils_src_compile
87
88 if use doc; then
89 cd docs
90 mkdir _themes
91 emake html || die "make html failed"
92 fi
93 }
94
95 src_install() {
96 distutils_src_install
97
98 if use doc; then
99 dohtml -r docs/_build/html/* || die "dohtml failed"
100 fi
101 }