sci-libs/hypre: drop 2.20.0, 2.21.0, 2.24.0, EAPI=7--

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin 2025-06-20 20:04:57 +03:00
parent 5c3918734b
commit 023f86d6ea
No known key found for this signature in database
GPG Key ID: 02A0AF503D120504
4 changed files with 0 additions and 329 deletions

View File

@ -1,4 +1 @@
DIST hypre-2.20.0.tar.gz 5971556 BLAKE2B 63cef33913f1f4c569c396dd18227ae4346807e659306521e9340789944e22dc70be3b9baec7fb1385f562b53045e5c87fcad604aa242a941199ff9fe0a0c21d SHA512 842868b494960506fa3df4e72abb42084d701ec14305f9b040b9dcb578b4bbdaa8afb079057a7e53ad721b440c72ee804775c3b8319f2d01a2f281920a9cd350
DIST hypre-2.21.0.tar.gz 6017038 BLAKE2B 500885cbd9f2b79c8740d1031a3dd9e5fd141dccfe2101ceed555cb7cbef77989b6af2c80f9b08e8efd6e2401269415532614d40512f93371397389e0fb15595 SHA512 20f860b0c25190608b50d577e03ab241d8caa1dbf7a7e56484e984710a586b1f4b63c72135488a756f42aa6a58d0a26b0c4e6e1680c3f7faabdf68e2559293b0
DIST hypre-2.24.0.tar.gz 6116863 BLAKE2B fade61df0dcef3a93c8f4ff32eb72adbef56d572b8ef18202d8cdbbbd4c53a46a21f3478cf10720c64b1eaf0731e5a6f2236736ec9631f8500ce966f55d03cfe SHA512 4f27e99ba2923c6394ccc3705930897430becef840415004d6fae2fa311fef5b2399265ec1211364f883b35d00933523e65888419890902bcd4e1e6942b66560
DIST hypre-2.32.0.tar.gz 7512442 BLAKE2B da31dfaa3ccfb263c8d81932d34dc906e1821c1ec61d9c70109bd2a3dfeb79bc3561669fd438262c574db7e01039f7eee9afc8c45f2193903f142b42becb87e6 SHA512 c1b09a31781ce4e1a411c486424cf7a4df1275d53445ed83d0e4e210dcc87e9c09e17e26cc5ee736aebbd70618674cd3b7dba6736f8e725ba1c3d981869ada24

View File

@ -1,108 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
FORTRAN_NEEDED=fortran
inherit fortran-2 toolchain-funcs flag-o-matic
DESCRIPTION="Parallel matrix preconditioners library"
HOMEPAGE="https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods"
SRC_URI="https://github.com/${PN}-space/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug examples fortran int64 openmp mpi"
BDEPEND="virtual/pkgconfig"
RDEPEND="
sci-libs/superlu:=
virtual/blas
virtual/lapack
mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}"
DOCS=( CHANGELOG COPYRIGHT README )
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
use fortran && fortran-2_pkg_setup
}
src_prepare() {
default
# link with system superlu and propagate LDFLAGS
sed -e "s:@LIBS@:@LIBS@ $($(tc-getPKG_CONFIG) --libs superlu):" \
-e 's:_SHARED@:_SHARED@ $(LDFLAGS):g' \
-i src/config/Makefile.config.in || die
sed -e '/HYPRE_ARCH/s: = :=:g' \
-i src/configure || die
# link with system blas and lapack
sed -e '/^BLASFILES/d' \
-e '/^LAPACKFILES/d' \
-i src/lib/Makefile || die
}
src_configure() {
tc-export CC CXX
append-flags -Dhypre_dgesvd=dgesvd_
if use openmp ; then
append-flags -fopenmp
append-ldflags -fopenmp
fi
if use mpi ; then
CC=mpicc
FC=mpif77
CXX=mpicxx
fi
cd src || die
# without-superlu: means do not use bundled one
econf \
--enable-shared \
--with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')" \
--with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')" \
--with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')" \
--with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')" \
--with-timing \
--without-superlu \
$(use_enable debug) \
$(use_enable openmp hopscotch) \
$(use_enable int64 bigint) \
$(use_enable fortran) \
$(use_with openmp) \
$(use_with mpi MPI)
}
src_compile() {
emake -C src
}
src_test() {
LD_LIBRARY_PATH="${S}/src/lib:${LD_LIBRARY_PATH}" \
PATH="${S}/src/test:${PATH}" \
emake -C src check
}
src_install() {
emake -C src install \
HYPRE_INSTALL_DIR="${ED}" \
HYPRE_LIB_INSTALL="${ED}/usr/$(get_libdir)" \
HYPRE_INC_INSTALL="${ED}/usr/include/hypre"
if use examples; then
dodoc -r src/examples
fi
}

View File

