Diff netcdf-cxx-4.3.1 with a netcdf-cxx-4.3.1-r1

/usr/portage/sci-libs/netcdf-cxx/netcdf-cxx-4.3.1-r1.ebuild 2023-10-09 14:52:35.088368491 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
MYP=${PN}4-${PV}
7 7
DESCRIPTION="C++ library for netCDF"
8 8
HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/"
9
SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> ${P}.tar.gz"
9
SRC_URI="https://downloads.unidata.ucar.edu/netcdf-cxx/${PV}/${PN}4-${PV}.tar.gz"
10 10

  
11 11
LICENSE="UCAR-Unidata"
12 12
SLOT="0/1"
13
KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
13
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
14 14
IUSE="examples"
15 15
# 6 out of 9 fail, reported upstream
16
RESTRICT="test"
16
#RESTRICT="test"
17 17

  
18 18
RDEPEND=">=sci-libs/netcdf-4.2:=[hdf5]"
19 19
DEPEND="${RDEPEND}"
......
24 24
	"${FILESDIR}"/${P}-slibtool.patch
25 25
)
26 26

  
27
src_configure() {
28
	econf --disable-static
29
}
30

  
31 27
src_install() {
32 28
	default
33 29
	use examples && dodoc -r examples
Thank you!