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