From dc8eac15691012571ae9baf3bdcc5bc729585875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Fabbro?= Date: Thu, 18 Feb 2016 00:20:32 +0000 Subject: [PATCH] dev-python/netcdf4-python: version bump Package-Manager: portage-2.2.27 --- dev-python/netcdf4-python/Manifest | 1 + dev-python/netcdf4-python/metadata.xml | 9 ++++- .../netcdf4-python-1.2.2.ebuild | 34 +++++++++++++++++++ 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild diff --git a/dev-python/netcdf4-python/Manifest b/dev-python/netcdf4-python/Manifest index 4c6560d961ac5..e894b2c2f8d69 100644 --- a/dev-python/netcdf4-python/Manifest +++ b/dev-python/netcdf4-python/Manifest @@ -1 +1,2 @@ DIST netCDF4-1.0.4.tar.gz 521990 SHA256 99f5eaebae2fae92759d13b790dde4226b2b8c83a68f86543c41c7998cba53b7 SHA512 acebb8b721720fae8ae8347ac10b3bc213cbc6db763001292ab99db56fc20fd82abc17d5449ad8d75f40edb5bf14f24b0bece725671fcc15bf3b0cb6580c46c5 WHIRLPOOL d664d2a187b5191275bdc6fd6a456b684b4c9b1c6c0249e0299ba15ec10a6433b0859f84bf26148a7ca392e307a40f4bdfd13a7dc7ff8b059d8471f18e939b16 +DIST netCDF4-1.2.2.tar.gz 679107 SHA256 5e68d0a723ed327e53e90ac73d3dfa25e8da10db9ffba5f2aefd61356722ae9d SHA512 e09465d125077e71b8aad4332be844099c7fa29d0ea8f1dd0887f7a5e849ab778361026323466b1d4897bc3d8f8be1818cfa5f426773c765ee9c5f3728ff3da3 WHIRLPOOL 8fc551fbe6e1628304dd5067a22bbaffbb336c68f8315d5e929927f6ad52b0974b7a412d019b87a65e621e49d720ff1570514af66345e6c46c501ca9d862761e diff --git a/dev-python/netcdf4-python/metadata.xml b/dev-python/netcdf4-python/metadata.xml index 4fbf56dbfcf6f..b230a3c11bf80 100644 --- a/dev-python/netcdf4-python/metadata.xml +++ b/dev-python/netcdf4-python/metadata.xml @@ -5,7 +5,14 @@ sci@gentoo.org Gentoo Science Project + + netcdf4-python is a Python interface to the netCDF C library. + netCDF version 4 can read and write files in both the new netCDF 4 + and the old netCDF 3 format, and can create files that are readable + by HDF5 clients. The API modelled after Scientific.IO.NetCDF, and + should be familiar to users of that module. + - Unidata/netcdf4-python + netCDF4 diff --git a/dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild b/dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild new file mode 100644 index 0000000000000..65825e4d22555 --- /dev/null +++ b/dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_4 python3_5 ) + +inherit distutils-r1 + +MY_PN="netCDF4" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Python/numpy interface to the netCDF C library" +HOMEPAGE="http://unidata.github.io/netcdf4-python" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + dev-python/numpy + sci-libs/hdf5 + sci-libs/netcdf:=[hdf,hdf5]" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${MY_P} + +python_test() { + cd test || die + ${PYTHON} run_all.py || die +}