Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/bicatali:master commit in: dev-python/netcdf4-python/
Date: Wed, 17 Feb 2016 23:31:57
Message-Id: 1455753962.633c382330bebf11296736266332cc90ebffa53f.bicatali@gentoo
1 commit: 633c382330bebf11296736266332cc90ebffa53f
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 18 00:06:02 2016 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 18 00:06:02 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/bicatali.git/commit/?id=633c3823
7
8 dev-python/netcdf4-python: updated in main tree
9
10 dev-python/netcdf4-python/Manifest | 1 -
11 dev-python/netcdf4-python/metadata.xml | 18 ------------
12 .../netcdf4-python/netcdf4-python-1.2.1.ebuild | 34 ----------------------
13 3 files changed, 53 deletions(-)
14
15 diff --git a/dev-python/netcdf4-python/Manifest b/dev-python/netcdf4-python/Manifest
16 deleted file mode 100644
17 index be7cf60..0000000
18 --- a/dev-python/netcdf4-python/Manifest
19 +++ /dev/null
20 @@ -1 +0,0 @@
21 -DIST netCDF4-1.2.1.tar.gz 663169 SHA256 3e0e71fc12af077a4737e75b6f421369e8170edc2cef0404d1164ae9ff38ef73 SHA512 05f419f7d80576843fb6c2ee7fb0d4f1be92861cb53024c71eac297f3a94bfcbd224470164174786ec9fcdd4081f2f4fc59cbcebf7a606c66d686776bc1cce8c WHIRLPOOL ae76ffdebe34b72660c8e4f8687f8389b46ab07480a61be8e86b41a9bc2c0b9f9d9974c22837d047d6ecc155264c1d2227cade51294bcfa121609b3ed253a531
22
23 diff --git a/dev-python/netcdf4-python/metadata.xml b/dev-python/netcdf4-python/metadata.xml
24 deleted file mode 100644
25 index 5d31d8f..0000000
26 --- a/dev-python/netcdf4-python/metadata.xml
27 +++ /dev/null
28 @@ -1,18 +0,0 @@
29 -<?xml version="1.0" encoding="UTF-8"?>
30 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
31 -<pkgmetadata>
32 - <herd>sci</herd>
33 - <maintainer>
34 - <email>jlec@g.o</email>
35 - </maintainer>
36 - <longdescription>
37 - netcdf4-python is a Python interface to the netCDF C library.
38 - netCDF version 4 can read and write files in both the new netCDF 4
39 - and the old netCDF 3 format, and can create files that are readable
40 - by HDF5 clients. The API modelled after Scientific.IO.NetCDF, and
41 - should be familiar to users of that module.
42 - </longdescription>
43 - <upstream>
44 - <remote-id type="pypi">netCDF4</remote-id>
45 - </upstream>
46 -</pkgmetadata>
47
48 diff --git a/dev-python/netcdf4-python/netcdf4-python-1.2.1.ebuild b/dev-python/netcdf4-python/netcdf4-python-1.2.1.ebuild
49 deleted file mode 100644
50 index ddef28a..0000000
51 --- a/dev-python/netcdf4-python/netcdf4-python-1.2.1.ebuild
52 +++ /dev/null
53 @@ -1,34 +0,0 @@
54 -# Copyright 1999-2015 Gentoo Foundation
55 -# Distributed under the terms of the GNU General Public License v2
56 -# $Id$
57 -
58 -EAPI=5
59 -
60 -PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
61 -
62 -inherit distutils-r1
63 -
64 -MY_PN="netCDF4"
65 -MY_P="${MY_PN}-${PV}"
66 -
67 -DESCRIPTION="Python/numpy interface to the netCDF C library"
68 -HOMEPAGE="http://unidata.github.io/netcdf4-python"
69 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
70 -
71 -SLOT="0"
72 -LICENSE="MIT"
73 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
74 -IUSE="test"
75 -
76 -RDEPEND="
77 - dev-python/numpy
78 - sci-libs/hdf5
79 - sci-libs/netcdf:=[hdf,hdf5]"
80 -DEPEND="${RDEPEND}"
81 -
82 -S="${WORKDIR}"/${MY_P}
83 -
84 -python_test() {
85 - cd test || die
86 - ${PYTHON} run_all.py || die
87 -}