Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/oslo-config: oslo-config-1.1.1.ebuild ChangeLog
Date: Sun, 28 Jul 2013 15:37:58
Message-Id: 20130728153751.55EC22171C@flycatcher.gentoo.org
1 idella4 13/07/28 15:37:51
2
3 Modified: ChangeLog
4 Added: oslo-config-1.1.1.ebuild
5 Log:
6 bump; add deps for tests, test phase
7
8 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.2 dev-python/oslo-config/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-config/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-config/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-config/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-config/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 10 Apr 2013 16:04:44 -0000 1.1
24 +++ ChangeLog 28 Jul 2013 15:37:51 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/oslo-config
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-config/ChangeLog,v 1.1 2013/04/10 16:04:44 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-config/ChangeLog,v 1.2 2013/07/28 15:37:51 idella4 Exp $
30 +
31 +*oslo-config-1.1.1 (28 Jul 2013)
32 +
33 + 28 Jul 2013; Ian Delaney <idella4@g.o> +oslo-config-1.1.1.ebuild:
34 + bump; add deps for tests, test phase
35
36 *oslo-config-1.1.0 (10 Apr 2013)
37
38
39
40
41 1.1 dev-python/oslo-config/oslo-config-1.1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-config/oslo-config-1.1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-config/oslo-config-1.1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: oslo-config-1.1.1.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/oslo-config/oslo-config-1.1.1.ebuild,v 1.1 2013/07/28 15:37:51 idella4 Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_6 python2_7 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="The Oslo configuration API supports parsing command line arguments
58 and ini style configuration files"
59 HOMEPAGE="https://pypi.python.org/pypi/oslo.config"
60 SRC_URI="mirror://pypi/${PN:0:1}/oslo.config/oslo.config-${PV}.tar.gz"
61 S="${WORKDIR}/oslo.config-${PV}"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="test"
67
68 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
69 test? ( dev-python/pyflakes[${PYTHON_USEDEP}]
70 >=dev-python/fixtures-0.3.12[${PYTHON_USEDEP}]
71 dev-python/nose-exclude[${PYTHON_USEDEP}]
72 dev-python/nose[${PYTHON_USEDEP}]
73 dev-python/mox[${PYTHON_USEDEP}]
74 >=dev-python/testtools-0.9.22[${PYTHON_USEDEP}] )"
75 RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}]"
76
77 # This time half the doc files are missing; Do you want them?
78
79 python_test() {
80 nosetests tests/ || die "test failed under ${EPYTHON}"
81 }