Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/colander: colander-0.9.7.ebuild ChangeLog
Date: Sun, 08 Apr 2012 19:33:57
Message-Id: 20120408193343.941982004B@flycatcher.gentoo.org
1 floppym 12/04/08 19:33:43
2
3 Modified: ChangeLog
4 Added: colander-0.9.7.ebuild
5 Log:
6 Version bump, #411049 by Ian Delaney.
7
8 (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-python/colander/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 22 Feb 2012 23:42:21 -0000 1.3
24 +++ ChangeLog 8 Apr 2012 19:33:43 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/colander
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v 1.3 2012/02/22 23:42:21 marienz Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/colander/ChangeLog,v 1.4 2012/04/08 19:33:43 floppym Exp $
30 +
31 +*colander-0.9.7 (08 Apr 2012)
32 +
33 + 08 Apr 2012; Mike Gilbert <floppym@g.o> +colander-0.9.7.ebuild:
34 + Version bump, #411049 by Ian Delaney.
35
36 *colander-0.9.6 (22 Feb 2012)
37
38
39
40
41 1.1 dev-python/colander/colander-0.9.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/colander-0.9.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/colander/colander-0.9.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: colander-0.9.7.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/colander/colander-0.9.7.ebuild,v 1.1 2012/04/08 19:33:43 floppym Exp $
51
52 EAPI=4
53
54 SUPPORT_PYTHON_ABIS=1
55 PYTHON_DEPEND="2:2.6 3:3.2"
56 RESTRICT_PYTHON_ABIS="2.4 2.5 3.0 3.1"
57 DISTUTILS_SRC_TEST="setup.py"
58
59 inherit distutils
60
61 DESCRIPTION="A simple schema-based serialization and deserialization library"
62 HOMEPAGE="http://docs.pylonsproject.org/projects/colander/en/latest/ http://pypi.python.org/pypi/colander"
63 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64
65 # MIT license is used by included (modified) iso8601.py code.
66 LICENSE="repoze MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70
71 # Depend on an ebuild of translationstring with Python 3 support.
72 RDEPEND=">=dev-python/translationstring-1.1"
73
74 DEPEND="${RDEPEND}
75 dev-python/setuptools"
76
77 # Include COPYRIGHT.txt because the license seems to require it.
78 DOCS="CHANGES.txt COPYRIGHT.txt README.txt"
79
80 src_install() {
81 distutils_src_install
82
83 # The docs do not currently build for me and depend on a theme
84 # only available from git that contains hardcoded references
85 # to files on https://static.pylonsproject.org/ (so the docs
86 # would not actually work offline). Include the source, which
87 # is at least somewhat readable.
88
89 docinto docs
90 dodoc docs/*.rst
91 }