diff options
author | Sam James <sam@gentoo.org> | 2023-05-20 06:05:03 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-20 06:05:03 +0100 |
commit | 56f9fa890ce26a825fc33a5baab0307767cde3a2 (patch) | |
tree | 7ae54c88deca868aee21c6e05cbc8f030ec687a1 /sci-libs | |
parent | dev-util/colm: don't inject CFLAGS to main.cc (diff) | |
download | gentoo-56f9fa890ce26a825fc33a5baab0307767cde3a2.tar.gz gentoo-56f9fa890ce26a825fc33a5baab0307767cde3a2.tar.bz2 gentoo-56f9fa890ce26a825fc33a5baab0307767cde3a2.zip |
sci-libs/netcdf-fortran: add 4.6.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/netcdf-fortran/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/netcdf-fortran/netcdf-fortran-4.6.1.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/sci-libs/netcdf-fortran/Manifest b/sci-libs/netcdf-fortran/Manifest index 0f2a9bb79806..deb89c507b91 100644 --- a/sci-libs/netcdf-fortran/Manifest +++ b/sci-libs/netcdf-fortran/Manifest @@ -1,2 +1,3 @@ DIST netcdf-fortran-4.5.4.tar.gz 2011867 BLAKE2B bc98522be63c705193a22ce877c41abdc064a05afab2186891d8a0bbe9da8f0ba3f7eae6610e8b4e006b26ad8e3ea5fd8d57349054949a38f3a2fd9dfefb85c5 SHA512 a704f6483f2c8b8bf2353615a3e4b784294bd790588cfc13193c617e776e330edb17fa16da69e1a0b6c767308992321e01399ba2067c32f6ae6b3cb9ff72c3ee DIST netcdf-fortran-4.5.4.upstream.tar.gz 1085665 BLAKE2B 616fba5a8dfa69c4a48df72222cbc2adf24dadcbda01d95e97b64a23a76038dd75988b481eb3d73e6ae5d20c011c5dc23cf2e0f3a3ae020a12742fe93644de2c SHA512 a03a9a57476983096cdc610405869696c6c0345039da9f386e345932bf439f49aa012501d31f4ab0100688211a3abfc7487a8413cf9a0b3907dc1f8ee50d8000 +DIST netcdf-fortran-4.6.1.tar.gz 1112270 BLAKE2B 88c7550a1426fb82068dec3183d14ac0aa85eb4657cffaca7f141bfa2caa0e48ef1f395a504f06fca29ffb511b20182d6d0d71ab951b93f985a580352da3fe52 SHA512 4fb8ed0581df9157733f1331de60dc4e06274320a942db97dbc9020653ed4677bf26e84e5968ee6e5f8fc179e2db02898f339820e5b257ce8a94a5bcdc670587 diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.6.1.ebuild b/sci-libs/netcdf-fortran/netcdf-fortran-4.6.1.ebuild new file mode 100644 index 000000000000..37fe541485f6 --- /dev/null +++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.6.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +FORTRAN_STANDARD="77 90" + +inherit cmake fortran-2 + +DESCRIPTION="Scientific library and interface for array oriented data access" +HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/" +SRC_URI="https://downloads.unidata.ucar.edu/netcdf-fortran/${PV}/${P}.tar.gz" + +LICENSE="UCAR-Unidata" +SLOT="0/7" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples test zstd" +RESTRICT="!test? ( test )" + +RDEPEND="sci-libs/netcdf" +DEPEND=" + ${RDEPEND} + dev-lang/cfortran +" +BDEPEND="doc? ( app-doc/doxygen[dot] )" + +src_configure() { + local mycmakeargs=( + -DDISABLE_ZSTANDARD_PLUGIN=$(usex !zstd) + -DBUILD_EXAMPLES=$(usex examples) + -DENABLE_DOXYGEN=$(usex doc) + -DENABLE_PARALLEL_TESTS=$(usex test) + -DENABLE_TESTS=$(usex test) + + # "Take lots of time and disk." per CMakeLists.txt + #-DLARGE_FILE_TESTS="${T}" + + -DTEST_WITH_VALGRIND=OFF + ) + + cmake_src_configure +} |