Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyx: pyx-0.13.ebuild ChangeLog
Date: Sat, 03 May 2014 08:07:32
Message-Id: 20140503080727.465612004C@flycatcher.gentoo.org
1 patrick 14/05/03 08:07:27
2
3 Modified: ChangeLog
4 Added: pyx-0.13.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.39 dev-python/pyx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/ChangeLog?rev=1.39&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/ChangeLog?rev=1.39&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/ChangeLog?r1=1.38&r2=1.39
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v
20 retrieving revision 1.38
21 retrieving revision 1.39
22 diff -u -r1.38 -r1.39
23 --- ChangeLog 31 Mar 2014 21:01:35 -0000 1.38
24 +++ ChangeLog 3 May 2014 08:07:27 -0000 1.39
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyx
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.38 2014/03/31 21:01:35 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/ChangeLog,v 1.39 2014/05/03 08:07:27 patrick Exp $
30 +
31 +*pyx-0.13 (03 May 2014)
32 +
33 + 03 May 2014; Patrick Lauer <patrick@g.o> +pyx-0.13.ebuild:
34 + Bump
35
36 31 Mar 2014; Michał Górny <mgorny@g.o> pyx-0.12.1-r1.ebuild:
37 Add support for the new PyPy slotting.
38
39
40
41 1.1 dev-python/pyx/pyx-0.13.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/pyx-0.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyx/pyx-0.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyx-0.13.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyx/pyx-0.13.ebuild,v 1.1 2014/05/03 08:07:26 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python3_3 )
54
55 inherit distutils-r1
56
57 MY_P="${P/pyx/PyX}"
58
59 DESCRIPTION="Python package for the generation of encapsulated PostScript figures"
60 HOMEPAGE="http://pyx.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/pyx/${MY_P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="doc"
67
68 RDEPEND="virtual/tex-base"
69 DEPEND="${RDEPEND}
70 doc? ( virtual/latex-base )"
71
72 S="${WORKDIR}/${MY_P}"
73
74 DOCS=( AUTHORS CHANGES )
75
76 src_prepare() {
77 distutils-r1_src_prepare
78 sed -i \
79 -e 's/^build_t1code=.*/build_t1code=1/' \
80 -e 's/^build_pykpathsea=.*/build_pykpathsea=1/' \
81 setup.cfg || die "setup.cfg fix failed"
82 }
83
84 python_compile_all() {
85 if use doc; then
86 cd "${S}/faq"
87 VARTEXFONTS="${T}"/fonts make latexpdf
88 fi
89 }
90
91 python_install_all() {
92 use doc && dodoc faq/_build/latex/pyxfaq.pdf
93 }