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/pyfits: pyfits-3.1.1.ebuild ChangeLog
Date: Wed, 30 Jan 2013 04:01:23
Message-Id: 20130130040119.AC9292171D@flycatcher.gentoo.org
1 patrick 13/01/30 04:01:19
2
3 Modified: ChangeLog
4 Added: pyfits-3.1.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.38 dev-python/pyfits/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfits/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfits/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfits/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyfits/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 12 Oct 2012 09:35:57 -0000 1.37
24 +++ ChangeLog 30 Jan 2013 04:01:19 -0000 1.38
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyfits
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfits/ChangeLog,v 1.37 2012/10/12 09:35:57 patrick Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfits/ChangeLog,v 1.38 2013/01/30 04:01:19 patrick Exp $
31 +
32 +*pyfits-3.1.1 (30 Jan 2013)
33 +
34 + 30 Jan 2013; Patrick Lauer <patrick@g.o> +pyfits-3.1.1.ebuild:
35 + Bump
36
37 12 Oct 2012; Patrick Lauer <patrick@g.o> pyfits-3.1.ebuild:
38 Restricting python-3.3
39
40
41
42 1.1 dev-python/pyfits/pyfits-3.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfits/pyfits-3.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfits/pyfits-3.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyfits-3.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyfits/pyfits-3.1.1.ebuild,v 1.1 2013/01/30 04:01:19 patrick Exp $
52
53 EAPI=4
54
55 PYTHON_DEPEND="*:2.6"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="2.5 2.7-pypy-* 3.3"
58 DISTUTILS_SRC_TEST=nosetests
59
60 inherit distutils eutils
61
62 DESCRIPTION="Provides an interface to FITS formatted files under python"
63 HOMEPAGE="http://www.stsci.edu/resources/software_hardware/pyfits http://pypi.python.org/pypi/pyfits"
64 SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
65
66 LICENSE="BSD"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
69 IUSE=""
70
71 RDEPEND="dev-python/numpy
72 dev-python/setuptools
73 !dev-python/astropy"
74 DEPEND="${RDEPEND}
75 dev-python/stsci-distutils
76 dev-python/d2to1"
77
78 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
79
80 src_prepare() {
81 epatch "${FILESDIR}"/${PN}-3.0.8-debundle_zlib.patch
82 distutils_src_prepare
83 }
84
85 src_test() {
86 testing() {
87 nosetests -w "$(ls -d build-${PYTHON_ABI}/lib*)"
88 }
89 python_execute_function testing
90 }