Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/simpy: ChangeLog simpy-2.3.ebuild
Date: Tue, 10 Jan 2012 16:03:05
Message-Id: 20120110160253.718D12004B@flycatcher.gentoo.org
1 jlec 12/01/10 16:02:53
2
3 Modified: ChangeLog simpy-2.3.ebuild
4 Log:
5 Drop USE=doc, because doc building fails, #398165
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-python/simpy/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simpy/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simpy/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simpy/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/simpy/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 6 Jan 2012 16:04:38 -0000 1.1
23 +++ ChangeLog 10 Jan 2012 16:02:53 -0000 1.2
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-python/simpy
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/ChangeLog,v 1.1 2012/01/06 16:04:38 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/ChangeLog,v 1.2 2012/01/10 16:02:53 jlec Exp $
29 +
30 + 10 Jan 2012; Justin Lecher <jlec@g.o> simpy-2.3.ebuild:
31 + Drop USE=doc, because doc building fails, #398165
32
33 *simpy-2.3 (06 Jan 2012)
34
35
36
37
38 1.3 dev-python/simpy/simpy-2.3.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild?r1=1.2&r2=1.3
43
44 Index: simpy-2.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- simpy-2.3.ebuild 7 Jan 2012 00:17:17 -0000 1.2
51 +++ simpy-2.3.ebuild 10 Jan 2012 16:02:53 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild,v 1.2 2012/01/07 00:17:17 mr_bones_ Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simpy/simpy-2.3.ebuild,v 1.3 2012/01/10 16:02:53 jlec Exp $
57
58 EAPI=4
59
60 @@ -22,7 +22,7 @@
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
63 LICENSE="LGPL-2.1"
64 -IUSE="doc test"
65 +IUSE="test"
66
67 RDEPEND=""
68 DEPEND="test? ( dev-python/pytest )"
69 @@ -39,8 +39,13 @@
70 src_install() {
71 distutils_src_install
72
73 - if use doc; then
74 - dohtml -r SimPyDocs
75 - dodoc SimPyModels/*
76 - fi
77 +## fails with current sphinx
78 +# cd docs
79 +# emake man && doman build/man/*
80 +#
81 +# if use doc; then
82 +# emake dirhtml singlehtml && dohtml -r build/html/* build/singlehtml/*
83 +# emake text changes && dodoc -r build/{text,changes}/*
84 +# emake latexpdf && dodoc -r build/latex*/*
85 +# fi
86 }