Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/stevedore: ChangeLog stevedore-0.11.ebuild
Date: Thu, 29 Aug 2013 20:23:29
Message-Id: 20130829202322.0EE652004C@flycatcher.gentoo.org
1 radhermit 13/08/29 20:23:21
2
3 Modified: ChangeLog
4 Added: stevedore-0.11.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.9 dev-python/stevedore/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 28 Aug 2013 11:15:13 -0000 1.8
24 +++ ChangeLog 29 Aug 2013 20:23:21 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/stevedore
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v 1.8 2013/08/28 11:15:13 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v 1.9 2013/08/29 20:23:21 radhermit Exp $
30 +
31 +*stevedore-0.11 (29 Aug 2013)
32 +
33 + 29 Aug 2013; Tim Harder <radhermit@g.o> +stevedore-0.11.ebuild:
34 + Version bump.
35
36 28 Aug 2013; Agostino Sarubbo <ago@g.o> stevedore-0.9.1.ebuild:
37 Stable for x86, wrt bug #450086
38
39
40
41 1.1 dev-python/stevedore/stevedore-0.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/stevedore-0.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/stevedore-0.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: stevedore-0.11.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/stevedore/stevedore-0.11.ebuild,v 1.1 2013/08/29 20:23:21 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy2_0 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Manage dynamic plugins for Python applications"
58 HOMEPAGE="https://github.com/dreamhost/stevedore"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc test"
65
66 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
67 test? ( dev-python/nose[${PYTHON_USEDEP}]
68 dev-python/mock[${PYTHON_USEDEP}]
69 dev-python/coverage[${PYTHON_USEDEP}]
70 dev-python/flake8[$(python_gen_usedep python{2_7,3_2,3_3})] )
71 doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
72 dev-python/pillow[$(python_gen_usedep python{2_7,3_2,3_3})] )"
73
74 python_compile_all() {
75 if use doc; then
76 mkdir docs/source/_build || die
77 sphinx-build -b html -c docs/source docs/source/ docs/source/_build
78 fi
79 }
80
81 python_test() {
82 nosetests -d --with-coverage --cover-inclusive --cover-package stevedore \
83 || die "Tests failed under ${EPYTHON}"
84 flake8 stevedore setup.py || die
85 }
86
87 python_install_all() {
88 use doc && local HTML_DOCS=( docs/source/_build/. )
89 distutils-r1_python_install_all
90 }