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/egenix-mx-base: egenix-mx-base-3.1.1.ebuild ChangeLog
Date: Sun, 25 Jan 2009 16:22:22
Message-Id: E1LR7ka-0004B9-Fs@stork.gentoo.org
1 patrick 09/01/25 16:22:20
2
3 Modified: ChangeLog
4 Added: egenix-mx-base-3.1.1.ebuild
5 Log:
6 Bump to 3.1.1, small fixes from Chris Mayo, closes #256321
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.35 dev-python/egenix-mx-base/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/egenix-mx-base/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/egenix-mx-base/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/egenix-mx-base/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 17 Aug 2007 15:12:00 -0000 1.34
23 +++ ChangeLog 25 Jan 2009 16:22:20 -0000 1.35
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/egenix-mx-base
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/ChangeLog,v 1.34 2007/08/17 15:12:00 uberlord Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/ChangeLog,v 1.35 2009/01/25 16:22:20 patrick Exp $
30 +
31 +*egenix-mx-base-3.1.1 (25 Jan 2009)
32 +
33 + 25 Jan 2009; Patrick Lauer <patrick@g.o>
34 + +egenix-mx-base-3.1.1.ebuild:
35 + Bump to 3.1.1, small fixes from Chris Mayo, closes #256321
36
37 17 Aug 2007; Roy Marples <uberlord@g.o>
38 egenix-mx-base-3.0.0.ebuild:
39
40
41
42 1.1 dev-python/egenix-mx-base/egenix-mx-base-3.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: egenix-mx-base-3.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.1.1.ebuild,v 1.1 2009/01/25 16:22:20 patrick Exp $
52
53 inherit distutils flag-o-matic
54
55 DESCRIPTION="egenix utils for Python"
56 HOMEPAGE="http://www.egenix.com/products/python/mxBase/"
57 SRC_URI="http://www.egenix.com/files/python/${P}.tar.gz"
58
59 LICENSE="eGenixPublic-1.1"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
62 IUSE=""
63
64 DEPEND=""
65 RDEPEND=""
66
67 PYTHON_MODNAME="mx"
68
69 src_unpack() {
70 distutils_src_unpack
71 # doesn't play well with -fstack-protector (#63762)
72 rm "mx/TextTools/Examples/pytag.py"
73
74 # We do the optimization ourselves
75 sed -i \
76 -e 's/^\(optimize\) = 1/\1 = 0/' \
77 setup.cfg || die "sed failed"
78
79 # And we don't want the docs in site-packages
80 sed -i \
81 -e '/\/Doc\//d' \
82 egenix_mx_base.py || die "sed failed"
83 }
84
85 src_compile() {
86 replace-flags "-O[3s]" "-O2"
87 distutils_src_compile
88 }
89
90 src_install() {
91 distutils_src_install
92 dohtml -a html -r mx
93 insinto /usr/share/doc/${PF}
94 find "${S}" -iname "*.pdf" | xargs doins
95 }