Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf-fortran/
Date: Wed, 15 Mar 2023 05:53:45
Message-Id: 1678859534.65da2c750d09a3e00f8f1ef15f4b588c1c47e9e7.sam@gentoo
1 commit: 65da2c750d09a3e00f8f1ef15f4b588c1c47e9e7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 15 05:51:12 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 15 05:52:14 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65da2c75
7
8 sci-libs/netcdf-fortran: drop 4.5.3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sci-libs/netcdf-fortran/Manifest | 1 -
13 .../netcdf-fortran/netcdf-fortran-4.5.3.ebuild | 48 ----------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/sci-libs/netcdf-fortran/Manifest b/sci-libs/netcdf-fortran/Manifest
17 index 2e73c0adfa30..0f2a9bb79806 100644
18 --- a/sci-libs/netcdf-fortran/Manifest
19 +++ b/sci-libs/netcdf-fortran/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST netcdf-fortran-4.5.3.tar.gz 1805683 BLAKE2B f32a36a77872e039a0c03a1f1ccdbb00761309dc7d255a1203b0a1971464e75d87f56230f28a5d5928ca3e7e388f52c4622836c2cea3d35b286161b8044e375b SHA512 fe4b2f6f8c44bf4fdeebe3cbd57ee44ccee15a70075428bb68f0d33b70f9291b68b542965634a27fb4be5a59c756d672a3d264f2628391861edb98a244e072b4
22 DIST netcdf-fortran-4.5.4.tar.gz 2011867 BLAKE2B bc98522be63c705193a22ce877c41abdc064a05afab2186891d8a0bbe9da8f0ba3f7eae6610e8b4e006b26ad8e3ea5fd8d57349054949a38f3a2fd9dfefb85c5 SHA512 a704f6483f2c8b8bf2353615a3e4b784294bd790588cfc13193c617e776e330edb17fa16da69e1a0b6c767308992321e01399ba2067c32f6ae6b3cb9ff72c3ee
23 DIST netcdf-fortran-4.5.4.upstream.tar.gz 1085665 BLAKE2B 616fba5a8dfa69c4a48df72222cbc2adf24dadcbda01d95e97b64a23a76038dd75988b481eb3d73e6ae5d20c011c5dc23cf2e0f3a3ae020a12742fe93644de2c SHA512 a03a9a57476983096cdc610405869696c6c0345039da9f386e345932bf439f49aa012501d31f4ab0100688211a3abfc7487a8413cf9a0b3907dc1f8ee50d8000
24
25 diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.5.3.ebuild b/sci-libs/netcdf-fortran/netcdf-fortran-4.5.3.ebuild
26 deleted file mode 100644
27 index c5e5ff3a2d11..000000000000
28 --- a/sci-libs/netcdf-fortran/netcdf-fortran-4.5.3.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -FORTRAN_STANDARD="77 90"
37 -
38 -inherit autotools fortran-2 flag-o-matic
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-fortran/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="UCAR-Unidata"
45 -SLOT="0/7"
46 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="doc examples static-libs"
48 -
49 -RDEPEND="sci-libs/netcdf"
50 -DEPEND="${RDEPEND}
51 - dev-lang/cfortran"
52 -BDEPEND="doc? ( app-doc/doxygen )"
53 -
54 -src_prepare() {
55 - default
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - # GCC 10 workaround
61 - # bug #723274
62 - # (As of 4.5.3, configure is meant to check for this flag & use it
63 - # but it doesn't seem to be doing that.)
64 - append-fflags $(test-flags-FC -fallow-argument-mismatch)
65 -
66 - econf \
67 - --disable-valgrind \
68 - --with-temp-large="${T}" \
69 - --disable-dot \
70 - $(use_enable doc doxygen) \
71 - $(use_enable static-libs static)
72 -}
73 -
74 -src_install() {
75 - default
76 - use examples && dodoc -r examples
77 - find "${ED}" -name '*.la' -delete || die
78 -}