@ -1,109 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
FORTRAN_NEEDED=fortran
inherit fortran-2 toolchain-funcs flag-o-matic
DESCRIPTION="Parallel matrix preconditioners library"
HOMEPAGE="https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods"
SRC_URI="https://github.com/hypre-space/hypre/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
IUSE="debug examples fortran int64 openmp mpi"
BDEPEND="virtual/pkgconfig"
RDEPEND="
sci-libs/superlu:=
virtual/blas
virtual/lapack
mpi? ( virtual/mpi )
"
DEPEND="${RDEPEND}"
DOCS=( CHANGELOG COPYRIGHT README )
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
use fortran && fortran-2_pkg_setup
}
src_prepare() {
default
# link with system superlu and propagate LDFLAGS
sed -e "s:@LIBS@:@LIBS@ $($(tc-getPKG_CONFIG) --libs superlu):" \
-e 's:_SHARED@:_SHARED@ $(LDFLAGS):g' \
-i src/config/Makefile.config.in || die
sed -e '/HYPRE_ARCH/s: = :=:g' \
-i src/configure || die
# link with system blas and lapack
sed -e '/^BLASFILES/d' \
-e '/^LAPACKFILES/d' \
-i src/lib/Makefile || die
}
src_configure() {
tc-export CC CXX
append-flags -Dhypre_dgesvd=dgesvd_
if use openmp ; then
append-flags -fopenmp
append-ldflags -fopenmp
fi
if use mpi ; then
CC=mpicc
FC=mpif77
CXX=mpicxx
fi
cd src || die
# without-superlu: means do not use bundled one
econf \
--enable-shared \
--with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')" \
--with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')" \
--with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')" \
--with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')" \
--with-timing \
--without-superlu \
$(use_enable debug) \
$(use_enable openmp hopscotch) \
$(use_enable int64 bigint) \
$(use_enable fortran) \
$(use_with openmp) \
$(use_with mpi MPI)
}
src_compile() {
emake -C src
}
src_test() {
LD_LIBRARY_PATH="${S}/src/lib:${LD_LIBRARY_PATH}" \
PATH="${S}/src/test:${PATH}" \
emake -C src check
}
src_install() {
emake -C src install \
HYPRE_INSTALL_DIR="${ED}" \
HYPRE_LIB_INSTALL="${ED}/usr/$(get_libdir)" \
HYPRE_INC_INSTALL="${ED}/usr/include/hypre"
if use examples; then
dodoc -r src/examples
fi
}

View File

@ -1,109 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
FORTRAN_NEEDED=fortran
inherit fortran-2 toolchain-funcs flag-o-matic
DESCRIPTION="Parallel matrix preconditioners library"
HOMEPAGE="https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods"
SRC_URI="https://github.com/hypre-space/hypre/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
IUSE="debug examples fortran int64 openmp mpi"
BDEPEND="virtual/pkgconfig"
RDEPEND="
sci-libs/superlu:=
virtual/blas
virtual/lapack
mpi? ( virtual/mpi )
"
DEPEND="${RDEPEND}"
DOCS=( CHANGELOG COPYRIGHT README )
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
use fortran && fortran-2_pkg_setup
}
src_prepare() {
default
# link with system superlu and propagate LDFLAGS
sed -e "s:@LIBS@:@LIBS@ $($(tc-getPKG_CONFIG) --libs superlu):" \
-e 's:_SHARED@:_SHARED@ $(LDFLAGS):g' \
-i src/config/Makefile.config.in || die
sed -e '/HYPRE_ARCH/s: = :=:g' \
-i src/configure || die
# link with system blas and lapack
sed -e '/^BLASFILES/d' \
-e '/^LAPACKFILES/d' \
-i src/lib/Makefile || die
}
src_configure() {
tc-export CC CXX
append-flags -Dhypre_dgesvd=dgesvd_
if use openmp ; then
append-flags -fopenmp
append-ldflags -fopenmp
fi
if use mpi ; then
CC=mpicc
FC=mpif77
CXX=mpicxx
fi
cd src || die
# without-superlu: means do not use bundled one
econf \
--enable-shared \
--with-blas-libs="$($(tc-getPKG_CONFIG) --libs-only-l blas | sed -e 's/-l//g')" \
--with-blas-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L blas | sed -e 's/-L//g')" \
--with-lapack-libs="$($(tc-getPKG_CONFIG) --libs-only-l lapack | sed -e 's/-l//g')" \
--with-lapack-lib-dirs="$($(tc-getPKG_CONFIG) --libs-only-L lapack | sed -e 's/-L//g')" \
--with-timing \
--without-superlu \
$(use_enable debug) \
$(use_enable openmp hopscotch) \
$(use_enable int64 bigint) \
$(use_enable fortran) \
$(use_with openmp) \
$(use_with mpi MPI)
}
src_compile() {
emake -C src
}
src_test() {
LD_LIBRARY_PATH="${S}/src/lib:${LD_LIBRARY_PATH}" \
PATH="${S}/src/test:${PATH}" \
emake -C src check
}
src_install() {
emake -C src install \
HYPRE_INSTALL_DIR="${ED}" \
HYPRE_LIB_INSTALL="${ED}/usr/$(get_libdir)" \
HYPRE_INC_INSTALL="${ED}/usr/include/hypre"
if use examples; then
dodoc -r src/examples
fi
}