pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/guacamole-server guacamole-server: Update to 1.0.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/31efc0a83dfb
branches:  trunk
changeset: 321369:31efc0a83dfb
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Wed Mar 20 16:08:48 2019 +0000

description:
guacamole-server: Update to 1.0.0.

This is an attempt at a concise changelog since 0.9.9, please see the URLs
for the full set of changes for each release.

http://guacamole.apache.org/releases/1.0.0/

  User groups, improved clipboard integration, TOTP (Google Authenticator),
  RADIUS, dead keys.)

http://guacamole.apache.org/releases/0.9.14/

  OpenID Connect single sign-on, SQL Server support, CAS "ClearPass", user
  login/logout history, fixes and improvements for RDP, clipboard, file
  transfer, and terminal emulation.

http://guacamole.apache.org/releases/0.9.13-incubating/

  CAS single sign-on, fixes for VNC/RDP/SSH/telnet, in-browser playback of
  screen recordings, automatic connection failover, 256-color console codes.

http://guacamole.apache.org/releases/0.9.12-incubating/

  Thumbnails as tab icons, HTTP header authentication, performance
  improvements, and fixes for printing, file transfer, and terminal
  emulation.

http://guacamole.apache.org/releases/0.9.11-incubating/

  Two-factor authentication, password policies, improvements to Docker and
  LDAP.

http://guacamole.apache.org/releases/0.9.10-incubating/

  Screen sharing, recording, improved file transfer, audio input, Docker
  support for LDAP.

diffstat:

 net/guacamole-server/Makefile                              |  10 ++++----
 net/guacamole-server/PLIST                                 |  17 +++++++++----
 net/guacamole-server/distinfo                              |  11 ++++----
 net/guacamole-server/patches/patch-src_libguac_socket-fd.c |  14 -----------
 4 files changed, 22 insertions(+), 30 deletions(-)

diffs (117 lines):

diff -r 0be9b1507b2b -r 31efc0a83dfb net/guacamole-server/Makefile
--- a/net/guacamole-server/Makefile     Wed Mar 20 16:08:06 2019 +0000
+++ b/net/guacamole-server/Makefile     Wed Mar 20 16:08:48 2019 +0000
@@ -1,17 +1,17 @@
-# $NetBSD: Makefile,v 1.17 2019/02/01 12:49:04 tnn Exp $
+# $NetBSD: Makefile,v 1.18 2019/03/20 16:08:48 jperkin Exp $
 
-DISTNAME=      guacamole-server-0.9.9
-PKGREVISION=   16
+DISTNAME=      guacamole-server-1.0.0
 CATEGORIES=    net
-MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=guacamole/}
+MASTER_SITES=  ${MASTER_SITE_APACHE:=guacamole/${PKGVERSION_NOREV}/source/}
 
 MAINTAINER=    jperkin%joyent.com@localhost
 HOMEPAGE=      http://guacamole.incubator.apache.org/
 COMMENT=       Clientless remote desktop gateway
-LICENSE=       mit
+LICENSE=       apache-2.0
 
 GNU_CONFIGURE= yes
 USE_LANGUAGES= c99
+USE_LIBTOOL=   yes
 USE_TOOLS=     pkg-config
 
 EGDIR=                 ${PREFIX}/share/examples/guacamole
diff -r 0be9b1507b2b -r 31efc0a83dfb net/guacamole-server/PLIST
--- a/net/guacamole-server/PLIST        Wed Mar 20 16:08:06 2019 +0000
+++ b/net/guacamole-server/PLIST        Wed Mar 20 16:08:48 2019 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.1 2016/06/07 12:09:38 jperkin Exp $
+@comment $NetBSD: PLIST,v 1.2 2019/03/20 16:08:48 jperkin Exp $
+bin/guaclog
 include/guacamole/audio-fntypes.h
 include/guacamole/audio-types.h
 include/guacamole/audio.h
@@ -9,15 +10,14 @@
 include/guacamole/error-types.h
 include/guacamole/error.h
 include/guacamole/hash.h
-include/guacamole/instruction-constants.h
-include/guacamole/instruction-types.h
-include/guacamole/instruction.h
 include/guacamole/layer-types.h
 include/guacamole/layer.h
 include/guacamole/object-types.h
 include/guacamole/object.h
