Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 241171A9239 for ; Fri, 26 Nov 2021 16:47:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4FD6084D74; Fri, 26 Nov 2021 16:47:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8B9D184D4D for ; Fri, 26 Nov 2021 16:47:22 +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 7z2XtJM9-DgX for ; Fri, 26 Nov 2021 16:47:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C94FB84D0F for ; Fri, 26 Nov 2021 16:47:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C2CA7FAEC; Fri, 26 Nov 2021 16:47:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1637945241289140" MIME-Version: 1.0 Date: Fri, 26 Nov 2021 16:47:21 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/tigervnc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211126164721.C2CA7FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1637945241289140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Nov 26 16:47:21 UTC 2021 Modified Files: pkgsrc/net/tigervnc: Makefile pkgsrc/net/tigervnc/files: vncserver.pl Log Message: tigervnc: stop using rfbwait After the update this seems to not be supported any longer. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/net/tigervnc/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/tigervnc/files/vncserver.pl Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1637945241289140 Content-Disposition: inline Content-Length: 1249 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/tigervnc/Makefile diff -u pkgsrc/net/tigervnc/Makefile:1.45 pkgsrc/net/tigervnc/Makefile:1.46 --- pkgsrc/net/tigervnc/Makefile:1.45 Tue Nov 16 15:45:01 2021 +++ pkgsrc/net/tigervnc/Makefile Fri Nov 26 16:47:21 2021 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.45 2021/11/16 15:45:01 wiz Exp $ +# $NetBSD: Makefile,v 1.46 2021/11/26 16:47:21 wiz Exp $ DISTNAME= tigervnc-1.12.0 PKGNAME= ${DISTNAME}.1.20.13 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=TigerVNC/} GITHUB_TAG= v1.12.0 Index: pkgsrc/net/tigervnc/files/vncserver.pl diff -u pkgsrc/net/tigervnc/files/vncserver.pl:1.3 pkgsrc/net/tigervnc/files/vncserver.pl:1.4 --- pkgsrc/net/tigervnc/files/vncserver.pl:1.3 Fri Oct 1 11:42:23 2021 +++ pkgsrc/net/tigervnc/files/vncserver.pl Fri Nov 26 16:47:21 2021 @@ -202,7 +202,7 @@ $default_opts{auth} = "edString($xau $default_opts{geometry} = $geometry if ($geometry); $default_opts{depth} = $depth if ($depth); $default_opts{pixelformat} = $pixelformat if ($pixelformat); -$default_opts{rfbwait} = 30000; +#$default_opts{rfbwait} = 30000; $default_opts{rfbauth} = "$vncUserDir/passwd"; $default_opts{rfbport} = $vncPort; $default_opts{fp} = $fontPath if ($fontPath); --_----------=_1637945241289140--