Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/empy: ChangeLog empy-3.3.2.ebuild
Date: Fri, 30 Jan 2015 10:03:06
Message-Id: 20150130100301.46D5E10AC0@oystercatcher.gentoo.org
1 aballier 15/01/30 10:03:01
2
3 Modified: ChangeLog
4 Added: empy-3.3.2.ebuild
5 Log:
6 bump to latest version and add python 3.3 and 3.4 support since I tested and need it.
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.26 dev-python/empy/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/empy/ChangeLog?rev=1.26&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/empy/ChangeLog?rev=1.26&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/empy/ChangeLog?r1=1.25&r2=1.26
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/empy/ChangeLog,v
21 retrieving revision 1.25
22 retrieving revision 1.26
23 diff -u -r1.25 -r1.26
24 --- ChangeLog 26 Jan 2015 14:28:35 -0000 1.25
25 +++ ChangeLog 30 Jan 2015 10:03:01 -0000 1.26
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/empy
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/empy/ChangeLog,v 1.25 2015/01/26 14:28:35 mrueg Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/empy/ChangeLog,v 1.26 2015/01/30 10:03:01 aballier Exp $
31 +
32 +*empy-3.3.2 (30 Jan 2015)
33 +
34 + 30 Jan 2015; Alexis Ballier <aballier@g.o> +empy-3.3.2.ebuild:
35 + bump to latest version and add python 3.3 and 3.4 support since I tested and
36 + need it.
37
38 26 Jan 2015; Manuel RĂ¼ger <mrueg@g.o> -empy-3.3.ebuild:
39 Remove old.
40
41
42
43 1.1 dev-python/empy/empy-3.3.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/empy/empy-3.3.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/empy/empy-3.3.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: empy-3.3.2.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/empy/empy-3.3.2.ebuild,v 1.1 2015/01/30 10:03:01 aballier Exp $
53
54 EAPI="5"
55 PYTHON_COMPAT=( python{2_6,2_7,3_3,3_4} pypy pypy2_0 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="A powerful and robust templating system for Python"
60 HOMEPAGE="http://www.alcyone.com/software/empy/"
61 SRC_URI="http://www.alcyone.com/software/${PN}/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
66 IUSE="doc"
67
68 DEPEND=""
69 RDEPEND=""
70
71 python_test() {
72 "${PYTHON}" em.py sample.em | diff sample.bench -
73 if [[ ${PIPESTATUS[0]} -ne 0 || ${PIPESTATUS[1]} -ne 0 ]]; then
74 die "Testing failed with ${EPYTHON}"
75 fi
76 }
77
78 python_install_all() {
79 distutils-r1_python_install_all
80 if use doc; then
81 dodir /usr/share/doc/"${PF}"/examples
82 insinto /usr/share/doc/"${PF}"/examples
83 doins sample.em sample.bench
84 #3.3 has the html in this funny place. Fix in later version:
85 dohtml doc/home/max/projects/empy/doc/em/*
86 dohtml doc/home/max/projects/empy/doc/em.html
87 dohtml doc/index.html
88 fi
89 }