Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygccxml: pygccxml-1.0.0.ebuild ChangeLog
Date: Sun, 27 Oct 2013 08:19:35
Message-Id: 20131027081930.369B720047@flycatcher.gentoo.org
1 mgorny 13/10/27 08:19:30
2
3 Modified: pygccxml-1.0.0.ebuild ChangeLog
4 Log:
5 Remove redundant python_export_best (done by the eclass). Fix eclass use.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.2 dev-python/pygccxml/pygccxml-1.0.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygccxml/pygccxml-1.0.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygccxml/pygccxml-1.0.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygccxml/pygccxml-1.0.0.ebuild?r1=1.1&r2=1.2
15
16 Index: pygccxml-1.0.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pygccxml/pygccxml-1.0.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- pygccxml-1.0.0.ebuild 30 Aug 2013 10:43:33 -0000 1.1
23 +++ pygccxml-1.0.0.ebuild 27 Oct 2013 08:19:30 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygccxml/pygccxml-1.0.0.ebuild,v 1.1 2013/08/30 10:43:33 heroxbd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygccxml/pygccxml-1.0.0.ebuild,v 1.2 2013/10/27 08:19:30 mgorny Exp $
29
30 EAPI=5
31 PYTHON_COMPAT=( python2_7 )
32 @@ -16,28 +16,23 @@
33 KEYWORDS="~amd64 ~x86"
34 IUSE="doc examples"
35
36 -DEPEND="doc? ( >=dev-python/epydoc-3 )
37 +DEPEND="doc? ( >=dev-python/epydoc-3[${PYTHON_USEDEP}] )
38 app-arch/unzip"
39 RDEPEND=">=dev-cpp/gccxml-0.6"
40
41 python_compile_all() {
42 if use doc; then
43 - python_export_best
44 - "${PYTHON}" setup.py doc || die
45 + esetup.py doc || die
46 fi
47 }
48
49 python_test() {
50 - "$(PYTHON)" unittests/test_all.py
51 + "${PYTHON}" unittests/test_all.py
52 }
53
54 python_install_all() {
55 - use doc && local HTML_DOCS=( docs/apidocs/* )
56 -
57 - if use examples; then
58 - insinto /usr/share/doc/${PF}
59 - doins -r docs/example
60 - fi
61 + use doc && local HTML_DOCS=( docs/apidocs/. )
62 + use examples && local EXAMPLES=( docs/example/. )
63
64 distutils-r1_python_install_all
65 }
66
67
68
69 1.2 dev-python/pygccxml/ChangeLog
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygccxml/ChangeLog?rev=1.2&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygccxml/ChangeLog?rev=1.2&content-type=text/plain
73 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygccxml/ChangeLog?r1=1.1&r2=1.2
74
75 Index: ChangeLog
76 ===================================================================
77 RCS file: /var/cvsroot/gentoo-x86/dev-python/pygccxml/ChangeLog,v
78 retrieving revision 1.1
79 retrieving revision 1.2
80 diff -u -r1.1 -r1.2
81 --- ChangeLog 30 Aug 2013 10:43:33 -0000 1.1
82 +++ ChangeLog 27 Oct 2013 08:19:30 -0000 1.2
83 @@ -1,10 +1,12 @@
84 # ChangeLog for dev-python/pygccxml
85 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
86 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygccxml/ChangeLog,v 1.1 2013/08/30 10:43:33 heroxbd Exp $
87 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygccxml/ChangeLog,v 1.2 2013/10/27 08:19:30 mgorny Exp $
88 +
89 + 27 Oct 2013; Michał Górny <mgorny@g.o> pygccxml-1.0.0.ebuild:
90 + Remove redundant python_export_best (done by the eclass). Fix eclass use.
91
92 *pygccxml-1.0.0 (30 Aug 2013)
93
94 30 Aug 2013; Benda Xu <heroxbd@g.o> +pygccxml-1.0.0.ebuild:
95 Initial commit. bug 212013. Credits to k0001, yury, Mishael and Ross for
96 submitting, testing and refining the ebuild.
97 -