Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/stevedore: stevedore-0.15.ebuild ChangeLog
Date: Sun, 30 Mar 2014 04:29:37
Message-Id: 20140330042919.55C5920057@flycatcher.gentoo.org
1 prometheanfire 14/03/30 04:29:19
2
3 Modified: ChangeLog
4 Added: stevedore-0.15.ebuild
5 Log:
6 new bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
9
10 Revision Changes Path
11 1.14 dev-python/stevedore/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 1 Mar 2014 02:13:24 -0000 1.13
24 +++ ChangeLog 30 Mar 2014 04:29:19 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/stevedore
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v 1.13 2014/03/01 02:13:24 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v 1.14 2014/03/30 04:29:19 prometheanfire Exp $
30 +
31 +*stevedore-0.15 (30 Mar 2014)
32 +
33 + 30 Mar 2014; Matthew Thode <prometheanfire@g.o> +stevedore-0.15.ebuild:
34 + new bump
35
36 *stevedore-0.14.1 (01 Mar 2014)
37
38
39
40
41 1.1 dev-python/stevedore/stevedore-0.15.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/stevedore-0.15.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/stevedore/stevedore-0.15.ebuild?rev=1.1&content-type=text/plain
45
46 Index: stevedore-0.15.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.15.ebuild,v 1.1 2014/03/30 04:29:19 prometheanfire 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 virtual/python-argparse[${PYTHON_USEDEP}]
68 >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}]
69 <dev-python/pbr-1.0[${PYTHON_USEDEP}]
70 test? ( dev-python/nose[${PYTHON_USEDEP}]
71 dev-python/mock[${PYTHON_USEDEP}]
72 dev-python/coverage[${PYTHON_USEDEP}]
73 dev-python/flake8[$(python_gen_usedep python{2_7,3_2,3_3})] )
74 doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
75 dev-python/pillow[$(python_gen_usedep python{2_7,3_2,3_3})] )"
76
77 python_compile_all() {
78 if use doc; then
79 mkdir docs/source/_build || die
80 sphinx-build -b html -c docs/source docs/source/ docs/source/_build
81 fi
82 }
83
84 python_test() {
85 nosetests -d --with-coverage --cover-inclusive --cover-package stevedore \
86 || die "Tests failed under ${EPYTHON}"
87 flake8 stevedore setup.py || die
88 }
89
90 python_install_all() {
91 use doc && local HTML_DOCS=( docs/source/_build/. )
92 distutils-r1_python_install_all
93 }