Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/kid: kid-0.9.6-r1.ebuild ChangeLog kid-0.9.6.ebuild
Date: Wed, 05 Jun 2013 05:57:31
Message-Id: 20130605055723.89E872171D@flycatcher.gentoo.org
1 idella4 13/06/05 05:57:23
2
3 Modified: ChangeLog
4 Added: kid-0.9.6-r1.ebuild
5 Removed: kid-0.9.6.ebuild
6 Log:
7 revbump, migrate -> distutils-r1, remove old
8
9 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.16 dev-python/kid/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kid/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kid/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kid/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/kid/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 10 Oct 2009 17:24:44 -0000 1.15
25 +++ ChangeLog 5 Jun 2013 05:57:23 -0000 1.16
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/kid
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kid/ChangeLog,v 1.15 2009/10/10 17:24:44 grobian Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kid/ChangeLog,v 1.16 2013/06/05 05:57:23 idella4 Exp $
32 +
33 +*kid-0.9.6-r1 (05 Jun 2013)
34 +
35 + 05 Jun 2013; Ian Delaney <idella4@g.o> +kid-0.9.6-r1.ebuild,
36 + -kid-0.9.6.ebuild:
37 + revbump, migrate -> distutils-r1, remove old
38
39 10 Oct 2009; Fabian Groffen <grobian@g.o> kid-0.9.6.ebuild:
40 Merge from Prefix
41 @@ -76,4 +82,3 @@
42 10 Nov 2005; Rob Cakebread <pythonhead@g.o>
43 +files/kid-0.7.1-ezsetup-gentoo.patch, +metadata.xml, +kid-0.7.1.ebuild:
44 Initial commit.
45 -
46
47
48
49 1.1 dev-python/kid/kid-0.9.6-r1.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kid/kid-0.9.6-r1.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/kid/kid-0.9.6-r1.ebuild?rev=1.1&content-type=text/plain
53
54 Index: kid-0.9.6-r1.ebuild
55 ===================================================================
56 # Copyright 1999-2013 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/dev-python/kid/kid-0.9.6-r1.ebuild,v 1.1 2013/06/05 05:57:23 idella4 Exp $
59
60 EAPI=5
61 PYTHON_COMPAT=( python{2_6,2_7} )
62
63 inherit distutils-r1
64
65 DESCRIPTION="A simple and Pythonic XML template language"
66 HOMEPAGE="http://www.kid-templating.org/ http://pypi.python.org/pypi/kid"
67 SRC_URI="http://www.kid-templating.org/dist/${PV}/${P}.tar.gz"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ia64 ~x86 ~amd64-linux ~x86-linux ~x86-macos"
72 IUSE="doc examples test"
73
74 RDEPEND=""
75 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
76 doc? ( dev-python/docutils[${PYTHON_USEDEP}] )"
77 RESTRICT_PYTHON_ABIS="3.*"
78
79 DOCS=( README doc/{guide.txt,index.txt,notes.txt} )
80
81 python_prepare_all() {
82 use test && DISTUTILS_NO_PARALLEL_BUILD=1
83 distutils-r1_python_prepare_all
84 }
85
86 python_compile_all() {
87 use doc && emake -C doc
88 }
89
90 python_test() {
91 py.test -xl || die
92 }
93
94 python_install_all() {
95 # dobin bin/*
96
97 use doc && local HTML_DOCS=( doc/html/. )
98 use examples && local EXAMPLES=( examples/. )
99
100 distutils-r1_python_install_all
101 }