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/oslo-context: oslo-context-0.1.0-r1.ebuild ChangeLog
Date: Sat, 28 Feb 2015 07:01:34
Message-Id: 20150228070127.CFBCA12B7D@oystercatcher.gentoo.org
1 prometheanfire 15/02/28 07:01:27
2
3 Modified: ChangeLog
4 Added: oslo-context-0.1.0-r1.ebuild
5 Log:
6 adding py3 support to oslo-context
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x33ED3FD25AFC78BA)
9
10 Revision Changes Path
11 1.3 dev-python/oslo-context/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 31 Jan 2015 18:14:32 -0000 1.2
24 +++ ChangeLog 28 Feb 2015 07:01:27 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/oslo-context
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.2 2015/01/31 18:14:32 prometheanfire Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/ChangeLog,v 1.3 2015/02/28 07:01:27 prometheanfire Exp $
30 +
31 +*oslo-context-0.1.0-r1 (28 Feb 2015)
32 +
33 + 28 Feb 2015; Matthew Thode <prometheanfire@g.o>
34 + +oslo-context-0.1.0-r1.ebuild:
35 + adding py3 support to oslo-context
36
37 31 Jan 2015; Matthew Thode <prometheanfire@g.o> metadata.xml:
38 touching for signing
39
40
41
42 1.1 dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: oslo-context-0.1.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-context/oslo-context-0.1.0-r1.ebuild,v 1.1 2015/02/28 07:01:27 prometheanfire Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Helpers to maintain useful information about a request context"
59 HOMEPAGE="https://pypi.python.org/pypi/oslo.context"
60 SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
61 S="${WORKDIR}/oslo.context-${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 >=dev-python/pbr-0.8[${PYTHON_USEDEP}]
70 <dev-python/pbr-1.0[${PYTHON_USEDEP}]
71 test? (
72 >=dev-python/hacking-0.9.2[${PYTHON_USEDEP}]
73 <dev-python/hacking-0.10[${PYTHON_USEDEP}]
74 >=dev-python/oslotest-1.2.0[${PYTHON_USEDEP}]
75 >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
76 >=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]
77 >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
78 !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
79 <dev-python/sphinx-1.3.0[${PYTHON_USEDEP}]
80 )"
81 RDEPEND="
82 >=dev-python/Babel-1.3[${PYTHON_USEDEP}]
83 "
84
85 # This time half the doc files are missing; Do you want them?
86
87 python_test() {
88 nosetests tests/ || die "test failed under ${EPYTHON}"
89 }