Diff netcdf-fortran-4.5.4 with a netcdf-fortran-4.5.4-r1

/usr/portage/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4-r1.ebuild 2024-07-02 13:51:49.313851592 +0300
5 5

  
6 6
FORTRAN_STANDARD="77 90"
7 7

  
8
inherit autotools flag-o-matic fortran-2
8
inherit flag-o-matic fortran-2
9 9

  
10 10
DESCRIPTION="Scientific library and interface for array oriented data access"
11 11
HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/"
12
SRC_URI="https://github.com/Unidata/netcdf-fortran/archive/v${PV}.tar.gz -> ${P}.tar.gz"
12
# TODO: drop .upstream suffix on next bump
13
SRC_URI="https://downloads.unidata.ucar.edu/netcdf-fortran/${PV}/${P}.tar.gz -> ${P}.upstream.tar.gz"
13 14

  
14 15
LICENSE="UCAR-Unidata"
15 16
SLOT="0/7"
......
17 18
IUSE="doc examples static-libs"
18 19

  
19 20
RDEPEND="sci-libs/netcdf"
20
DEPEND="${RDEPEND}
21
	dev-lang/cfortran"
21
DEPEND="
22
	${RDEPEND}
23
	dev-lang/cfortran
24
"
22 25
BDEPEND="doc? ( app-text/doxygen )"
23 26

  
24
src_prepare() {
25
	default
26

  
27
	eautoreconf
28
}
29

  
30 27
src_configure() {
31 28
	# -Werror=lto-type-mismatch
32 29
	# https://bugs.gentoo.org/927588
Thank you!