From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50733) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gK5JE-0004bl-Ck for guix-patches@gnu.org; Tue, 06 Nov 2018 12:38:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gK5Io-0005VD-Gp for guix-patches@gnu.org; Tue, 06 Nov 2018 12:38:23 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33358) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gK5Ii-0005PA-3G for guix-patches@gnu.org; Tue, 06 Nov 2018 12:38:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gK5Ih-0008Tg-Vi for guix-patches@gnu.org; Tue, 06 Nov 2018 12:38:04 -0500 Subject: [bug#33290] [PATCH 4/8] gnu: go-github-com-wtolson-go-taglib: Disable tests for go-1.11. Resent-Message-ID: From: Pierre Neidhardt Date: Tue, 6 Nov 2018 18:37:05 +0100 Message-Id: <20181106173709.9883-3-mail@ambrevar.xyz> In-Reply-To: <20181106173709.9883-1-mail@ambrevar.xyz> References: <87in1ayurm.fsf@ambrevar.xyz> <20181106173709.9883-1-mail@ambrevar.xyz> 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: 33290@debbugs.gnu.org * gnu/packages/golang.scm (go-github-com-wtolson-go-taglib): Disable tests for go-1.11. --- gnu/packages/golang.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index e49372d43..a4978af2a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2423,7 +2423,10 @@ and lookup requests. Browse requests are not supported yet.") `(("pkg-config" ,pkg-config) ("taglib" ,taglib))) (arguments - `(#:import-path "github.com/wtolson/go-taglib")) + `(#:import-path "github.com/wtolson/go-taglib" + ;; Tests are broken on go-1.11: + ;; https://github.com/wtolson/go-taglib/issues/12. + #:tests? #f)) (home-page "https://github.com/wtolson/go-taglib") (synopsis "Go wrapper for taglib") (description "Go wrapper for taglib") -- 2.19.1