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 5E557138350 for ; Mon, 30 Mar 2020 19:15:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94A9AE0BC4; Mon, 30 Mar 2020 19:15:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7A539E0BC4 for ; Mon, 30 Mar 2020 19:15:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E4BB934EF34 for ; Mon, 30 Mar 2020 19:15:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FB972B for ; Mon, 30 Mar 2020 19:15:47 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1585595570.e7643c7ed7a8d7812fa416fd828666d126861590.andrewammerlaan@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-1997.11.07.ebuild X-VCS-Directories: sci-libs/jdqz/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: e7643c7ed7a8d7812fa416fd828666d126861590 X-VCS-Branch: dev Date: Mon, 30 Mar 2020 19:15:47 +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: 6f9dcf3a-0307-4536-b3e5-90b452a77c74 X-Archives-Hash: 67f140b8c70f026a121593c030dea353 Message-ID: <20200330191547.jM39vR_Dn6m58DCBwAGt_nQWnmLkOuLCU7ezaqIwEkk@z> commit: e7643c7ed7a8d7812fa416fd828666d126861590 Author: Andrew Ammerlaan riseup net> AuthorDate: Mon Mar 30 19:12:50 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Mar 30 19:12:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e7643c7e sci-libs/jdqz: fix tests had to depend on [deprecated] on lapack Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> sci-libs/jdqz/jdqz-1997.11.07.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sci-libs/jdqz/jdqz-1997.11.07.ebuild b/sci-libs/jdqz/jdqz-1997.11.07.ebuild index b2530c7..054ae05 100644 --- a/sci-libs/jdqz/jdqz-1997.11.07.ebuild +++ b/sci-libs/jdqz/jdqz-1997.11.07.ebuild @@ -15,13 +15,11 @@ KEYWORDS="~amd64" IUSE="doc" -# /usr/lib/gcc/x86_64-pc-linux-gnu/9.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: ../jdlib/libjdqz.so: undefined reference to `zgegs_' -#/usr/lib/gcc/x86_64-pc-linux-gnu/9.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: ../jdlib/libjdqz.so: undefined reference to `zgegv_' -RESTRICT="test" - +# 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 )" @@ -59,8 +57,9 @@ src_compile() { } src_test() { - cd jdtest || die + cd "jdtest" || die emake + cd ".." || die LD_LIBRARY_PATH="./jdlib" ./jdtest/example || die }