From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:55534) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hKJnU-0007I6-7C for guix-patches@gnu.org; Sat, 27 Apr 2019 05:39:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hKJnT-0005Iq-Ah for guix-patches@gnu.org; Sat, 27 Apr 2019 05:39:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49130) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hKJnT-0005Hg-0g for guix-patches@gnu.org; Sat, 27 Apr 2019 05:39:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hKJnS-0001A7-Tz for guix-patches@gnu.org; Sat, 27 Apr 2019 05:39:02 -0400 Subject: [bug#35446] [PATCH 17/26] gnu: calibre: Disable tests that require networking. Resent-Message-ID: From: Brendan Tildesley Date: Sat, 27 Apr 2019 19:36:50 +1000 Message-Id: <20190427093659.21851-17-mail@brendan.scot> In-Reply-To: <20190427093659.21851-1-mail@brendan.scot> References: <20190427093659.21851-1-mail@brendan.scot> MIME-Version: 1.0 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: 35446@debbugs.gnu.org * gnu/packages/ebook.scm (calibre)[configure]: set CI=true so Bonjour test doesn't try to run without networking. --- gnu/packages/ebook.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 3f854ce9b3..72d07ea370 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -183,6 +183,9 @@ "/bin/pdftohtml\""))) (setenv "PODOFO_INC_DIR" (string-append podofo "/include/podofo")) (setenv "PODOFO_LIB_DIR" (string-append podofo "/lib")) + ;; This informs the tests we are a continuous integration + ;; environment and thus have no networking. + (setenv "CI" "true") #t))) (add-after 'build 'build-mathjax (lambda* (#:key inputs #:allow-other-keys) -- 2.21.0