From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48248) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fG463-0001sA-Ba for guix-patches@gnu.org; Tue, 08 May 2018 11:00:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fG45z-0002T9-0n for guix-patches@gnu.org; Tue, 08 May 2018 11:00:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46507) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fG45y-0002T3-TR for guix-patches@gnu.org; Tue, 08 May 2018 11:00:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fG45y-0007Ih-ME for guix-patches@gnu.org; Tue, 08 May 2018 11:00:02 -0400 Subject: [bug#31386] [PATCH 1/3] gnu: eigen: Include unsupported features. References: In-Reply-To: Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 8 May 2018 16:59:07 +0200 Message-ID: <20180508145909.25354-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31386@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/algebra.scm (eigen)[source]: Do not build the tests for unsupported features, but include the files. --- gnu/packages/algebra.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 03a61be47..6daf588cd 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -732,9 +732,10 @@ Sine Transform} (DST) and @dfn{Discrete Hartley Transform} (DHT).") ;; but maintainers say it's a known issue and it's unsupported ;; anyway, so just skip them. '(begin + (substitute* "unsupported/CMakeLists.txt" + (("add_subdirectory\\(test.*") + "# Do not build the tests for unsupported features.\n")) (substitute* "CMakeLists.txt" - (("add_subdirectory\\(unsupported\\)") - "# Do not build the tests for unsupported features.\n") ;; Work around ;; . (("\"include/eigen3\"") -- 2.15.1