+include/guacamole/parser-constants.h
+include/guacamole/parser-types.h
+include/guacamole/parser.h
 include/guacamole/plugin-constants.h
-include/guacamole/plugin-types.h
 include/guacamole/plugin.h
 include/guacamole/pool-types.h
 include/guacamole/pool.h
@@ -25,6 +25,7 @@
 include/guacamole/protocol.h
 include/guacamole/socket-constants.h
 include/guacamole/socket-fntypes.h
+include/guacamole/socket-ssl.h
 include/guacamole/socket-types.h
 include/guacamole/socket.h
 include/guacamole/stream-types.h
@@ -32,6 +33,11 @@
 include/guacamole/timestamp-types.h
 include/guacamole/timestamp.h
 include/guacamole/unicode.h
+include/guacamole/user-constants.h
+include/guacamole/user-fntypes.h
+include/guacamole/user-types.h
+include/guacamole/user.h
+lib/freerdp/guacai.la
 lib/freerdp/guacdr.la
 lib/freerdp/guacsnd.la
 lib/freerdp/guacsvc.la
@@ -40,6 +46,7 @@
 lib/libguac-client-telnet.la
 lib/libguac-client-vnc.la
 lib/libguac.la
+man/man1/guaclog.1
 man/man5/guacd.conf.5
 man/man8/guacd.8
 sbin/guacd
diff -r 0be9b1507b2b -r 31efc0a83dfb net/guacamole-server/distinfo
--- a/net/guacamole-server/distinfo     Wed Mar 20 16:08:06 2019 +0000
+++ b/net/guacamole-server/distinfo     Wed Mar 20 16:08:48 2019 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.1 2016/06/07 12:09:38 jperkin Exp $
+$NetBSD: distinfo,v 1.2 2019/03/20 16:08:48 jperkin Exp $
 
-SHA1 (guacamole-server-0.9.9.tar.gz) = a1ab3bf1e39291e318182b85055587fd98b39de1
-RMD160 (guacamole-server-0.9.9.tar.gz) = b399132ffc69125d20db7f036d0a018ed2f8d88f
-SHA512 (guacamole-server-0.9.9.tar.gz) = 9676f61fed2121f222a2051569419395d50e2fbc4e73a2b7a8e359c66927d8b2a25a246a174c9f1f5bef9c3a5599302c6ab08fb932a5b52ab8d3dcbf943a376f
-Size (guacamole-server-0.9.9.tar.gz) = 679797 bytes
-SHA1 (patch-src_libguac_socket-fd.c) = 9f0d497834acf2d2bc0a7eaa040174a2eb48b512
+SHA1 (guacamole-server-1.0.0.tar.gz) = 231e3cea995cd7f3ec31e91e561d9b884460c5d8
+RMD160 (guacamole-server-1.0.0.tar.gz) = 45fa0d74dd841a69cd0bf2018b8cb786cc7e431f
+SHA512 (guacamole-server-1.0.0.tar.gz) = 70d469e57f77066c1f2e2e3dd4a2ff4a5ca841a937c6774fd62445a3f1833354e0cff09e24892eca7ac8fa5385063972bde8e448a0734b01dc09e9089ca8dc75
+Size (guacamole-server-1.0.0.tar.gz) = 915912 bytes
diff -r 0be9b1507b2b -r 31efc0a83dfb net/guacamole-server/patches/patch-src_libguac_socket-fd.c
--- a/net/guacamole-server/patches/patch-src_libguac_socket-fd.c        Wed Mar 20 16:08:06 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-src_libguac_socket-fd.c,v 1.1 2016/06/07 12:09:38 jperkin Exp $
-
-Include string.h for memset().
-
---- src/libguac/socket-fd.c.orig       2016-01-07 20:07:47.000000000 +0000
-+++ src/libguac/socket-fd.c
-@@ -28,6 +28,7 @@
- #include <stddef.h>
- #include <stdio.h>
- #include <stdlib.h>
-+#include <string.h>
- #include <sys/time.h>
- #include <unistd.h>
- 



Home | Main Index | Thread Index | Old Index