Diff armadillo-12.4.0-r1 with a armadillo-14.2.3

/usr/portage/sci-libs/armadillo/armadillo-14.2.3.ebuild 2025-07-29 16:22:17.332467742 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
10 10
SRC_URI="https://downloads.sourceforge.net/arma/${P}.tar.xz"
11 11

  
12 12
LICENSE="Apache-2.0"
13
SLOT="0/12"
14
KEYWORDS="amd64 ~arm ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
13
SLOT="0/14"
14
KEYWORDS="~amd64 ~arm ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
15 15
IUSE="arpack blas doc examples lapack mkl superlu test"
16 16
RESTRICT="!test? ( test )"
17 17
REQUIRED_USE="test? ( arpack lapack superlu )"
......
31 31
	lapack? ( virtual/pkgconfig )
32 32
"
33 33

  
34
PATCHES=(
35
	"${FILESDIR}/${PN}-12.0.1-extratests.patch"
36
)
37

  
38 34
src_prepare() {
39 35
	# avoid the automagic cmake macros...
40 36
	sed -i -e 's/^ *include(ARMA_Find/# No automagic include(ARMA_Find/g' CMakeLists.txt || die
Thank you!