From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gK5JE-0004bu-Ga 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-0005Vc-Ig for guix-patches@gnu.org; Tue, 06 Nov 2018 12:38:23 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33357) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gK5Ih-0005Oo-Kk 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-0008TZ-GV for guix-patches@gnu.org; Tue, 06 Nov 2018 12:38:03 -0500 Subject: [bug#33290] [PATCH 3/8] gnu: go-gopkg.in-asn1-ber.v1: Disable tests for go-1.11. Resent-Message-ID: From: Pierre Neidhardt Date: Tue, 6 Nov 2018 18:37:04 +0100 Message-Id: <20181106173709.9883-2-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/syncthing.scm (go-gopkg.in-asn1-ber.v1): Disable tests for go-1.11. --- gnu/packages/syncthing.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 3c5034057..0d6846cde 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -1257,7 +1257,10 @@ Prometheus HTTP API.") "1y8bvzbxpw0lfnn7pbcdwzqj4l90qj6xf88dvv9pxd9yl5g6cskx")))) (build-system go-build-system) (arguments - '(#:import-path "gopkg.in/asn1-ber.v1")) + '(#:import-path "gopkg.in/asn1-ber.v1" + ;; Tests don't pass on go-1.11. See + ;; https://github.com/go-asn1-ber/asn1-ber/issues/20. + #:tests? #f)) (synopsis "ASN.1 BER encoding and decoding in Go") (description "This package provides ASN.1 BER encoding and decoding in the Go language.") -- 2.19.1