Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf/
Date: Sat, 14 Sep 2019 06:52:16
Message-Id: 1568443924.0215eca50a81ffb11d706cd9d1b17b24dbbb214b.mattst88@gentoo
1 commit: 0215eca50a81ffb11d706cd9d1b17b24dbbb214b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 14 06:31:08 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 14 06:52:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0215eca5
7
8 sci-libs/netcdf: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 sci-libs/netcdf/Manifest | 2 --
13 sci-libs/netcdf/netcdf-4.4.0-r1.ebuild | 50 -------------------------------
14 sci-libs/netcdf/netcdf-4.4.1.1.ebuild | 55 ----------------------------------
15 3 files changed, 107 deletions(-)
16
17 diff --git a/sci-libs/netcdf/Manifest b/sci-libs/netcdf/Manifest
18 index 327618d86c8..5271389b4f2 100644
19 --- a/sci-libs/netcdf/Manifest
20 +++ b/sci-libs/netcdf/Manifest
21 @@ -1,4 +1,2 @@
22 DIST netcdf-4.3.2.tar.gz 5013938 BLAKE2B 7acef16284bf8586750bdeb03da3e2e2a1c543b80423269eb2542d179e1b52dd51e30584a13f604e75c295ae9ff993c814183fbb5a78ad1141c62f8dbdda6525 SHA512 9cb9c761bf1e17a37601c37000fdc0bb654afcf111e5ac2fb7dcf037c6aa827e66beb29d5c661edc50ea3f84849f3dee387aab9e85ef81a9b6ca3f36e45debdd
23 -DIST netcdf-4.4.0.tar.gz 17487357 BLAKE2B 45c3ea75df4c7fef57cd49d242c349b078a73915f8690bf2508e0f93cb4189246806a3ecead5a0dd050204dbeeeb4eaa0468bcfba4eeee14b9766a3fe0f1ffa6 SHA512 c5cae15e86d11e6434a489bdac39ea498bdca2008ae6732a16603b32d79a9227a168a0fa0174c6d55ced0c92d9b644f60db4d946f695731161572abd6b778fa1
24 -DIST netcdf-4.4.1.1.tar.gz 17670828 BLAKE2B 9d38b7ce9feaafbe8326b4a055be3aa805dbe0f8efd039c30b2fb9c41ac912a4ae9eb2f95709f0069f8d38c7526491636be4adc65d1d57ee69e0678edccf232b SHA512 ee23f37d7b40e7b9a115d29bc038c7c654d50dedfcad62617b8dee3efa4668305e6a0656ba655770727ff46f4b6d742869c719267eca3392c94e2488eb902da7
25 DIST netcdf-4.6.1.tar.gz 18201700 BLAKE2B 2dab9add736d0db3ad91fb1ccda63c200fe5a2c6e56e2dd5b76375f6535807c6f462623d1709235f03e0940b66a8c2d1c3fd896b042b8b0004c87f038852befb SHA512 e290b10e763f9f6ef56b5224f834834853de7c21347ef6a078a2e7d819757fc8069814431784d0a0387ba2ce1f01776556e3051f9465829da0ffd3849571cd61
26
27 diff --git a/sci-libs/netcdf/netcdf-4.4.0-r1.ebuild b/sci-libs/netcdf/netcdf-4.4.0-r1.ebuild
28 deleted file mode 100644
29 index 3efc4f92fd0..00000000000
30 --- a/sci-libs/netcdf/netcdf-4.4.0-r1.ebuild
31 +++ /dev/null
32 @@ -1,50 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit eutils
39 -
40 -DESCRIPTION="Scientific library and interface for array oriented data access"
41 -HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/"
42 -SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="UCAR-Unidata"
45 -SLOT="0/11"
46 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="+dap examples hdf +hdf5 mpi static-libs szip test tools"
48 -
49 -RDEPEND="
50 - dap? ( net-misc/curl:0= )
51 - hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= )
52 - hdf5? ( sci-libs/hdf5:0=[hl(+),mpi=,szip=,zlib] )"
53 -DEPEND="${RDEPEND}"
54 -# doc generation is missing many doxygen files in tar ball
55 -# doc? ( app-doc/doxygen[dot] )"
56 -
57 -REQUIRED_USE="test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 )"
58 -
59 -S="${WORKDIR}/${PN}-c-${PV}"
60 -
61 -src_configure() {
62 - local myconf
63 - if use mpi; then
64 - export CC=mpicc
65 - myconf="--enable-parallel"
66 - use test && myconf+=" --enable-parallel-tests"
67 - fi
68 - econf "${myconf}" \
69 - --disable-examples \
70 - --disable-dap-remote-tests \
71 - $(use_enable dap) \
72 - $(use_enable hdf hdf4) \
73 - $(use_enable hdf5 netcdf-4) \
74 - $(use_enable static-libs static) \
75 - $(use_enable tools utilities)
76 -}
77 -
78 -src_install() {
79 - default
80 - use examples && dodoc -r examples
81 - prune_libtool_files
82 -}
83
84 diff --git a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild b/sci-libs/netcdf/netcdf-4.4.1.1.ebuild
85 deleted file mode 100644
86 index 645d3596db6..00000000000
87 --- a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild
88 +++ /dev/null
89 @@ -1,55 +0,0 @@
90 -# Copyright 1999-2018 Gentoo Foundation
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=6
94 -
95 -inherit eutils
96 -
97 -DESCRIPTION="Scientific library and interface for array oriented data access"
98 -HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/"
99 -SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> ${P}.tar.gz"
100 -
101 -LICENSE="UCAR-Unidata"
102 -SLOT="0/11"
103 -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
104 -IUSE="+dap examples hdf +hdf5 mpi static-libs szip test tools"
105 -
106 -RDEPEND="
107 - dap? ( net-misc/curl:0= )
108 - hdf? ( sci-libs/hdf:0= sci-libs/hdf5:0= )
109 - hdf5? ( sci-libs/hdf5:0=[hl(+),mpi=,szip=,zlib] )"
110 -DEPEND="${RDEPEND}"
111 -# doc generation is missing many doxygen files in tar ball
112 -# doc? ( app-doc/doxygen[dot] )"
113 -
114 -REQUIRED_USE="test? ( tools ) szip? ( hdf5 ) mpi? ( hdf5 )"
115 -
116 -S="${WORKDIR}/${PN}-c-${PV}"
117 -
118 -src_configure() {
119 - local myconf
120 - if use mpi; then
121 - export CC=mpicc
122 - myconf="--enable-parallel"
123 - use test && myconf+=" --enable-parallel-tests"
124 - fi
125 - econf "${myconf}" \
126 - --disable-examples \
127 - --disable-dap-remote-tests \
128 - $(use_enable dap) \
129 - $(use_enable hdf hdf4) \
130 - $(use_enable hdf5 netcdf-4) \
131 - $(use_enable static-libs static) \
132 - $(use_enable tools utilities)
133 -}
134 -
135 -src_test() {
136 - # fails parallel tests: bug #621486
137 - emake check -j1
138 -}
139 -
140 -src_install() {
141 - default
142 - use examples && dodoc -r examples
143 - prune_libtool_files
144 -}