From owner-svn-ports-head@freebsd.org Mon Feb 10 06:15:33 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 BDAD422F197; Mon, 10 Feb 2020 06:15:33 +0000 (UTC) (envelope-from ultima@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) server-signature RSA-PSS (4096 bits) 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 48GFyF4dtXz430x; Mon, 10 Feb 2020 06:15:33 +0000 (UTC) (envelope-from ultima@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 9A82A1ABF3; Mon, 10 Feb 2020 06:15:33 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01A6FXih064644; Mon, 10 Feb 2020 06:15:33 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01A6FWEY064636; Mon, 10 Feb 2020 06:15:32 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <202002100615.01A6FWEY064636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Mon, 10 Feb 2020 06:15:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525692 - in head: net/guacamole-server net/guacamole-server/files www/guacamole-client X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head: net/guacamole-server net/guacamole-server/files www/guacamole-client X-SVN-Commit-Revision: 525692 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.29 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: Mon, 10 Feb 2020 06:15:33 -0000 Author: ultima Date: Mon Feb 10 06:15:32 2020 New Revision: 525692 URL: https://svnweb.freebsd.org/changeset/ports/525692 Log: Updated to 1.1.0 Changes: https://guacamole.apache.org/releases/1.1.0/ Deleted: head/net/guacamole-server/files/patch-configure.ac Modified: head/net/guacamole-server/Makefile head/net/guacamole-server/distinfo head/net/guacamole-server/pkg-plist head/www/guacamole-client/Makefile head/www/guacamole-client/distinfo Modified: head/net/guacamole-server/Makefile ============================================================================== --- head/net/guacamole-server/Makefile Mon Feb 10 04:54:57 2020 (r525691) +++ head/net/guacamole-server/Makefile Mon Feb 10 06:15:32 2020 (r525692) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= guacamole-server -DISTVERSION= 1.0.0 -PORTREVISION= 2 +DISTVERSION= 1.1.0 CATEGORIES= net MAINTAINER= ultima@FreeBSD.org @@ -38,15 +37,17 @@ SUB_LIST= GUACD_USER=${USERS} \ GUACD_GROUP=${GROUPS} OPTIONS_DEFINE= GUACENC GUACLOG NLS SSL WEBP -OPTIONS_DEFAULT= GUACENC GUACLOG PULSEAUDIO RDP SSH SSL VNC VORBIS WEBP +OPTIONS_DEFAULT= GUACENC GUACLOG KUBERNETES PULSEAUDIO RDP \ + SSH SSL VNC VORBIS WEBP OPTIONS_GROUP= SP AUDIO -OPTIONS_GROUP_SP= RDP SSH VNC +OPTIONS_GROUP_SP= RDP KUBERNETES SSH VNC OPTIONS_GROUP_AUDIO= VORBIS PULSEAUDIO OPTIONS_SUB= yes AUDIO_DESC= Audio Support GUACENC_DESC= Video Encoding Utility GUACLOG_DESC= Input log interpreter +KUBERNETES_DESC= Kubernetes protocol support RDP_DESC= RDP protocol support SP_DESC= Supported Protocols VNC_DESC= VNC protocol support @@ -56,11 +57,14 @@ GUACENC_CONFIGURE_WITH= libavcodec libavutil libswsca GUACENC_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg GUACENC_CFLAGS= -Wno-error=deprecated GUACLOG_CONFIGURE_ENABLE= guaclog +KUBERNETES_CONFIGURE_WITH= kubernetes pango terminal +KUBERNETES_LIB_DEPENDS= libwebsockets.so:net/libwebsockets +KUBERNETES_USE= GNOME=pango NLS_USES= gettext-runtime PULSEAUDIO_CONFIGURE_WITH= pulse PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio RDP_CONFIGURE_WITH= rdp -RDP_LIB_DEPENDS= libfreerdp1.so:net/freerdp1 +RDP_LIB_DEPENDS= libfreerdp2.so:net/freerdp SSH_CONFIGURE_WITH= pango ssh terminal SSH_IMPLIES= SSL SSH_LIB_DEPENDS= libssh2.so:security/libssh2 Modified: head/net/guacamole-server/distinfo ============================================================================== --- head/net/guacamole-server/distinfo Mon Feb 10 04:54:57 2020 (r525691) +++ head/net/guacamole-server/distinfo Mon Feb 10 06:15:32 2020 (r525692) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547246983 -SHA256 (apache-guacamole-server-1.0.0_GH0.tar.gz) = d93d7014a9f2a8f689a790b041cef37326d14982d0ff0c0517f92c84f0bf3ef8 -SIZE (apache-guacamole-server-1.0.0_GH0.tar.gz) = 441591 +TIMESTAMP = 1581290732 +SHA256 (apache-guacamole-server-1.1.0_GH0.tar.gz) = d0f0c66ebfa7a4fd6689ae5240f21797b5177945a042388b691b15b8bd5c81a8 +SIZE (apache-guacamole-server-1.1.0_GH0.tar.gz) = 502009 Modified: head/net/guacamole-server/pkg-plist ============================================================================== --- head/net/guacamole-server/pkg-plist Mon Feb 10 04:54:57 2020 (r525691) +++ head/net/guacamole-server/pkg-plist Mon Feb 10 06:15:32 2020 (r525692) @@ -22,6 +22,7 @@ include/guacamole/plugin-constants.h include/guacamole/plugin.h include/guacamole/pool-types.h include/guacamole/pool.h +include/guacamole/protocol-constants.h include/guacamole/protocol-types.h include/guacamole/protocol.h include/guacamole/socket-constants.h @@ -31,6 +32,7 @@ include/guacamole/socket-types.h include/guacamole/socket.h include/guacamole/stream-types.h include/guacamole/stream.h +include/guacamole/string.h include/guacamole/timestamp-types.h include/guacamole/timestamp.h include/guacamole/unicode.h @@ -38,10 +40,12 @@ include/guacamole/user-constants.h include/guacamole/user-fntypes.h include/guacamole/user-types.h include/guacamole/user.h -%%RDP%%lib/freerdp/guacai-client.so -%%RDP%%lib/freerdp/guacdr-client.so -%%RDP%%lib/freerdp/guacsnd-client.so -%%RDP%%lib/freerdp/guacsvc-client.so +%%RDP%%lib/freerdp2/libguac-common-svc-client.so +%%RDP%%lib/freerdp2/libguacai-client.so +%%KUBERNETES%%lib/libguac-client-kubernetes.a +%%KUBERNETES%%lib/libguac-client-kubernetes.so +%%KUBERNETES%%lib/libguac-client-kubernetes.so.0 +%%KUBERNETES%%lib/libguac-client-kubernetes.so.0.0.0 %%RDP%%lib/libguac-client-rdp.a %%RDP%%lib/libguac-client-rdp.so %%RDP%%lib/libguac-client-rdp.so.0 @@ -56,8 +60,8 @@ include/guacamole/user.h %%VNC%%lib/libguac-client-vnc.so.0.0.0 lib/libguac.a lib/libguac.so -lib/libguac.so.16 -lib/libguac.so.16.0.0 +lib/libguac.so.17 +lib/libguac.so.17.0.0 %%GUACENC%%man/man1/guacenc.1.gz %%GUACLOG%%man/man1/guaclog.1.gz man/man5/guacd.conf.5.gz Modified: head/www/guacamole-client/Makefile ============================================================================== --- head/www/guacamole-client/Makefile Mon Feb 10 04:54:57 2020 (r525691) +++ head/www/guacamole-client/Makefile Mon Feb 10 06:15:32 2020 (r525692) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= guacamole-client -DISTVERSION= 1.0.0 -PORTREVISION= 2 +DISTVERSION= 1.1.0 CATEGORIES= www java MASTER_SITES+= https://sourceforge.net/projects/distfiles/files/${PORTNAME}/:repo \ http://sourceforge.net/projects/distfiles/files/${PORTNAME}/:repo Modified: head/www/guacamole-client/distinfo ============================================================================== --- head/www/guacamole-client/distinfo Mon Feb 10 04:54:57 2020 (r525691) +++ head/www/guacamole-client/distinfo Mon Feb 10 06:15:32 2020 (r525692) @@ -1,5 +1,5 @@ -TIMESTAMP = 1547351778 -SHA256 (guacamole-client/repository-1.0.0.tar.xz) = b2a6d480ddbe40dec2c9af67730574c957dee7c037f21e82538174528b344daa -SIZE (guacamole-client/repository-1.0.0.tar.xz) = 56084152 -SHA256 (guacamole-client/apache-guacamole-client-1.0.0_GH0.tar.gz) = 6c44a41bbeec50301462f3bef23a479d207e754b604f61044400402f6b2b85ca -SIZE (guacamole-client/apache-guacamole-client-1.0.0_GH0.tar.gz) = 5978548 +TIMESTAMP = 1581312334 +SHA256 (guacamole-client/repository-1.1.0.tar.xz) = d744383a1f195cb4c5c431cf72e27f16232dcd150289a457dbe1f86cb4af0620 +SIZE (guacamole-client/repository-1.1.0.tar.xz) = 61660412 +SHA256 (guacamole-client/apache-guacamole-client-1.1.0_GH0.tar.gz) = be34e5afd1518e8e7e42233544efc7642f0a3388c76fee0ca16568485655ce11 +SIZE (guacamole-client/apache-guacamole-client-1.1.0_GH0.tar.gz) = 6034631