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