Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/healpy/
Date: Wed, 28 Dec 2016 23:45:03
Message-Id: 1482968681.d03ae6849d20c0f0629722b8da96d2b413a701d9.bicatali@gentoo
1 commit: d03ae6849d20c0f0629722b8da96d2b413a701d9
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 28 23:44:07 2016 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 28 23:44:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d03ae684
7
8 dev-python/healpy: version bump
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/healpy/Manifest | 1 +
13 dev-python/healpy/healpy-1.10.2.ebuild | 39 ++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/healpy/Manifest b/dev-python/healpy/Manifest
17 index d0559ce..5921cb0 100644
18 --- a/dev-python/healpy/Manifest
19 +++ b/dev-python/healpy/Manifest
20 @@ -1,2 +1,3 @@
21 DIST healpy-1.10.1.tar.gz 4017986 SHA256 d81f6a5bdf7c8b6be062ae3be493a91520db4d1830fddf416905c28bc3476e79 SHA512 fb7c3d578992adb98907dca164f22f8b1d201b838cdbd94d5a19fb06fdac2a685c35fe42fb5644bcabe8b9221814ef3f7332cddb617098fd6b589649fb0c9675 WHIRLPOOL d4c58beb7a26aac2850ade240174186bc73cc28e672b64763ad7caef1365c10e90ed8e1e5b664a16872a2604f801e0bed83e75eb6b1b75d71cc7cc8c7820fa3a
22 +DIST healpy-1.10.2.tar.gz 4018889 SHA256 210fe8a1d3797e6ebb99125054d35d624229602179b119fc3b73586056307e4d SHA512 658dac9f9c3dfa8c6f4050138c81fc3f0c3b813ace797a531ea6fc7785d8a2e59ac07f8873a32682f06fde7097710cb91a8181f90bad82acdb04a20191d0601f WHIRLPOOL 216c336652866e3196cf86e073d29a87168f54b891d6b8382227fb49c961e9a28f8d64b3be980d37a006af989d0aa26c8b66deecd07973c8fcdb3f2b94647b6c
23 DIST healpy-1.9.1.tar.gz 4043342 SHA256 b88fcd667e0bf474335811018cb97932b5f9d5575f22d2237b6707844a121c23 SHA512 84427e4fdb01ed534a00617ba707a58f4ed21ba0114fcc3f7bd4748cefaad148c9025bfc7a4c77c1de40b7f69dfb53139f2b347e80955f4631609cd50e70cd5a WHIRLPOOL 2c8e5fe751fbfe12b699ff154c6f0472bbd7d758b0e18d249984d51567398e9eeea26ee9d79bb086fd79af4b4c4afa0f1f8c3a6c369acd1a4f91a7f8ebd7081a
24
25 diff --git a/dev-python/healpy/healpy-1.10.2.ebuild b/dev-python/healpy/healpy-1.10.2.ebuild
26 new file mode 100644
27 index 00000000..9f11d23
28 --- /dev/null
29 +++ b/dev-python/healpy/healpy-1.10.2.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python wrapper for healpix"
42 +HOMEPAGE="https://github.com/healpy"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + dev-python/astropy[${PYTHON_USEDEP}]
52 + dev-python/matplotlib[${PYTHON_USEDEP}]
53 + dev-python/numpy[${PYTHON_USEDEP}]
54 + sci-astronomy/healpix:=[cxx]
55 + sci-libs/cfitsio:="
56 +DEPEND="${RDEPEND}
57 + dev-python/astropy-helpers[${PYTHON_USEDEP}]
58 + dev-python/cython[${PYTHON_USEDEP}]
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + virtual/pkgconfig
61 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
62 +
63 +DOCS=( README.rst CHANGELOG.rst CITATION )
64 +
65 +python_test() {
66 + echo "backend: Agg" > matplotlibrc || die
67 + MPLCONFIGDIR=. esetup.py test || die
68 + rm matplotlibrc || die
69 +}