Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 725446
Collapse All | Expand All

(-)a/sci-libs/fflas-ffpack/fflas-ffpack-2.4.3.ebuild (-1 / +7 lines)
Lines 23-29 DEPEND="virtual/cblas Link Here
23
	=sci-libs/givaro-4.1*"
23
	=sci-libs/givaro-4.1*"
24
RDEPEND="${DEPEND}"
24
RDEPEND="${DEPEND}"
25
25
26
PATCHES=( "${FILESDIR}/${PN}-2.3.2-blaslapack.patch" )
26
# The no-test-echelon patch works around a test failure that may
27
# eventually be fixed upstream. Gentoo bug 725446 and upstream
28
# Github issue 282.
29
PATCHES=(
30
	"${FILESDIR}/${PN}-2.3.2-blaslapack.patch"
31
	"${FILESDIR}/${P}-no-test-echelon.patch"
32
)
27
33
28
pkg_pretend() {
34
pkg_pretend() {
29
	[[ "${MERGE_TYPE}" != "binary" ]] && use openmp && tc-check-openmp
35
	[[ "${MERGE_TYPE}" != "binary" ]] && use openmp && tc-check-openmp
(-)a/sci-libs/fflas-ffpack/files/fflas-ffpack-2.4.3-no-test-echelon.patch (-1 / +39 lines)
Line 0 Link Here
0
- 
1
From 5be5c93ed41d0136730477beccad7b9f21d47e86 Mon Sep 17 00:00:00 2001
2
From: Michael Orlitzky <michael@orlitzky.com>
3
Date: Tue, 26 May 2020 09:45:50 -0400
4
Subject: [PATCH 1/1] tests: disable test_echelon.
5
6
There are two reported failures of test_echelon on Gentoo and Conda
7
that the Gentoo maintainers haven't been able to reproduce yet. Until
8
upstream has a chance to look at the failures, this commit disables
9
that particular test.
10
11
Gentoo-bug: https://bugs.gentoo.org/724526
12
Upstream-bug: https://github.com/linbox-team/fflas-ffpack/issues/282
13
---
14
 tests/Makefile.am | 2 --
15
 1 file changed, 2 deletions(-)
16
17
diff --git a/tests/Makefile.am b/tests/Makefile.am
18
index 4326820..62e92bc 100755
19
--- a/tests/Makefile.am
20
+++ b/tests/Makefile.am
21
@@ -56,7 +56,6 @@ BASIC_TESTS =               \
22
 		test-rankprofiles   \
23
 		test-det            \
24
 		test-det-check     \
25
-		test-echelon        \
26
 		test-charpoly       \
27
 		test-charpoly-check \
28
 		test-minpoly		\
29
@@ -119,7 +118,6 @@ test_ftrsm_check_SOURCES = test-ftrsm-check.C
30
 test_invert_check_SOURCES = test-invert-check.C
31
 test_charpoly_check_SOURCES = test-charpoly-check.C
32
 test_minpoly_SOURCES = test-minpoly.C
33
-test_echelon_SOURCES           = test-echelon.C
34
 test_rankprofiles_SOURCES           = test-rankprofiles.C
35
 test_fgemm_SOURCES             = test-fgemm.C
36
 test_fger_SOURCES             = test-fger.C
37
-- 
38
2.26.2
39

Return to bug 725446