From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9wvC-0000hT-5M for guix-patches@gnu.org; Sun, 14 May 2017 13:03:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9wv9-0002TU-1S for guix-patches@gnu.org; Sun, 14 May 2017 13:03:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42344) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9wv8-0002TO-Tz for guix-patches@gnu.org; Sun, 14 May 2017 13:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d9wv8-0003uA-AW for guix-patches@gnu.org; Sun, 14 May 2017 13:03:02 -0400 Subject: bug#26930: [PATCH] gnu: search: swish-e: fix compilation errors and check errors. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9wuQ-0000ai-5G for guix-patches@gnu.org; Sun, 14 May 2017 13:02:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9wuM-0001ki-Qu for guix-patches@gnu.org; Sun, 14 May 2017 13:02:18 -0400 Received: from mail-qk0-x22f.google.com ([2607:f8b0:400d:c09::22f]:34123) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9wuM-0001kc-Nw for guix-patches@gnu.org; Sun, 14 May 2017 13:02:14 -0400 Received: by mail-qk0-x22f.google.com with SMTP id k74so78821296qke.1 for ; Sun, 14 May 2017 10:02:14 -0700 (PDT) From: "Ethan R. Jones" Date: Sun, 14 May 2017 13:01:53 -0400 Message-Id: <20170514170153.8836-1-doubleplusgood23@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 26930@debbugs.gnu.org Cc: "Ethan R. Jones" --- gnu/packages/search.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index 8651b985e..b23d57a60 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2014 Mark H Weaver ;;; Copyright © 2015, 2016 Eric Bavier ;;; Copyright © 2017 Thomas Danckaert +;;; Copyright © 2017 Ethan R. Jones ;;; ;;; This file is part of GNU Guix. ;;; @@ -235,6 +236,8 @@ conflict with slocate compatibility.") ;; swish-e to extend its features at runtime, but are not required for ;; building: xpdf, catdoc, MP3::Tag, Spreadsheet::ParseExcel, ;; HTML::Entities. + ;; FIXME Currently fails compliation with zlib and fails test with + ;; libxml2. See bug 25859 (inputs `(("libxml" ,libxml2) ("zlib" ,zlib) @@ -244,7 +247,9 @@ conflict with slocate compatibility.") ("perl-html-tagset" ,perl-html-tagset) ("perl-mime-types" ,perl-mime-types))) (arguments - `(#:phases (modify-phases %standard-phases + `(#:configure-flags (list (string-append "--without-zlib") + (string-append "--without-libxml2")) + #:phases (modify-phases %standard-phases (add-after 'install 'wrap-programs (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out"))) -- 2.13.0