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/oslotest: oslotest-1.1.0.ebuild ChangeLog
Date: Sat, 27 Sep 2014 04:51:43
Message-Id: 20140927045137.111C46626@oystercatcher.gentoo.org
1 idella4 14/09/27 04:51:37
2
3 Modified: oslotest-1.1.0.ebuild ChangeLog
4 Log:
5 add py3.3 support to support same for oslo-config, add IUSE doc and doc build
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/oslotest/oslotest-1.1.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslotest/oslotest-1.1.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslotest/oslotest-1.1.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslotest/oslotest-1.1.0.ebuild?r1=1.1&r2=1.2
15
16 Index: oslotest-1.1.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/oslotest/oslotest-1.1.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- oslotest-1.1.0.ebuild 22 Sep 2014 21:25:31 -0000 1.1
23 +++ oslotest-1.1.0.ebuild 27 Sep 2014 04:51:37 -0000 1.2
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oslotest/oslotest-1.1.0.ebuild,v 1.1 2014/09/22 21:25:31 prometheanfire Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oslotest/oslotest-1.1.0.ebuild,v 1.2 2014/09/27 04:51:37 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python2_7 )
32 +PYTHON_COMPAT=( python{2_7,3_3} )
33
34 inherit distutils-r1
35
36 @@ -14,7 +14,7 @@
37 LICENSE="Apache-2.0"
38 SLOT="0"
39 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
40 -IUSE="test"
41 +IUSE="doc test"
42
43 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
44 >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}]
45 @@ -39,6 +39,17 @@
46
47 # This time half the doc files are missing; Do you want them?
48
49 +python_compile_all() {
50 + use doc && esetup.py build_sphinx
51 +}
52 +
53 python_test() {
54 nosetests tests/ || die "test failed under ${EPYTHON}"
55 }
56 +
57 +src_install() {
58 + local HTML_DOCS=( doc/pyasn1-tutorial.html )
59 + use doc && HTML_DOCS=( doc/build/html/. )
60 +
61 + distutils-r1_src_install
62 +}
63
64
65
66 1.3 dev-python/oslotest/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslotest/ChangeLog?rev=1.3&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslotest/ChangeLog?rev=1.3&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/oslotest/ChangeLog?r1=1.2&r2=1.3
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/dev-python/oslotest/ChangeLog,v
75 retrieving revision 1.2
76 retrieving revision 1.3
77 diff -u -r1.2 -r1.3
78 --- ChangeLog 22 Sep 2014 21:25:31 -0000 1.2
79 +++ ChangeLog 27 Sep 2014 04:51:37 -0000 1.3
80 @@ -1,6 +1,9 @@
81 # ChangeLog for dev-python/oslotest
82 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/dev-python/oslotest/ChangeLog,v 1.2 2014/09/22 21:25:31 prometheanfire Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oslotest/ChangeLog,v 1.3 2014/09/27 04:51:37 idella4 Exp $
85 +
86 + 27 Sep 2014; Ian Delaney <idella4@g.o> oslotest-1.1.0.ebuild:
87 + add py3.3 support to support same for oslo-config, add IUSE doc and doc build
88
89 *oslotest-1.1.0 (22 Sep 2014)