Gentoo Archives: gentoo-python

From: Mike Gilbert <floppym@g.o>
To: idella4@g.o
Cc: gentoo-python <gentoo-python@l.g.o>
Subject: [gentoo-python] Re: [gentoo-commits] gentoo-x86 commit in dev-python/natgrid: natgrid-0.2.1-r1.ebuild ChangeLog natgrid-0.2.1.ebuild
Date: Sat, 27 Jul 2013 20:26:28
Message-Id: CAJ0EP43Ji1PBn6tUP=32riG6X6AMf=jP8fH88eBO2a1tSeMQHA@mail.gmail.com
1 On Sat, Jul 27, 2013 at 2:47 AM, Ian Delaney (idella4)
2 <idella4@g.o> wrote:
3 > idella4 13/07/27 06:47:57
4 >
5 > Modified: ChangeLog
6 > Added: natgrid-0.2.1-r1.ebuild
7 > Removed: natgrid-0.2.1.ebuild
8 > Log:
9 > migrate -> distutils-r1, remove old
10 >
11 > (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
12 >
13 > Revision Changes Path
14 > 1.7 dev-python/natgrid/ChangeLog
15 >
16 > file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/natgrid/ChangeLog?rev=1.7&view=markup
17 > plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/natgrid/ChangeLog?rev=1.7&content-type=text/plain
18 > diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/natgrid/ChangeLog?r1=1.6&r2=1.7
19 >
20 > Index: ChangeLog
21 > ===================================================================
22 > RCS file: /var/cvsroot/gentoo-x86/dev-python/natgrid/ChangeLog,v
23 > retrieving revision 1.6
24 > retrieving revision 1.7
25 > diff -u -r1.6 -r1.7
26 > --- ChangeLog 2 Aug 2012 18:21:56 -0000 1.6
27 > +++ ChangeLog 27 Jul 2013 06:47:57 -0000 1.7
28 > @@ -1,6 +1,12 @@
29 > # ChangeLog for dev-python/natgrid
30 > -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 > -# $Header: /var/cvsroot/gentoo-x86/dev-python/natgrid/ChangeLog,v 1.6 2012/08/02 18:21:56 bicatali Exp $
32 > +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
33 > +# $Header: /var/cvsroot/gentoo-x86/dev-python/natgrid/ChangeLog,v 1.7 2013/07/27 06:47:57 idella4 Exp $
34 > +
35 > +*natgrid-0.2.1-r1 (27 Jul 2013)
36 > +
37 > + 27 Jul 2013; Ian Delaney <idella4@g.o> +natgrid-0.2.1-r1.ebuild,
38 > + -natgrid-0.2.1.ebuild:
39 > + migrate -> distutils-r1, remove old
40 >
41 > 02 Aug 2012; Sébastien Fabbro <bicatali@g.o> -natgrid-0.1.ebuild,
42 > natgrid-0.2.1.ebuild:
43 >
44 >
45 >
46 > 1.1 dev-python/natgrid/natgrid-0.2.1-r1.ebuild
47 >
48 > file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/natgrid/natgrid-0.2.1-r1.ebuild?rev=1.1&view=markup
49 > plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/natgrid/natgrid-0.2.1-r1.ebuild?rev=1.1&content-type=text/plain
50 >
51 > Index: natgrid-0.2.1-r1.ebuild
52 > ===================================================================
53 > # Copyright 1999-2013 Gentoo Foundation
54 > # Distributed under the terms of the GNU General Public License v2
55 > # $Header: /var/cvsroot/gentoo-x86/dev-python/natgrid/natgrid-0.2.1-r1.ebuild,v 1.1 2013/07/27 06:47:57 idella4 Exp $
56 >
57 > EAPI=5
58 > PYTHON_COMPAT=( python{2_6,2_7} )
59 >
60 > inherit distutils-r1
61 >
62 > DESCRIPTION="Matplotlib toolkit for gridding irreguraly spaced data"
63 > HOMEPAGE="http://matplotlib.sourceforge.net/users/toolkits.html"
64 > SRC_URI="mirror://sourceforge/matplotlib/${P}.tar.gz"
65 >
66 > LICENSE="BSD"
67 > SLOT="0"
68 > KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
69 > IUSE=""
70 >
71 > DEPEND=">=dev-python/matplotlib-0.98[${PYTHON_USEDEP}]"
72 > RDEPEND="${DEPEND}"
73 >
74 > PYTHON_MODNAME="mpl_toolkits/natgrid"
75 >
76 > python_install_all() {
77 > insinto /usr/share/doc/${PF}
78 > doins test.py || die "doins failed"
79 > distutils-r1_python_install_all
80 > }
81 >
82 > python_install() {
83 > # Fix collision with dev-python/matplotlib.
84 > rm -f "${D}$(python_get_sitedir)/mpl_toolkits/__init__.py" || die
85 > distutils-r1_python_install
86 > }
87 >
88
89 You are removing a file that does not exist in python_install. Please fix this.

Replies