Received: by mail.netbsd.org (Postfix, from userid 605) id EDA8484D2C; Sun, 12 Mar 2023 14:54:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2967284CFF for ; Sun, 12 Mar 2023 14:54:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id OoQNbHjvMRsV for ; Sun, 12 Mar 2023 14:54:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6560884CEF for ; Sun, 12 Mar 2023 14:54:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5EBF3FA90; Sun, 12 Mar 2023 14:54:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1678632883121190" MIME-Version: 1.0 Date: Sun, 12 Mar 2023 14:54:43 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/syncthing To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230312145443.5EBF3FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1678632883121190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Mar 12 14:54:43 UTC 2023 Modified Files: pkgsrc/net/syncthing: Makefile Log Message: syncthing: mark as not-for-go-1.20 To generate a diff of this commit: cvs rdiff -u -r1.168 -r1.169 pkgsrc/net/syncthing/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1678632883121190 Content-Disposition: inline Content-Length: 1188 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/syncthing/Makefile diff -u pkgsrc/net/syncthing/Makefile:1.168 pkgsrc/net/syncthing/Makefile:1.169 --- pkgsrc/net/syncthing/Makefile:1.168 Wed Mar 8 13:38:44 2023 +++ pkgsrc/net/syncthing/Makefile Sun Mar 12 14:54:43 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.168 2023/03/08 13:38:44 bsiegert Exp $ +# $NetBSD: Makefile,v 1.169 2023/03/12 14:54:43 wiz Exp $ # Protocol breaks require tech-pkg@ discussion and MAINTAINER approval. DISTNAME= syncthing-source-v1.23.1 @@ -13,6 +13,10 @@ HOMEPAGE= https://syncthing.net/ MAINTAINER= gdt@NetBSD.org LICENSE= mpl-2.0 +# does not support go 1.20 yet (as of 1.23.1) +# vendor/github.com/lucas-clemente/quic-go/internal/qtls/go120.go:5:13: cannot use "The version of quic-go you're using can't be built on Go 1.20 yet. For more details, please see https://github.com/lucas-clemente/quic-go/wiki/quic-go-and-Go-versions." (untyped string constant "The version of quic-go you're using can't be built on Go 1.20 yet. F...) as int value in variable declaration +GO_VERSION_DEFAULT= 119 + # The 'zillode' dependency calls the compiler on certain archs. USE_LANGUAGES= c WRKSRC= ${WRKDIR}/syncthing --_----------=_1678632883121190--