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/encore: encore-0.4.0.ebuild ChangeLog
Date: Mon, 02 Sep 2013 04:01:36
Message-Id: 20130902040129.45B052004C@flycatcher.gentoo.org
1 patrick 13/09/02 04:01:29
2
3 Modified: ChangeLog
4 Added: encore-0.4.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.5 dev-python/encore/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 14 May 2013 13:06:37 -0000 1.4
24 +++ ChangeLog 2 Sep 2013 04:01:29 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/encore
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v 1.4 2013/05/14 13:06:37 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/encore/ChangeLog,v 1.5 2013/09/02 04:01:29 patrick Exp $
30 +
31 +*encore-0.4.0 (02 Sep 2013)
32 +
33 + 02 Sep 2013; Patrick Lauer <patrick@g.o> +encore-0.4.0.ebuild:
34 + Bump
35
36 14 May 2013; Ian Delaney <idella4@g.o> -encore-0.2.ebuild:
37 drop old
38
39
40
41 1.1 dev-python/encore/encore-0.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/encore-0.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/encore/encore-0.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: encore-0.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/encore/encore-0.4.0.ebuild,v 1.1 2013/09/02 04:01:29 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Enthought Tool Suite: collection of core-level utility modules"
59 HOMEPAGE="https://github.com/enthought/encore"
60 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65 IUSE="doc examples test"
66
67 RDEPEND=""
68 DEPEND="${RDEPEND}
69 dev-python/setuptools[${PYTHON_USEDEP}]
70 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
71 test? (
72 dev-python/futures[${PYTHON_USEDEP}]
73 dev-python/nose[${PYTHON_USEDEP}]
74 )"
75
76 python_compile_all() {
77 use doc && emake -C docs html
78 }
79
80 python_test() {
81 if [[ ${EPYTHON} == python2.6 ]]; then
82 ewarn "Tests disabled for ${EPYTHON}"
83 return 0
84 fi
85 nosetests || die
86 }
87
88 python_install_all() {
89 distutils-r1_python_install_all
90
91 use doc && dohtml -r docs/build/html/*
92
93 if use examples; then
94 insinto /usr/share/doc/${PF}
95 doins -r examples
96 fi
97 }