From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EB4C81382C5 for ; Sun, 2 May 2021 09:40:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24B9BE08F2; Sun, 2 May 2021 09:40:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D97EE08F2 for ; Sun, 2 May 2021 09:40:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C740335D47 for ; Sun, 2 May 2021 09:40:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D10C5737 for ; Sun, 2 May 2021 09:40:30 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1619948418.8d068ffb8d8259dccb8bc1d0a98ffd9c40f73ba4.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-libs/jdqz/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-libs/jdqz/jdqz-0_pre19971107-r1.ebuild X-VCS-Directories: sci-libs/jdqz/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 8d068ffb8d8259dccb8bc1d0a98ffd9c40f73ba4 X-VCS-Branch: dev Date: Sun, 2 May 2021 09:40:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 69d14943-a39e-45c6-89c2-90b156aa4e7c X-Archives-Hash: 83a65341c210cf0c6aa9c34f3573c937 commit: 8d068ffb8d8259dccb8bc1d0a98ffd9c40f73ba4 Author: Alessandro Barbieri gmail com> AuthorDate: Sun May 2 09:40:18 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun May 2 09:40:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d068ffb sci-libs/jdqz: drop 0_pre19971107-r1 Signed-off-by: Alessandro Barbieri gmail.com> sci-libs/jdqz/jdqz-0_pre19971107-r1.ebuild | 69 ------------------------------ 1 file changed, 69 deletions(-) diff --git a/sci-libs/jdqz/jdqz-0_pre19971107-r1.ebuild b/sci-libs/jdqz/jdqz-0_pre19971107-r1.ebuild deleted file mode 100644 index 991c0863e..000000000 --- a/sci-libs/jdqz/jdqz-0_pre19971107-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit flag-o-matic fortran-2 toolchain-funcs - -DESCRIPTION="Jacobi-Davidson type method for the generalized standard eigenvalue problem." -HOMEPAGE="https://www.win.tue.nl/~hochsten/jd/" -SRC_URI="https://www.win.tue.nl/~hochsten/jd/${PN}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="doc" - -# vvirtual/lapack does not pull in [deprecated] so we have to deal with this mess like this until it does -DEPEND=" - virtual/blas - virtual/lapack - || ( sci-libs/openblas sci-libs/lapack[deprecated(-)] ) -" -RDEPEND="${DEPEND}" -BDEPEND="doc? ( dev-texlive/texlive-latex )" - -S="${WORKDIR}/${PN}" - -src_prepare() { - libs="$($(tc-getPKG_CONFIG) --libs blas)" - libs+=" $($(tc-getPKG_CONFIG) --libs lapack)" - - export libs - - sed -i 's/f77/${F77}/g' jdtest/Makefile || die - sed -i '/FFLAGS/d' jdtest/Makefile || die - sed -i 's/-u -O/-u ${FFLAGS}/g' jdtest/Makefile || die - - sed -i "s/-llapack -lblas/${libs}/" jdtest/Makefile || die - - default -} - -src_compile() { - if use doc; then - pdflatex manual.tex || die - fi - - cd "jdlib" || die - - echo "$(fc-getFC)" *.f "${FFLAGS} -shared -fPIC -Wl,-soname,libjdqz.so.0 -lm ${libs} ${LDFLAGS} -o libjdqz.so.0" > make.sh || die - - bash make.sh || die - ln -s libjdqz.so.0 libjdqz.so || die -} - -src_test() { - cd "jdtest" || die - emake - cd ".." || die - LD_LIBRARY_PATH="./jdlib" ./jdtest/example || die -} - -src_install() { - dolib.so jdlib/libjdqz.so - dolib.so jdlib/libjdqz.so.0 - - use doc && dodoc manual.pdf -}