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/suds: suds-0.6-r1.ebuild
Date: Sat, 25 Jul 2015 04:59:21
Message-Id: 20150725045917.04FB0BB@oystercatcher.gentoo.org
1 idella4 15/07/25 04:59:17
2
3 Modified: suds-0.6-r1.ebuild
4 Log:
5 tidy to ebuild with ack from prometheanfire
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/suds/suds-0.6-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/suds/suds-0.6-r1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/suds/suds-0.6-r1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/suds/suds-0.6-r1.ebuild?r1=1.1&r2=1.2
15
16 Index: suds-0.6-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/suds/suds-0.6-r1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- suds-0.6-r1.ebuild 25 Jul 2015 04:06:47 -0000 1.1
23 +++ suds-0.6-r1.ebuild 25 Jul 2015 04:59:16 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/suds/suds-0.6-r1.ebuild,v 1.1 2015/07/25 04:06:47 prometheanfire Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/suds/suds-0.6-r1.ebuild,v 1.2 2015/07/25 04:59:16 idella4 Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
32 @@ -17,23 +17,19 @@
33 SLOT="0"
34 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
35 IUSE="doc test"
36 -REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
37 +
38 +REQUIRED_USE="doc? ( $(python_gen_useflags python2_7) )"
39
40 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
41 - doc? ( dev-python/epydoc[$(python_gen_usedep 'python2*')] )
42 + doc? ( dev-python/epydoc[$(python_gen_usedep python2_7)] )
43 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
44 RDEPEND=""
45
46 DOCS=( README.rst notes/{argument_parsing.rst,readme.txt,traversing_client_data.rst} )
47
48 -#python_prepare() {
49 -# rm -R tests
50 -#}
51 -
52 -python_compile() {
53 - distutils-r1_python_compile
54 - use doc && epydoc -n "Suds - ${DESCRIPTION}" -o doc suds || die
55 +python_compile_all() {
56 # to say that it's both, because it kinda is...
57 + use doc && epydoc -n "Suds - ${DESCRIPTION}" -o doc suds || die
58 }
59
60 python_test() {