public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/hypre/
Date: Thu, 27 May 2021 21:06:48 +0000 (UTC)	[thread overview]
Message-ID: <1622149535.e37af91760801c8dfe58dc9592b9817a68b3aa12.soap@gentoo> (raw)

commit:     e37af91760801c8dfe58dc9592b9817a68b3aa12
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu May 27 21:05:35 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May 27 21:05:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e37af917

sci-libs/hypre: Remove old 2.18.2-r1 

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-libs/hypre/Manifest               |   1 -
 sci-libs/hypre/hypre-2.18.2-r1.ebuild | 101 ----------------------------------
 2 files changed, 102 deletions(-)

diff --git a/sci-libs/hypre/Manifest b/sci-libs/hypre/Manifest
index 427470deb4a..587ef05e97c 100644
--- a/sci-libs/hypre/Manifest
+++ b/sci-libs/hypre/Manifest
@@ -1,2 +1 @@
-DIST hypre-2.18.2.tar.gz 5699792 BLAKE2B 6adb343d23594adea60a4009f589285236365a5769b1d5cb66908ce83984dd48b3be929e6c7298c7b9cb1e2d67b1fe7ea641c8a160562d223edb9809977fb684 SHA512 7b343a5c8530d7f5e31cad6c940c2f154b2b954566d4fe8525d690fec41db23936a46fb642a994791de32984e696c624804fb1fde1f0c9ce026f1a6e46b9c0f4
 DIST hypre-2.20.0.tar.gz 5971556 BLAKE2B 63cef33913f1f4c569c396dd18227ae4346807e659306521e9340789944e22dc70be3b9baec7fb1385f562b53045e5c87fcad604aa242a941199ff9fe0a0c21d SHA512 842868b494960506fa3df4e72abb42084d701ec14305f9b040b9dcb578b4bbdaa8afb079057a7e53ad721b440c72ee804775c3b8319f2d01a2f281920a9cd350

diff --git a/sci-libs/hypre/hypre-2.18.2-r1.ebuild b/sci-libs/hypre/hypre-2.18.2-r1.ebuild
deleted file mode 100644
index e47dfb45334..00000000000
--- a/sci-libs/hypre/hypre-2.18.2-r1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2021 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-getCC) == *gcc* ]] && tc-check-openmp
-}
-
-pkg_setup() {
-	if [[ ${MERGE_TYPE} != binary ]] && \
-		   use openmp && [[ $(tc-getCC) == *gcc* ]] && ! tc-has-openmp ; then
-		ewarn "You are using a non capable gcc compiler ( < 4.2 ? )"
-		die "Need an OpenMP capable compiler"
-	fi
-}
-
-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_
-	use openmp && [[ $(tc-getCC) == *gcc* ]] && \
-		append-flags -fopenmp && append-ldflags -fopenmp
-	use mpi && CC=mpicc FC=mpif77 CXX=mpicxx
-
-	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
-}


             reply	other threads:[~2021-05-27 21:06 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-27 21:06 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-09 16:42 [gentoo-commits] repo/gentoo:master commit in: sci-libs/hypre/ Arthur Zamarin
2022-06-11  8:44 Matthias Maier
2022-05-14 21:30 David Seifert
2021-12-01  6:37 Yixun Lan
2021-05-27 21:06 David Seifert
2021-04-25 21:02 Sam James
2021-03-27  4:53 Sam James
2021-03-27  2:58 Sam James
2021-03-27  2:58 Sam James
2021-03-27  2:58 Sam James
2021-01-17 11:52 David Seifert
2020-12-12 23:31 Sam James
2020-12-12 22:20 Sam James
2020-12-07 15:27 Sam James
2020-12-07 15:27 Sam James
2020-01-14 14:56 Agostino Sarubbo
2019-11-20 16:12 Matthias Maier
2019-11-14 21:45 Matthias Maier
2019-11-14  6:13 Matthias Maier
2019-11-14  6:13 Matthias Maier
2018-04-23  1:52 Matthias Maier
2018-04-23  1:04 Matthias Maier
2016-12-19 23:51 Sebastien Fabbro

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1622149535.e37af91760801c8dfe58dc9592b9817a68b3aa12.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox