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/testfixtures: testfixtures-3.0.0.ebuild ChangeLog testfixtures-2.3.4.ebuild
Date: Mon, 30 Jun 2014 08:19:00
Message-Id: 20140630081854.777502004F@flycatcher.gentoo.org
1 idella4 14/06/30 08:18:54
2
3 Modified: testfixtures-3.0.0.ebuild ChangeLog
4 Removed: testfixtures-2.3.4.ebuild
5 Log:
6 drop py2.6, update deps, docbuild (includes new patch), remove old ebuild and patch, fixes bug #515752 by Patrick
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.4 dev-python/testfixtures/testfixtures-3.0.0.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testfixtures/testfixtures-3.0.0.ebuild?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testfixtures/testfixtures-3.0.0.ebuild?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testfixtures/testfixtures-3.0.0.ebuild?r1=1.3&r2=1.4
16
17 Index: testfixtures-3.0.0.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/testfixtures/testfixtures-3.0.0.ebuild,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- testfixtures-3.0.0.ebuild 19 Mar 2014 23:10:07 -0000 1.3
24 +++ testfixtures-3.0.0.ebuild 30 Jun 2014 08:18:54 -0000 1.4
25 @@ -1,9 +1,9 @@
26 # Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/testfixtures/testfixtures-3.0.0.ebuild,v 1.3 2014/03/19 23:10:07 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/testfixtures/testfixtures-3.0.0.ebuild,v 1.4 2014/06/30 08:18:54 idella4 Exp $
30
31 EAPI=5
32 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
33 +PYTHON_COMPAT=( python{2_7,3_2,3_3} )
34
35 inherit distutils-r1
36
37 @@ -16,18 +16,19 @@
38 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
39 IUSE="doc test"
40
41 -RDEPEND=""
42 -DEPEND="${RDEPEND}
43 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
44 +DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}]
45 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
46 + $(python_gen_cond_dep 'dev-python/pkginfo[${PYTHON_USEDEP}]' python2_7) )
47 test? ( dev-python/manuel[${PYTHON_USEDEP}] )"
48
49 -src_prepare() {
50 - sed -e s':../bin/sphinx-build:/usr/bin/sphinx-build:' \
51 - -i docs/Makefile || die
52 +# Prevent un-needed download during build, fix Makefile for doc build
53 +PATCHES=( "${FILESDIR}"/docbuild.patch )
54
55 +python_prepare() {
56 # remove test that tests the stripped zope-component test_components.ComponentsTests
57 rm -f testfixtures/tests/test_components.py || die
58 - distutils-r1_src_prepare
59 +
60 + distutils-r1_python_prepare
61 }
62
63 python_compile_all() {
64 @@ -39,7 +40,6 @@
65 }
66
67 python_install_all() {
68 - if use doc; then
69 - dohtml -r docs/_build/html/
70 - fi
71 + use doc && HTML_DOCS=( docs/_build/html/. )
72 + distutils-r1_python_install_all
73 }
74
75
76
77 1.8 dev-python/testfixtures/ChangeLog
78
79 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testfixtures/ChangeLog?rev=1.8&view=markup
80 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testfixtures/ChangeLog?rev=1.8&content-type=text/plain
81 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testfixtures/ChangeLog?r1=1.7&r2=1.8
82
83 Index: ChangeLog
84 ===================================================================
85 RCS file: /var/cvsroot/gentoo-x86/dev-python/testfixtures/ChangeLog,v
86 retrieving revision 1.7
87 retrieving revision 1.8
88 diff -u -r1.7 -r1.8
89 --- ChangeLog 19 Mar 2014 23:10:07 -0000 1.7
90 +++ ChangeLog 30 Jun 2014 08:18:54 -0000 1.8
91 @@ -1,6 +1,12 @@
92 # ChangeLog for dev-python/testfixtures
93 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
94 -# $Header: /var/cvsroot/gentoo-x86/dev-python/testfixtures/ChangeLog,v 1.7 2014/03/19 23:10:07 bicatali Exp $
95 +# $Header: /var/cvsroot/gentoo-x86/dev-python/testfixtures/ChangeLog,v 1.8 2014/06/30 08:18:54 idella4 Exp $
96 +
97 + 30 Jun 2014; Ian Delaney <idella4@g.o> +files/docbuild.patch,
98 + -files/testfixtures-2.3.4-adjust_tests.patch, -testfixtures-2.3.4.ebuild,
99 + testfixtures-3.0.0.ebuild:
100 + drop py2.6, update deps, docbuild (includes new patch), remove old ebuild and
101 + patch, fixes bug #515752 by Patrick
102
103 19 Mar 2014; Sébastien Fabbro <bicatali@g.o> testfixtures-3.0.0.ebuild:
104 Keyword ~amd64-linux ~x86-linux