From owner-svn-ports-head@freebsd.org Sun Aug 2 09:58:15 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 47C9F3781E9; Sun, 2 Aug 2020 09:58:15 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BKGfv14Pnz4HxY; Sun, 2 Aug 2020 09:58:15 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07B3321C0F; Sun, 2 Aug 2020 09:58:15 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0729wECC055235; Sun, 2 Aug 2020 09:58:14 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0729wEHr055233; Sun, 2 Aug 2020 09:58:14 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202008020958.0729wEHr055233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 2 Aug 2020 09:58:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543941 - in head/net/vinagre: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/net/vinagre: . files X-SVN-Commit-Revision: 543941 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Aug 2020 09:58:15 -0000 Author: tcberner Date: Sun Aug 2 09:58:14 2020 New Revision: 543941 URL: https://svnweb.freebsd.org/changeset/ports/543941 Log: net/vinagre: patch for support passwords more than 8 chars - support ARD (OS-X remote desktop) - increase the lenght of passwords which can be entered from 8 to 32 The upstream issue with 9 years discussion: https://bugzilla.gnome.org/show_bug.cgi?id=652334 Idea of the patch with description: https://bugzilla.gnome.org/show_bug.cgi?id=666598 The max length 32 from here: https://www.mac-forums.com/threads/maximum-length-of-passwords.317066/ PR: 248196 Submitted by: VVD Approved by: desktop Added: head/net/vinagre/files/patch-plugins_vnc_vinagre-vnc-tab.c (contents, props changed) Modified: head/net/vinagre/Makefile Modified: head/net/vinagre/Makefile ============================================================================== --- head/net/vinagre/Makefile Sun Aug 2 09:57:30 2020 (r543940) +++ head/net/vinagre/Makefile Sun Aug 2 09:58:14 2020 (r543941) @@ -3,7 +3,7 @@ PORTNAME= vinagre PORTVERSION= 3.22.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Added: head/net/vinagre/files/patch-plugins_vnc_vinagre-vnc-tab.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/vinagre/files/patch-plugins_vnc_vinagre-vnc-tab.c Sun Aug 2 09:58:14 2020 (r543941) @@ -0,0 +1,20 @@ +Increase the accepted length of passwords. + +- VNC only accepts 8 characters; however some impelementations allow for longer + passwords to be used. Increase the passwords that can be entered to 32 chars. + +https://bugzilla.gnome.org/show_bug.cgi?id=652334 +https://gitlab.gnome.org/GNOME/vinagre/-/issues/17 +https://bugzilla.redhat.com/show_bug.cgi?id=1767963 + +--- plugins/vnc/vinagre-vnc-tab.c.orig ++++ plugins/vnc/vinagre-vnc-tab.c +@@ -508,7 +508,7 @@ + { + host = vinagre_connection_get_best_name (conn); + if (!vinagre_utils_request_credential (window, "VNC", host, NULL, NULL, +- FALSE, need_username, need_password, 8, NULL, &username, &password, ++ FALSE, need_username, need_password, 32, NULL, &username, &password, + &save_in_keyring)) + { + vinagre_tab_remove_from_notebook (tab);