From owner-svn-ports-branches@freebsd.org Sun Aug 18 13:03:58 2019 Return-Path: Delivered-To: svn-ports-branches@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 76C5EC7173; Sun, 18 Aug 2019 13:03:58 +0000 (UTC) (envelope-from rodrigo@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 46BHLk242dz4Wf7; Sun, 18 Aug 2019 13:03:58 +0000 (UTC) (envelope-from rodrigo@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 4239525EA; Sun, 18 Aug 2019 13:03:58 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7ID3wCQ058421; Sun, 18 Aug 2019 13:03:58 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7ID3vMc058419; Sun, 18 Aug 2019 13:03:57 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201908181303.x7ID3vMc058419@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Sun, 18 Aug 2019 13:03:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509206 - in branches/2019Q3/net/rtg: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in branches/2019Q3/net/rtg: . files X-SVN-Commit-Revision: 509206 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2019 13:03:58 -0000 Author: rodrigo Date: Sun Aug 18 13:03:57 2019 New Revision: 509206 URL: https://svnweb.freebsd.org/changeset/ports/509206 Log: MFH: r507219 Patch createdb script to avoid race condition / file tampering During the initialization net/rtg uses the /tmp/mysql.sql and /tmp/rtg.sql to store the SQL commands executed in the database with special user privileges. Using well known files can lead to a race condition between two process who uses the same file names and allow file tampering by a malicious user. This fix uses mktemp command to create temporary files in a safe way PR: 238262 Submitted by: rodrigo Approved by: freebsd-ports@dan.me.uk (maintainer timeout) Approved by: ports-secteam (miwi@) Modified: branches/2019Q3/net/rtg/Makefile branches/2019Q3/net/rtg/files/patch-etc_createdb.in Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net/rtg/Makefile ============================================================================== --- branches/2019Q3/net/rtg/Makefile Sun Aug 18 12:46:07 2019 (r509205) +++ branches/2019Q3/net/rtg/Makefile Sun Aug 18 13:03:57 2019 (r509206) @@ -3,7 +3,7 @@ PORTNAME= rtg PORTVERSION= 0.7.4 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= net MASTER_SITES= SF \ ftp://ftpmirror.uk/freebsd-ports/rtg/ Modified: branches/2019Q3/net/rtg/files/patch-etc_createdb.in ============================================================================== --- branches/2019Q3/net/rtg/files/patch-etc_createdb.in Sun Aug 18 12:46:07 2019 (r509205) +++ branches/2019Q3/net/rtg/files/patch-etc_createdb.in Sun Aug 18 13:03:57 2019 (r509206) @@ -1,20 +1,32 @@ ---- etc/createdb.in.orig 2018-04-02 22:52:32 UTC +--- etc/createdb.in.orig 2003-01-22 19:07:02 UTC +++ etc/createdb.in -@@ -23,11 +23,8 @@ echo "" +@@ -15,6 +15,8 @@ + RTGPASS="rtgdefault" + DATABASE="rtg" + USER="snmp" ++MYSQL_FILE=`mktemp -q /tmp/mysql.XXXXXX` ++RTG_FILE=`mktemp -q /tmp/rtg.XXXXXX` + echo "" + echo "$0 setting up MySQL database for RTG." +@@ -22,103 +24,98 @@ + echo "" + # Create the necessary SQL in two /tmp files - cat </tmp/mysql.sql +-cat </tmp/mysql.sql -INSERT INTO user (Host, User, Password) VALUES ('$HOST','$USER',PASSWORD("$RTGPASS")); -INSERT INTO db (Host, Db, User, Select_priv, Insert_priv, Update_priv, Delete_priv, -Create_priv, Drop_priv, Grant_priv, References_priv, Index_priv, Alter_priv) -VALUES ('$HOST','$DATABASE','$USER','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); -FLUSH PRIVILEGES; ++cat <$MYSQL_FILE +CREATE USER '$USER'@'$HOST' IDENTIFIED BY '$RTG_PASS'; +GRANT ALL ON '$DATABASE'.* TO '$USER'@'$HOST'; EOT - cat </tmp/rtg.sql -@@ -35,81 +32,81 @@ cat </tmp/rtg.sql +-cat </tmp/rtg.sql ++cat <$RTG_FILE + # # Table structure for table 'router' # @@ -135,12 +147,14 @@ ); EOT -@@ -117,8 +114,6 @@ echo "Adding user \"$USER\" to MySQL dat - cat /tmp/mysql.sql | $MYSQLBIN/mysql -u root -p$ROOTPASS mysql + echo "Adding user \"$USER\" to MySQL database..." +-cat /tmp/mysql.sql | $MYSQLBIN/mysql -u root -p$ROOTPASS mysql ++cat $MYSQL_FILE | $MYSQLBIN/mysql -u root -p$ROOTPASS mysql echo "Creating RTG database \"$DATABASE\"..." $MYSQLBIN/mysqladmin -u root -p$ROOTPASS create $DATABASE -echo "Reloading MySQL privileges..." -$MYSQLBIN/mysqladmin -u root -p$ROOTPASS flush-privileges echo "Creating RTG tables..." - cat /tmp/rtg.sql | $MYSQLBIN/mysql -u $USER -p$RTGPASS $DATABASE +-cat /tmp/rtg.sql | $MYSQLBIN/mysql -u $USER -p$RTGPASS $DATABASE ++cat $RTG_FILE | $MYSQLBIN/mysql -u $USER -p$RTGPASS $DATABASE echo "Done." From owner-svn-ports-branches@freebsd.org Sun Aug 18 17:04:44 2019 Return-Path: Delivered-To: svn-ports-branches@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 108C4CBC81; Sun, 18 Aug 2019 17:04:44 +0000 (UTC) (envelope-from zeising@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 46BNhW6cfDz3G27; Sun, 18 Aug 2019 17:04:43 +0000 (UTC) (envelope-from zeising@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 C4B3D53E8; Sun, 18 Aug 2019 17:04:43 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7IH4hQb002507; Sun, 18 Aug 2019 17:04:43 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7IH4gIt002501; Sun, 18 Aug 2019 17:04:42 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201908181704.x7IH4gIt002501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 18 Aug 2019 17:04:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509229 - in branches/2019Q3/x11/xdm: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in branches/2019Q3/x11/xdm: . files X-SVN-Commit-Revision: 509229 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2019 17:04:44 -0000 Author: zeising Date: Sun Aug 18 17:04:42 2019 New Revision: 509229 URL: https://svnweb.freebsd.org/changeset/ports/509229 Log: MFH: r509218 r509225 x11/xdm: Update to 1.1.12 Update x11/xdm to 1.1.12. This is a big release, incorporating over 7 years worth of changes. Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002959.html Obtained from: FreeBSD Graphics Team development repo https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorglibs Seucrity: CVE-2013-2179 Sponsored by: B3 Init x11/xdm: Remove patch file Remove patch file, this should have been done in r509218, but was missed when moving from git to SVN. PR: 239942 Reported by: Martin Birgmeier X-MFH-with: 509218 Sponsored by: B3 Init Approved by: ports-secteam (joneum) Added: branches/2019Q3/x11/xdm/files/patch-config_Xresources.in - copied unchanged from r509218, head/x11/xdm/files/patch-config_Xresources.in branches/2019Q3/x11/xdm/files/patch-config_xdm-config.in - copied unchanged from r509218, head/x11/xdm/files/patch-config_xdm-config.in Deleted: branches/2019Q3/x11/xdm/files/patch-config-Makefile.in branches/2019Q3/x11/xdm/files/patch-config-Xresources.cpp branches/2019Q3/x11/xdm/files/patch-config_xdm-config.cpp Modified: branches/2019Q3/x11/xdm/Makefile branches/2019Q3/x11/xdm/distinfo branches/2019Q3/x11/xdm/files/patch-xdm_session.c branches/2019Q3/x11/xdm/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/x11/xdm/Makefile ============================================================================== --- branches/2019Q3/x11/xdm/Makefile Sun Aug 18 17:04:34 2019 (r509228) +++ branches/2019Q3/x11/xdm/Makefile Sun Aug 18 17:04:42 2019 (r509229) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= xdm -PORTVERSION= 1.1.11 -PORTREVISION= 8 +PORTVERSION= 1.1.12 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -13,7 +12,7 @@ LICENSE= MIT XORG_CAT= app USES= cpe libtool USE_LDCONFIG= yes -USE_XORG= x11 xau xaw xdmcp xext xinerama xmu xpm xt +USE_XORG= x11 xau xaw xdmcp xext xinerama xmu xpm xrender xt CPE_PRODUCT= x_display_manager CPE_VENDOR= x Modified: branches/2019Q3/x11/xdm/distinfo ============================================================================== --- branches/2019Q3/x11/xdm/distinfo Sun Aug 18 17:04:34 2019 (r509228) +++ branches/2019Q3/x11/xdm/distinfo Sun Aug 18 17:04:42 2019 (r509229) @@ -1,2 +1,3 @@ -SHA256 (xorg/app/xdm-1.1.11.tar.bz2) = d4da426ddea0124279a3f2e00a26db61944690628ee818a64df9d27352081c47 -SIZE (xorg/app/xdm-1.1.11.tar.bz2) = 446612 +TIMESTAMP = 1560812972 +SHA256 (xorg/app/xdm-1.1.12.tar.bz2) = 0dd283f72dda098d09e2925b9278c95e21551e693a5802ab442d1b577d8327f4 +SIZE (xorg/app/xdm-1.1.12.tar.bz2) = 512074 Copied: branches/2019Q3/x11/xdm/files/patch-config_Xresources.in (from r509218, head/x11/xdm/files/patch-config_Xresources.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/x11/xdm/files/patch-config_Xresources.in Sun Aug 18 17:04:42 2019 (r509229, copy of r509218, head/x11/xdm/files/patch-config_Xresources.in) @@ -0,0 +1,14 @@ +--- config/Xresources.in.orig 2019-03-02 22:06:13 UTC ++++ config/Xresources.in +@@ -59,9 +59,9 @@ xlogin*hiColor: black + XHASHendif + #ifdef XPM + XHASHif PLANES >= 8 +-xlogin*logoFileName: BITMAPDIR/**//XDM_PIXMAP ++xlogin*logoFileName: BITMAPDIR/XDM_PIXMAP + XHASHelse +-xlogin*logoFileName: BITMAPDIR/**//XDM_BWPIXMAP ++xlogin*logoFileName: BITMAPDIR/XDM_BWPIXMAP + XHASHendif + xlogin*useShape: true + xlogin*logoPadding: 10 Copied: branches/2019Q3/x11/xdm/files/patch-config_xdm-config.in (from r509218, head/x11/xdm/files/patch-config_xdm-config.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/x11/xdm/files/patch-config_xdm-config.in Sun Aug 18 17:04:42 2019 (r509229, copy of r509218, head/x11/xdm/files/patch-config_xdm-config.in) @@ -0,0 +1,10 @@ +--- config/xdm-config.in.orig 2019-03-02 22:06:13 UTC ++++ config/xdm-config.in +@@ -25,6 +25,7 @@ DisplayManager*authComplain: true + DisplayManager._0.setup: XDMSCRIPTDIR/Xsetup_0 + DisplayManager._0.startup: XDMSCRIPTDIR/GiveConsole + DisplayManager._0.reset: XDMSCRIPTDIR/TakeConsole ++DisplayManager.*.authName: MIT-MAGIC-COOKIE-1 + #ifdef XPM + DisplayManager*loginmoveInterval: 10 + #endif /* XPM */ Modified: branches/2019Q3/x11/xdm/files/patch-xdm_session.c ============================================================================== --- branches/2019Q3/x11/xdm/files/patch-xdm_session.c Sun Aug 18 17:04:34 2019 (r509228) +++ branches/2019Q3/x11/xdm/files/patch-xdm_session.c Sun Aug 18 17:04:42 2019 (r509229) @@ -1,6 +1,6 @@ ---- xdm/session.c.orig 2011-09-25 07:35:47 UTC +--- xdm/session.c.orig 2019-03-02 22:06:13 UTC +++ xdm/session.c -@@ -575,6 +575,7 @@ StartClient ( +@@ -594,6 +594,7 @@ StartClient ( pid_t pid; #ifdef HAVE_SETUSERCONTEXT struct passwd* pwd; @@ -8,7 +8,7 @@ #endif #ifdef USE_PAM pam_handle_t *pamh = thepamh (); -@@ -695,6 +696,8 @@ StartClient ( +@@ -678,6 +679,8 @@ StartClient ( * Set the user's credentials: uid, gid, groups, * environment variables, resource limits, and umask. */ @@ -17,7 +17,7 @@ pwd = getpwnam(name); if (pwd) { if (setusercontext(NULL, pwd, pwd->pw_uid, LOGIN_SETALL) < 0) { -@@ -702,6 +705,7 @@ StartClient ( +@@ -685,6 +688,7 @@ StartClient ( name, _SysErrorMsg (errno)); return (0); } Modified: branches/2019Q3/x11/xdm/pkg-plist ============================================================================== --- branches/2019Q3/x11/xdm/pkg-plist Sun Aug 18 17:04:34 2019 (r509228) +++ branches/2019Q3/x11/xdm/pkg-plist Sun Aug 18 17:04:42 2019 (r509229) @@ -13,7 +13,7 @@ bin/xdm @sample etc/X11/xdm/xdm-config.sample lib/X11/xdm/chooser lib/X11/xdm/libXdmGreet.so -man/man1/xdm.1.gz +man/man8/xdm.8.gz %%XDMSHELL%%man/man1/xdmshell.1.gz share/X11/app-defaults/Chooser share/pixmaps/xorg-bw.xpm From owner-svn-ports-branches@freebsd.org Sun Aug 18 17:06:34 2019 Return-Path: Delivered-To: svn-ports-branches@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 67D7CCBDF1; Sun, 18 Aug 2019 17:06:34 +0000 (UTC) (envelope-from pi@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 46BNkf292Qz3GPX; Sun, 18 Aug 2019 17:06:34 +0000 (UTC) (envelope-from pi@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 2C16453EF; Sun, 18 Aug 2019 17:06:34 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7IH6XoL002783; Sun, 18 Aug 2019 17:06:33 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7IH6XNn002781; Sun, 18 Aug 2019 17:06:33 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201908181706.x7IH6XNn002781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 18 Aug 2019 17:06:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509230 - branches/2019Q3/www/gitea X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: branches/2019Q3/www/gitea X-SVN-Commit-Revision: 509230 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Aug 2019 17:06:34 -0000 Author: pi Date: Sun Aug 18 17:06:33 2019 New Revision: 509230 URL: https://svnweb.freebsd.org/changeset/ports/509230 Log: MFH: r509227 www/gitea: upgrade 1.9.0 -> 1.9.1 - This release contains two security fixes, so we highly recommend updating. PR: 239930 Submitted by: stb@lassitu.de (maintainer) Relnotes: https://blog.gitea.io/2019/08/gitea-1.9.1-is-released/ Security: https://github.com/go-gitea/gitea/pull/7715 https://github.com/go-gitea/gitea/pull/7762 Approved by: ports-secteam (joneum) Modified: branches/2019Q3/www/gitea/Makefile branches/2019Q3/www/gitea/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/gitea/Makefile ============================================================================== --- branches/2019Q3/www/gitea/Makefile Sun Aug 18 17:04:42 2019 (r509229) +++ branches/2019Q3/www/gitea/Makefile Sun Aug 18 17:06:33 2019 (r509230) @@ -3,7 +3,7 @@ PORTNAME= gitea DISTVERSIONPREFIX= v -DISTVERSION= 1.9.0 +DISTVERSION= 1.9.1 CATEGORIES= www MAINTAINER= stb@lassitu.de Modified: branches/2019Q3/www/gitea/distinfo ============================================================================== --- branches/2019Q3/www/gitea/distinfo Sun Aug 18 17:04:42 2019 (r509229) +++ branches/2019Q3/www/gitea/distinfo Sun Aug 18 17:06:33 2019 (r509230) @@ -1,3 +1,3 @@ -TIMESTAMP = 1564592396 -SHA256 (go-gitea-gitea-v1.9.0_GH0.tar.gz) = e648227ebe6716fd53095cade7881fc547a76b2655cac4631ac254992a95b207 -SIZE (go-gitea-gitea-v1.9.0_GH0.tar.gz) = 24057144 +TIMESTAMP = 1566072478 +SHA256 (go-gitea-gitea-v1.9.1_GH0.tar.gz) = a50743db22f3e0a0eba27ac168a92b636fa0841e9e9515721b51bfc30c2957dd +SIZE (go-gitea-gitea-v1.9.1_GH0.tar.gz) = 24074441 From owner-svn-ports-branches@freebsd.org Mon Aug 19 09:35:46 2019 Return-Path: Delivered-To: svn-ports-branches@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 18D83AF2A5; Mon, 19 Aug 2019 09:35:46 +0000 (UTC) (envelope-from rene@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 46Bph20ZT7z4XgJ; Mon, 19 Aug 2019 09:35:46 +0000 (UTC) (envelope-from rene@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 0A5C9189DB; Mon, 19 Aug 2019 09:35:46 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7J9ZjmF091146; Mon, 19 Aug 2019 09:35:45 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7J9Zjo9091143; Mon, 19 Aug 2019 09:35:45 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201908190935.x7J9Zjo9091143@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 19 Aug 2019 09:35:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509265 - in branches/2019Q3/www/wt: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in branches/2019Q3/www/wt: . files X-SVN-Commit-Revision: 509265 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2019 09:35:46 -0000 Author: rene Date: Mon Aug 19 09:35:44 2019 New Revision: 509265 URL: https://svnweb.freebsd.org/changeset/ports/509265 Log: MFH: r509235 Fix and update www/wt to version 4.1.0. Minor corrections from me. PR: 226160 Submitted by: maintainer Approved by: ports-secteam (joneum) Modified: branches/2019Q3/www/wt/Makefile branches/2019Q3/www/wt/distinfo branches/2019Q3/www/wt/files/patch-CMakeLists.txt branches/2019Q3/www/wt/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/wt/Makefile ============================================================================== --- branches/2019Q3/www/wt/Makefile Mon Aug 19 09:19:06 2019 (r509264) +++ branches/2019Q3/www/wt/Makefile Mon Aug 19 09:35:44 2019 (r509265) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= wt -PORTVERSION= 3.3.7 -PORTREVISION= 15 +DISTVERSION= 4.1.0 CATEGORIES= www MAINTAINER= info@babaei.net @@ -12,210 +11,144 @@ COMMENT= Widget-centric C++ library for developing web LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS+= libpng.so:graphics/png \ +BROKEN_powerpc64= fails to link: libwthttp.so. undefined reference to boost::program_options::abstract_variables_map::operator + +LIB_DEPENDS= libpng.so:graphics/png \ libboost_system.so:devel/boost-libs \ libGraphicsMagick.so:graphics/GraphicsMagick -BROKEN= fails to build with boost 1.66, see bug 224183 -DEPRECATED= Broken for more than 5 months -EXPIRATION_DATE= 2018-08-20 -BROKEN_powerpc64= fails to link: libwthttp.so. undefined reference to boost::program_options::abstract_variables_map::operator - +USES= cmake compiler:c++14-lang pkgconfig ssl USE_GITHUB= yes -GH_ACCOUNT= kdeforche +GH_ACCOUNT= emweb +USE_XORG= x11 USE_LDCONFIG= yes -USE_XORG+=x11 -USES= cmake pkgconfig ssl -CMAKE_ARGS+= -DCONFIGDIR:STRING=${LOCALBASE}/etc/wt \ - -DGM_PREFIX:STRING=${LOCALBASE} \ - -DPNG_PREFIX:STRING=${LOCALBASE} \ - -DSSL_PREFIX:STRING=/usr \ - -DZLIB_PREFIX:STRING=/usr \ - -DCONNECTOR_ISAPI:BOOL=OFF \ - -DWEBUSER:STRING=www \ - -DWEBGROUP:STRING=www \ - -DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \ - -DENABLE_SSL:BOOL=ON -NO_OPTIONS_SORT= yes +CMAKE_ARGS= -DCONFIGDIR:STRING=${LOCALBASE}/etc/${PORTNAME} \ + -DGM_PREFIX:STRING=${LOCALBASE} \ + -DEXAMPLES_DESTINATION:STRING=share/examples/${PORTNAME} \ + -DSSL_PREFIX:STRING=/usr \ + -DZLIB_PREFIX:STRING=/usr \ + -DCONNECTOR_ISAPI:BOOL=OFF \ + -DWEBUSER:STRING=www \ + -DWEBGROUP:STRING=www \ + -DWT_WRASTERIMAGE_IMPLEMENTATION:STRING=GraphicsMagick \ + -DENABLE_SSL:BOOL=ON \ + -DDESTDIR:STRING=${STAGEDIR} + OPTIONS_DEFINE= \ - DOXYGEN \ EXAMPLES \ TESTS \ RESOURCES \ - CMAKE_MODULE \ - CPP11 \ HARU \ PANGO \ - EXT \ + QT5 \ + OPENGL \ LIBWTTEST \ - OPENGL + UNWIND OPTIONS_DEFAULT= \ TESTS \ RESOURCES \ - CMAKE_MODULE \ - CPP11 \ HARU \ PANGO \ OPENGL \ LIBWTTEST OPTIONS_GROUP= CONNECTOR DBO WSTRING OPTIONS_SUB= yes +NO_OPTIONS_SORT= yes EXAMPLES_DESC= Install examples (implies SQLITE3 and WTHTTP) TESTS_DESC= Build Wt tests RESOURCES_DESC= Install resources directory -CMAKE_MODULE_DESC= Install FindWt.cmake in systemwide cmake dir -CPP11_DESC= Compile Wt in C++11 mode (Clang or GCC 4.6+) HARU_DESC= Enable Haru Free PDF Library -EXT_DESC= Build Wt Ext library with JavaScript-only widgets LIBWTTEST_DESC= Build Wt::Test for automated (integration/unit) tests +UNWIND_DESC= Build Wt with stacktrace support using libunwind OPTIONS_GROUP_CONNECTOR= FCGI WTHTTP -OPTIONS_DEFAULT += FCGI WTHTTP +OPTIONS_DEFAULT+= FCGI WTHTTP CONNECTOR_DESC= Connector FCGI_DESC= Build FastCGI connector WTHTTP_DESC= Build Wt stand-alone httpd connector OPTIONS_GROUP_DBO= SQLITE3 POSTGRES FIREBIRD MYSQL -OPTIONS_DEFAULT += SQLITE3 +OPTIONS_DEFAULT+= SQLITE3 DBO_DESC= Wt::DBO SQLITE3_DESC= Build Wt with SQLite 3 support POSTGRES_DESC= Build Wt with PostgreSQL support FIREBIRD_DESC= Build Wt with Firebird support MYSQL_DESC= Build Wt with MariaDB or MySQL support -OPTIONS_GROUP_WSTRING= NO_STD_LOCALE NO_STD_WSTRING -WSTRING_DESC= Wt::WString -NO_STD_LOCALE_DESC= Build for a system without std::locale support -NO_STD_WSTRING_DESC= Build for a system without std::wstring support - EXAMPLES_IMPLIES= SQLITE3 WTHTTP +EXAMPLES_CMAKE_BOOL= BUILD_EXAMPLES INSTALL_EXAMPLES -CMAKE_MODULE_CMAKE_ON= -DINSTALL_FINDWT_CMAKE_FILE:BOOL=ON -CMAKE_MODULE_CMAKE_OFF= -DINSTALL_FINDWT_CMAKE_FILE:BOOL=OFF -DOXYGEN_CMAKE_ON= -DBUILD_DOCS:BOOL=ON -DOXYGEN_CMAKE_OFF= -DBUILD_DOCS:BOOL=OFF -FCGI_CMAKE_ON= -DCONNECTOR_FCGI:BOOL=ON -FCGI_CMAKE_OFF= -DCONNECTOR_FCGI:BOOL=OFF -FIREBIRD_CMAKE_ON= -DENABLE_FIREBIRD:BOOL=ON -FIREBIRD_CMAKE_OFF= -DENABLE_FIREBIRD:BOOL=OFF -EXT_CMAKE_ON= -DENABLE_EXT:BOOL=ON -EXT_CMAKE_OFF= -DENABLE_EXT:BOOL=OFF -HARU_CMAKE_ON= -DENABLE_HARU:BOOL=ON -HARU_CMAKE_OFF= -DENABLE_HARU:BOOL=OFF -LIBWTTEST_CMAKE_ON= -DENABLE_LIBWTTEST:BOOL=ON -LIBWTTEST_CMAKE_OFF= -DENABLE_LIBWTTEST:BOOL=OFF -MYSQL_CMAKE_ON= -DENABLE_MYSQL:BOOL=ON -MYSQL_CMAKE_OFF= -DENABLE_MYSQL:BOOL=OFF -NO_STD_LOCALE_CMAKE_ON= -DWT_NO_STD_LOCALE:BOOL=ON -NO_STD_LOCALE_CMAKE_OFF=-DWT_NO_STD_LOCALE:BOOL=OFF -NO_STD_WSTRING_CMAKE_ON= -DWT_NO_STD_WSTRING:BOOL=ON -NO_STD_WSTRING_CMAKE_OFF= -DWT_NO_STD_WSTRING:BOOL=OFF -OPENGL_CMAKE_ON= -DENABLE_OPENGL:BOOL=ON -OPENGL_CMAKE_OFF= -DENABLE_OPENGL:BOOL=OFF -PANGO_CMAKE_ON= -DENABLE_PANGO:BOOL=ON -PANGO_CMAKE_OFF= -DENABLE_PANGO:BOOL=OFF -POSTGRES_CMAKE_ON= -DENABLE_POSTGRES:BOOL=ON -POSTGRES_CMAKE_OFF= -DENABLE_POSTGRES:BOOL=OFF -RESOURCES_CMAKE_ON= -DINSTALL_RESOURCES:BOOL=ON -RESOURCES_CMAKE_OFF= -DINSTALL_RESOURCES:BOOL=OFF -SQLITE_CMAKE_ON= -DENABLE_SQLITE:BOOL=ON -SQLITE_CMAKE_OFF= -DENABLE_SQLITE:BOOL=OFF -TESTS_CMAKE_ON= -DBUILD_TESTS:BOOL=ON -TESTS_CMAKE_OFF= -DBUILD_TESTS:BOOL=OFF -WTHTTP_CMAKE_ON= -DCONNECTOR_HTTP:BOOL=ON -WTHTTP_CMAKE_OFF= -DCONNECTOR_HTTP:BOOL=OFF +FCGI_CMAKE_BOOL= CONNECTOR_FCGI +FCGI_LIB_DEPENDS= libfcgi.so:www/fcgi \ + libfcgi++.so:www/fcgi +FCGI_CMAKE_ON= -DFCGI_PREFIX:STRING=${LOCALBASE} -.include +FIREBIRD_CMAKE_BOOL= ENABLE_FIREBIRD +FIREBIRD_USES= firebird +FIREBIRD_CMAKE_ON= -DFIREBIRD_PREFIX:STRING=${LOCALBASE} \ + -DENABLE_LIBWTDBO:BOOL=ON -.if ${PORT_OPTIONS:MDOXYGEN} -BUILD_DEPENDS+= asciidoc:textproc/asciidoc \ - doxygen:devel/doxygen -.endif +HARU_CMAKE_BOOL= ENABLE_HARU +HARU_LIB_DEPENDS= libhpdf.so:print/libharu +HARU_CMAKE_ON= -DHARU_PREFIX:STRING=${LOCALBASE} -.if ${PORT_OPTIONS:MEXAMPLES} -CMAKE_ARGS+= -DBUILD_EXAMPLES:BOOL=ON -DINSTALL_EXAMPLES:BOOL=ON -.if ${PORT_OPTIONS:MSQLITE3} \ - || ${PORT_OPTIONS:MPOSTGRES} \ - || ${PORT_OPTIONS:MFIREBIRD} \ - || ${PORT_OPTIONS:MMYSQL} -PLIST_SUB+= DBO_EXAMPLES="" -.if ${PORT_OPTIONS:MSQLITE3} -.else -PLIST_SUB+= DBO_SQLITE3_EXAMPLES="" -.endif -PLIST_SUB+= DBO_SQLITE3_EXAMPLES="@comment " -.else -PLIST_SUB+= DBO_EXAMPLES="@comment " -PLIST_SUB+= DBO_SQLITE3_EXAMPLES="@comment " -.endif -.else -CMAKE_ARGS+= -DBUILD_EXAMPLES:BOOL=OFF -DINSTALL_EXAMPLES:BOOL=OFF -PLIST_SUB+= DBO_EXAMPLES="@comment " -PLIST_SUB+= DBO_SQLITE3_EXAMPLES="@comment " -.endif +LIBWTTEST_CMAKE_BOOL= ENABLE_LIBWTTEST -.if ${PORT_OPTIONS:MCPP11} -USES+= compiler:c++11-lib -CMAKE_ARGS+= -DWT_CPP_11_MODE:STRING=-std=c++0x -.endif +MYSQL_USES= mysql +MYSQL_CMAKE_BOOL= ENABLE_MYSQL +MYSQL_CMAKE_ON= -DMYSQL_PREFIX:STRING=${LOCALBASE} \ + -DENABLE_LIBWTDBO:BOOL=ON -.if ${PORT_OPTIONS:MHARU} -LIB_DEPENDS+= libhpdf.so:print/libharu -CMAKE_ARGS+= -DHARU_PREFIX:STRING=${LOCALBASE} -.endif +OPENGL_CMAKE_BOOL= ENABLE_OPENGL +OPENGL_USE= GL=gl,glew +OPENGL_USES= gl -.if ${PORT_OPTIONS:MPANGO} -USE_GNOME+= pango -.endif +PANGO_CMAKE_BOOL= ENABLE_PANGO +PANGO_USE= GNOME=pango +PANGO_USES= gnome +PANGO_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig -.if ${PORT_OPTIONS:MOPENGL} -USE_GL= gl glew -.endif +POSTGRES_CMAKE_BOOL= ENABLE_POSTGRES +POSTGRES_USES= pgsql +POSTGRES_CMAKE_ON= -DPOSTGRES_PREFIX:STRING=${LOCALBASE} \ + -DENABLE_LIBWTDBO:BOOL=ON -.if ${PORT_OPTIONS:MFCGI} -LIB_DEPENDS+= libfcgi.so:www/fcgi \ - libfcgi++.so:www/fcgi +QT5_CMAKE_BOOL= ENABLE_QT5 +QT5_USE= qt=buildtools_build,core +QT5_USES= qt:5 -CMAKE_ARGS+= -DFCGI_PREFIX:STRING=${LOCALBASE} -.endif +RESOURCES_CMAKE_BOOL= INSTALL_RESOURCES -.if ${PORT_OPTIONS:MSQLITE3} \ - || ${PORT_OPTIONS:MPOSTGRES} \ - || ${PORT_OPTIONS:MFIREBIRD} \ - || ${PORT_OPTIONS:MMYSQL} -CMAKE_ARGS+= -DENABLE_LIBWTDBO:BOOL=ON -PLIST_SUB+= DBO="" -.else -CMAKE_ARGS+= -DENABLE_LIBWTDBO:BOOL=OFF -PLIST_SUB+= DBO="@comment " -.endif +SQLITE3_CMAKE_BOOL= ENABLE_SQLITE +SQLITE3_USES= sqlite:3 +SQLITE3_CMAKE_ON= -DENABLE_LIBWTDBO:BOOL=ON -.if ${PORT_OPTIONS:MSQLITE3} -USES+= sqlite:3 -CMAKE_ARGS+= -DSQLITE3_PREFIX:STRING=${LOCALBASE} -.endif +TESTS_CMAKE_BOOL= BUILD_TESTS -.if ${PORT_OPTIONS:MPOSTGRES} -USES+= pgsql -CMAKE_ARGS+= -DPOSTGRES_PREFIX:STRING=${LOCALBASE} -.endif +UNWIND_CMAKE_BOOL= ENABLE_UNWIND +UNWIND_LIB_DEPENDS= libunwind.so:devel/libunwind -.if ${PORT_OPTIONS:MFIREBIRD} -USES+= firebird -CMAKE_ARGS+= -DFIREBIRD_PREFIX:STRING=${LOCALBASE} -.endif +WTHTTP_CMAKE_BOOL= CONNECTOR_HTTP -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= yes -CMAKE_ARGS+= -DMYSQL_PREFIX:STRING=${LOCALBASE} +PORTEXAMPLES= * + +.include + +.if ${PORT_OPTIONS:MSQLITE3} || \ + ${PORT_OPTIONS:MPOSTGRES} || \ + ${PORT_OPTIONS:MFIREBIRD} || \ + ${PORT_OPTIONS:MMYSQL} +PLIST_SUB+= DBO="" +.else +PLIST_SUB+= DBO="@comment " .endif post-install: @${RM} ${STAGEDIR}${ETCDIR}/wt_config.xml @${MKDIR} ${STAGEDIR}${ETCDIR} - @${CP} -p ${BUILD_WRKSRC}/wt_config.xml \ + ${INSTALL_DATA} ${BUILD_WRKSRC}/wt_config.xml \ ${STAGEDIR}${ETCDIR}/wt_config.xml.sample .include Modified: branches/2019Q3/www/wt/distinfo ============================================================================== --- branches/2019Q3/www/wt/distinfo Mon Aug 19 09:19:06 2019 (r509264) +++ branches/2019Q3/www/wt/distinfo Mon Aug 19 09:35:44 2019 (r509265) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491079306 -SHA256 (kdeforche-wt-3.3.7_GH0.tar.gz) = 054af8d62a7c158df62adc174a6a57610868470a07e7192ee7ce60a18552851d -SIZE (kdeforche-wt-3.3.7_GH0.tar.gz) = 8544988 +TIMESTAMP = 1565657157 +SHA256 (emweb-wt-4.1.0_GH0.tar.gz) = 03a8b59e054780f13443e95b6acd01a4575db70f718aed39c8bdf830253823d6 +SIZE (emweb-wt-4.1.0_GH0.tar.gz) = 8746560 Modified: branches/2019Q3/www/wt/files/patch-CMakeLists.txt ============================================================================== --- branches/2019Q3/www/wt/files/patch-CMakeLists.txt Mon Aug 19 09:19:06 2019 (r509264) +++ branches/2019Q3/www/wt/files/patch-CMakeLists.txt Mon Aug 19 09:35:44 2019 (r509265) @@ -1,85 +1,17 @@ ---- CMakeLists.txt.orig 2016-01-01 10:26:34 UTC +--- CMakeLists.txt.orig 2019-08-13 16:57:51 UTC +++ CMakeLists.txt -@@ -6,6 +6,8 @@ IF(COMMAND CMAKE_POLICY) - CMAKE_POLICY(SET CMP0002 OLD) - CMAKE_POLICY(SET CMP0003 OLD) - CMAKE_POLICY(SET CMP0005 OLD) -+ CMAKE_POLICY(SET CMP0037 OLD) -+ CMAKE_POLICY(SET CMP0046 OLD) - ENDIF(COMMAND CMAKE_POLICY) - - PROJECT(WT) -@@ -340,7 +342,11 @@ INCLUDE(cmake/WtFindPng.txt) - INCLUDE(cmake/WtFindSsl.txt) - INCLUDE(cmake/WtFindMysql.txt) - INCLUDE(cmake/WtFindPostgresql.txt) --INCLUDE(cmake/WtFindAsciidoc.txt) -+ -+IF (BUILD_DOCS) -+ INCLUDE(cmake/WtFindAsciidoc.txt) -+ENDIF (BUILD_DOCS) -+ - INCLUDE(cmake/WtFindHaru.txt) - INCLUDE(cmake/WtFindGm.txt) - INCLUDE(cmake/WtFindGL.txt) -@@ -462,7 +468,9 @@ ELSE (${WT_WRASTERIMAGE_IMPLEMENTATION} - MESSAGE("** Disabled WRasterimage support. Set WT_WRASTERIMAGE_IMPLEMENTATION to GraphicsMagick or skia.") - ENDIF (${WT_WRASTERIMAGE_IMPLEMENTATION} STREQUAL "GraphicsMagick") - --FIND_PACKAGE(Doxygen) -+IF (BUILD_DOCS) -+ FIND_PACKAGE(Doxygen) -+ENDIF (BUILD_DOCS) - - # Boost is used nearly everywhere, so we can put these here - INCLUDE_DIRECTORIES(${BOOST_INCLUDE_DIRS}) -@@ -498,27 +506,29 @@ ENDIF(DEBUG) - - ADD_CUSTOM_TARGET(doc) - --IF (ASCIIDOC_FOUND) -- MACRO (ASCIIDOC_FILE target infile outfile) -- ADD_CUSTOM_TARGET(${target} -- ${ASCIIDOC_EXECUTABLE} -a toc -a numbered -a icons -a theme=emweb -a pygments -a linkcss -o ${outfile} ${infile} -- COMMENT "Asciidoc ${infile}") -- ADD_DEPENDENCIES(doc ${target}) -- ENDMACRO (ASCIIDOC_FILE) --ENDIF (ASCIIDOC_FOUND) -+IF (BUILD_DOCS) -+ IF (ASCIIDOC_FOUND) -+ MACRO (ASCIIDOC_FILE target infile outfile) -+ ADD_CUSTOM_TARGET(${target} -+ ${ASCIIDOC_EXECUTABLE} -a toc -a numbered -a icons -a theme=emweb -a pygments -a linkcss -o ${outfile} ${infile} -+ COMMENT "Asciidoc ${infile}") -+ ADD_DEPENDENCIES(doc ${target}) -+ ENDMACRO (ASCIIDOC_FILE) -+ ENDIF (ASCIIDOC_FOUND) - --IF (DOXYGEN_FOUND) -- ADD_CUSTOM_TARGET(doxygen -- ${DOXYGEN_EXECUTABLE} -- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} -- COMMENT "Doxygen ...") -- ADD_DEPENDENCIES(doc doxygen) -- ADD_CUSTOM_TARGET(doxygen-examples -- ${DOXYGEN_EXECUTABLE} -- WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples -- COMMENT "Doxygen for examples ...") -- ADD_DEPENDENCIES(doc doxygen-examples) --ENDIF (DOXYGEN_FOUND) -+ IF (DOXYGEN_FOUND) -+ ADD_CUSTOM_TARGET(doxygen -+ ${DOXYGEN_EXECUTABLE} -+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} -+ COMMENT "Doxygen ...") -+ ADD_DEPENDENCIES(doc doxygen) -+ ADD_CUSTOM_TARGET(doxygen-examples -+ ${DOXYGEN_EXECUTABLE} -+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples -+ COMMENT "Doxygen for examples ...") -+ ADD_DEPENDENCIES(doc doxygen-examples) -+ ENDIF (DOXYGEN_FOUND) -+ENDIF (BUILD_DOCS) - - # we enable rpath support for APPLE, this probably goes against policy - # linux distributions? +@@ -63,11 +63,11 @@ OPTION(ENABLE_SQLITE "Build SQLite3 backend for Wt::Db + OPTION(ENABLE_POSTGRES "Build PostgreSQL backend for Wt::Dbo" ON) + OPTION(ENABLE_FIREBIRD "Build FirebirdSQL backend for Wt::Dbo" ON) + OPTION(ENABLE_MYSQL "Build mariadb/mysql backend for Wt::Dbo" ON) +-OPTION(ENABLE_MSSQLSERVER "Build Microsoft SQL Server backend for Wt::Dbo" ON) +-OPTION(ENABLE_QT4 "Build Qt4 interworking library (libwtwithqt)" ON) ++OPTION(ENABLE_MSSQLSERVER "Build Microsoft SQL Server backend for Wt::Dbo" OFF) # Microsoft Windows only option ++OPTION(ENABLE_QT4 "Build Qt4 interworking library (libwtwithqt)" OFF) # QT4 is no longer available in FreeBSD Ports + OPTION(ENABLE_QT5 "Build Qt5 interworking library (libwtwithqt5)" ON) + OPTION(ENABLE_LIBWTTEST "Build Wt::Test" ON) +-OPTION(ENABLE_LIBWTDBO "Build Wt::Dbo" ON) ++OPTION(ENABLE_LIBWTDBO "Build Wt::Dbo" OFF) # OFF is a more convenient default for FreeBSD options + OPTION(WT_NO_STD_LOCALE "Build Wt to run on a system without std::locale support" OFF) + OPTION(WT_NO_STD_WSTRING "Build Wt to run on a system without std::wstring support" OFF) + OPTION(ENABLE_OPENGL "Build Wt with support for server-side opengl rendering" ON) Modified: branches/2019Q3/www/wt/pkg-plist ============================================================================== --- branches/2019Q3/www/wt/pkg-plist Mon Aug 19 09:19:06 2019 (r509264) +++ branches/2019Q3/www/wt/pkg-plist Mon Aug 19 09:35:44 2019 (r509265) @@ -1,1309 +1,421 @@ -@postunexec cmp -s %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml && rm -f %D/%%ETCDIR%%/wt_config.xml || true -%%ETCDIR%%/wt_config.xml.sample -@postexec if [ ! -f %D/%%ETCDIR%%/wt_config.xml ]; then cp -p %D/%%ETCDIR%%/wt_config.xml.sample %D/%%ETCDIR%%/wt_config.xml; fi -include/Wt/Auth/AbstractPasswordService -include/Wt/Auth/AbstractUserDatabase -include/Wt/Auth/AuthModel -include/Wt/Auth/AuthService -include/Wt/Auth/AuthWidget -%%DBO%%include/Wt/Auth/Dbo/AuthInfo -%%DBO%%include/Wt/Auth/Dbo/UserDatabase -include/Wt/Auth/FacebookService -include/Wt/Auth/FormBaseModel -include/Wt/Auth/GoogleService -include/Wt/Auth/HashFunction -include/Wt/Auth/Identity -include/Wt/Auth/Login -include/Wt/Auth/LostPasswordWidget -include/Wt/Auth/OAuthService -include/Wt/Auth/PasswordHash -include/Wt/Auth/PasswordPromptDialog -include/Wt/Auth/PasswordService -include/Wt/Auth/PasswordStrengthValidator -include/Wt/Auth/PasswordVerifier -include/Wt/Auth/RegistrationModel -include/Wt/Auth/RegistrationWidget -include/Wt/Auth/Token -include/Wt/Auth/UpdatePasswordWidget -include/Wt/Auth/User -include/Wt/Chart/WAbstractChart -include/Wt/Chart/WAbstractChartImplementation -include/Wt/Chart/WAbstractChartModel -include/Wt/Chart/WAbstractColorMap -include/Wt/Chart/WAbstractDataSeries3D -include/Wt/Chart/WAbstractGridData -include/Wt/Chart/WAxis -include/Wt/Chart/WAxisSliderWidget -include/Wt/Chart/WCartesian3DChart -include/Wt/Chart/WCartesianChart -include/Wt/Chart/WChart2DImplementation -include/Wt/Chart/WChart3DImplementation -include/Wt/Chart/WChartGlobal -include/Wt/Chart/WChartPalette -include/Wt/Chart/WDataSeries -include/Wt/Chart/WEquidistantGridData -include/Wt/Chart/WGridData -include/Wt/Chart/WLegend -include/Wt/Chart/WLegend3D -include/Wt/Chart/WPieChart -include/Wt/Chart/WScatterData -include/Wt/Chart/WSelection -include/Wt/Chart/WStandardChartProxyModel -include/Wt/Chart/WStandardColorMap -include/Wt/Chart/WStandardPalette -%%FIREBIRD%%include/Wt/Dbo/backend/Firebird -%%MYSQL%%include/Wt/Dbo/backend/MySQL -%%POSTGRES%%include/Wt/Dbo/backend/Postgres -%%SQLITE3%%include/Wt/Dbo/backend/Sqlite3 -%%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h -%%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h -%%POSTGRES%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h -%%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h -%%DBO%%include/Wt/Dbo/Call +@sample %%ETCDIR%%/wt_config.xml.sample +@dir /var/run/wt +include/Wt/AsioWrapper/asio.hpp +include/Wt/AsioWrapper/io_service.hpp +include/Wt/AsioWrapper/namespace.hpp +include/Wt/AsioWrapper/ssl.hpp +include/Wt/AsioWrapper/steady_timer.hpp +include/Wt/AsioWrapper/strand.hpp +include/Wt/AsioWrapper/system_error.hpp +include/Wt/Auth/AbstractPasswordService.h +include/Wt/Auth/AbstractUserDatabase.h +include/Wt/Auth/AuthModel.h +include/Wt/Auth/AuthService.h +include/Wt/Auth/AuthUtils.h +include/Wt/Auth/AuthWidget.h +%%DBO%%include/Wt/Auth/Dbo/AuthInfo.h +%%DBO%%include/Wt/Auth/Dbo/UserDatabase.h +include/Wt/Auth/FacebookService.h +include/Wt/Auth/FormBaseModel.h +include/Wt/Auth/GoogleService.h +include/Wt/Auth/HashFunction.h +include/Wt/Auth/Identity.h +include/Wt/Auth/IssuedToken.h +include/Wt/Auth/Login.h +include/Wt/Auth/LostPasswordWidget.h +include/Wt/Auth/OAuthAuthorizationEndpointProcess.h +include/Wt/Auth/OAuthClient.h +include/Wt/Auth/OAuthService.h +include/Wt/Auth/OAuthTokenEndpoint.h +include/Wt/Auth/OAuthWidget.h +include/Wt/Auth/OidcService.h +include/Wt/Auth/OidcUserInfoEndpoint.h +include/Wt/Auth/PasswordHash.h +include/Wt/Auth/PasswordPromptDialog.h +include/Wt/Auth/PasswordService.h +include/Wt/Auth/PasswordStrengthValidator.h +include/Wt/Auth/PasswordVerifier.h +include/Wt/Auth/RegistrationModel.h +include/Wt/Auth/RegistrationWidget.h +include/Wt/Auth/Token.h +include/Wt/Auth/UpdatePasswordWidget.h +include/Wt/Auth/User.h +include/Wt/Auth/WAuthGlobal.h +include/Wt/Chart/WAbstractChart.h +include/Wt/Chart/WAbstractChartImplementation.h +include/Wt/Chart/WAbstractChartModel.h +include/Wt/Chart/WAbstractColorMap.h +include/Wt/Chart/WAbstractDataSeries3D.h +include/Wt/Chart/WAbstractGridData.h +include/Wt/Chart/WAxis.h +include/Wt/Chart/WAxisSliderWidget.h +include/Wt/Chart/WCartesian3DChart.h +include/Wt/Chart/WCartesianChart.h +include/Wt/Chart/WChart2DImplementation.h +include/Wt/Chart/WChart3DImplementation.h +include/Wt/Chart/WChartGlobal.h +include/Wt/Chart/WChartPalette.h +include/Wt/Chart/WDataSeries.h +include/Wt/Chart/WEquidistantGridData.h +include/Wt/Chart/WGridData.h +include/Wt/Chart/WLegend.h +include/Wt/Chart/WLegend3D.h +include/Wt/Chart/WPieChart.h +include/Wt/Chart/WScatterData.h +include/Wt/Chart/WSelection.h +include/Wt/Chart/WStandardChartProxyModel.h +include/Wt/Chart/WStandardColorMap.h +include/Wt/Chart/WStandardPalette.h +include/Wt/Core/observable.hpp +include/Wt/Core/observable_impl.hpp +include/Wt/Core/observing_ptr.hpp +include/Wt/Core/observing_ptr_impl.hpp +include/Wt/Date/date.h +include/Wt/Date/include/date/chrono_io.h +include/Wt/Date/include/date/date.h +include/Wt/Date/include/date/ios.h +include/Wt/Date/include/date/islamic.h +include/Wt/Date/include/date/iso_week.h +include/Wt/Date/include/date/julian.h +include/Wt/Date/include/date/ptz.h +include/Wt/Date/include/date/tz.h +include/Wt/Date/include/date/tz_private.h +include/Wt/Date/tz.h +%%DBO%%include/Wt/Dbo/Call.h %%DBO%%include/Wt/Dbo/Call_impl.h -%%DBO%%include/Wt/Dbo/collection -%%DBO%%include/Wt/Dbo/collection_impl.h -%%DBO%%include/Wt/Dbo/DbAction +%%DBO%%include/Wt/Dbo/DbAction.h %%DBO%%include/Wt/Dbo/DbAction_impl.h -%%DBO%%include/Wt/Dbo/Dbo +%%DBO%%include/Wt/Dbo/Dbo.h %%DBO%%include/Wt/Dbo/EscapeOStream.h -%%DBO%%include/Wt/Dbo/Exception -%%DBO%%include/Wt/Dbo/Field +%%DBO%%include/Wt/Dbo/Exception.h +%%DBO%%include/Wt/Dbo/Field.h %%DBO%%include/Wt/Dbo/Field_impl.h -%%DBO%%include/Wt/Dbo/FixedSqlConnectionPool -%%DBO%%include/Wt/Dbo/Impl -%%DBO%%include/Wt/Dbo/Json -%%DBO%%include/Wt/Dbo/ptr -%%DBO%%include/Wt/Dbo/ptr_impl.h -%%DBO%%include/Wt/Dbo/ptr_tuple -%%DBO%%include/Wt/Dbo/Query -%%DBO%%include/Wt/Dbo/Query_impl.h -%%DBO%%include/Wt/Dbo/QueryColumn -%%DBO%%include/Wt/Dbo/QueryModel +%%DBO%%include/Wt/Dbo/FixedSqlConnectionPool.h +%%DBO%%include/Wt/Dbo/Impl.h +%%DBO%%include/Wt/Dbo/Json.h +%%DBO%%include/Wt/Dbo/Query.h +%%DBO%%include/Wt/Dbo/QueryColumn.h +%%DBO%%include/Wt/Dbo/QueryModel.h %%DBO%%include/Wt/Dbo/QueryModel_impl.h -%%DBO%%include/Wt/Dbo/Session +%%DBO%%include/Wt/Dbo/Query_impl.h +%%DBO%%include/Wt/Dbo/Session.h %%DBO%%include/Wt/Dbo/Session_impl.h -%%DBO%%include/Wt/Dbo/SqlConnection -%%DBO%%include/Wt/Dbo/SqlConnectionPool -%%DBO%%include/Wt/Dbo/SqlStatement -%%DBO%%include/Wt/Dbo/SqlTraits +%%DBO%%include/Wt/Dbo/SqlConnection.h +%%DBO%%include/Wt/Dbo/SqlConnectionPool.h +%%DBO%%include/Wt/Dbo/SqlStatement.h +%%DBO%%include/Wt/Dbo/SqlTraits.h %%DBO%%include/Wt/Dbo/SqlTraits_impl.h -%%DBO%%include/Wt/Dbo/StdSqlTraits +%%DBO%%include/Wt/Dbo/StdSqlTraits.h %%DBO%%include/Wt/Dbo/StringStream.h -%%DBO%%include/Wt/Dbo/Transaction -%%DBO%%include/Wt/Dbo/Types +%%DBO%%include/Wt/Dbo/Transaction.h +%%DBO%%include/Wt/Dbo/Types.h %%DBO%%include/Wt/Dbo/WDboDllDefs.h -%%DBO%%include/Wt/Dbo/weak_ptr +%%DBO%%include/Wt/Dbo/WtSqlTraits.h +%%FIREBIRD%%include/Wt/Dbo/backend/Firebird.h +%%MYSQL%%include/Wt/Dbo/backend/MySQL.h +%%POSTGRES%%include/Wt/Dbo/backend/Postgres.h +%%SQLITE3%%include/Wt/Dbo/backend/Sqlite3.h +%%FIREBIRD%%include/Wt/Dbo/backend/WDboFirebirdDllDefs.h +%%MYSQL%%include/Wt/Dbo/backend/WDboMySQLDllDefs.h +%%POSTGRES%%include/Wt/Dbo/backend/WDboPostgresDllDefs.h +%%SQLITE3%%include/Wt/Dbo/backend/WDboSqlite3DllDefs.h +%%DBO%%include/Wt/Dbo/collection.h +%%DBO%%include/Wt/Dbo/collection_impl.h +%%DBO%%include/Wt/Dbo/ptr.h +%%DBO%%include/Wt/Dbo/ptr_impl.h +%%DBO%%include/Wt/Dbo/ptr_tuple.h +%%DBO%%include/Wt/Dbo/weak_ptr.h %%DBO%%include/Wt/Dbo/weak_ptr_impl.h -%%DBO%%include/Wt/Dbo/WtSqlTraits include/Wt/DomElement.h include/Wt/EscapeOStream.h -%%EXT%%include/Wt/Ext/AbstractButton -%%EXT%%include/Wt/Ext/AbstractToggleButton -%%EXT%%include/Wt/Ext/Button -%%EXT%%include/Wt/Ext/Calendar -%%EXT%%include/Wt/Ext/CheckBox -%%EXT%%include/Wt/Ext/ComboBox -%%EXT%%include/Wt/Ext/Component -%%EXT%%include/Wt/Ext/Container -%%EXT%%include/Wt/Ext/DataStore -%%EXT%%include/Wt/Ext/DateField -%%EXT%%include/Wt/Ext/Dialog -%%EXT%%include/Wt/Ext/ExtDllDefs.h -%%EXT%%include/Wt/Ext/FormField -%%EXT%%include/Wt/Ext/LineEdit -%%EXT%%include/Wt/Ext/Menu -%%EXT%%include/Wt/Ext/MenuItem -%%EXT%%include/Wt/Ext/MessageBox -%%EXT%%include/Wt/Ext/NumberField -%%EXT%%include/Wt/Ext/PagingToolBar -%%EXT%%include/Wt/Ext/Panel -%%EXT%%include/Wt/Ext/ProgressDialog -%%EXT%%include/Wt/Ext/RadioButton -%%EXT%%include/Wt/Ext/Splitter -%%EXT%%include/Wt/Ext/SplitterHandle -%%EXT%%include/Wt/Ext/TableView -%%EXT%%include/Wt/Ext/TabWidget -%%EXT%%include/Wt/Ext/TextEdit -%%EXT%%include/Wt/Ext/ToolBar -%%EXT%%include/Wt/Ext/ToolTipConfig -%%EXT%%include/Wt/Ext/WExtGlobal -%%EXT%%include/Wt/Ext/Widget -include/Wt/Http/Client -include/Wt/Http/Message -include/Wt/Http/Method -include/Wt/Http/Request -include/Wt/Http/Response -include/Wt/Http/ResponseContinuation -include/Wt/Http/WtClient -include/Wt/Json/Array -include/Wt/Json/Object -include/Wt/Json/Parser -include/Wt/Json/Serializer -include/Wt/Json/Value -include/Wt/Mail/Client -include/Wt/Mail/Mailbox -include/Wt/Mail/Message -include/Wt/Payment/Address -include/Wt/Payment/Customer -include/Wt/Payment/Money -include/Wt/Payment/Order -include/Wt/Payment/OrderItem -include/Wt/Payment/PayPal -include/Wt/Payment/Result -include/Wt/Render/WPdfRenderer -include/Wt/Render/WTextRenderer -%%LIBWTTEST%%include/Wt/Test/WTestEnvironment -include/Wt/Utils -include/Wt/WAbstractArea -include/Wt/WAbstractGLImplementation -include/Wt/WAbstractItemDelegate -include/Wt/WAbstractItemModel -include/Wt/WAbstractItemView -include/Wt/WAbstractListModel -include/Wt/WAbstractMedia -include/Wt/WAbstractProxyModel -include/Wt/WAbstractSpinBox -include/Wt/WAbstractTableModel -include/Wt/WAbstractToggleButton -include/Wt/WAccordionLayout -include/Wt/WAggregateProxyModel -include/Wt/WAnchor -include/Wt/WAnimation -include/Wt/WApplication -include/Wt/WAudio -include/Wt/WBatchEditProxyModel -include/Wt/WBoostAny -include/Wt/WBootstrapTheme -include/Wt/WBorder -include/Wt/WBorderLayout -include/Wt/WBoxLayout -include/Wt/WBreak -include/Wt/WBrush -include/Wt/WButtonGroup -include/Wt/WCalendar -include/Wt/WCanvasPaintDevice -include/Wt/WCheckBox -include/Wt/WCircleArea -include/Wt/WClientGLWidget -include/Wt/WColor -include/Wt/WCombinedLocalizedStrings -include/Wt/WComboBox -include/Wt/WCompositeWidget +include/Wt/Http/Client.h +include/Wt/Http/Message.h +include/Wt/Http/Method.h +include/Wt/Http/Request.h +include/Wt/Http/Response.h +include/Wt/Http/ResponseContinuation.h +include/Wt/Http/WtClient.h +include/Wt/Json/Array.h +include/Wt/Json/Object.h +include/Wt/Json/Parser.h +include/Wt/Json/Serializer.h +include/Wt/Json/Value.h +include/Wt/Mail/Client.h +include/Wt/Mail/Mailbox.h +include/Wt/Mail/Message.h +include/Wt/Payment/Address.h +include/Wt/Payment/Customer.h +include/Wt/Payment/Money.h +include/Wt/Payment/Order.h +include/Wt/Payment/OrderItem.h +include/Wt/Payment/PayPal.h +include/Wt/Payment/Result.h +include/Wt/Render/WPdfRenderer.h +include/Wt/Render/WTextRenderer.h +include/Wt/Signals/signals.hpp +%%LIBWTTEST%%include/Wt/Test/WTestEnvironment.h +include/Wt/Utils.h +include/Wt/WAbstractArea.h +include/Wt/WAbstractGLImplementation.h +include/Wt/WAbstractItemDelegate.h +include/Wt/WAbstractItemModel.h +include/Wt/WAbstractItemView.h +include/Wt/WAbstractListModel.h +include/Wt/WAbstractMedia.h +include/Wt/WAbstractProxyModel.h +include/Wt/WAbstractSpinBox.h +include/Wt/WAbstractTableModel.h +include/Wt/WAbstractToggleButton.h +include/Wt/WAggregateProxyModel.h +include/Wt/WAnchor.h +include/Wt/WAnimation.h +include/Wt/WAny.h +include/Wt/WApplication.h +include/Wt/WAudio.h +include/Wt/WBatchEditProxyModel.h +include/Wt/WBootstrapTheme.h +include/Wt/WBorder.h +include/Wt/WBorderLayout.h +include/Wt/WBoxLayout.h +include/Wt/WBreak.h +include/Wt/WBrush.h +include/Wt/WButtonGroup.h +include/Wt/WCalendar.h +include/Wt/WCanvasPaintDevice.h +include/Wt/WCheckBox.h +include/Wt/WCircleArea.h +include/Wt/WClientGLWidget.h +include/Wt/WColor.h +include/Wt/WCombinedLocalizedStrings.h +include/Wt/WComboBox.h +include/Wt/WCompositeWidget.h include/Wt/WConfig.h -include/Wt/WContainerWidget -include/Wt/WCssDecorationStyle -include/Wt/WCssStyleSheet -include/Wt/WCssTheme -include/Wt/WDate -include/Wt/WDateEdit -include/Wt/WDatePicker -include/Wt/WDateTime -include/Wt/WDateValidator -include/Wt/WDefaultLayout -include/Wt/WDefaultLoadingIndicator -include/Wt/WDialog +include/Wt/WContainerWidget.h +include/Wt/WCssDecorationStyle.h +include/Wt/WCssStyleSheet.h +include/Wt/WCssTheme.h +include/Wt/WDate.h +include/Wt/WDateEdit.h +include/Wt/WDatePicker.h +include/Wt/WDateTime.h +include/Wt/WDateValidator.h +include/Wt/WDefaultLoadingIndicator.h +include/Wt/WDialog.h include/Wt/WDllDefs.h -include/Wt/WDoubleSpinBox -include/Wt/WDoubleValidator -include/Wt/WEnvironment -include/Wt/WEvent -include/Wt/WException -include/Wt/WFileDropWidget -include/Wt/WFileResource -include/Wt/WFileUpload -include/Wt/WFitLayout -include/Wt/WFlags -include/Wt/WFlashObject -include/Wt/WFont -include/Wt/WFontMetrics -include/Wt/WFormModel -include/Wt/WFormWidget -include/Wt/WGenericMatrix -include/Wt/WGlobal -include/Wt/WGLWidget -include/Wt/WGoogleMap -include/Wt/WGradient -include/Wt/WGridLayout -include/Wt/WGroupBox -include/Wt/WHBoxLayout -include/Wt/WHTML5Audio -include/Wt/WHTML5Video -include/Wt/WIcon -include/Wt/WIconPair -include/Wt/WIdentityProxyModel -include/Wt/WImage -include/Wt/WInPlaceEdit -include/Wt/WInteractWidget -include/Wt/WIntValidator -include/Wt/WIOService -include/Wt/WItemDelegate -include/Wt/WItemSelectionModel -include/Wt/WJavaScript -include/Wt/WJavaScriptExposableObject -include/Wt/WJavaScriptHandle -include/Wt/WJavaScriptObjectStorage -include/Wt/WJavaScriptPreamble -include/Wt/WJavaScriptSlot -include/Wt/WLabel -include/Wt/WLayout -include/Wt/WLayoutItem -include/Wt/WLayoutItemImpl -include/Wt/WLength -include/Wt/WLengthValidator -include/Wt/WLineEdit -include/Wt/WLineF -include/Wt/WLink -include/Wt/WLoadingIndicator -include/Wt/WLocalDateTime -include/Wt/WLocale -include/Wt/WLocalizedStrings -include/Wt/WLogger -include/Wt/WMatrix4x4 -include/Wt/WMeasurePaintDevice -include/Wt/WMediaPlayer -include/Wt/WMemoryResource -include/Wt/WMenu -include/Wt/WMenuItem -include/Wt/WMessageBox -include/Wt/WMessageResourceBundle -include/Wt/WMessageResources -include/Wt/WModelIndex -include/Wt/WNavigationBar -include/Wt/WObject -include/Wt/WOverlayLoadingIndicator -include/Wt/WPaintDevice -include/Wt/WPaintedWidget -include/Wt/WPainter -include/Wt/WPainterPath -include/Wt/WPanel -include/Wt/WPdfImage -include/Wt/WPen -include/Wt/WPoint -include/Wt/WPointF -include/Wt/WPolygonArea -include/Wt/WPopupMenu -include/Wt/WPopupMenuItem -include/Wt/WPopupWidget -include/Wt/WProgressBar -include/Wt/WPushButton -include/Wt/WRadioButton -include/Wt/WRandom -include/Wt/WRasterImage -include/Wt/WReadOnlyProxyModel -include/Wt/WRectArea -include/Wt/WRectF -include/Wt/WRegExp -include/Wt/WRegExpValidator -include/Wt/WResource -include/Wt/WScrollArea -include/Wt/WScrollBar -include/Wt/WSelectionBox -include/Wt/WServer -include/Wt/WServerGLWidget -include/Wt/WShadow -include/Wt/WSignal -include/Wt/WSignalMapper -include/Wt/WSlider -include/Wt/WSocketNotifier -include/Wt/WSortFilterProxyModel -include/Wt/WSound -include/Wt/WSpinBox -include/Wt/WSplitButton -include/Wt/WSslCertificate -include/Wt/WSslInfo -include/Wt/WStackedWidget -include/Wt/WStandardItem -include/Wt/WStandardItemModel -include/Wt/WStatelessSlot -include/Wt/WStreamResource -include/Wt/WString -include/Wt/WStringListModel -include/Wt/WStringStream -include/Wt/WStringUtil -include/Wt/WSubMenuItem -include/Wt/WSuggestionPopup -include/Wt/WSvgImage -include/Wt/WTable -include/Wt/WTableCell -include/Wt/WTableColumn -include/Wt/WTableRow -include/Wt/WTableView -include/Wt/WTabWidget -include/Wt/WTemplate -include/Wt/WTemplateFormView -include/Wt/WText -include/Wt/WTextArea -include/Wt/WTextEdit -include/Wt/WTheme -include/Wt/WTime -include/Wt/WTimeEdit -include/Wt/WTimePicker -include/Wt/WTimer -include/Wt/WTimerWidget -include/Wt/WTimeValidator -include/Wt/WToolBar -include/Wt/WTransform -include/Wt/WTree -include/Wt/WTreeNode -include/Wt/WTreeTable -include/Wt/WTreeTableNode -include/Wt/WTreeView -include/Wt/WValidationStatus -include/Wt/WValidator -include/Wt/WVBoxLayout -include/Wt/WVector3 -include/Wt/WVector4 -include/Wt/WVectorImage -include/Wt/WVideo -include/Wt/WViewWidget -include/Wt/WVirtualImage -include/Wt/WVmlImage -include/Wt/WWebWidget -include/Wt/WWidget -include/Wt/WWidgetItem +include/Wt/WDoubleSpinBox.h +include/Wt/WDoubleValidator.h +include/Wt/WEnvironment.h +include/Wt/WEvent.h +include/Wt/WException.h +include/Wt/WFileDropWidget.h +include/Wt/WFileResource.h +include/Wt/WFileUpload.h +include/Wt/WFitLayout.h +include/Wt/WFlags.h +include/Wt/WFlashObject.h +include/Wt/WFont.h +include/Wt/WFontMetrics.h +include/Wt/WFormModel.h +include/Wt/WFormWidget.h +include/Wt/WGLWidget.h +include/Wt/WGenericMatrix.h +include/Wt/WGlobal.h +include/Wt/WGoogleMap.h +include/Wt/WGradient.h +include/Wt/WGridLayout.h +include/Wt/WGroupBox.h +include/Wt/WHBoxLayout.h +include/Wt/WIOService.h +include/Wt/WIcon.h +include/Wt/WIconPair.h +include/Wt/WIdentityProxyModel.h +include/Wt/WImage.h +include/Wt/WInPlaceEdit.h +include/Wt/WIntValidator.h +include/Wt/WInteractWidget.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Mon Aug 19 11:11:01 2019 Return-Path: Delivered-To: svn-ports-branches@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 2A923C2158; Mon, 19 Aug 2019 11:11:01 +0000 (UTC) (envelope-from riggs@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 46Brnx0L4Cz4fbg; Mon, 19 Aug 2019 11:11:01 +0000 (UTC) (envelope-from riggs@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 E2AD019A6C; Mon, 19 Aug 2019 11:11:00 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7JBB0UQ046201; Mon, 19 Aug 2019 11:11:00 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7JBB0hQ046199; Mon, 19 Aug 2019 11:11:00 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201908191111.x7JBB0hQ046199@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Mon, 19 Aug 2019 11:11:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509272 - in branches/2019Q3/audio/musicpd: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2019Q3/audio/musicpd: . files X-SVN-Commit-Revision: 509272 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2019 11:11:01 -0000 Author: riggs Date: Mon Aug 19 11:10:59 2019 New Revision: 509272 URL: https://svnweb.freebsd.org/changeset/ports/509272 Log: MFH: r509271 Update to upstream release 0.21.13 Details: - Bugfix release, see https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.21.13/NEWS - Includes a fix for spurious crackling sound with the MAD plugin While on it: - Merge UCL / pkg-message cleanup into quarterly branch Approved by: ports-secteam (riggs) Modified: branches/2019Q3/audio/musicpd/Makefile branches/2019Q3/audio/musicpd/distinfo branches/2019Q3/audio/musicpd/files/pkg-message.in Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/audio/musicpd/Makefile ============================================================================== --- branches/2019Q3/audio/musicpd/Makefile Mon Aug 19 11:06:00 2019 (r509271) +++ branches/2019Q3/audio/musicpd/Makefile Mon Aug 19 11:10:59 2019 (r509272) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= musicpd -PORTVERSION= 0.21.12 -PORTREVISION= 2 +PORTVERSION= 0.21.13 CATEGORIES= audio ipv6 MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} Modified: branches/2019Q3/audio/musicpd/distinfo ============================================================================== --- branches/2019Q3/audio/musicpd/distinfo Mon Aug 19 11:06:00 2019 (r509271) +++ branches/2019Q3/audio/musicpd/distinfo Mon Aug 19 11:10:59 2019 (r509272) @@ -1,3 +1,3 @@ -TIMESTAMP = 1564910323 -SHA256 (mpd-0.21.12.tar.xz) = bb8a7341236a76c667980c261bc37ef4e22298ed850ab0a571448388d175a5bb -SIZE (mpd-0.21.12.tar.xz) = 672144 +TIMESTAMP = 1566206583 +SHA256 (mpd-0.21.13.tar.xz) = 95b70b268406bde15bda4464ef768f7e773417a8c776d42a678c5a5070855eea +SIZE (mpd-0.21.13.tar.xz) = 672184 Modified: branches/2019Q3/audio/musicpd/files/pkg-message.in ============================================================================== --- branches/2019Q3/audio/musicpd/files/pkg-message.in Mon Aug 19 11:06:00 2019 (r509271) +++ branches/2019Q3/audio/musicpd/files/pkg-message.in Mon Aug 19 11:10:59 2019 (r509272) @@ -1,5 +1,6 @@ -**************************************************************** - +[ +{ type: install + message: < Delivered-To: svn-ports-branches@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 0E1E9C4939; Mon, 19 Aug 2019 12:19:06 +0000 (UTC) (envelope-from koobs@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 46BtJT6HJ9z3GVk; Mon, 19 Aug 2019 12:19:05 +0000 (UTC) (envelope-from koobs@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 B942C1A75B; Mon, 19 Aug 2019 12:19:05 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7JCJ55Z088408; Mon, 19 Aug 2019 12:19:05 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7JCJ573088406; Mon, 19 Aug 2019 12:19:05 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201908191219.x7JCJ573088406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 19 Aug 2019 12:19:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509283 - branches/2019Q3/net-im/py-slackclient X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q3/net-im/py-slackclient X-SVN-Commit-Revision: 509283 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2019 12:19:06 -0000 Author: koobs Date: Mon Aug 19 12:19:05 2019 New Revision: 509283 URL: https://svnweb.freebsd.org/changeset/ports/509283 Log: MFH: r509276 net-im/py-slackclient: Update to 2.1.0 aiodns is (was) actually an optional dependency. Add an ASYNCDNS option for now until upstream work out a good name for it [1] Changelog: https://slack.dev/python-slackclient/changelog.html#v2-1-0-2019-07-01 Note: Missing from changelog, but also fixed: https://github.com/slackapi/python-slackclient/issues/451 [1] https://github.com/slackapi/python-slackclient/issues/433 PR: 239462 Submitted by: Approved by: ports-secteam (blanket: bugfix release) Modified: branches/2019Q3/net-im/py-slackclient/Makefile branches/2019Q3/net-im/py-slackclient/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net-im/py-slackclient/Makefile ============================================================================== --- branches/2019Q3/net-im/py-slackclient/Makefile Mon Aug 19 12:18:21 2019 (r509282) +++ branches/2019Q3/net-im/py-slackclient/Makefile Mon Aug 19 12:19:05 2019 (r509283) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= slackclient -PORTVERSION= 2.0.1 +PORTVERSION= 2.1.0 +DISTVERSIONPREFIX=v CATEGORIES= net-im python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,14 +14,19 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>3.5.2:www/py-aiohttp@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}aiodns>1.0:dns/py-aiodns@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>3.5.2:www/py-aiohttp@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} USES= python:3.6+ USE_GITHUB= yes USE_PYTHON= autoplist distutils + +OPTIONS_DEFINE= ASYNCDNS +OPTIONS_DEFAULT= ASYNCDNS + +ASYNCDNS_DESC= Asyncronous DNS support +ASYNCDNS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiodns>1.0:dns/py-aiodns@${PY_FLAVOR} # Does not currently include tests in sdist GH_ACCOUNT= slackapi Modified: branches/2019Q3/net-im/py-slackclient/distinfo ============================================================================== --- branches/2019Q3/net-im/py-slackclient/distinfo Mon Aug 19 12:18:21 2019 (r509282) +++ branches/2019Q3/net-im/py-slackclient/distinfo Mon Aug 19 12:19:05 2019 (r509283) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557112535 -SHA256 (slackapi-python-slackclient-2.0.1_GH0.tar.gz) = e387881e22c2fade31e6274ac9f45378a873e061c13eb822c6f2bcb3f21adaeb -SIZE (slackapi-python-slackclient-2.0.1_GH0.tar.gz) = 318677 +TIMESTAMP = 1566212113 +SHA256 (slackapi-python-slackclient-v2.1.0_GH0.tar.gz) = 247df5df4d5c83aa37f801fa272855c2c4c549492664117919e9a23fc4a3b21c +SIZE (slackapi-python-slackclient-v2.1.0_GH0.tar.gz) = 352815 From owner-svn-ports-branches@freebsd.org Mon Aug 19 17:59:31 2019 Return-Path: Delivered-To: svn-ports-branches@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 2B35CCCFD1; Mon, 19 Aug 2019 17:59:31 +0000 (UTC) (envelope-from joneum@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 46C1sH0Hzyz473D; Mon, 19 Aug 2019 17:59:31 +0000 (UTC) (envelope-from joneum@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 E01C01E5AE; Mon, 19 Aug 2019 17:59:30 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7JHxU1J001326; Mon, 19 Aug 2019 17:59:30 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7JHxU7I001324; Mon, 19 Aug 2019 17:59:30 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201908191759.x7JHxU7I001324@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 19 Aug 2019 17:59:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509299 - branches/2019Q3/dns/nsd X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: branches/2019Q3/dns/nsd X-SVN-Commit-Revision: 509299 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2019 17:59:31 -0000 Author: joneum Date: Mon Aug 19 17:59:30 2019 New Revision: 509299 URL: https://svnweb.freebsd.org/changeset/ports/509299 Log: MFH: r509298 Update to 4.2.2 Changelog: https://github.com/NLnetLabs/nsd/releases/tag/NSD_4_2_2_REL PR: 239964 Reported by: Jaap Akkerhuis (maintainer) Security: 56778a31-c2a1-11e9-9051-4c72b94353b5 Sponsored by: Netzkommune GmbH Approved by: ports-secteam (joneum) Modified: branches/2019Q3/dns/nsd/Makefile branches/2019Q3/dns/nsd/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/dns/nsd/Makefile ============================================================================== --- branches/2019Q3/dns/nsd/Makefile Mon Aug 19 17:56:04 2019 (r509298) +++ branches/2019Q3/dns/nsd/Makefile Mon Aug 19 17:59:30 2019 (r509299) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nsd -PORTVERSION= 4.2.0 +PORTVERSION= 4.2.2 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ Modified: branches/2019Q3/dns/nsd/distinfo ============================================================================== --- branches/2019Q3/dns/nsd/distinfo Mon Aug 19 17:56:04 2019 (r509298) +++ branches/2019Q3/dns/nsd/distinfo Mon Aug 19 17:59:30 2019 (r509299) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560257384 -SHA256 (nsd-4.2.0.tar.gz) = 51df1ca44a00e588c09ff0696e588c13566ce889b50d953896d8b6e507eda74c -SIZE (nsd-4.2.0.tar.gz) = 1141796 +TIMESTAMP = 1566232767 +SHA256 (nsd-4.2.2.tar.gz) = 83b333940a25fe6d453bcac6ea39edfa244612a879117c4a624c97eb250246fb +SIZE (nsd-4.2.2.tar.gz) = 1149182 From owner-svn-ports-branches@freebsd.org Tue Aug 20 00:06:58 2019 Return-Path: Delivered-To: svn-ports-branches@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 98DBED5C20; Tue, 20 Aug 2019 00:06:58 +0000 (UTC) (envelope-from mmokhi@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 46CB1G3Ly1z4bvQ; Tue, 20 Aug 2019 00:06:58 +0000 (UTC) (envelope-from mmokhi@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 5506D228F7; Tue, 20 Aug 2019 00:06:58 +0000 (UTC) (envelope-from mmokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7K06wQr030889; Tue, 20 Aug 2019 00:06:58 GMT (envelope-from mmokhi@FreeBSD.org) Received: (from mmokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7K06v2I030887; Tue, 20 Aug 2019 00:06:57 GMT (envelope-from mmokhi@FreeBSD.org) Message-Id: <201908200006.x7K06v2I030887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmokhi set sender to mmokhi@FreeBSD.org using -f From: Mahdi Mokhtari Date: Tue, 20 Aug 2019 00:06:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509387 - in branches/2019Q3/databases: mysql56-client/files mysql56-server mysql56-server/files X-SVN-Group: ports-branches X-SVN-Commit-Author: mmokhi X-SVN-Commit-Paths: in branches/2019Q3/databases: mysql56-client/files mysql56-server mysql56-server/files X-SVN-Commit-Revision: 509387 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 00:06:58 -0000 Author: mmokhi Date: Tue Aug 20 00:06:57 2019 New Revision: 509387 URL: https://svnweb.freebsd.org/changeset/ports/509387 Log: MFH: r508218 databases/mysq56-{client, server}: Update to 5.6.45 This update includes security fixes which are mentioned on upstream critical patch report. Further info: https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html#AppendixMSQL PR: 239571 Reported by: serg@tmn.ru Sponsored by: Platform.sh Approved by: ports-secteam (joneum) Deleted: branches/2019Q3/databases/mysql56-client/files/patch-sql-common_client__authentication.cc branches/2019Q3/databases/mysql56-server/files/patch-sql-common_client__authentication.cc Modified: branches/2019Q3/databases/mysql56-server/Makefile branches/2019Q3/databases/mysql56-server/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/databases/mysql56-server/Makefile ============================================================================== --- branches/2019Q3/databases/mysql56-server/Makefile Mon Aug 19 23:33:57 2019 (r509386) +++ branches/2019Q3/databases/mysql56-server/Makefile Tue Aug 20 00:06:57 2019 (r509387) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.44 +PORTVERSION= 5.6.45 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.6 Modified: branches/2019Q3/databases/mysql56-server/distinfo ============================================================================== --- branches/2019Q3/databases/mysql56-server/distinfo Mon Aug 19 23:33:57 2019 (r509386) +++ branches/2019Q3/databases/mysql56-server/distinfo Tue Aug 20 00:06:57 2019 (r509387) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556305204 -SHA256 (mysql-5.6.44.tar.gz) = c031c92c3f226856b09bf929d8a26b0cd8600036cb9db4e0fdf6b6f032ced336 -SIZE (mysql-5.6.44.tar.gz) = 32531507 +TIMESTAMP = 1565035854 +SHA256 (mysql-5.6.45.tar.gz) = 404d798974dd89aca4a19e67194b534eddc7508489982175978966360607aabb +SIZE (mysql-5.6.45.tar.gz) = 32525559 From owner-svn-ports-branches@freebsd.org Tue Aug 20 00:08:47 2019 Return-Path: Delivered-To: svn-ports-branches@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 E792ED5D78; Tue, 20 Aug 2019 00:08:47 +0000 (UTC) (envelope-from mmokhi@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 46CB3M5cYsz4c3s; Tue, 20 Aug 2019 00:08:47 +0000 (UTC) (envelope-from mmokhi@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 A36CB2290B; Tue, 20 Aug 2019 00:08:47 +0000 (UTC) (envelope-from mmokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7K08lEY031195; Tue, 20 Aug 2019 00:08:47 GMT (envelope-from mmokhi@FreeBSD.org) Received: (from mmokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7K08kqI031189; Tue, 20 Aug 2019 00:08:46 GMT (envelope-from mmokhi@FreeBSD.org) Message-Id: <201908200008.x7K08kqI031189@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmokhi set sender to mmokhi@FreeBSD.org using -f From: Mahdi Mokhtari Date: Tue, 20 Aug 2019 00:08:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509388 - in branches/2019Q3/databases: mysql57-client/files mysql57-server mysql57-server/files X-SVN-Group: ports-branches X-SVN-Commit-Author: mmokhi X-SVN-Commit-Paths: in branches/2019Q3/databases: mysql57-client/files mysql57-server mysql57-server/files X-SVN-Commit-Revision: 509388 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 00:08:48 -0000 Author: mmokhi Date: Tue Aug 20 00:08:46 2019 New Revision: 509388 URL: https://svnweb.freebsd.org/changeset/ports/509388 Log: MFH: r508220 databases/mysq56-{client, server}: Update to latest release 5.7.27 This update includes security fixes on issues that are mentioned on upstream critical patch report. Further info: https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html#AppendixMSQL PR: 239271 Submitted by: Greg Veldman Reported by: Markus Kohlmeyer Sponsored by: Platform.sh Approved by: ports-secteam (joneum) Modified: branches/2019Q3/databases/mysql57-client/files/patch-scripts_CMakeLists.txt branches/2019Q3/databases/mysql57-server/Makefile branches/2019Q3/databases/mysql57-server/distinfo branches/2019Q3/databases/mysql57-server/files/patch-scripts_CMakeLists.txt Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/databases/mysql57-client/files/patch-scripts_CMakeLists.txt ============================================================================== --- branches/2019Q3/databases/mysql57-client/files/patch-scripts_CMakeLists.txt Tue Aug 20 00:06:57 2019 (r509387) +++ branches/2019Q3/databases/mysql57-client/files/patch-scripts_CMakeLists.txt Tue Aug 20 00:08:46 2019 (r509388) @@ -1,6 +1,6 @@ ---- scripts/CMakeLists.txt.orig 2016-03-28 18:06:12 UTC -+++ scripts/CMakeLists.txt -@@ -43,6 +43,7 @@ ELSE() +--- scripts/CMakeLists.txt.orig 2019-06-10 10:43:20.000000000 -0400 ++++ scripts/CMakeLists.txt 2019-08-01 10:59:24.177559000 -0400 +@@ -46,6 +46,7 @@ MESSAGE(FATAL_ERROR "Cannot concatenate files") ENDIF() @@ -8,7 +8,7 @@ # Build mysql_fix_privilege_tables.c ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c -@@ -63,6 +64,7 @@ ADD_CUSTOM_TARGET(GenFixPrivs +@@ -66,6 +67,7 @@ DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/mysql_fix_privilege_tables_sql.c ${CMAKE_CURRENT_BINARY_DIR}/sql_commands_sys_schema.h ) @@ -16,7 +16,7 @@ # If we do not have performance schema compiled in then sys will not work, # so only create an empty sys database with an auto-generated file, -@@ -143,6 +145,7 @@ IF(NOT WITHOUT_SERVER) +@@ -146,6 +148,7 @@ ) ENDIF() @@ -24,7 +24,7 @@ IF(UNIX) FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution "cd ${CMAKE_BINARY_DIR} && '${CMAKE_CPACK_COMMAND}' -G TGZ --config CPackConfig.cmake\n" ) -@@ -150,6 +153,7 @@ IF(UNIX) +@@ -153,6 +156,7 @@ COMMAND chmod +x ${CMAKE_CURRENT_BINARY_DIR}/make_binary_distribution ) ENDIF() @@ -32,16 +32,16 @@ IF(NOT WITHOUT_SERVER) INSTALL(FILES -@@ -347,6 +351,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var) +@@ -326,6 +330,8 @@ GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE) STRING(REGEX REPLACE "^lib" "" lib "${lib}") - SET(${var} "${${var}}-l${lib} " ) + SET(${var} "${${var}}-l${lib} " ) + ELSEIF(lib STREQUAL "-pthread") -+ SET(${var} "${${var}}-pthread " ) ++ SET(${var} "${${var}}-pthread " ) ELSE() - SET(${var} "${${var}}-l${lib} " ) + SET(${var} "${${var}}-l${lib} " ) ENDIF() -@@ -430,19 +436,7 @@ ELSE() +@@ -411,19 +417,7 @@ # On Unix, most of the files end up in the bin directory SET(mysql_config_COMPONENT COMPONENT Development) Modified: branches/2019Q3/databases/mysql57-server/Makefile ============================================================================== --- branches/2019Q3/databases/mysql57-server/Makefile Tue Aug 20 00:06:57 2019 (r509387) +++ branches/2019Q3/databases/mysql57-server/Makefile Tue Aug 20 00:08:46 2019 (r509388) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.7.26 -PORTREVISION?= 1 +PORTVERSION= 5.7.27 +PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.7 PKGNAMESUFFIX?= 57-server Modified: branches/2019Q3/databases/mysql57-server/distinfo ============================================================================== --- branches/2019Q3/databases/mysql57-server/distinfo Tue Aug 20 00:06:57 2019 (r509387) +++ branches/2019Q3/databases/mysql57-server/distinfo Tue Aug 20 00:08:46 2019 (r509388) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556318914 -SHA256 (mysql-boost-5.7.26.tar.gz) = effca6d3aceebc286a9fb046257330d125cc2f4def87081c286bfc4df3d974d1 -SIZE (mysql-boost-5.7.26.tar.gz) = 51098338 +TIMESTAMP = 1565043969 +SHA256 (mysql-boost-5.7.27.tar.gz) = 036ab46a8a1216cfc1e87374bd1cba12e2208c02cf328a31851be7e1c7f57a2b +SIZE (mysql-boost-5.7.27.tar.gz) = 51436383 Modified: branches/2019Q3/databases/mysql57-server/files/patch-scripts_CMakeLists.txt ============================================================================== --- branches/2019Q3/databases/mysql57-server/files/patch-scripts_CMakeLists.txt Tue Aug 20 00:06:57 2019 (r509387) +++ branches/2019Q3/databases/mysql57-server/files/patch-scripts_CMakeLists.txt Tue Aug 20 00:08:46 2019 (r509388) @@ -1,15 +1,15 @@ ---- scripts/CMakeLists.txt.orig 2016-03-28 18:06:12 UTC -+++ scripts/CMakeLists.txt -@@ -347,6 +347,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var) +--- scripts/CMakeLists.txt.orig 2019-06-10 10:43:20.000000000 -0400 ++++ scripts/CMakeLists.txt 2019-08-01 10:10:16.206052000 -0400 +@@ -326,6 +326,8 @@ GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE) STRING(REGEX REPLACE "^lib" "" lib "${lib}") - SET(${var} "${${var}}-l${lib} " ) + SET(${var} "${${var}}-l${lib} " ) + ELSEIF(lib STREQUAL "-pthread") -+ SET(${var} "${${var}}-pthread " ) ++ SET(${var} "${${var}}-pthread " ) ELSE() - SET(${var} "${${var}}-l${lib} " ) + SET(${var} "${${var}}-l${lib} " ) ENDIF() -@@ -430,14 +432,13 @@ ELSE() +@@ -411,14 +413,13 @@ # On Unix, most of the files end up in the bin directory SET(mysql_config_COMPONENT COMPONENT Development) @@ -25,7 +25,7 @@ mysqldumpslow mysqld_multi mysqld_safe -@@ -471,7 +472,7 @@ ELSE() +@@ -452,7 +453,7 @@ FOREACH(file ${BIN_SCRIPTS}) IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh From owner-svn-ports-branches@freebsd.org Tue Aug 20 00:38:56 2019 Return-Path: Delivered-To: svn-ports-branches@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 688FDD6506; Tue, 20 Aug 2019 00:38:56 +0000 (UTC) (envelope-from jbeich@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 46CBk82BD7z4dkj; Tue, 20 Aug 2019 00:38:56 +0000 (UTC) (envelope-from jbeich@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 2DD2422E75; Tue, 20 Aug 2019 00:38:56 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7K0ctH0049574; Tue, 20 Aug 2019 00:38:55 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7K0ctgR049572; Tue, 20 Aug 2019 00:38:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201908200038.x7K0ctgR049572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 20 Aug 2019 00:38:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509396 - branches/2019Q3/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q3/emulators/citra X-SVN-Commit-Revision: 509396 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 00:38:56 -0000 Author: jbeich Date: Tue Aug 20 00:38:55 2019 New Revision: 509396 URL: https://svnweb.freebsd.org/changeset/ports/509396 Log: MFH: r509392 emulators/citra: update to s20190818 Changes: https://github.com/citra-emu/citra/compare/84b40f2da...1cf75e55c Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2019Q3/emulators/citra/Makefile branches/2019Q3/emulators/citra/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/emulators/citra/Makefile ============================================================================== --- branches/2019Q3/emulators/citra/Makefile Tue Aug 20 00:38:36 2019 (r509395) +++ branches/2019Q3/emulators/citra/Makefile Tue Aug 20 00:38:55 2019 (r509396) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20190814 +PORTVERSION= s20190818 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 84b40f2da +GH_TAGNAME= 1cf75e55c GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ Modified: branches/2019Q3/emulators/citra/distinfo ============================================================================== --- branches/2019Q3/emulators/citra/distinfo Tue Aug 20 00:38:36 2019 (r509395) +++ branches/2019Q3/emulators/citra/distinfo Tue Aug 20 00:38:55 2019 (r509396) @@ -1,6 +1,6 @@ -TIMESTAMP = 1565796714 -SHA256 (citra-emu-citra-s20190814-84b40f2da_GH0.tar.gz) = 9f7f3adc8f612906c2d7a1b40d39f3cd5584a0da1b3f3ce0779d153fc8f44a13 -SIZE (citra-emu-citra-s20190814-84b40f2da_GH0.tar.gz) = 5063154 +TIMESTAMP = 1566166325 +SHA256 (citra-emu-citra-s20190818-1cf75e55c_GH0.tar.gz) = a2ad52f131f1e55fea32cc83213b66d8f8f7c41a48a54ecac1d826d6876d9e64 +SIZE (citra-emu-citra-s20190818-1cf75e55c_GH0.tar.gz) = 5064155 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-branches@freebsd.org Tue Aug 20 10:46:01 2019 Return-Path: Delivered-To: svn-ports-branches@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 B5B64CDA76; Tue, 20 Aug 2019 10:46:01 +0000 (UTC) (envelope-from olgeni@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 46CSBd52lrz4BT4; Tue, 20 Aug 2019 10:46:01 +0000 (UTC) (envelope-from olgeni@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 8E9911E65; Tue, 20 Aug 2019 10:46:01 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7KAk1Nl011885; Tue, 20 Aug 2019 10:46:01 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7KAk19g011881; Tue, 20 Aug 2019 10:46:01 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201908201046.x7KAk19g011881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 20 Aug 2019 10:46:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509417 - in branches/2019Q3/sysutils: usermin webmin X-SVN-Group: ports-branches X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: in branches/2019Q3/sysutils: usermin webmin X-SVN-Commit-Revision: 509417 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 10:46:01 -0000 Author: olgeni Date: Tue Aug 20 10:46:00 2019 New Revision: 509417 URL: https://svnweb.freebsd.org/changeset/ports/509417 Log: MFH: r509243 r509244 Update sysutils/webmin to version 1.930. Contains fix for CVE-2019-15107. From https://virtualmin.com/node/66890: To exploit the malicious code, your Webmin installation must have Webmin -> Webmin Configuration -> Authentication -> Password expiry policy set to Prompt users with expired passwords to enter a new one. This option is not set by default, but if it is set, it allows remote code execution. PR: 239956 Submitted by: Bert JW Regeer Security: CVE-2019-15107 Update sysutils/usermin to version 1.780. PR: 239957 Approved by: ports-secteam (joneum) Modified: branches/2019Q3/sysutils/usermin/Makefile branches/2019Q3/sysutils/usermin/distinfo branches/2019Q3/sysutils/usermin/pkg-plist branches/2019Q3/sysutils/webmin/Makefile branches/2019Q3/sysutils/webmin/distinfo branches/2019Q3/sysutils/webmin/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/sysutils/usermin/Makefile ============================================================================== --- branches/2019Q3/sysutils/usermin/Makefile Tue Aug 20 10:33:16 2019 (r509416) +++ branches/2019Q3/sysutils/usermin/Makefile Tue Aug 20 10:46:00 2019 (r509417) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= usermin -PORTVERSION= 1.750 +PORTVERSION= 1.780 CATEGORIES= sysutils MASTER_SITES= http://www.webmin.com/uupdates/:up \ SF/webadmin/${PORTNAME}/${PORTVERSION}:sf \ Modified: branches/2019Q3/sysutils/usermin/distinfo ============================================================================== --- branches/2019Q3/sysutils/usermin/distinfo Tue Aug 20 10:33:16 2019 (r509416) +++ branches/2019Q3/sysutils/usermin/distinfo Tue Aug 20 10:46:00 2019 (r509417) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549736295 -SHA256 (usermin-1.750.tar.gz) = ed2fe3885b651e45dd8c8938a732d81793bcc32111e135088c7f5d72a921ebf9 -SIZE (usermin-1.750.tar.gz) = 15798892 +TIMESTAMP = 1566166759 +SHA256 (usermin-1.780.tar.gz) = 6fc147e339106dbf3db5596b8712bf39a7e7181a15d329cad2b86e856fa7bc36 +SIZE (usermin-1.780.tar.gz) = 17676345 Modified: branches/2019Q3/sysutils/usermin/pkg-plist ============================================================================== --- branches/2019Q3/sysutils/usermin/pkg-plist Tue Aug 20 10:33:16 2019 (r509416) +++ branches/2019Q3/sysutils/usermin/pkg-plist Tue Aug 20 10:46:00 2019 (r509417) @@ -1,3 +1,4 @@ +lib/usermin/JSON/PP.pm lib/usermin/LICENCE lib/usermin/LICENCE.ja lib/usermin/README @@ -84,7 +85,6 @@ lib/usermin/at/delete_jobs.cgi lib/usermin/at/edit_job.cgi lib/usermin/at/freebsd-lib.pl lib/usermin/at/images/icon.gif -lib/usermin/at/images/smallicon.gif lib/usermin/at/index.cgi lib/usermin/at/irix-lib.pl lib/usermin/at/lang/bg @@ -137,20 +137,29 @@ lib/usermin/at/lang/zh_TW.UTF-8 lib/usermin/at/linux-lib.pl lib/usermin/at/module.info lib/usermin/at/module.info.ca +lib/usermin/at/module.info.ca.UTF-8 lib/usermin/at/module.info.cz lib/usermin/at/module.info.cz.UTF-8 lib/usermin/at/module.info.de +lib/usermin/at/module.info.de.UTF-8 lib/usermin/at/module.info.el lib/usermin/at/module.info.es +lib/usermin/at/module.info.es.UTF-8 lib/usermin/at/module.info.fr +lib/usermin/at/module.info.fr.UTF-8 lib/usermin/at/module.info.hu lib/usermin/at/module.info.hu.UTF-8 lib/usermin/at/module.info.nl +lib/usermin/at/module.info.nl.UTF-8 lib/usermin/at/module.info.no lib/usermin/at/module.info.no.UTF-8 lib/usermin/at/module.info.pl lib/usermin/at/module.info.pl.UTF-8 lib/usermin/at/solaris-lib.pl +lib/usermin/authentic-theme/401.cgi +lib/usermin/authentic-theme/403.cgi +lib/usermin/authentic-theme/404.cgi +lib/usermin/authentic-theme/FUNDING.yml lib/usermin/authentic-theme/LICENSE lib/usermin/authentic-theme/THEME.pgp lib/usermin/authentic-theme/authentic-funcs.pm @@ -159,8 +168,11 @@ lib/usermin/authentic-theme/authentic-lib.pm lib/usermin/authentic-theme/authentic.pm lib/usermin/authentic-theme/buttons.pm lib/usermin/authentic-theme/config +lib/usermin/authentic-theme/extensions/csf/csf-lib.pm lib/usermin/authentic-theme/extensions/csf/csf.min.css +lib/usermin/authentic-theme/extensions/csf/csf.min.css.gz lib/usermin/authentic-theme/extensions/csf/csf.min.js +lib/usermin/authentic-theme/extensions/csf/csf.min.js.gz lib/usermin/authentic-theme/extensions/file-manager/bookmark.cgi lib/usermin/authentic-theme/extensions/file-manager/chattr.cgi lib/usermin/authentic-theme/extensions/file-manager/chcon.cgi @@ -178,7 +190,12 @@ lib/usermin/authentic-theme/extensions/file-manager/ex lib/usermin/authentic-theme/extensions/file-manager/fetcher.cgi lib/usermin/authentic-theme/extensions/file-manager/file-manager-lib.pm lib/usermin/authentic-theme/extensions/file-manager/file-manager-reinit.min.js +lib/usermin/authentic-theme/extensions/file-manager/file-manager-reinit.min.js.gz lib/usermin/authentic-theme/extensions/file-manager/file-manager.min.js +lib/usermin/authentic-theme/extensions/file-manager/file-manager.min.js.gz +lib/usermin/authentic-theme/extensions/file-manager/gpg.cgi +lib/usermin/authentic-theme/extensions/file-manager/http_download.cgi +lib/usermin/authentic-theme/extensions/file-manager/list-images.cgi lib/usermin/authentic-theme/extensions/file-manager/list.cgi lib/usermin/authentic-theme/extensions/file-manager/paste.cgi lib/usermin/authentic-theme/extensions/file-manager/rename.cgi @@ -187,14 +204,18 @@ lib/usermin/authentic-theme/extensions/file-manager/tr lib/usermin/authentic-theme/extensions/mail/folders.cgi lib/usermin/authentic-theme/extensions/mail/mail-lib.pm lib/usermin/authentic-theme/extensions/mail/mail.min.css +lib/usermin/authentic-theme/extensions/mail/mail.min.css.gz lib/usermin/authentic-theme/extensions/mail/mail.min.js +lib/usermin/authentic-theme/extensions/mail/mail.min.js.gz lib/usermin/authentic-theme/extensions/mail/mail.src.js lib/usermin/authentic-theme/extensions/mail/message.cgi lib/usermin/authentic-theme/extensions/mail/messages.cgi lib/usermin/authentic-theme/extensions/mail/search.cgi lib/usermin/authentic-theme/extensions/sql.min.js +lib/usermin/authentic-theme/extensions/sql.min.js.gz lib/usermin/authentic-theme/extensions/stats/stats.min.css lib/usermin/authentic-theme/extensions/stats/stats.min.js +lib/usermin/authentic-theme/extensions/stats/stats.min.js.gz lib/usermin/authentic-theme/extensions/stats/stats.src.css lib/usermin/authentic-theme/extensions/stats/stats.src.js lib/usermin/authentic-theme/help/editor.ca.UTF-8.html @@ -254,13 +275,13 @@ lib/usermin/authentic-theme/images/favicons/cloudmin/b lib/usermin/authentic-theme/images/favicons/cloudmin/favicon-16x16.png lib/usermin/authentic-theme/images/favicons/cloudmin/favicon-32x32.png lib/usermin/authentic-theme/images/favicons/cloudmin/favicon.ico +lib/usermin/authentic-theme/images/favicons/cloudmin/manifest.json lib/usermin/authentic-theme/images/favicons/cloudmin/mstile-144x144.png lib/usermin/authentic-theme/images/favicons/cloudmin/mstile-150x150.png lib/usermin/authentic-theme/images/favicons/cloudmin/mstile-310x150.png lib/usermin/authentic-theme/images/favicons/cloudmin/mstile-310x310.png lib/usermin/authentic-theme/images/favicons/cloudmin/mstile-70x70.png lib/usermin/authentic-theme/images/favicons/cloudmin/safari-pinned-tab.svg -lib/usermin/authentic-theme/images/favicons/cloudmin/site.webmanifest lib/usermin/authentic-theme/images/favicons/usermin/android-chrome-144x144.png lib/usermin/authentic-theme/images/favicons/usermin/android-chrome-192x192.png lib/usermin/authentic-theme/images/favicons/usermin/android-chrome-256x256.png @@ -284,13 +305,13 @@ lib/usermin/authentic-theme/images/favicons/usermin/br lib/usermin/authentic-theme/images/favicons/usermin/favicon-16x16.png lib/usermin/authentic-theme/images/favicons/usermin/favicon-32x32.png lib/usermin/authentic-theme/images/favicons/usermin/favicon.ico +lib/usermin/authentic-theme/images/favicons/usermin/manifest.json lib/usermin/authentic-theme/images/favicons/usermin/mstile-144x144.png lib/usermin/authentic-theme/images/favicons/usermin/mstile-150x150.png lib/usermin/authentic-theme/images/favicons/usermin/mstile-310x150.png lib/usermin/authentic-theme/images/favicons/usermin/mstile-310x310.png lib/usermin/authentic-theme/images/favicons/usermin/mstile-70x70.png lib/usermin/authentic-theme/images/favicons/usermin/safari-pinned-tab.svg -lib/usermin/authentic-theme/images/favicons/usermin/site.webmanifest lib/usermin/authentic-theme/images/favicons/virtualmin/android-chrome-144x144.png lib/usermin/authentic-theme/images/favicons/virtualmin/android-chrome-192x192.png lib/usermin/authentic-theme/images/favicons/virtualmin/android-chrome-256x256.png @@ -314,13 +335,13 @@ lib/usermin/authentic-theme/images/favicons/virtualmin lib/usermin/authentic-theme/images/favicons/virtualmin/favicon-16x16.png lib/usermin/authentic-theme/images/favicons/virtualmin/favicon-32x32.png lib/usermin/authentic-theme/images/favicons/virtualmin/favicon.ico +lib/usermin/authentic-theme/images/favicons/virtualmin/manifest.json lib/usermin/authentic-theme/images/favicons/virtualmin/mstile-144x144.png lib/usermin/authentic-theme/images/favicons/virtualmin/mstile-150x150.png lib/usermin/authentic-theme/images/favicons/virtualmin/mstile-310x150.png lib/usermin/authentic-theme/images/favicons/virtualmin/mstile-310x310.png lib/usermin/authentic-theme/images/favicons/virtualmin/mstile-70x70.png lib/usermin/authentic-theme/images/favicons/virtualmin/safari-pinned-tab.svg -lib/usermin/authentic-theme/images/favicons/virtualmin/site.webmanifest lib/usermin/authentic-theme/images/favicons/webmin/android-chrome-144x144.png lib/usermin/authentic-theme/images/favicons/webmin/android-chrome-192x192.png lib/usermin/authentic-theme/images/favicons/webmin/android-chrome-256x256.png @@ -344,13 +365,13 @@ lib/usermin/authentic-theme/images/favicons/webmin/bro lib/usermin/authentic-theme/images/favicons/webmin/favicon-16x16.png lib/usermin/authentic-theme/images/favicons/webmin/favicon-32x32.png lib/usermin/authentic-theme/images/favicons/webmin/favicon.ico +lib/usermin/authentic-theme/images/favicons/webmin/manifest.json lib/usermin/authentic-theme/images/favicons/webmin/mstile-144x144.png lib/usermin/authentic-theme/images/favicons/webmin/mstile-150x150.png lib/usermin/authentic-theme/images/favicons/webmin/mstile-310x150.png lib/usermin/authentic-theme/images/favicons/webmin/mstile-310x310.png lib/usermin/authentic-theme/images/favicons/webmin/mstile-70x70.png lib/usermin/authentic-theme/images/favicons/webmin/safari-pinned-tab.svg -lib/usermin/authentic-theme/images/favicons/webmin/site.webmanifest lib/usermin/authentic-theme/images/filter.gif lib/usermin/authentic-theme/images/first-grey.gif lib/usermin/authentic-theme/images/first.gif @@ -1114,6 +1135,8 @@ lib/usermin/authentic-theme/images/notifications_authe lib/usermin/authentic-theme/images/notifications_csf_deny.png lib/usermin/authentic-theme/images/notifications_csf_remote_version.png lib/usermin/authentic-theme/images/notifications_package_message.png +lib/usermin/authentic-theme/images/notifications_usermin.png +lib/usermin/authentic-theme/images/notifications_webmin.png lib/usermin/authentic-theme/images/ok.gif lib/usermin/authentic-theme/images/open.gif lib/usermin/authentic-theme/images/p1.gif @@ -1129,7 +1152,6 @@ lib/usermin/authentic-theme/images/right-grey.gif lib/usermin/authentic-theme/images/right.gif lib/usermin/authentic-theme/images/screenshot.png lib/usermin/authentic-theme/images/search.gif -lib/usermin/authentic-theme/images/smallicon.gif lib/usermin/authentic-theme/images/sort_asc.png lib/usermin/authentic-theme/images/sort_asc_disabled.png lib/usermin/authentic-theme/images/sort_both.png @@ -1204,6 +1226,8 @@ lib/usermin/authentic-theme/password_form.cgi lib/usermin/authentic-theme/session_login.cgi lib/usermin/authentic-theme/settings-backgrounds.cgi lib/usermin/authentic-theme/settings-backgrounds_save.cgi +lib/usermin/authentic-theme/settings-editor_favorites_read.cgi +lib/usermin/authentic-theme/settings-editor_favorites_write.cgi lib/usermin/authentic-theme/settings-editor_read.cgi lib/usermin/authentic-theme/settings-editor_write.cgi lib/usermin/authentic-theme/settings-favorites_save.cgi @@ -1216,6 +1240,7 @@ lib/usermin/authentic-theme/sysinfo.cgi lib/usermin/authentic-theme/theme-update.sh lib/usermin/authentic-theme/theme.info lib/usermin/authentic-theme/unauthenticated/css/bundle.min.css +lib/usermin/authentic-theme/unauthenticated/css/bundle.min.css.gz lib/usermin/authentic-theme/unauthenticated/css/font-arial.min.css lib/usermin/authentic-theme/unauthenticated/css/font-helvetica-neue.min.css lib/usermin/authentic-theme/unauthenticated/css/font-open-sans-condensed.min.css @@ -1226,9 +1251,12 @@ lib/usermin/authentic-theme/unauthenticated/css/font-s lib/usermin/authentic-theme/unauthenticated/css/font-tahoma.min.css lib/usermin/authentic-theme/unauthenticated/css/font-trebuchet-ms.min.css lib/usermin/authentic-theme/unauthenticated/css/fonts-roboto.min.css +lib/usermin/authentic-theme/unauthenticated/css/fonts-roboto.min.css.gz lib/usermin/authentic-theme/unauthenticated/css/high-contrast.min.css lib/usermin/authentic-theme/unauthenticated/css/jquery.fancytree.min.css +lib/usermin/authentic-theme/unauthenticated/css/jquery.fancytree.min.css.gz lib/usermin/authentic-theme/unauthenticated/css/jquery.jspanel.min.css +lib/usermin/authentic-theme/unauthenticated/css/jquery.jspanel.min.css.gz lib/usermin/authentic-theme/unauthenticated/css/palettes/brown.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/darkblue.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/darkgrey.min.css @@ -1239,33 +1267,59 @@ lib/usermin/authentic-theme/unauthenticated/css/palett lib/usermin/authentic-theme/unauthenticated/css/palettes/indianred.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/lightblue.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/nightrider.min.css +lib/usermin/authentic-theme/unauthenticated/css/palettes/nightrider.min.css.gz lib/usermin/authentic-theme/unauthenticated/css/palettes/noir.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/orange.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/purple.min.css lib/usermin/authentic-theme/unauthenticated/css/palettes/red.min.css +lib/usermin/authentic-theme/unauthenticated/css/palettes/white.min.css +lib/usermin/authentic-theme/unauthenticated/css/photoswipe.min.css +lib/usermin/authentic-theme/unauthenticated/css/photoswipe.min.css.gz lib/usermin/authentic-theme/unauthenticated/js/bundle.min.js +lib/usermin/authentic-theme/unauthenticated/js/bundle.min.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/adapters/jquery.js lib/usermin/authentic-theme/unauthenticated/js/ckeditor/ckeditor.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/ckeditor.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/config.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/config.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/contents.css +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/contents.css.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/ca.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/ca.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/cs.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/cs.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/da.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/da.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/de.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/de.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/en.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/en.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/es.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/es.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/fr.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/fr.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/id.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/id.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/it.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/it.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/nl.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/nl.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/no.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/no.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/pl.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/pl.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/pt.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/pt.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/ro.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/ro.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/ru.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/ru.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/sq.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/sq.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/sv.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/sv.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/zh-cn.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/lang/zh-cn.js.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/plugins/base64image/dialogs/base64image.js lib/usermin/authentic-theme/unauthenticated/js/ckeditor/plugins/colordialog/dialogs/colordialog.css lib/usermin/authentic-theme/unauthenticated/js/ckeditor/plugins/colordialog/dialogs/colordialog.js @@ -1320,7 +1374,9 @@ lib/usermin/authentic-theme/unauthenticated/js/ckedito lib/usermin/authentic-theme/unauthenticated/js/ckeditor/plugins/tabletools/dialogs/tableCell.js lib/usermin/authentic-theme/unauthenticated/js/ckeditor/plugins/wordcount/css/wordcount.css lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/dialog.css +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/dialog.css.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/editor.css +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/editor.css.gz lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/icons.png lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/icons_hidpi.png lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/images/arrow.png @@ -1333,6 +1389,7 @@ lib/usermin/authentic-theme/unauthenticated/js/ckedito lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/images/lock.png lib/usermin/authentic-theme/unauthenticated/js/ckeditor/skins/moono-lisa/images/refresh.png lib/usermin/authentic-theme/unauthenticated/js/ckeditor/styles.js +lib/usermin/authentic-theme/unauthenticated/js/ckeditor/styles.js.gz lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/apl/apl.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/asciiarmor/asciiarmor.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/asn.1/asn.1.js @@ -1341,6 +1398,7 @@ lib/usermin/authentic-theme/unauthenticated/js/codemir lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/clike/clike.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/clike/test.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/clojure/clojure.js +lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/clojure/test.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/cmake/cmake.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/cobol/cobol.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/coffeescript/coffeescript.js @@ -1359,6 +1417,7 @@ lib/usermin/authentic-theme/unauthenticated/js/codemir lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/diff/diff.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/django/django.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/dockerfile/dockerfile.js +lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/dockerfile/test.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/dtd/dtd.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/dylan/dylan.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/dylan/test.js @@ -1399,7 +1458,6 @@ lib/usermin/authentic-theme/unauthenticated/js/codemir lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/markdown/test.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/mathematica/mathematica.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/mbox/mbox.js -lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/meta.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/mirc/mirc.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/mllike/mllike.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/modelica/modelica.js @@ -1486,9 +1544,15 @@ lib/usermin/authentic-theme/unauthenticated/js/codemir lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/yaml/yaml.js lib/usermin/authentic-theme/unauthenticated/js/codemirror/mode/z80/z80.js +lib/usermin/authentic-theme/unauthenticated/js/defaults.js lib/usermin/authentic-theme/unauthenticated/js/detector.min.js +lib/usermin/authentic-theme/unauthenticated/js/detector.min.js.gz lib/usermin/authentic-theme/unauthenticated/js/jquery.fancytree.min.js +lib/usermin/authentic-theme/unauthenticated/js/jquery.fancytree.min.js.gz lib/usermin/authentic-theme/unauthenticated/js/jquery.jspanel.min.js +lib/usermin/authentic-theme/unauthenticated/js/jquery.jspanel.min.js.gz +lib/usermin/authentic-theme/unauthenticated/js/photoswipe.min.js +lib/usermin/authentic-theme/unauthenticated/js/photoswipe.min.js.gz lib/usermin/blue-theme/CHANGELOG lib/usermin/blue-theme/acl/images/convert.gif lib/usermin/blue-theme/acl/images/icon.gif @@ -2339,22 +2403,28 @@ lib/usermin/changepass/lang/zh_TW.UTF-8 lib/usermin/changepass/md5-lib.pl lib/usermin/changepass/module.info lib/usermin/changepass/module.info.ca +lib/usermin/changepass/module.info.ca.UTF-8 lib/usermin/changepass/module.info.cz lib/usermin/changepass/module.info.cz.UTF-8 lib/usermin/changepass/module.info.de +lib/usermin/changepass/module.info.de.UTF-8 lib/usermin/changepass/module.info.el lib/usermin/changepass/module.info.es +lib/usermin/changepass/module.info.es.UTF-8 lib/usermin/changepass/module.info.fr +lib/usermin/changepass/module.info.fr.UTF-8 lib/usermin/changepass/module.info.hu lib/usermin/changepass/module.info.hu.UTF-8 lib/usermin/changepass/module.info.ja_JP.UTF-8 lib/usermin/changepass/module.info.ja_JP.euc lib/usermin/changepass/module.info.nl +lib/usermin/changepass/module.info.nl.UTF-8 lib/usermin/changepass/module.info.no lib/usermin/changepass/module.info.no.UTF-8 lib/usermin/changepass/module.info.pl lib/usermin/changepass/module.info.pl.UTF-8 lib/usermin/changepass/module.info.pt_BR +lib/usermin/changepass/module.info.pt_BR.UTF-8 lib/usermin/changepass/module.info.ru.UTF-8 lib/usermin/changepass/module.info.ru_RU lib/usermin/changepass/module.info.ru_RU.UTF-8 @@ -2409,16 +2479,20 @@ lib/usermin/chfn/lang/tr lib/usermin/chfn/linux-lib.pl lib/usermin/chfn/module.info lib/usermin/chfn/module.info.ca +lib/usermin/chfn/module.info.ca.UTF-8 lib/usermin/chfn/module.info.cz lib/usermin/chfn/module.info.cz.UTF-8 lib/usermin/chfn/module.info.de +lib/usermin/chfn/module.info.de.UTF-8 lib/usermin/chfn/module.info.el lib/usermin/chfn/module.info.fr +lib/usermin/chfn/module.info.fr.UTF-8 lib/usermin/chfn/module.info.hu lib/usermin/chfn/module.info.hu.UTF-8 lib/usermin/chfn/module.info.ja_JP.UTF-8 lib/usermin/chfn/module.info.ja_JP.euc lib/usermin/chfn/module.info.nl +lib/usermin/chfn/module.info.nl.UTF-8 lib/usermin/chfn/module.info.no lib/usermin/chfn/module.info.no.UTF-8 lib/usermin/chfn/module.info.ru.UTF-8 @@ -2442,7 +2516,6 @@ lib/usermin/commands/config.info.nl.UTF-8 lib/usermin/commands/custom-lib.pl lib/usermin/commands/form.cgi lib/usermin/commands/images/icon.gif -lib/usermin/commands/images/smallicon.gif lib/usermin/commands/index.cgi lib/usermin/commands/lang/ca lib/usermin/commands/lang/ca.UTF-8 @@ -2493,12 +2566,16 @@ lib/usermin/commands/lang/zh_TW.Big5 lib/usermin/commands/lang/zh_TW.UTF-8 lib/usermin/commands/module.info lib/usermin/commands/module.info.ca +lib/usermin/commands/module.info.ca.UTF-8 lib/usermin/commands/module.info.cz lib/usermin/commands/module.info.cz.UTF-8 lib/usermin/commands/module.info.de +lib/usermin/commands/module.info.de.UTF-8 lib/usermin/commands/module.info.el lib/usermin/commands/module.info.es +lib/usermin/commands/module.info.es.UTF-8 lib/usermin/commands/module.info.fr +lib/usermin/commands/module.info.fr.UTF-8 lib/usermin/commands/module.info.hu lib/usermin/commands/module.info.hu.UTF-8 lib/usermin/commands/module.info.ja_JP.UTF-8 @@ -2506,16 +2583,19 @@ lib/usermin/commands/module.info.ja_JP.euc lib/usermin/commands/module.info.ko_KR.UTF-8 lib/usermin/commands/module.info.ko_KR.euc lib/usermin/commands/module.info.nl +lib/usermin/commands/module.info.nl.UTF-8 lib/usermin/commands/module.info.no lib/usermin/commands/module.info.no.UTF-8 lib/usermin/commands/module.info.pl lib/usermin/commands/module.info.pl.UTF-8 lib/usermin/commands/module.info.pt +lib/usermin/commands/module.info.pt.UTF-8 lib/usermin/commands/module.info.ru.UTF-8 lib/usermin/commands/module.info.ru_RU lib/usermin/commands/module.info.ru_RU.UTF-8 lib/usermin/commands/module.info.ru_SU lib/usermin/commands/module.info.sv +lib/usermin/commands/module.info.sv.UTF-8 lib/usermin/commands/module.info.tr lib/usermin/commands/module.info.zh_CN lib/usermin/commands/module.info.zh_TW.Big5 @@ -2681,7 +2761,6 @@ lib/usermin/cron/images/bottom.gif lib/usermin/cron/images/down.gif lib/usermin/cron/images/gap.gif lib/usermin/cron/images/icon.gif -lib/usermin/cron/images/smallicon.gif lib/usermin/cron/images/top.gif lib/usermin/cron/images/up.gif lib/usermin/cron/index.cgi @@ -2740,14 +2819,18 @@ lib/usermin/cron/lang/zh_TW.Big5 lib/usermin/cron/lang/zh_TW.UTF-8 lib/usermin/cron/module.info lib/usermin/cron/module.info.ca +lib/usermin/cron/module.info.ca.UTF-8 lib/usermin/cron/module.info.cz lib/usermin/cron/module.info.cz.UTF-8 lib/usermin/cron/module.info.de +lib/usermin/cron/module.info.de.UTF-8 lib/usermin/cron/module.info.el lib/usermin/cron/module.info.fr +lib/usermin/cron/module.info.fr.UTF-8 lib/usermin/cron/module.info.hu lib/usermin/cron/module.info.hu.UTF-8 lib/usermin/cron/module.info.nl +lib/usermin/cron/module.info.nl.UTF-8 lib/usermin/cron/module.info.no lib/usermin/cron/module.info.no.UTF-8 lib/usermin/cron/module.info.pl @@ -2787,14 +2870,17 @@ lib/usermin/cshrc/lang/ru_RU.UTF-8 lib/usermin/cshrc/lang/tr lib/usermin/cshrc/module.info lib/usermin/cshrc/module.info.ca +lib/usermin/cshrc/module.info.ca.UTF-8 lib/usermin/cshrc/module.info.cz lib/usermin/cshrc/module.info.cz.UTF-8 lib/usermin/cshrc/module.info.de +lib/usermin/cshrc/module.info.de.UTF-8 lib/usermin/cshrc/module.info.hu lib/usermin/cshrc/module.info.hu.UTF-8 lib/usermin/cshrc/module.info.ja_JP.UTF-8 lib/usermin/cshrc/module.info.ja_JP.euc lib/usermin/cshrc/module.info.nl +lib/usermin/cshrc/module.info.nl.UTF-8 lib/usermin/cshrc/module.info.no lib/usermin/cshrc/module.info.no.UTF-8 lib/usermin/cshrc/save_cshrc.cgi @@ -2828,7 +2914,6 @@ lib/usermin/fetchmail/fetchmail-lib.pl lib/usermin/fetchmail/images/hand.png lib/usermin/fetchmail/images/icon.gif lib/usermin/fetchmail/images/old.gif -lib/usermin/fetchmail/images/smallicon.gif lib/usermin/fetchmail/index.cgi lib/usermin/fetchmail/lang/bg lib/usermin/fetchmail/lang/bg.UTF-8 @@ -2868,14 +2953,17 @@ lib/usermin/fetchmail/lang/zh_TW.Big5 lib/usermin/fetchmail/lang/zh_TW.UTF-8 lib/usermin/fetchmail/module.info lib/usermin/fetchmail/module.info.ca +lib/usermin/fetchmail/module.info.ca.UTF-8 lib/usermin/fetchmail/module.info.cz lib/usermin/fetchmail/module.info.cz.UTF-8 lib/usermin/fetchmail/module.info.de +lib/usermin/fetchmail/module.info.de.UTF-8 lib/usermin/fetchmail/module.info.hu lib/usermin/fetchmail/module.info.hu.UTF-8 lib/usermin/fetchmail/module.info.ja_JP.UTF-8 lib/usermin/fetchmail/module.info.ja_JP.euc lib/usermin/fetchmail/module.info.nl +lib/usermin/fetchmail/module.info.nl.UTF-8 lib/usermin/fetchmail/module.info.no lib/usermin/fetchmail/module.info.no.UTF-8 lib/usermin/fetchmail/module.info.pl @@ -2959,7 +3047,6 @@ lib/usermin/file/images/save.gif lib/usermin/file/images/sdir.gif lib/usermin/file/images/search.gif lib/usermin/file/images/share.gif -lib/usermin/file/images/smallicon.gif lib/usermin/file/images/smdir.gif lib/usermin/file/images/sub.gif lib/usermin/file/images/sudir.gif @@ -3027,12 +3114,16 @@ lib/usermin/file/makelink.cgi lib/usermin/file/mkdir.cgi lib/usermin/file/module.info lib/usermin/file/module.info.ca +lib/usermin/file/module.info.ca.UTF-8 lib/usermin/file/module.info.cz lib/usermin/file/module.info.cz.UTF-8 lib/usermin/file/module.info.de +lib/usermin/file/module.info.de.UTF-8 lib/usermin/file/module.info.el lib/usermin/file/module.info.es +lib/usermin/file/module.info.es.UTF-8 lib/usermin/file/module.info.fr +lib/usermin/file/module.info.fr.UTF-8 lib/usermin/file/module.info.hu lib/usermin/file/module.info.hu.UTF-8 lib/usermin/file/module.info.ja_JP.UTF-8 @@ -3040,16 +3131,19 @@ lib/usermin/file/module.info.ja_JP.euc lib/usermin/file/module.info.ko_KR.UTF-8 lib/usermin/file/module.info.ko_KR.euc lib/usermin/file/module.info.nl +lib/usermin/file/module.info.nl.UTF-8 lib/usermin/file/module.info.no lib/usermin/file/module.info.no.UTF-8 lib/usermin/file/module.info.pl lib/usermin/file/module.info.pl.UTF-8 lib/usermin/file/module.info.pt +lib/usermin/file/module.info.pt.UTF-8 lib/usermin/file/module.info.ru.UTF-8 lib/usermin/file/module.info.ru_RU lib/usermin/file/module.info.ru_RU.UTF-8 lib/usermin/file/module.info.ru_SU lib/usermin/file/module.info.sv +lib/usermin/file/module.info.sv.UTF-8 lib/usermin/file/module.info.tr lib/usermin/file/module.info.zh_CN lib/usermin/file/module.info.zh_TW.Big5 @@ -3629,7 +3723,6 @@ lib/usermin/filemin/images/icons/quick/remove.png lib/usermin/filemin/images/icons/quick/rename.png lib/usermin/filemin/images/icons/quick/select-all.png lib/usermin/filemin/images/icons/quick/upload.png -lib/usermin/filemin/images/smallicon.gif lib/usermin/filemin/index.cgi lib/usermin/filemin/lang/ar lib/usermin/filemin/lang/ca @@ -3640,13 +3733,13 @@ lib/usermin/filemin/lang/en lib/usermin/filemin/lang/en.UTF-8 lib/usermin/filemin/lang/no lib/usermin/filemin/lang/no.UTF-8 -lib/usermin/filemin/lang/ru.UTF-8 lib/usermin/filemin/lib/File/BaseDir.pm lib/usermin/filemin/lib/File/Basename.pm lib/usermin/filemin/lib/File/MimeInfo.pm lib/usermin/filemin/module.info lib/usermin/filemin/module.info.ar lib/usermin/filemin/module.info.ca +lib/usermin/filemin/module.info.ca.UTF-8 lib/usermin/filemin/module.info.de lib/usermin/filemin/module.info.de.UTF-8 lib/usermin/filemin/module.info.no @@ -4070,7 +4163,6 @@ lib/usermin/filter/filter-lib.pl lib/usermin/filter/images/down.gif lib/usermin/filter/images/gap.gif lib/usermin/filter/images/icon.gif -lib/usermin/filter/images/smallicon.gif lib/usermin/filter/images/up.gif lib/usermin/filter/index.cgi lib/usermin/filter/lang/ca @@ -4094,6 +4186,7 @@ lib/usermin/filter/lang/pl lib/usermin/filter/lang/pl.UTF-8 lib/usermin/filter/module.info lib/usermin/filter/module.info.ca +lib/usermin/filter/module.info.ca.UTF-8 lib/usermin/filter/module.info.cz lib/usermin/filter/module.info.cz.UTF-8 lib/usermin/filter/module.info.de @@ -4101,7 +4194,9 @@ lib/usermin/filter/module.info.de.UTF-8 lib/usermin/filter/module.info.hu lib/usermin/filter/module.info.hu.UTF-8 lib/usermin/filter/module.info.ms_MY +lib/usermin/filter/module.info.ms_MY.UTF-8 lib/usermin/filter/module.info.nl +lib/usermin/filter/module.info.nl.UTF-8 lib/usermin/filter/module.info.no lib/usermin/filter/module.info.no.UTF-8 lib/usermin/filter/module.info.pl @@ -4165,20 +4260,26 @@ lib/usermin/forward/lang/ru_RU.UTF-8 lib/usermin/forward/lang/tr lib/usermin/forward/module.info lib/usermin/forward/module.info.ca +lib/usermin/forward/module.info.ca.UTF-8 lib/usermin/forward/module.info.cz lib/usermin/forward/module.info.cz.UTF-8 lib/usermin/forward/module.info.de +lib/usermin/forward/module.info.de.UTF-8 lib/usermin/forward/module.info.el lib/usermin/forward/module.info.es +lib/usermin/forward/module.info.es.UTF-8 lib/usermin/forward/module.info.fr +lib/usermin/forward/module.info.fr.UTF-8 lib/usermin/forward/module.info.hu lib/usermin/forward/module.info.hu.UTF-8 lib/usermin/forward/module.info.ja_JP.UTF-8 lib/usermin/forward/module.info.ja_JP.euc lib/usermin/forward/module.info.nl +lib/usermin/forward/module.info.nl.UTF-8 lib/usermin/forward/module.info.no lib/usermin/forward/module.info.no.UTF-8 lib/usermin/forward/module.info.pt_BR +lib/usermin/forward/module.info.pt_BR.UTF-8 lib/usermin/forward/module.info.ru.UTF-8 lib/usermin/forward/module.info.ru_RU lib/usermin/forward/module.info.ru_RU.UTF-8 @@ -4242,14 +4343,19 @@ lib/usermin/gnupg/lang/tr lib/usermin/gnupg/list_keys.cgi lib/usermin/gnupg/module.info lib/usermin/gnupg/module.info.ca +lib/usermin/gnupg/module.info.ca.UTF-8 lib/usermin/gnupg/module.info.de +lib/usermin/gnupg/module.info.de.UTF-8 lib/usermin/gnupg/module.info.es +lib/usermin/gnupg/module.info.es.UTF-8 lib/usermin/gnupg/module.info.fr +lib/usermin/gnupg/module.info.fr.UTF-8 lib/usermin/gnupg/module.info.hu lib/usermin/gnupg/module.info.hu.UTF-8 lib/usermin/gnupg/module.info.ja_JP.UTF-8 lib/usermin/gnupg/module.info.ja_JP.euc lib/usermin/gnupg/module.info.nl +lib/usermin/gnupg/module.info.nl.UTF-8 lib/usermin/gnupg/module.info.no lib/usermin/gnupg/module.info.no.UTF-8 lib/usermin/gnupg/recv.cgi @@ -5063,7 +5169,6 @@ lib/usermin/htaccess-htpasswd/edit_user.cgi lib/usermin/htaccess-htpasswd/htaccess-lib.pl lib/usermin/htaccess-htpasswd/htpasswd-file-lib.pl lib/usermin/htaccess-htpasswd/images/icon.gif -lib/usermin/htaccess-htpasswd/images/smallicon.gif lib/usermin/htaccess-htpasswd/index.cgi lib/usermin/htaccess-htpasswd/lang/bg lib/usermin/htaccess-htpasswd/lang/bg.UTF-8 @@ -5102,13 +5207,17 @@ lib/usermin/htaccess-htpasswd/log_parser.pl lib/usermin/htaccess-htpasswd/md5-lib.pl lib/usermin/htaccess-htpasswd/module.info lib/usermin/htaccess-htpasswd/module.info.ca +lib/usermin/htaccess-htpasswd/module.info.ca.UTF-8 lib/usermin/htaccess-htpasswd/module.info.cz lib/usermin/htaccess-htpasswd/module.info.cz.UTF-8 lib/usermin/htaccess-htpasswd/module.info.de +lib/usermin/htaccess-htpasswd/module.info.de.UTF-8 lib/usermin/htaccess-htpasswd/module.info.fr +lib/usermin/htaccess-htpasswd/module.info.fr.UTF-8 lib/usermin/htaccess-htpasswd/module.info.hu lib/usermin/htaccess-htpasswd/module.info.hu.UTF-8 lib/usermin/htaccess-htpasswd/module.info.nl +lib/usermin/htaccess-htpasswd/module.info.nl.UTF-8 lib/usermin/htaccess-htpasswd/module.info.no lib/usermin/htaccess-htpasswd/module.info.no.UTF-8 lib/usermin/htaccess-htpasswd/module.info.pl @@ -5295,12 +5404,15 @@ lib/usermin/htaccess/mod_userdir.pl lib/usermin/htaccess/mod_vhost_alias.pl lib/usermin/htaccess/module.info lib/usermin/htaccess/module.info.ca +lib/usermin/htaccess/module.info.ca.UTF-8 lib/usermin/htaccess/module.info.cz lib/usermin/htaccess/module.info.cz.UTF-8 lib/usermin/htaccess/module.info.de +lib/usermin/htaccess/module.info.de.UTF-8 lib/usermin/htaccess/module.info.hu lib/usermin/htaccess/module.info.hu.UTF-8 lib/usermin/htaccess/module.info.nl +lib/usermin/htaccess/module.info.nl.UTF-8 lib/usermin/htaccess/module.info.no lib/usermin/htaccess/module.info.no.UTF-8 lib/usermin/htaccess/module.info.pl @@ -5496,17 +5608,22 @@ lib/usermin/language/lang/tr lib/usermin/language/language-lib.pl lib/usermin/language/module.info lib/usermin/language/module.info.ca +lib/usermin/language/module.info.ca.UTF-8 lib/usermin/language/module.info.cz lib/usermin/language/module.info.cz.UTF-8 lib/usermin/language/module.info.de +lib/usermin/language/module.info.de.UTF-8 lib/usermin/language/module.info.el lib/usermin/language/module.info.es +lib/usermin/language/module.info.es.UTF-8 lib/usermin/language/module.info.hu lib/usermin/language/module.info.hu.UTF-8 lib/usermin/language/module.info.it +lib/usermin/language/module.info.it.UTF-8 lib/usermin/language/module.info.ja_JP.UTF-8 lib/usermin/language/module.info.ja_JP.euc lib/usermin/language/module.info.nl +lib/usermin/language/module.info.nl.UTF-8 lib/usermin/language/module.info.no lib/usermin/language/module.info.no.UTF-8 lib/usermin/language/module.info.ru.UTF-8 @@ -5637,15 +5754,20 @@ lib/usermin/mailbox/mail_search.cgi lib/usermin/mailbox/mailbox-lib.pl lib/usermin/mailbox/module.info lib/usermin/mailbox/module.info.ca +lib/usermin/mailbox/module.info.ca.UTF-8 lib/usermin/mailbox/module.info.cz lib/usermin/mailbox/module.info.cz.UTF-8 lib/usermin/mailbox/module.info.de +lib/usermin/mailbox/module.info.de.UTF-8 lib/usermin/mailbox/module.info.el lib/usermin/mailbox/module.info.es +lib/usermin/mailbox/module.info.es.UTF-8 lib/usermin/mailbox/module.info.fr +lib/usermin/mailbox/module.info.fr.UTF-8 lib/usermin/mailbox/module.info.hu lib/usermin/mailbox/module.info.hu.UTF-8 lib/usermin/mailbox/module.info.nl +lib/usermin/mailbox/module.info.nl.UTF-8 lib/usermin/mailbox/module.info.no lib/usermin/mailbox/module.info.no.UTF-8 lib/usermin/mailbox/module.info.ru.UTF-8 @@ -5964,7 +6086,6 @@ lib/usermin/mailcap/defaultuconfig lib/usermin/mailcap/delete.cgi lib/usermin/mailcap/edit.cgi lib/usermin/mailcap/images/icon.gif -lib/usermin/mailcap/images/smallicon.gif lib/usermin/mailcap/index.cgi lib/usermin/mailcap/lang/ca lib/usermin/mailcap/lang/ca.UTF-8 @@ -5987,12 +6108,15 @@ lib/usermin/mailcap/log_parser.pl lib/usermin/mailcap/mailcap-lib.pl lib/usermin/mailcap/module.info lib/usermin/mailcap/module.info.ca +lib/usermin/mailcap/module.info.ca.UTF-8 lib/usermin/mailcap/module.info.cz lib/usermin/mailcap/module.info.cz.UTF-8 lib/usermin/mailcap/module.info.de +lib/usermin/mailcap/module.info.de.UTF-8 lib/usermin/mailcap/module.info.hu lib/usermin/mailcap/module.info.hu.UTF-8 lib/usermin/mailcap/module.info.nl +lib/usermin/mailcap/module.info.nl.UTF-8 lib/usermin/mailcap/module.info.no lib/usermin/mailcap/module.info.no.UTF-8 lib/usermin/mailcap/save.cgi @@ -6091,7 +6215,6 @@ lib/usermin/man/help/intro.sk.html lib/usermin/man/help/intro.sv.UTF-8.html lib/usermin/man/help/intro.sv.html lib/usermin/man/images/icon.gif -lib/usermin/man/images/smallicon.gif lib/usermin/man/index.cgi lib/usermin/man/lang/ar lib/usermin/man/lang/ca @@ -6142,11 +6265,15 @@ lib/usermin/man/lang/zh_TW.UTF-8 lib/usermin/man/man-lib.pl lib/usermin/man/module.info lib/usermin/man/module.info.ca +lib/usermin/man/module.info.ca.UTF-8 lib/usermin/man/module.info.cz lib/usermin/man/module.info.cz.UTF-8 lib/usermin/man/module.info.de +lib/usermin/man/module.info.de.UTF-8 lib/usermin/man/module.info.es +lib/usermin/man/module.info.es.UTF-8 lib/usermin/man/module.info.fr +lib/usermin/man/module.info.fr.UTF-8 lib/usermin/man/module.info.hu lib/usermin/man/module.info.hu.UTF-8 lib/usermin/man/module.info.ja_JP.UTF-8 @@ -6154,16 +6281,19 @@ lib/usermin/man/module.info.ja_JP.euc lib/usermin/man/module.info.ko_KR.UTF-8 lib/usermin/man/module.info.ko_KR.euc lib/usermin/man/module.info.nl +lib/usermin/man/module.info.nl.UTF-8 lib/usermin/man/module.info.no lib/usermin/man/module.info.no.UTF-8 lib/usermin/man/module.info.pl lib/usermin/man/module.info.pl.UTF-8 lib/usermin/man/module.info.pt +lib/usermin/man/module.info.pt.UTF-8 lib/usermin/man/module.info.ru.UTF-8 lib/usermin/man/module.info.ru_RU lib/usermin/man/module.info.ru_RU.UTF-8 lib/usermin/man/module.info.ru_SU lib/usermin/man/module.info.sv +lib/usermin/man/module.info.sv.UTF-8 lib/usermin/man/module.info.tr lib/usermin/man/module.info.zh_CN lib/usermin/man/module.info.zh_TW.Big5 @@ -6667,7 +6797,6 @@ lib/usermin/mysql/images/manual.gif lib/usermin/mysql/images/mysql.gif lib/usermin/mysql/images/procs.gif lib/usermin/mysql/images/root.gif -lib/usermin/mysql/images/smallicon.gif lib/usermin/mysql/images/table.gif lib/usermin/mysql/images/tprivs.gif lib/usermin/mysql/images/users.gif @@ -6724,13 +6853,17 @@ lib/usermin/mysql/lang/zh_TW.UTF-8 lib/usermin/mysql/login.cgi lib/usermin/mysql/module.info lib/usermin/mysql/module.info.ca +lib/usermin/mysql/module.info.ca.UTF-8 lib/usermin/mysql/module.info.cz lib/usermin/mysql/module.info.cz.UTF-8 lib/usermin/mysql/module.info.de +lib/usermin/mysql/module.info.de.UTF-8 lib/usermin/mysql/module.info.fr +lib/usermin/mysql/module.info.fr.UTF-8 lib/usermin/mysql/module.info.hu lib/usermin/mysql/module.info.hu.UTF-8 lib/usermin/mysql/module.info.nl +lib/usermin/mysql/module.info.nl.UTF-8 lib/usermin/mysql/module.info.no lib/usermin/mysql/module.info.no.UTF-8 lib/usermin/mysql/mysql-lib.pl @@ -6786,14 +6919,18 @@ lib/usermin/plan/lang/no.UTF-8 lib/usermin/plan/lang/tr lib/usermin/plan/module.info lib/usermin/plan/module.info.ca +lib/usermin/plan/module.info.ca.UTF-8 lib/usermin/plan/module.info.cz lib/usermin/plan/module.info.cz.UTF-8 lib/usermin/plan/module.info.de +lib/usermin/plan/module.info.de.UTF-8 lib/usermin/plan/module.info.el lib/usermin/plan/module.info.es +lib/usermin/plan/module.info.es.UTF-8 lib/usermin/plan/module.info.hu lib/usermin/plan/module.info.hu.UTF-8 lib/usermin/plan/module.info.nl +lib/usermin/plan/module.info.nl.UTF-8 lib/usermin/plan/module.info.no lib/usermin/plan/module.info.no.UTF-8 lib/usermin/plan/plan-lib.pl @@ -7093,7 +7230,6 @@ lib/usermin/postgresql/images/hosts.gif lib/usermin/postgresql/images/icon.gif lib/usermin/postgresql/images/index.gif lib/usermin/postgresql/images/seq.gif -lib/usermin/postgresql/images/smallicon.gif lib/usermin/postgresql/images/table.gif lib/usermin/postgresql/images/up.gif lib/usermin/postgresql/images/users.gif @@ -7145,11 +7281,15 @@ lib/usermin/postgresql/log_parser.pl lib/usermin/postgresql/login.cgi lib/usermin/postgresql/module.info lib/usermin/postgresql/module.info.ca +lib/usermin/postgresql/module.info.ca.UTF-8 lib/usermin/postgresql/module.info.de +lib/usermin/postgresql/module.info.de.UTF-8 lib/usermin/postgresql/module.info.fr +lib/usermin/postgresql/module.info.fr.UTF-8 lib/usermin/postgresql/module.info.hu lib/usermin/postgresql/module.info.hu.UTF-8 lib/usermin/postgresql/module.info.nl +lib/usermin/postgresql/module.info.nl.UTF-8 lib/usermin/postgresql/module.info.no lib/usermin/postgresql/module.info.no.UTF-8 lib/usermin/postgresql/postgresql-lib.pl @@ -7659,7 +7799,6 @@ lib/usermin/proc/help/zone.ru_RU.html lib/usermin/proc/help/zone.ru_SU.html lib/usermin/proc/hpux-lib.pl lib/usermin/proc/images/icon.gif -lib/usermin/proc/images/smallicon.gif lib/usermin/proc/index.cgi lib/usermin/proc/index_cpu.cgi lib/usermin/proc/index_run.cgi @@ -7720,15 +7859,19 @@ lib/usermin/proc/macos-lib.pl lib/usermin/proc/medium.risk lib/usermin/proc/module.info lib/usermin/proc/module.info.ca +lib/usermin/proc/module.info.ca.UTF-8 lib/usermin/proc/module.info.cz lib/usermin/proc/module.info.cz.UTF-8 lib/usermin/proc/module.info.de +lib/usermin/proc/module.info.de.UTF-8 lib/usermin/proc/module.info.fr +lib/usermin/proc/module.info.fr.UTF-8 lib/usermin/proc/module.info.hu lib/usermin/proc/module.info.hu.UTF-8 lib/usermin/proc/module.info.ja_JP.UTF-8 lib/usermin/proc/module.info.ja_JP.euc lib/usermin/proc/module.info.nl +lib/usermin/proc/module.info.nl.UTF-8 lib/usermin/proc/module.info.no lib/usermin/proc/module.info.no.UTF-8 lib/usermin/proc/old-proc-lib.pl @@ -7751,7 +7894,6 @@ lib/usermin/procmail/images/before.gif lib/usermin/procmail/images/down.gif lib/usermin/procmail/images/gap.gif lib/usermin/procmail/images/icon.gif -lib/usermin/procmail/images/smallicon.gif lib/usermin/procmail/images/up.gif lib/usermin/procmail/index.cgi lib/usermin/procmail/lang/ca @@ -7788,14 +7930,19 @@ lib/usermin/procmail/manual_form.cgi lib/usermin/procmail/manual_save.cgi lib/usermin/procmail/module.info lib/usermin/procmail/module.info.ca +lib/usermin/procmail/module.info.ca.UTF-8 lib/usermin/procmail/module.info.cz lib/usermin/procmail/module.info.cz.UTF-8 lib/usermin/procmail/module.info.de +lib/usermin/procmail/module.info.de.UTF-8 lib/usermin/procmail/module.info.es +lib/usermin/procmail/module.info.es.UTF-8 lib/usermin/procmail/module.info.fr +lib/usermin/procmail/module.info.fr.UTF-8 lib/usermin/procmail/module.info.hu lib/usermin/procmail/module.info.hu.UTF-8 lib/usermin/procmail/module.info.nl +lib/usermin/procmail/module.info.nl.UTF-8 lib/usermin/procmail/module.info.no lib/usermin/procmail/module.info.no.UTF-8 lib/usermin/procmail/module.info.ru.UTF-8 @@ -7842,7 +7989,6 @@ lib/usermin/quota/config.info.no.UTF-8 lib/usermin/quota/freebsd-lib.pl lib/usermin/quota/hpux-lib.pl lib/usermin/quota/images/icon.gif -lib/usermin/quota/images/smallicon.gif lib/usermin/quota/index.cgi lib/usermin/quota/index.cgi.old lib/usermin/quota/lang/ar @@ -7897,14 +8043,18 @@ lib/usermin/quota/linux-lib.pl lib/usermin/quota/macos-lib.pl lib/usermin/quota/module.info lib/usermin/quota/module.info.ca +lib/usermin/quota/module.info.ca.UTF-8 lib/usermin/quota/module.info.cz lib/usermin/quota/module.info.cz.UTF-8 lib/usermin/quota/module.info.de +lib/usermin/quota/module.info.de.UTF-8 lib/usermin/quota/module.info.el lib/usermin/quota/module.info.fr +lib/usermin/quota/module.info.fr.UTF-8 lib/usermin/quota/module.info.hu lib/usermin/quota/module.info.hu.UTF-8 lib/usermin/quota/module.info.nl +lib/usermin/quota/module.info.nl.UTF-8 lib/usermin/quota/module.info.no lib/usermin/quota/module.info.no.UTF-8 lib/usermin/quota/module.info.pl @@ -7973,14 +8123,17 @@ lib/usermin/schedule/lang/ru_RU lib/usermin/schedule/lang/ru_RU.UTF-8 lib/usermin/schedule/module.info lib/usermin/schedule/module.info.ca +lib/usermin/schedule/module.info.ca.UTF-8 lib/usermin/schedule/module.info.cz lib/usermin/schedule/module.info.cz.UTF-8 lib/usermin/schedule/module.info.de +lib/usermin/schedule/module.info.de.UTF-8 lib/usermin/schedule/module.info.hu lib/usermin/schedule/module.info.hu.UTF-8 lib/usermin/schedule/module.info.no lib/usermin/schedule/module.info.no.UTF-8 lib/usermin/schedule/module.info.pt_BR +lib/usermin/schedule/module.info.pt_BR.UTF-8 lib/usermin/schedule/module.info.ru.UTF-8 lib/usermin/schedule/module.info.ru_RU lib/usermin/schedule/module.info.ru_RU.UTF-8 @@ -8001,10 +8154,11 @@ lib/usermin/setup.sh lib/usermin/shell/config lib/usermin/shell/config.info lib/usermin/shell/config.info.ar +lib/usermin/shell/config.info.ca +lib/usermin/shell/config.info.ca.UTF-8 lib/usermin/shell/defaultacl lib/usermin/shell/images/icon.gif lib/usermin/shell/images/shell.jpg -lib/usermin/shell/images/smallicon.gif lib/usermin/shell/index.cgi lib/usermin/shell/lang/ar lib/usermin/shell/lang/bg @@ -8051,11 +8205,14 @@ lib/usermin/shell/lang/zh_TW.Big5 lib/usermin/shell/lang/zh_TW.UTF-8 lib/usermin/shell/module.info lib/usermin/shell/module.info.ca +lib/usermin/shell/module.info.ca.UTF-8 lib/usermin/shell/module.info.cz lib/usermin/shell/module.info.cz.UTF-8 lib/usermin/shell/module.info.de +lib/usermin/shell/module.info.de.UTF-8 lib/usermin/shell/module.info.el lib/usermin/shell/module.info.fr +lib/usermin/shell/module.info.fr.UTF-8 lib/usermin/shell/module.info.hu lib/usermin/shell/module.info.hu.UTF-8 lib/usermin/shell/module.info.ja_JP.UTF-8 @@ -8063,6 +8220,7 @@ lib/usermin/shell/module.info.ja_JP.euc lib/usermin/shell/module.info.ko_KR.UTF-8 lib/usermin/shell/module.info.ko_KR.euc lib/usermin/shell/module.info.nl +lib/usermin/shell/module.info.nl.UTF-8 lib/usermin/shell/module.info.no lib/usermin/shell/module.info.no.UTF-8 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Tue Aug 20 10:53:57 2019 Return-Path: Delivered-To: svn-ports-branches@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 8F646CDCF0; Tue, 20 Aug 2019 10:53:57 +0000 (UTC) (envelope-from tobik@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 46CSMn3zchz4BwS; Tue, 20 Aug 2019 10:53:57 +0000 (UTC) (envelope-from tobik@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 696522030; Tue, 20 Aug 2019 10:53:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7KArvBh017641; Tue, 20 Aug 2019 10:53:57 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7KArux3017636; Tue, 20 Aug 2019 10:53:56 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201908201053.x7KArux3017636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 20 Aug 2019 10:53:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509419 - branches/2019Q3/databases/mantis X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2019Q3/databases/mantis X-SVN-Commit-Revision: 509419 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 10:53:57 -0000 Author: tobik Date: Tue Aug 20 10:53:56 2019 New Revision: 509419 URL: https://svnweb.freebsd.org/changeset/ports/509419 Log: MFH: r509418 databases/mantis: Update to 2.21.2 Changes: https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.21.2 Approved by: ports-secteam blanket Modified: branches/2019Q3/databases/mantis/Makefile branches/2019Q3/databases/mantis/distinfo branches/2019Q3/databases/mantis/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/databases/mantis/Makefile ============================================================================== --- branches/2019Q3/databases/mantis/Makefile Tue Aug 20 10:53:01 2019 (r509418) +++ branches/2019Q3/databases/mantis/Makefile Tue Aug 20 10:53:56 2019 (r509419) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mantis -PORTVERSION= 2.21.1 +PORTVERSION= 2.21.2 PORTEPOCH= 1 CATEGORIES= databases www MASTER_SITES= SF/mantisbt/mantis-stable/${PORTVERSION} Modified: branches/2019Q3/databases/mantis/distinfo ============================================================================== --- branches/2019Q3/databases/mantis/distinfo Tue Aug 20 10:53:01 2019 (r509418) +++ branches/2019Q3/databases/mantis/distinfo Tue Aug 20 10:53:56 2019 (r509419) @@ -1,6 +1,6 @@ -TIMESTAMP = 1560511812 -SHA256 (mantisbt-2.21.1.tar.gz) = 6208d0347897a59e75a7c3e79713799bed6874a202518f5bb8d4a5c02bdb0fa4 -SIZE (mantisbt-2.21.1.tar.gz) = 16763244 +TIMESTAMP = 1566297812 +SHA256 (mantisbt-2.21.2.tar.gz) = 378eaf4661750ce69ab97eb893875bb9a128126dac6e7b51be3154b5592df5e5 +SIZE (mantisbt-2.21.2.tar.gz) = 16189564 SHA256 (mantisbt-plugins-Activity-99cf873396ebc3fec431c6746dae1a604768f322_GH0.tar.gz) = 7c9a2d08d98854c40e53ec5ae90aa84ea3849843e5dec8fceefd4cbfba6d4c88 SIZE (mantisbt-plugins-Activity-99cf873396ebc3fec431c6746dae1a604768f322_GH0.tar.gz) = 42861 SHA256 (mantisbt-plugins-Announce-v2.4.1_GH0.tar.gz) = b87b233afc70d61b4b6c1fdc574cbbd3f2997efdfd4b5cfde1cfebfb6097dbc3 Modified: branches/2019Q3/databases/mantis/pkg-plist ============================================================================== --- branches/2019Q3/databases/mantis/pkg-plist Tue Aug 20 10:53:01 2019 (r509418) +++ branches/2019Q3/databases/mantis/pkg-plist Tue Aug 20 10:53:56 2019 (r509419) @@ -324,10 +324,10 @@ %%WWWDIR%%/doc/ace-theme-license.txt %%WWWDIR%%/doc/en-US/Admin_Guide/Admin_Guide.pdf %%WWWDIR%%/doc/en-US/Admin_Guide/Admin_Guide.txt +%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/brand.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/common.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/pdf.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/epub.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/print.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/images/1.png %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/images/1.svg @@ -433,121 +433,121 @@ %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/images/yellow.png %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/images/mantis_logo.png %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/index.html -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/common.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/pdf.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/print.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/1.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/1.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/10.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/10.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/11.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/11.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/12.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/12.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/13.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/13.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/14.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/14.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/15.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/15.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/16.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/16.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/17.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/17.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/18.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/18.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/19.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/19.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/2.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/2.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/20.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/20.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/21.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/21.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/22.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/22.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/23.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/23.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/24.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/24.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/25.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/25.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/26.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/26.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/27.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/27.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/28.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/28.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/29.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/29.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/3.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/3.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/30.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/30.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/31.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/31.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/32.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/32.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/33.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/33.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/34.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/34.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/35.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/35.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/36.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/36.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/37.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/37.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/38.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/38.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/39.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/39.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/4.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/4.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/40.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/40.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/5.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/5.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/6.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/6.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/7.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/7.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/8.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/8.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/9.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/9.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/dot.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/dot2.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/green.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/h1-bg.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/image_left.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/image_right.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/important.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/important.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/note.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/note.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/red.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/shine.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-go-back.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-go-forward.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-go-up.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-home.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/title_logo.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/title_logo.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/warning.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/warning.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/watermark-draft.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/yellow.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/images/mantis_logo.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/index.html +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/brand.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/common.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/default.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/epub.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/print.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/1.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/1.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/10.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/10.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/11.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/11.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/12.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/12.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/13.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/13.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/14.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/14.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/15.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/15.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/16.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/16.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/17.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/17.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/18.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/18.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/19.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/19.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/2.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/2.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/20.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/20.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/21.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/21.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/22.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/22.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/23.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/23.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/24.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/24.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/25.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/25.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/26.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/26.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/27.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/27.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/28.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/28.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/29.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/29.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/3.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/3.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/30.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/30.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/31.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/31.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/32.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/32.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/33.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/33.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/34.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/34.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/35.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/35.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/36.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/36.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/37.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/37.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/38.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/38.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/39.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/39.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/4.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/4.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/40.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/40.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/5.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/5.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/6.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/6.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/7.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/7.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/8.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/8.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/9.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/9.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/dot.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/dot2.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/green.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/h1-bg.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/image_left.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/image_right.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/important.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/important.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/note.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/note.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/red.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/shine.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-go-back.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-go-forward.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-go-up.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-home.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/title_logo.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/title_logo.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/warning.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/warning.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/watermark-draft.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/yellow.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/images/mantis_logo.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/index.html %%WWWDIR%%/doc/en-US/Developers_Guide/Developers_Guide.pdf %%WWWDIR%%/doc/en-US/Developers_Guide/Developers_Guide.txt +%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/brand.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/common.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/pdf.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/epub.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/print.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/images/1.png %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/images/1.svg @@ -654,116 +654,116 @@ %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/images/erd.png %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/images/mantis_logo.png %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/index.html -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/common.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/pdf.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/print.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/1.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/1.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/10.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/10.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/11.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/11.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/12.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/12.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/13.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/13.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/14.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/14.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/15.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/15.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/16.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/16.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/17.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/17.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/18.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/18.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/19.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/19.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/2.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/2.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/20.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/20.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/21.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/21.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/22.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/22.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/23.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/23.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/24.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/24.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/25.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/25.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/26.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/26.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/27.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/27.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/28.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/28.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/29.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/29.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/3.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/3.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/30.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/30.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/31.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/31.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/32.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/32.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/33.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/33.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/34.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/34.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/35.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/35.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/36.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/36.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/37.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/37.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/38.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/38.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/39.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/39.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/4.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/4.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/40.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/40.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/5.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/5.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/6.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/6.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/7.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/7.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/8.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/8.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/9.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/9.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/dot.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/dot2.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/green.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/h1-bg.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/image_left.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/image_right.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/important.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/important.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/note.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/note.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/red.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/shine.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-go-back.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-go-forward.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-go-up.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-home.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/title_logo.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/title_logo.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/warning.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/warning.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/watermark-draft.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/yellow.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/images/erd.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/images/mantis_logo.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/index.html +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/brand.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/common.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/default.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/epub.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/print.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/1.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/1.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/10.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/10.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/11.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/11.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/12.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/12.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/13.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/13.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/14.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/14.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/15.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/15.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/16.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/16.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/17.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/17.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/18.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/18.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/19.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/19.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/2.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/2.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/20.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/20.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/21.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/21.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/22.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/22.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/23.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/23.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/24.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/24.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/25.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/25.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/26.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/26.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/27.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/27.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/28.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/28.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/29.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/29.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/3.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/3.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/30.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/30.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/31.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/31.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/32.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/32.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/33.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/33.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/34.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/34.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/35.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/35.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/36.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/36.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/37.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/37.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/38.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/38.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/39.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/39.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/4.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/4.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/40.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/40.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/5.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/5.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/6.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/6.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/7.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/7.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/8.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/8.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/9.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/9.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/dot.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/dot2.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/green.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/h1-bg.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/image_left.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/image_right.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/important.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/important.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/note.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/note.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/red.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/shine.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-go-back.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-go-forward.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-go-up.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-home.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/title_logo.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/title_logo.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/warning.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/warning.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/watermark-draft.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/yellow.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/images/erd.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/images/mantis_logo.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/index.html %%WWWDIR%%/doc/modern_my_view.png %%WWWDIR%%/doc/modern_view_issue.png %%WWWDIR%%/doc/modern_view_issues.png From owner-svn-ports-branches@freebsd.org Tue Aug 20 14:17:57 2019 Return-Path: Delivered-To: svn-ports-branches@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 49365D32CA; Tue, 20 Aug 2019 14:17:57 +0000 (UTC) (envelope-from riggs@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 46CXv91BDHz4PQx; Tue, 20 Aug 2019 14:17:57 +0000 (UTC) (envelope-from riggs@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 0A8A14715; Tue, 20 Aug 2019 14:17:57 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7KEHuoJ036088; Tue, 20 Aug 2019 14:17:56 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7KEHuEs036086; Tue, 20 Aug 2019 14:17:56 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201908201417.x7KEHuEs036086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 20 Aug 2019 14:17:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509426 - branches/2019Q3/multimedia/vlc X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2019Q3/multimedia/vlc X-SVN-Commit-Revision: 509426 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 14:17:57 -0000 Author: riggs Date: Tue Aug 20 14:17:56 2019 New Revision: 509426 URL: https://svnweb.freebsd.org/changeset/ports/509426 Log: MFH: r509425 Update to upstream version 3.0.8 Details: - Bug- and security fixes, see upstream changelog: https://www.videolan.org/developers/vlc-branch/NEWS Security: CVE-2019-13602 CVE-2019-13962 CVE-2019-14437 CVE-2019-14438 CVE-2019-14498 CVE-2019-14533 CVE-2019-14534 CVE-2019-14535 CVE-2019-14776 CVE-2019-14777 CVE-2019-14778 CVE-2019-14970 Approved by: ports-secteam (riggs) Modified: branches/2019Q3/multimedia/vlc/Makefile branches/2019Q3/multimedia/vlc/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/multimedia/vlc/Makefile ============================================================================== --- branches/2019Q3/multimedia/vlc/Makefile Tue Aug 20 14:15:22 2019 (r509425) +++ branches/2019Q3/multimedia/vlc/Makefile Tue Aug 20 14:17:56 2019 (r509426) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= vlc -DISTVERSION= 3.0.7.1 -PORTREVISION= 1 +DISTVERSION= 3.0.8 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ Modified: branches/2019Q3/multimedia/vlc/distinfo ============================================================================== --- branches/2019Q3/multimedia/vlc/distinfo Tue Aug 20 14:15:22 2019 (r509425) +++ branches/2019Q3/multimedia/vlc/distinfo Tue Aug 20 14:17:56 2019 (r509426) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560608081 -SHA256 (vlc-3.0.7.1.tar.xz) = 0655804371096772f06104b75c21cde8a76e3b6c8a2fdadc97914f082c6264f5 -SIZE (vlc-3.0.7.1.tar.xz) = 26052372 +TIMESTAMP = 1566290066 +SHA256 (vlc-3.0.8.tar.xz) = e0149ef4a20a19b9ecd87309c2d27787ee3f47dfd47c6639644bc1f6fd95bdf6 +SIZE (vlc-3.0.8.tar.xz) = 26041520 From owner-svn-ports-branches@freebsd.org Tue Aug 20 15:46:32 2019 Return-Path: Delivered-To: svn-ports-branches@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 42787D4BCF; Tue, 20 Aug 2019 15:46:32 +0000 (UTC) (envelope-from riggs@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 46CZsN104Wz4TV5; Tue, 20 Aug 2019 15:46:32 +0000 (UTC) (envelope-from riggs@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 039FC577B; Tue, 20 Aug 2019 15:46:32 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7KFkVqQ089012; Tue, 20 Aug 2019 15:46:31 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7KFkVIk089010; Tue, 20 Aug 2019 15:46:31 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201908201546.x7KFkVIk089010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 20 Aug 2019 15:46:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509429 - branches/2019Q3/audio/fluidsynth X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2019Q3/audio/fluidsynth X-SVN-Commit-Revision: 509429 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Aug 2019 15:46:32 -0000 Author: riggs Date: Tue Aug 20 15:46:31 2019 New Revision: 509429 URL: https://svnweb.freebsd.org/changeset/ports/509429 Log: MFH: r509428 Update to upstream version 2.0.6 Details: - Bug fixes, see changelog: https://github.com/FluidSynth/fluidsynth/releases/tag/v2.0.6 Approved by: ports-secteam (riggs) Modified: branches/2019Q3/audio/fluidsynth/Makefile branches/2019Q3/audio/fluidsynth/distinfo branches/2019Q3/audio/fluidsynth/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/audio/fluidsynth/Makefile ============================================================================== --- branches/2019Q3/audio/fluidsynth/Makefile Tue Aug 20 15:37:57 2019 (r509428) +++ branches/2019Q3/audio/fluidsynth/Makefile Tue Aug 20 15:46:31 2019 (r509429) @@ -3,7 +3,7 @@ PORTNAME= fluidsynth DISTVERSIONPREFIX= v -DISTVERSION= 2.0.5 +DISTVERSION= 2.0.6 CATEGORIES= audio MAINTAINER= multimedia@FreeBSD.org Modified: branches/2019Q3/audio/fluidsynth/distinfo ============================================================================== --- branches/2019Q3/audio/fluidsynth/distinfo Tue Aug 20 15:37:57 2019 (r509428) +++ branches/2019Q3/audio/fluidsynth/distinfo Tue Aug 20 15:46:31 2019 (r509429) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555664296 -SHA256 (FluidSynth-fluidsynth-v2.0.5_GH0.tar.gz) = 69b244512883491e7e66b4d0151c61a0d6d867d4d2828c732563be0f78abcc51 -SIZE (FluidSynth-fluidsynth-v2.0.5_GH0.tar.gz) = 1314553 +TIMESTAMP = 1566311702 +SHA256 (FluidSynth-fluidsynth-v2.0.6_GH0.tar.gz) = e97e63c1045e102465f1aa848f9d712c5528c58685b8d40062e4aaf6af7edb75 +SIZE (FluidSynth-fluidsynth-v2.0.6_GH0.tar.gz) = 1315138 Modified: branches/2019Q3/audio/fluidsynth/pkg-plist ============================================================================== --- branches/2019Q3/audio/fluidsynth/pkg-plist Tue Aug 20 15:37:57 2019 (r509428) +++ branches/2019Q3/audio/fluidsynth/pkg-plist Tue Aug 20 15:46:31 2019 (r509429) @@ -19,6 +19,6 @@ include/fluidsynth/version.h include/fluidsynth/voice.h lib/libfluidsynth.so lib/libfluidsynth.so.2 -lib/libfluidsynth.so.2.1.2 +lib/libfluidsynth.so.2.1.3 libdata/pkgconfig/fluidsynth.pc man/man1/fluidsynth.1.gz From owner-svn-ports-branches@freebsd.org Wed Aug 21 07:14:18 2019 Return-Path: Delivered-To: svn-ports-branches@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 C9596BD585; Wed, 21 Aug 2019 07:14:18 +0000 (UTC) (envelope-from kai@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 46CzRt4x48z4bJf; Wed, 21 Aug 2019 07:14:18 +0000 (UTC) (envelope-from kai@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 8AFA41821A; Wed, 21 Aug 2019 07:14:18 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7L7EIoi067901; Wed, 21 Aug 2019 07:14:18 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7L7EIpF067898; Wed, 21 Aug 2019 07:14:18 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201908210714.x7L7EIpF067898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 21 Aug 2019 07:14:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509492 - branches/2019Q3/math/wxmaxima X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: branches/2019Q3/math/wxmaxima X-SVN-Commit-Revision: 509492 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2019 07:14:18 -0000 Author: kai Date: Wed Aug 21 07:14:17 2019 New Revision: 509492 URL: https://svnweb.freebsd.org/changeset/ports/509492 Log: MFH: r509307 math/wxmaxima: Update to 19.08.1 Changelogs since 19.07.0: https://github.com/wxMaxima-developers/wxmaxima/releases/tag/Version-19.08.1 https://github.com/wxMaxima-developers/wxmaxima/releases/tag/Version-19.08.0 PR: 239885 Submitted by: Lorenzo Salvadore (maintainer) Approved by: ports-secteam (joneum) Modified: branches/2019Q3/math/wxmaxima/Makefile branches/2019Q3/math/wxmaxima/distinfo branches/2019Q3/math/wxmaxima/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/math/wxmaxima/Makefile ============================================================================== --- branches/2019Q3/math/wxmaxima/Makefile Wed Aug 21 05:54:36 2019 (r509491) +++ branches/2019Q3/math/wxmaxima/Makefile Wed Aug 21 07:14:17 2019 (r509492) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wxmaxima -PORTVERSION= 19.07.0 +PORTVERSION= 19.08.1 DISTVERSIONPREFIX= Version- CATEGORIES= math Modified: branches/2019Q3/math/wxmaxima/distinfo ============================================================================== --- branches/2019Q3/math/wxmaxima/distinfo Wed Aug 21 05:54:36 2019 (r509491) +++ branches/2019Q3/math/wxmaxima/distinfo Wed Aug 21 07:14:17 2019 (r509492) @@ -1,3 +1,3 @@ -TIMESTAMP = 1562322809 -SHA256 (wxMaxima-Developers-wxmaxima-Version-19.07.0_GH0.tar.gz) = 16237f22cf76ecb9159e536bbb121e89ac5ad043843a5f32aaac74f0b409c658 -SIZE (wxMaxima-Developers-wxmaxima-Version-19.07.0_GH0.tar.gz) = 15607972 +TIMESTAMP = 1566144551 +SHA256 (wxMaxima-Developers-wxmaxima-Version-19.08.1_GH0.tar.gz) = 9e8dce440f085d795e9829708e575df15f6bcf124940669d6786494ef71b54c3 +SIZE (wxMaxima-Developers-wxmaxima-Version-19.08.1_GH0.tar.gz) = 15153254 Modified: branches/2019Q3/math/wxmaxima/pkg-plist ============================================================================== --- branches/2019Q3/math/wxmaxima/pkg-plist Wed Aug 21 05:54:36 2019 (r509491) +++ branches/2019Q3/math/wxmaxima/pkg-plist Wed Aug 21 07:14:17 2019 (r509492) @@ -61,12 +61,41 @@ share/wxMaxima/all-celltypes.wxmx share/wxMaxima/b.png share/wxMaxima/c.png share/wxMaxima/d.png -share/wxMaxima/foreign-characters.wxmx +share/wxMaxima/foreign-characters.wxm share/wxMaxima/io.github.wxmaxima_developers.wxMaxima.png share/wxMaxima/io.github.wxmaxima_developers.wxMaxima.svg -share/wxMaxima/misc-problematic-things.wxmx -share/wxMaxima/other-features.wxmx -share/wxMaxima/testbench_all_celltypes.wxmx -share/wxMaxima/testbench_automatic.wxmx +share/wxMaxima/other-features.wxm +share/wxMaxima/quit.mac +share/wxMaxima/testbench_all_celltypes.wxm +share/wxMaxima/testbench_automatic_absCells.wxm +share/wxMaxima/testbench_automatic_atCells.wxm +share/wxMaxima/testbench_automatic_boxes.wxm +share/wxMaxima/testbench_automatic_conjugateCells.wxm +share/wxMaxima/testbench_automatic_diffCells.wxm +share/wxMaxima/testbench_automatic_exptCells.wxm +share/wxMaxima/testbench_automatic_formerCrashes.wxm +share/wxMaxima/testbench_automatic_fracCells.wxm +share/wxMaxima/testbench_automatic_functionCells.wxm +share/wxMaxima/testbench_automatic_imageCells.wxm +share/wxMaxima/testbench_automatic_intCells.wxm +share/wxMaxima/testbench_automatic_limitCells.wxm +share/wxMaxima/testbench_automatic_lisp.wxm +share/wxMaxima/testbench_automatic_matrixCells.wxm +share/wxMaxima/testbench_automatic_multiplication.wxm +share/wxMaxima/testbench_automatic_nonsenseConstructs.wxm +share/wxMaxima/testbench_automatic_parenthesisCells.wxm +share/wxMaxima/testbench_automatic_printf_continuationLines.wxm +share/wxMaxima/testbench_automatic_printf_equations.wxm +share/wxMaxima/testbench_automatic_printf_simple.wxm +share/wxMaxima/testbench_automatic_rememberingAnswers.wxm +share/wxMaxima/testbench_automatic_simpleInput.wxm +share/wxMaxima/testbench_automatic_slideshowCells.wxm +share/wxMaxima/testbench_automatic_sqrtCells.wxm +share/wxMaxima/testbench_automatic_subCells.wxm +share/wxMaxima/testbench_automatic_subsupCells.wxm +share/wxMaxima/testbench_automatic_sumCells.wxm +share/wxMaxima/testbench_automatic_unicode.wxm +share/wxMaxima/testbench_automatic_weirdLabels.wxm +share/wxMaxima/testbench_automatic_xmlQuote.wxm share/wxMaxima/testbench_simple.wxmx -share/wxMaxima/textcells.wxmx +share/wxMaxima/textcells.wxm From owner-svn-ports-branches@freebsd.org Wed Aug 21 07:19:03 2019 Return-Path: Delivered-To: svn-ports-branches@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 5F79FBD650; Wed, 21 Aug 2019 07:19:03 +0000 (UTC) (envelope-from girgen@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 46CzYM2fqKz4bQ7; Wed, 21 Aug 2019 07:19:03 +0000 (UTC) (envelope-from girgen@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 2423E18222; Wed, 21 Aug 2019 07:19:03 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7L7J3Tv068817; Wed, 21 Aug 2019 07:19:03 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7L7IvAp068780; Wed, 21 Aug 2019 07:18:57 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201908210718.x7L7IvAp068780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Wed, 21 Aug 2019 07:18:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509493 - in branches/2019Q3: Mk/Uses databases/postgresql10-docs databases/postgresql10-plperl databases/postgresql10-plpython databases/postgresql10-pltcl databases/postgresql10-serve... X-SVN-Group: ports-branches X-SVN-Commit-Author: girgen X-SVN-Commit-Paths: in branches/2019Q3: Mk/Uses databases/postgresql10-docs databases/postgresql10-plperl databases/postgresql10-plpython databases/postgresql10-pltcl databases/postgresql10-server databases/postgresql11-... X-SVN-Commit-Revision: 509493 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2019 07:19:03 -0000 Author: girgen Date: Wed Aug 21 07:18:56 2019 New Revision: 509493 URL: https://svnweb.freebsd.org/changeset/ports/509493 Log: MFH: r508390 iThe PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 11.5, 10.10, 9.6.15, 9.5.19, and 9.4.24, as well as the third beta of PostgreSQL 12. This release fixes two security issues in the PostgreSQL server, two security issues found in one of the PostgreSQL Windows installers, and over 40 bugs reported since the previous release. Users should install these updates as soon as possible. A Note on the PostgreSQL 12 Beta ================================ In the spirit of the open source PostgreSQL community, we strongly encourage you to test the new features of PostgreSQL 12 in your database systems to help us eliminate any bugs or other issues that may exist. While we do not advise you to run PostgreSQL 12 Beta 3 in your production environments, we encourage you to find ways to run your typical application workloads against this beta release. Your testing and feedback will help the community ensure that the PostgreSQL 12 release upholds our standards of providing a stable, reliable release of the world's most advanced open source relational database. Security Issues =============== Two security vulnerabilities have been closed by this release: * CVE-2019-10208: `TYPE` in `pg_temp` executes arbitrary SQL during `SECURITY DEFINER` execution Versions Affected: 9.4 - 11 Given a suitable `SECURITY DEFINER` function, an attacker can execute arbitrary SQL under the identity of the function owner. An attack requires `EXECUTE` permission on the function, which must itself contain a function call having inexact argument type match. For example, `length('foo'::varchar)` and `length('foo')` are inexact, while `length('foo'::text)` is exact. As part of exploiting this vulnerability, the attacker uses `CREATE DOMAIN` to create a type in a `pg_temp` schema. The attack pattern and fix are similar to that for CVE-2007-2138. Writing `SECURITY DEFINER` functions continues to require following the considerations noted in the documentation: https://www.postgresql.org/docs/devel/sql-createfunction.html#SQL-CREATEFUNCTION-SECURITY The PostgreSQL project thanks Tom Lane for reporting this problem. * CVE-2019-10209: Memory disclosure in cross-type comparison for hashed subplan Versions Affected: 11 In a database containing hypothetical, user-defined hash equality operators, an attacker could read arbitrary bytes of server memory. For an attack to become possible, a superuser would need to create unusual operators. It is possible for operators not purpose-crafted for attack to have the properties that enable an attack, but we are not aware of specific examples. The PostgreSQL project thanks Andreas Seltenreich for reporting this problem. Approved by: ports-secteam@ Added: branches/2019Q3/databases/postgresql12-client/ - copied from r508390, head/databases/postgresql12-client/ branches/2019Q3/databases/postgresql12-contrib/ - copied from r508390, head/databases/postgresql12-contrib/ branches/2019Q3/databases/postgresql12-docs/ - copied from r508390, head/databases/postgresql12-docs/ branches/2019Q3/databases/postgresql12-pgtcl/ - copied from r508390, head/databases/postgresql12-pgtcl/ branches/2019Q3/databases/postgresql12-plperl/ - copied from r508390, head/databases/postgresql12-plperl/ branches/2019Q3/databases/postgresql12-plpython/ - copied from r508390, head/databases/postgresql12-plpython/ branches/2019Q3/databases/postgresql12-pltcl/ - copied from r508390, head/databases/postgresql12-pltcl/ branches/2019Q3/databases/postgresql12-server/ - copied from r508390, head/databases/postgresql12-server/ Modified: branches/2019Q3/Mk/Uses/pgsql.mk branches/2019Q3/databases/postgresql10-docs/Makefile branches/2019Q3/databases/postgresql10-plperl/Makefile branches/2019Q3/databases/postgresql10-plpython/Makefile branches/2019Q3/databases/postgresql10-pltcl/Makefile branches/2019Q3/databases/postgresql10-server/Makefile branches/2019Q3/databases/postgresql10-server/distinfo branches/2019Q3/databases/postgresql11-docs/Makefile branches/2019Q3/databases/postgresql11-pgtcl/Makefile branches/2019Q3/databases/postgresql11-plperl/Makefile branches/2019Q3/databases/postgresql11-plpython/Makefile branches/2019Q3/databases/postgresql11-pltcl/Makefile branches/2019Q3/databases/postgresql11-server/distinfo branches/2019Q3/databases/postgresql94-docs/Makefile branches/2019Q3/databases/postgresql94-plperl/Makefile branches/2019Q3/databases/postgresql94-plpython/Makefile branches/2019Q3/databases/postgresql94-pltcl/Makefile branches/2019Q3/databases/postgresql94-server/Makefile branches/2019Q3/databases/postgresql94-server/distinfo branches/2019Q3/databases/postgresql95-docs/Makefile branches/2019Q3/databases/postgresql95-plperl/Makefile branches/2019Q3/databases/postgresql95-plpython/Makefile branches/2019Q3/databases/postgresql95-pltcl/Makefile branches/2019Q3/databases/postgresql95-server/Makefile branches/2019Q3/databases/postgresql95-server/distinfo branches/2019Q3/databases/postgresql96-docs/Makefile branches/2019Q3/databases/postgresql96-plperl/Makefile branches/2019Q3/databases/postgresql96-plpython/Makefile branches/2019Q3/databases/postgresql96-pltcl/Makefile branches/2019Q3/databases/postgresql96-server/Makefile branches/2019Q3/databases/postgresql96-server/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/Mk/Uses/pgsql.mk ============================================================================== --- branches/2019Q3/Mk/Uses/pgsql.mk Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/Mk/Uses/pgsql.mk Wed Aug 21 07:18:56 2019 (r509493) @@ -41,7 +41,7 @@ _INCLUDE_USES_PGSQL_MK= yes # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. -VALID_PGSQL_VER= 9.4 9.5 9.6 10 11 +VALID_PGSQL_VER= 9.4 9.5 9.6 10 11 12 # Override non-default LIBVERS like this: #PGSQL99_LIBVER=6 Modified: branches/2019Q3/databases/postgresql10-docs/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql10-docs/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql10-docs/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER=10 -.include "${.CURDIR}/../postgresql96-docs/Makefile" +.include "${.CURDIR}/../postgresql12-docs/Makefile" Modified: branches/2019Q3/databases/postgresql10-plperl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql10-plperl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql10-plperl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 10 -.include "${.CURDIR}/../postgresql95-plperl/Makefile" +.include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: branches/2019Q3/databases/postgresql10-plpython/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql10-plpython/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql10-plpython/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -2,4 +2,4 @@ WANT_PGSQL_VER= 10 -.include "${.CURDIR}/../postgresql95-plpython/Makefile" +.include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: branches/2019Q3/databases/postgresql10-pltcl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql10-pltcl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql10-pltcl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 10 -.include "${.CURDIR}/../postgresql96-pltcl/Makefile" +.include "${.CURDIR}/../postgresql12-pltcl/Makefile" Modified: branches/2019Q3/databases/postgresql10-server/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql10-server/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql10-server/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 10.9 +DISTVERSION?= 10.10 # PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # not their own. Probably best to keep it at ?=0 when reset here too. PORTREVISION?= 0 @@ -24,4 +24,4 @@ PG_USER?= postgres PG_GROUP?= postgres PG_UID?= 770 -.include "${.CURDIR}/../postgresql11-server/Makefile" +.include "${.CURDIR}/../postgresql12-server/Makefile" Modified: branches/2019Q3/databases/postgresql10-server/distinfo ============================================================================== --- branches/2019Q3/databases/postgresql10-server/distinfo Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql10-server/distinfo Wed Aug 21 07:18:56 2019 (r509493) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561409430 -SHA256 (postgresql/postgresql-10.9.tar.bz2) = 958b317fb007e94f3bef7e2a6641875db8f7f9d73db9f283324f3d6e8f5b0f54 -SIZE (postgresql/postgresql-10.9.tar.bz2) = 18981395 +TIMESTAMP = 1565174246 +SHA256 (postgresql/postgresql-10.10.tar.bz2) = ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253 +SIZE (postgresql/postgresql-10.10.tar.bz2) = 19012049 Modified: branches/2019Q3/databases/postgresql11-docs/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql11-docs/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql11-docs/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER=11 -.include "${.CURDIR}/../postgresql96-docs/Makefile" +.include "${.CURDIR}/../postgresql12-docs/Makefile" Modified: branches/2019Q3/databases/postgresql11-pgtcl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql11-pgtcl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql11-pgtcl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,5 +1,6 @@ # $FreeBSD$ +PORTREVISION= 0 PKGNAMESUFFIX= -postgresql11 CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[0123456]-[0-9]* pgtcl-postgresql10-* Modified: branches/2019Q3/databases/postgresql11-plperl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql11-plperl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql11-plperl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 11 -.include "${.CURDIR}/../postgresql95-plperl/Makefile" +.include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: branches/2019Q3/databases/postgresql11-plpython/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql11-plpython/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql11-plpython/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -2,4 +2,4 @@ WANT_PGSQL_VER= 11 -.include "${.CURDIR}/../postgresql95-plpython/Makefile" +.include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: branches/2019Q3/databases/postgresql11-pltcl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql11-pltcl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql11-pltcl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 11 -.include "${.CURDIR}/../postgresql96-pltcl/Makefile" +.include "${.CURDIR}/../postgresql12-pltcl/Makefile" Modified: branches/2019Q3/databases/postgresql11-server/distinfo ============================================================================== --- branches/2019Q3/databases/postgresql11-server/distinfo Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql11-server/distinfo Wed Aug 21 07:18:56 2019 (r509493) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561409449 -SHA256 (postgresql/postgresql-11.4.tar.bz2) = 02802ddffd1590805beddd1e464dd28a46a41a5f1e1df04bab4f46663195cc8b -SIZE (postgresql/postgresql-11.4.tar.bz2) = 19759635 +TIMESTAMP = 1565174257 +SHA256 (postgresql/postgresql-11.5.tar.bz2) = 7fdf23060bfc715144cbf2696cf05b0fa284ad3eb21f0c378591c6bca99ad180 +SIZE (postgresql/postgresql-11.5.tar.bz2) = 19773087 Modified: branches/2019Q3/databases/postgresql94-docs/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql94-docs/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql94-docs/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER=9.4 -.include "${.CURDIR}/../postgresql96-docs/Makefile" +.include "${.CURDIR}/../postgresql12-docs/Makefile" Modified: branches/2019Q3/databases/postgresql94-plperl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql94-plperl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql94-plperl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 9.4 -.include "${.CURDIR}/../postgresql95-plperl/Makefile" +.include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: branches/2019Q3/databases/postgresql94-plpython/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql94-plpython/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql94-plpython/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -2,4 +2,4 @@ WANT_PGSQL_VER= 9.4 -.include "${.CURDIR}/../postgresql95-plpython/Makefile" +.include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: branches/2019Q3/databases/postgresql94-pltcl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql94-pltcl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql94-pltcl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 9.4 -.include "${.CURDIR}/../postgresql96-pltcl/Makefile" +.include "${.CURDIR}/../postgresql12-pltcl/Makefile" Modified: branches/2019Q3/databases/postgresql94-server/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql94-server/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql94-server/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.4.23 +DISTVERSION?= 9.4.24 # PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # not their own. Probably best to keep it at ?=0 when reset here too. PORTREVISION?= 0 @@ -22,4 +22,4 @@ PG_USER?= pgsql PG_GROUP?= pgsql PG_UID?= 70 -.include "${.CURDIR}/../postgresql11-server/Makefile" +.include "${.CURDIR}/../postgresql12-server/Makefile" Modified: branches/2019Q3/databases/postgresql94-server/distinfo ============================================================================== --- branches/2019Q3/databases/postgresql94-server/distinfo Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql94-server/distinfo Wed Aug 21 07:18:56 2019 (r509493) @@ -1,5 +1,5 @@ -TIMESTAMP = 1561409461 -SHA256 (postgresql/postgresql-9.4.23.tar.bz2) = 0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b -SIZE (postgresql/postgresql-9.4.23.tar.bz2) = 16848808 +TIMESTAMP = 1565174268 +SHA256 (postgresql/postgresql-9.4.24.tar.bz2) = 52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429 +SIZE (postgresql/postgresql-9.4.24.tar.bz2) = 16842941 SHA256 (postgresql/pg-949-icu-2016-10-02.diff.gz) = 34612e685a79874db04bc6b66c700bfc6412042840c532eef0da7832d1f70d43 SIZE (postgresql/pg-949-icu-2016-10-02.diff.gz) = 5289 Modified: branches/2019Q3/databases/postgresql95-docs/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql95-docs/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql95-docs/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER=9.5 -.include "${.CURDIR}/../postgresql96-docs/Makefile" +.include "${.CURDIR}/../postgresql12-docs/Makefile" Modified: branches/2019Q3/databases/postgresql95-plperl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql95-plperl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql95-plperl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,27 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ -PORTNAME= postgresql -# Keep the ?=, this port is used as master by the other plperl. -PORTREVISION?= 0 -CATEGORIES= databases perl5 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} +WANT_PGSQL_VER= 9.5 -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Write SQL functions for PostgreSQL using Perl5 - -RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?=9.5 - -USES+= perl5 readline -CONFIGURE_ARGS= --with-perl - -BUILD_DIRS= src/backend src/pl/plperl -INSTALL_DIRS= src/pl/plperl -SLAVE_ONLY= yes -COMPONENT= -plperl - -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: branches/2019Q3/databases/postgresql95-plpython/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql95-plpython/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql95-plpython/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,27 +1,5 @@ # $FreeBSD$ -PORTNAME= postgresql -CATEGORIES= databases python -# Keep the ?=, it is used as master by the other plpython ports. -PORTREVISION?= 0 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} +WANT_PGSQL_VER= 9.5 -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Module for using Python to write SQL functions - -USES+= pgsql:${WANT_PGSQL_VER} ${WANT_PYTHON_USE} -WANT_PGSQL= server - -MASTERDIR= ${.CURDIR}/../postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?= 9.5 -WANT_PYTHON_USE?= python - -CONFIGURE_ARGS= --with-python -COMPONENT= -plpython - -BUILD_DIRS= src/backend src/pl/plpython -INSTALL_DIRS= src/pl/plpython -SLAVE_ONLY= yes - -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: branches/2019Q3/databases/postgresql95-pltcl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql95-pltcl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql95-pltcl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 9.5 -.include "${.CURDIR}/../postgresql96-pltcl/Makefile" +.include "${.CURDIR}/../postgresql12-pltcl/Makefile" Modified: branches/2019Q3/databases/postgresql95-server/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql95-server/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql95-server/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.5.18 +DISTVERSION?= 9.5.19 # PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # not their own. Probably best to keep it at ?=0 when reset here too. PORTREVISION?= 0 @@ -25,4 +25,4 @@ PG_USER?= pgsql PG_GROUP?= pgsql PG_UID?= 70 -.include "${.CURDIR}/../postgresql11-server/Makefile" +.include "${.CURDIR}/../postgresql12-server/Makefile" Modified: branches/2019Q3/databases/postgresql95-server/distinfo ============================================================================== --- branches/2019Q3/databases/postgresql95-server/distinfo Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql95-server/distinfo Wed Aug 21 07:18:56 2019 (r509493) @@ -1,5 +1,5 @@ -TIMESTAMP = 1561409472 -SHA256 (postgresql/postgresql-9.5.18.tar.bz2) = dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd -SIZE (postgresql/postgresql-9.5.18.tar.bz2) = 17570161 +TIMESTAMP = 1565174279 +SHA256 (postgresql/postgresql-9.5.19.tar.bz2) = 960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3 +SIZE (postgresql/postgresql-9.5.19.tar.bz2) = 17571998 SHA256 (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5fa083ec38087d6a0961642208f012e902221270708b919b92e9eedaa755e365 SIZE (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5952 Modified: branches/2019Q3/databases/postgresql96-docs/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql96-docs/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql96-docs/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,46 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ -PORTNAME= postgresql -PORTREVISION= 0 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S,.,,}-docs +WANT_PGSQL_VER=9.6 -MAINTAINER= pgsql@FreeBSD.org -COMMENT= The PostgreSQL documentation set - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server -WANT_PGSQL_VER?=9.6 - -DISTV= ${DISTVERSION:R} - -SLAVE_ONLY= YES -COMPONENT= -docs - -PGDOCSREL?= ${DOCSDIR_REL}/release-${PGSQL_VER} -PGDOCSDIR?= ${PREFIX}/${PGDOCSREL} - -sgmldir= ${LOCALBASE}/share/sgml -dbdir= ${sgmldir}/docbook - -BUILD_DEPENDS+= onsgmls:textproc/opensp \ - openjade:textproc/openjade \ - ${sgmldir}/iso8879/catalog:textproc/iso8879 \ - ${dbdir}/dsssl/modular/catalog:textproc/dsssl-docbook-modular \ - docbook-sgml>0:textproc/docbook-sgml -CONFIGURE_ARGS= --without-readline -NO_ARCH= yes - -do-build: - ${MAKE_CMD} -C ${WRKSRC} html - -do-install: - @ ${MKDIR} ${STAGEDIR}${PGDOCSDIR} - ( cd ${WRKSRC}/doc/src/sgml/html && \ - ${COPYTREE_SHARE} . ${STAGEDIR}${PGDOCSDIR} ) - -post-install: - @(cd ${STAGEDIR}${PREFIX} && ${FIND} ${PGDOCSREL} -type f) >> ${TMPPLIST} - @(cd ${STAGEDIR}${PREFIX} && ${FIND} ${PGDOCSREL} -type d) | ${SORT} -r | \ - ${SED} 's,.*,@unexec rmdir %D/& 2>/dev/null || true,' >>${TMPPLIST} - -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql12-docs/Makefile" Modified: branches/2019Q3/databases/postgresql96-plperl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql96-plperl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql96-plperl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -3,4 +3,4 @@ WANT_PGSQL_VER= 9.6 -.include "${.CURDIR}/../postgresql95-plperl/Makefile" +.include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: branches/2019Q3/databases/postgresql96-plpython/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql96-plpython/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql96-plpython/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -2,4 +2,4 @@ WANT_PGSQL_VER= 9.6 -.include "${.CURDIR}/../postgresql95-plpython/Makefile" +.include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: branches/2019Q3/databases/postgresql96-pltcl/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql96-pltcl/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql96-pltcl/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,32 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ -PORTNAME= postgresql -# Keep the ?=, it is used by the other pltcl ports. -PORTREVISION?= 0 -CATEGORIES= databases tcl -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} +WANT_PGSQL_VER= 9.6 -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Module for using Tcl to write SQL functions - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?=9.6 - -USES+= tcl pgsql:${WANT_PGSQL_VER} -WANT_PGSQL= server - -CONFIGURE_ARGS= --with-tcl --without-tk \ - --with-tclconfig="${TCL_LIBDIR}" \ - --with-includes="${TCL_INCLUDEDIR}" - -CONFIGURE_ENV+= TCLSH="${TCLSH}" -MAKE_ENV+= TCL_INCDIR="${TCL_INCLUDEDIR}" - -BUILD_DIRS= src/backend src/pl/tcl -INSTALL_DIRS= src/pl/tcl -SLAVE_ONLY= yes -COMPONENT= -pltcl - -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql12-pltcl/Makefile" Modified: branches/2019Q3/databases/postgresql96-server/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql96-server/Makefile Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql96-server/Makefile Wed Aug 21 07:18:56 2019 (r509493) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.6.14 +DISTVERSION?= 9.6.15 # PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # not their own. Probably best to keep it at ?=0 when reset here too. PORTREVISION?= 0 @@ -19,11 +19,7 @@ INSTALL_DIRS?= src/common src/timezone src/backend \ src/bin/pg_test_fsync src/bin/pg_test_timing \ src/bin/pg_xlogdump src/bin/pg_upgrade -PG_USER?= postgres -PG_GROUP?= postgres -PG_UID?= 770 - ICU_PATCHFILE= pg-96b4-icu-2016-10-02.diff.gz OPTIONS_DEFAULT+=ICU -.include "${.CURDIR}/../postgresql11-server/Makefile" +.include "${.CURDIR}/../postgresql12-server/Makefile" Modified: branches/2019Q3/databases/postgresql96-server/distinfo ============================================================================== --- branches/2019Q3/databases/postgresql96-server/distinfo Wed Aug 21 07:14:17 2019 (r509492) +++ branches/2019Q3/databases/postgresql96-server/distinfo Wed Aug 21 07:18:56 2019 (r509493) @@ -1,5 +1,5 @@ -TIMESTAMP = 1561409286 -SHA256 (postgresql/postgresql-9.6.14.tar.bz2) = 3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22 -SIZE (postgresql/postgresql-9.6.14.tar.bz2) = 18787744 +TIMESTAMP = 1565174281 +SHA256 (postgresql/postgresql-9.6.15.tar.bz2) = 3cd9fe9af247167f863030842c1a57f58bdf3e5d50a94997d34a802b6032170a +SIZE (postgresql/postgresql-9.6.15.tar.bz2) = 18799121 SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998 From owner-svn-ports-branches@freebsd.org Wed Aug 21 07:31:42 2019 Return-Path: Delivered-To: svn-ports-branches@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 67BD1BDAB2; Wed, 21 Aug 2019 07:31:42 +0000 (UTC) (envelope-from gerald@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 46Czqy29vmz4c2d; Wed, 21 Aug 2019 07:31:42 +0000 (UTC) (envelope-from gerald@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 2BECF18451; Wed, 21 Aug 2019 07:31:42 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7L7VgTU077552; Wed, 21 Aug 2019 07:31:42 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7L7VgVV077551; Wed, 21 Aug 2019 07:31:42 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201908210731.x7L7VgVV077551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Wed, 21 Aug 2019 07:31:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509494 - branches/2019Q3/emulators/wine X-SVN-Group: ports-branches X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: branches/2019Q3/emulators/wine X-SVN-Commit-Revision: 509494 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2019 07:31:42 -0000 Author: gerald Date: Wed Aug 21 07:31:41 2019 New Revision: 509494 URL: https://svnweb.freebsd.org/changeset/ports/509494 Log: MFH: r508983 Backport r506725 | gerald | 2019-07-16 from wine-devel: Fix packaging list (pkg-plist) when the MPG123 option is set. PR: 239202 Submitted by: arrowd, avos Approved by: ports-secteam (joneum) Modified: branches/2019Q3/emulators/wine/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/emulators/wine/pkg-plist ============================================================================== --- branches/2019Q3/emulators/wine/pkg-plist Wed Aug 21 07:18:56 2019 (r509493) +++ branches/2019Q3/emulators/wine/pkg-plist Wed Aug 21 07:31:41 2019 (r509494) @@ -1925,6 +1925,7 @@ lib/wine/fakedlls/mofcomp.exe %%WINE32%%lib/wine/fakedlls/monodebg.vxd lib/wine/fakedlls/mountmgr.sys %%WINE32%%lib/wine/fakedlls/mouse.drv16 +%%MPG123%%lib/wine/fakedlls/mp3dmod.dll lib/wine/fakedlls/mpr.dll lib/wine/fakedlls/mprapi.dll %%WINE32%%lib/wine/fakedlls/msacm.dll16 @@ -2592,6 +2593,7 @@ lib/wine/mofcomp.exe.so %%WINE32%%lib/wine/monodebg.vxd.so lib/wine/mountmgr.sys.so %%WINE32%%lib/wine/mouse.drv16.so +%%MPG123%%lib/wine/mp3dmod.dll.so lib/wine/mpr.dll.so lib/wine/mprapi.dll.so %%WINE32%%lib/wine/msacm.dll16.so From owner-svn-ports-branches@freebsd.org Wed Aug 21 07:47:45 2019 Return-Path: Delivered-To: svn-ports-branches@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 C9DABBE100; Wed, 21 Aug 2019 07:47:45 +0000 (UTC) (envelope-from kai@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 46D0BT5gwLz4cg0; Wed, 21 Aug 2019 07:47:45 +0000 (UTC) (envelope-from kai@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 A60F718785; Wed, 21 Aug 2019 07:47:45 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7L7ljgW086761; Wed, 21 Aug 2019 07:47:45 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7L7liqr086752; Wed, 21 Aug 2019 07:47:44 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201908210747.x7L7liqr086752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 21 Aug 2019 07:47:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509495 - in branches/2019Q3/net-mgmt/cacti: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in branches/2019Q3/net-mgmt/cacti: . files X-SVN-Commit-Revision: 509495 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2019 07:47:45 -0000 Author: kai Date: Wed Aug 21 07:47:44 2019 New Revision: 509495 URL: https://svnweb.freebsd.org/changeset/ports/509495 Log: MFH: r509310 net-mgmt/cacti: Update to 1.2.5 * Remove the SNMPBIN option that was introduced with r490477 and which is no longer required since the 1.2.4 release. It was used as a workaround to override the internal PHP SNMP calls which led to graphs that didn't update within cacti. The PHP SNMP extension can now be enabled/disabled by a re-purposed variable in the configuration file. While I'm here: * Remove superfluous "+=" from PLIST_SUB and SUB_LIST because there are no previous definitions of those variables. * Remove CONFLICTS_INSTALL as net-mgmt/cacti88 is no longer present in the Ports tree since the end of 2018. Changes since 1.2.3: https://github.com/Cacti/cacti/blob/release/1.2.5/CHANGELOG * Merge the UCL convertions from r508903 while I'm here. PR: 238434 Submitted by: Michael Muenz Reported by: Matthew Horan Approved by: maintainer timeout (2+ months) Approved by: ports-secteam (joneum) Deleted: branches/2019Q3/net-mgmt/cacti/files/extra-patch-lib_snmp.php Modified: branches/2019Q3/net-mgmt/cacti/Makefile branches/2019Q3/net-mgmt/cacti/distinfo branches/2019Q3/net-mgmt/cacti/files/patch-install__functions.php branches/2019Q3/net-mgmt/cacti/files/patch-lib_installer.php branches/2019Q3/net-mgmt/cacti/files/pkg-message.in branches/2019Q3/net-mgmt/cacti/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net-mgmt/cacti/Makefile ============================================================================== --- branches/2019Q3/net-mgmt/cacti/Makefile Wed Aug 21 07:31:41 2019 (r509494) +++ branches/2019Q3/net-mgmt/cacti/Makefile Wed Aug 21 07:47:44 2019 (r509495) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cacti -PORTVERSION= 1.2.3 +PORTVERSION= 1.2.5 CATEGORIES= net-mgmt www MASTER_SITES= http://www.cacti.net/downloads/ \ ftp://ftpmirror.uk/freebsd-ports/cacti/ @@ -40,17 +40,10 @@ CACTIGROUP?= cacti USERS?= ${CACTIUSER} GROUPS?= ${CACTIGROUP} -PLIST_SUB+= CACTIDIR=${CACTIDIR} CACTIUSER=${CACTIUSER} \ +PLIST_SUB= CACTIDIR=${CACTIDIR} CACTIUSER=${CACTIUSER} \ CACTIGROUP=${CACTIGROUP} -SUB_LIST+= CACTIDIR=${CACTIDIR} CACTIUSER=${CACTIUSER} \ +SUB_LIST= CACTIDIR=${CACTIDIR} CACTIUSER=${CACTIUSER} \ CACTIGROUP=${CACTIGROUP} - -CONFLICTS_INSTALL= cacti88 - -OPTIONS_DEFINE= SNMPBIN -OPTIONS_DEFAULT= SNMPBIN -SNMPBIN_DESC= Force use of SNMP binary instead of phpXX-snmp functions -SNMPBIN_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-lib_snmp.php post-patch: @${FIND} ${WRKSRC} -name \*.orig -delete; \ Modified: branches/2019Q3/net-mgmt/cacti/distinfo ============================================================================== --- branches/2019Q3/net-mgmt/cacti/distinfo Wed Aug 21 07:31:41 2019 (r509494) +++ branches/2019Q3/net-mgmt/cacti/distinfo Wed Aug 21 07:47:44 2019 (r509495) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554040180 -SHA256 (cacti-1.2.3.tar.gz) = 3bd711cb425d51defbcc6d7f5761f886822fd3d004977bb74eca202431cdf51c -SIZE (cacti-1.2.3.tar.gz) = 23977004 +TIMESTAMP = 1563799623 +SHA256 (cacti-1.2.5.tar.gz) = bba3342f9bf285340eaded3545bbfaecd435f60cc5eacd74300fc90113cc9dc9 +SIZE (cacti-1.2.5.tar.gz) = 24677665 Modified: branches/2019Q3/net-mgmt/cacti/files/patch-install__functions.php ============================================================================== --- branches/2019Q3/net-mgmt/cacti/files/patch-install__functions.php Wed Aug 21 07:31:41 2019 (r509494) +++ branches/2019Q3/net-mgmt/cacti/files/patch-install__functions.php Wed Aug 21 07:47:44 2019 (r509495) @@ -1,11 +1,11 @@ ---- install/functions.php.orig 2019-03-30 23:40:23 UTC +--- install/functions.php.orig 2019-07-15 19:23:30 UTC +++ install/functions.php -@@ -533,7 +533,7 @@ function install_file_paths() { - if (!config_value_exists('path_cactilog')) { - $input['path_cactilog'] = $settings['path']['path_cactilog']; - if (empty($input['path_cactilog']['default'])) { -- $input['path_cactilog']['default'] = $config['base_path'] . '/log/cacti.log'; -+ $input['path_cactilog']['default'] = '/var/log/cacti/log'; - } - } else { - $input['path_cactilog'] = $settings['path']['path_cactilog']; +@@ -538,7 +538,7 @@ function install_file_paths() { + } + + if (empty($input['path_cactilog']['default'])) { +- $input['path_cactilog']['default'] = $config['base_path'] . '/log/cacti.log'; ++ $input['path_cactilog']['default'] = '/var/log/cacti/log'; + } + + /* stderr log file path */ Modified: branches/2019Q3/net-mgmt/cacti/files/patch-lib_installer.php ============================================================================== --- branches/2019Q3/net-mgmt/cacti/files/patch-lib_installer.php Wed Aug 21 07:31:41 2019 (r509494) +++ branches/2019Q3/net-mgmt/cacti/files/patch-lib_installer.php Wed Aug 21 07:47:44 2019 (r509495) @@ -1,11 +1,11 @@ ---- lib/installer.php.orig 2019-01-06 07:22:22 UTC +--- lib/installer.php.orig 2019-07-26 03:05:22 UTC +++ lib/installer.php -@@ -3222,7 +3222,7 @@ class Installer implements JsonSerializable { - - public static function getInstallLog() { +@@ -3216,7 +3216,7 @@ class Installer implements JsonSerializable { global $config; -- $logcontents = tail_file($config['base_path'] . '/log/cacti.log', 100, -1, ' INSTALL:' , 1, $total_rows); -+ $logcontents = tail_file('/var/log/cacti/log', 100, -1, ' INSTALL:' , 1, $total_rows); + + $page_nr = 1; +- $logcontents = tail_file($config['base_path'] . '/log/cacti.log', 100, -1, ' INSTALL:' , $page_no, $total_rows); ++ $logcontents = tail_file('/var/log/cacti/log', 100, -1, ' INSTALL:' , $page_no, $total_rows); $output_log = ''; foreach ($logcontents as $logline) { Modified: branches/2019Q3/net-mgmt/cacti/files/pkg-message.in ============================================================================== --- branches/2019Q3/net-mgmt/cacti/files/pkg-message.in Wed Aug 21 07:31:41 2019 (r509494) +++ branches/2019Q3/net-mgmt/cacti/files/pkg-message.in Wed Aug 21 07:47:44 2019 (r509495) @@ -1,4 +1,6 @@ -======================================================================= +[ +{ type: install + message: < Delivered-To: svn-ports-branches@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 49E15C68BB; Wed, 21 Aug 2019 12:09:41 +0000 (UTC) (envelope-from mfechner@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 46D60j0gypz3NH4; Wed, 21 Aug 2019 12:09:41 +0000 (UTC) (envelope-from mfechner@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 EA3C51B671; Wed, 21 Aug 2019 12:09:40 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7LC9eBK039600; Wed, 21 Aug 2019 12:09:40 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7LC9e80039599; Wed, 21 Aug 2019 12:09:40 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201908211209.x7LC9e80039599@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 21 Aug 2019 12:09:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509501 - branches/2019Q3/devel/libgit2 X-SVN-Group: ports-branches X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: branches/2019Q3/devel/libgit2 X-SVN-Commit-Revision: 509501 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2019 12:09:41 -0000 Author: mfechner Date: Wed Aug 21 12:09:40 2019 New Revision: 509501 URL: https://svnweb.freebsd.org/changeset/ports/509501 Log: MFH: r509438 devel/libgit2: security upgrade to 0.28.3. PR: 239932 Submitted by: tobik Approved by: mfechner Security: d51b52cf-c199-11e9-b13f-001b217b3468 Approved by: ports-secteam (joneum) Modified: branches/2019Q3/devel/libgit2/Makefile branches/2019Q3/devel/libgit2/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/devel/libgit2/Makefile ============================================================================== --- branches/2019Q3/devel/libgit2/Makefile Wed Aug 21 11:45:31 2019 (r509500) +++ branches/2019Q3/devel/libgit2/Makefile Wed Aug 21 12:09:40 2019 (r509501) @@ -6,7 +6,7 @@ # Tools/scripts/search_lib_depends_and_bump.sh devel/libgit2 PORTNAME= libgit2 -PORTVERSION= 0.28.1 +PORTVERSION= 0.28.3 DISTVERSIONPREFIX= v CATEGORIES= devel Modified: branches/2019Q3/devel/libgit2/distinfo ============================================================================== --- branches/2019Q3/devel/libgit2/distinfo Wed Aug 21 11:45:31 2019 (r509500) +++ branches/2019Q3/devel/libgit2/distinfo Wed Aug 21 12:09:40 2019 (r509501) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553163133 -SHA256 (libgit2-libgit2-v0.28.1_GH0.tar.gz) = 0ca11048795b0d6338f2e57717370208c2c97ad66c6d5eac0c97a8827d13936b -SIZE (libgit2-libgit2-v0.28.1_GH0.tar.gz) = 4987204 +TIMESTAMP = 1566119726 +SHA256 (libgit2-libgit2-v0.28.3_GH0.tar.gz) = ee5344730fe11ce7c86646e19c2d257757be293f5a567548d398fb3af8b8e53b +SIZE (libgit2-libgit2-v0.28.3_GH0.tar.gz) = 4988580 From owner-svn-ports-branches@freebsd.org Wed Aug 21 18:36:07 2019 Return-Path: Delivered-To: svn-ports-branches@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 A84C9D0628; Wed, 21 Aug 2019 18:36:07 +0000 (UTC) (envelope-from jbeich@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 46DGZb3ys3z4KWC; Wed, 21 Aug 2019 18:36:07 +0000 (UTC) (envelope-from jbeich@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 4FFC91FD03; Wed, 21 Aug 2019 18:36:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7LIa7n5070579; Wed, 21 Aug 2019 18:36:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7LIa6ev070577; Wed, 21 Aug 2019 18:36:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201908211836.x7LIa6ev070577@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Aug 2019 18:36:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509523 - branches/2019Q3/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q3/emulators/citra X-SVN-Commit-Revision: 509523 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Aug 2019 18:36:07 -0000 Author: jbeich Date: Wed Aug 21 18:36:06 2019 New Revision: 509523 URL: https://svnweb.freebsd.org/changeset/ports/509523 Log: MFH: r509514 emulators/citra: update to s20190821 Changes: https://github.com/citra-emu/citra/compare/1cf75e55c...8fa6be5b1 Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2019Q3/emulators/citra/Makefile branches/2019Q3/emulators/citra/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/emulators/citra/Makefile ============================================================================== --- branches/2019Q3/emulators/citra/Makefile Wed Aug 21 18:34:23 2019 (r509522) +++ branches/2019Q3/emulators/citra/Makefile Wed Aug 21 18:36:06 2019 (r509523) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20190818 +PORTVERSION= s20190821 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 1cf75e55c +GH_TAGNAME= 8fa6be5b1 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ @@ -56,7 +56,7 @@ ALSA_RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_ ALSA_CMAKE_BOOL= USE_ALSA FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg -FFMPEG_CMAKE_BOOL= ENABLE_FFMPEG +FFMPEG_CMAKE_BOOL= ENABLE_FFMPEG_AUDIO_DECODER ENABLE_FFMPEG_VIDEO_DUMPER JACK_BUILD_DEPENDS= jackit>0:audio/jack JACK_CMAKE_BOOL= USE_JACK Modified: branches/2019Q3/emulators/citra/distinfo ============================================================================== --- branches/2019Q3/emulators/citra/distinfo Wed Aug 21 18:34:23 2019 (r509522) +++ branches/2019Q3/emulators/citra/distinfo Wed Aug 21 18:36:06 2019 (r509523) @@ -1,6 +1,6 @@ -TIMESTAMP = 1566166325 -SHA256 (citra-emu-citra-s20190818-1cf75e55c_GH0.tar.gz) = a2ad52f131f1e55fea32cc83213b66d8f8f7c41a48a54ecac1d826d6876d9e64 -SIZE (citra-emu-citra-s20190818-1cf75e55c_GH0.tar.gz) = 5064155 +TIMESTAMP = 1566350068 +SHA256 (citra-emu-citra-s20190821-8fa6be5b1_GH0.tar.gz) = 4c3eeaee0aa904e3066822899937ebca8353f062a297c99a5e9804d46a153d34 +SIZE (citra-emu-citra-s20190821-8fa6be5b1_GH0.tar.gz) = 5064167 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-branches@freebsd.org Thu Aug 22 05:46:41 2019 Return-Path: Delivered-To: svn-ports-branches@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 0BBACDE2B2; Thu, 22 Aug 2019 05:46:41 +0000 (UTC) (envelope-from cy@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 46DYSJ6XX6z43jc; Thu, 22 Aug 2019 05:46:40 +0000 (UTC) (envelope-from cy@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 BDCFD276C3; Thu, 22 Aug 2019 05:46:40 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7M5keUT071749; Thu, 22 Aug 2019 05:46:40 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7M5ke72071747; Thu, 22 Aug 2019 05:46:40 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201908220546.x7M5ke72071747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 22 Aug 2019 05:46:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509578 - branches/2019Q3/security/wpa_supplicant X-SVN-Group: ports-branches X-SVN-Commit-Author: cy X-SVN-Commit-Paths: branches/2019Q3/security/wpa_supplicant X-SVN-Commit-Revision: 509578 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2019 05:46:41 -0000 Author: cy Date: Thu Aug 22 05:46:40 2019 New Revision: 509578 URL: https://svnweb.freebsd.org/changeset/ports/509578 Log: MFH: r509576 Update 2.8 --> 2.9 Approved by: portmgr (miwi) Modified: branches/2019Q3/security/wpa_supplicant/Makefile branches/2019Q3/security/wpa_supplicant/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/security/wpa_supplicant/Makefile ============================================================================== --- branches/2019Q3/security/wpa_supplicant/Makefile Thu Aug 22 03:33:56 2019 (r509577) +++ branches/2019Q3/security/wpa_supplicant/Makefile Thu Aug 22 05:46:40 2019 (r509578) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= wpa_supplicant -PORTVERSION= 2.8 +PORTVERSION= 2.9 CATEGORIES= security net MASTER_SITES= https://w1.fi/releases/ Modified: branches/2019Q3/security/wpa_supplicant/distinfo ============================================================================== --- branches/2019Q3/security/wpa_supplicant/distinfo Thu Aug 22 03:33:56 2019 (r509577) +++ branches/2019Q3/security/wpa_supplicant/distinfo Thu Aug 22 05:46:40 2019 (r509578) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555947152 -SHA256 (wpa_supplicant-2.8.tar.gz) = a689336a12a99151b9de5e25bfccadb88438f4f4438eb8db331cd94346fd3d96 -SIZE (wpa_supplicant-2.8.tar.gz) = 3155904 +TIMESTAMP = 1566442248 +SHA256 (wpa_supplicant-2.9.tar.gz) = fcbdee7b4a64bea8177973299c8c824419c413ec2e3a95db63dd6a5dc3541f17 +SIZE (wpa_supplicant-2.9.tar.gz) = 3231785 From owner-svn-ports-branches@freebsd.org Thu Aug 22 05:47:11 2019 Return-Path: Delivered-To: svn-ports-branches@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 DC077DE2E8; Thu, 22 Aug 2019 05:47:11 +0000 (UTC) (envelope-from cy@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 46DYSv5Tmbz43nk; Thu, 22 Aug 2019 05:47:11 +0000 (UTC) (envelope-from cy@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 9DF06276C4; Thu, 22 Aug 2019 05:47:11 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7M5lBa5071889; Thu, 22 Aug 2019 05:47:11 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7M5lBkU071887; Thu, 22 Aug 2019 05:47:11 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201908220547.x7M5lBkU071887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 22 Aug 2019 05:47:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509579 - branches/2019Q3/net/hostapd X-SVN-Group: ports-branches X-SVN-Commit-Author: cy X-SVN-Commit-Paths: branches/2019Q3/net/hostapd X-SVN-Commit-Revision: 509579 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2019 05:47:11 -0000 Author: cy Date: Thu Aug 22 05:47:10 2019 New Revision: 509579 URL: https://svnweb.freebsd.org/changeset/ports/509579 Log: MFH: r509577 Update 2.8 --> 2.9 Approved by: portmgr (miwi) Modified: branches/2019Q3/net/hostapd/Makefile branches/2019Q3/net/hostapd/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net/hostapd/Makefile ============================================================================== --- branches/2019Q3/net/hostapd/Makefile Thu Aug 22 05:46:40 2019 (r509578) +++ branches/2019Q3/net/hostapd/Makefile Thu Aug 22 05:47:10 2019 (r509579) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hostapd -PORTVERSION= 2.8 +PORTVERSION= 2.9 CATEGORIES= net MASTER_SITES= https://w1.fi/releases/ Modified: branches/2019Q3/net/hostapd/distinfo ============================================================================== --- branches/2019Q3/net/hostapd/distinfo Thu Aug 22 05:46:40 2019 (r509578) +++ branches/2019Q3/net/hostapd/distinfo Thu Aug 22 05:47:10 2019 (r509579) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555947182 -SHA256 (hostapd-2.8.tar.gz) = 929f522be6eeec38c53147e7bc084df028f65f148a3f7e4fa6c4c3f955cee4b0 -SIZE (hostapd-2.8.tar.gz) = 2169018 +TIMESTAMP = 1566442225 +SHA256 (hostapd-2.9.tar.gz) = 881d7d6a90b2428479288d64233151448f8990ab4958e0ecaca7eeb3c9db2bd7 +SIZE (hostapd-2.9.tar.gz) = 2244312 From owner-svn-ports-branches@freebsd.org Thu Aug 22 06:00:19 2019 Return-Path: Delivered-To: svn-ports-branches@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 4DBC1DE693; Thu, 22 Aug 2019 06:00:19 +0000 (UTC) (envelope-from pi@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 46DYm31K1sz44KV; Thu, 22 Aug 2019 06:00:19 +0000 (UTC) (envelope-from pi@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 0EDC627894; Thu, 22 Aug 2019 06:00:19 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7M60InP078080; Thu, 22 Aug 2019 06:00:18 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7M60I7o078077; Thu, 22 Aug 2019 06:00:18 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201908220600.x7M60I7o078077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 22 Aug 2019 06:00:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509580 - branches/2019Q3/net/openbgpd6 X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: branches/2019Q3/net/openbgpd6 X-SVN-Commit-Revision: 509580 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2019 06:00:19 -0000 Author: pi Date: Thu Aug 22 06:00:18 2019 New Revision: 509580 URL: https://svnweb.freebsd.org/changeset/ports/509580 Log: MFH: r509496 net/openbgpd6: upgrade 6.5p0 -> 6.5p1 PR: 239674 Submitted by: pizzamig Relnotes: https://undeadly.org/cgi?action=article;sid=20190802072427 Approved by: ports-secteam (miwi) Modified: branches/2019Q3/net/openbgpd6/Makefile branches/2019Q3/net/openbgpd6/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net/openbgpd6/Makefile ============================================================================== --- branches/2019Q3/net/openbgpd6/Makefile Thu Aug 22 05:47:10 2019 (r509579) +++ branches/2019Q3/net/openbgpd6/Makefile Thu Aug 22 06:00:18 2019 (r509580) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= openbgpd -PORTVERSION= 6.5p0 +PORTVERSION= 6.5p1 CATEGORIES= net MASTER_SITES= OPENBSD/OpenBGPD PKGNAMESUFFIX= 6 Modified: branches/2019Q3/net/openbgpd6/distinfo ============================================================================== --- branches/2019Q3/net/openbgpd6/distinfo Thu Aug 22 05:47:10 2019 (r509579) +++ branches/2019Q3/net/openbgpd6/distinfo Thu Aug 22 06:00:18 2019 (r509580) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556692508 -SHA256 (openbgpd-6.5p0.tar.gz) = 20c1a40bafcbbea60c4ecc6dd2e87fcba6847bfad62739b705a3806b6b442a56 -SIZE (openbgpd-6.5p0.tar.gz) = 677691 +TIMESTAMP = 1565090760 +SHA256 (openbgpd-6.5p1.tar.gz) = a3035b16f00bff642b76dd20632984d53a3529b9b4ba2d3399ba008e49247e3b +SIZE (openbgpd-6.5p1.tar.gz) = 679124 From owner-svn-ports-branches@freebsd.org Thu Aug 22 12:01:36 2019 Return-Path: Delivered-To: svn-ports-branches@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 3AF31C766B; Thu, 22 Aug 2019 12:01:36 +0000 (UTC) (envelope-from girgen@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 46Djmw0cWlz4P3C; Thu, 22 Aug 2019 12:01:36 +0000 (UTC) (envelope-from girgen@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 EC1833DE6; Thu, 22 Aug 2019 12:01:35 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7MC1ZQ8095578; Thu, 22 Aug 2019 12:01:35 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7MC1Z4U095577; Thu, 22 Aug 2019 12:01:35 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201908221201.x7MC1Z4U095577@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Thu, 22 Aug 2019 12:01:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509596 - branches/2019Q3/databases/postgresql11-server X-SVN-Group: ports-branches X-SVN-Commit-Author: girgen X-SVN-Commit-Paths: branches/2019Q3/databases/postgresql11-server X-SVN-Commit-Revision: 509596 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2019 12:01:36 -0000 Author: girgen Date: Thu Aug 22 12:01:35 2019 New Revision: 509596 URL: https://svnweb.freebsd.org/changeset/ports/509596 Log: Fix merge problem in r509493 Approved by: ports-secteam Modified: branches/2019Q3/databases/postgresql11-server/Makefile Modified: branches/2019Q3/databases/postgresql11-server/Makefile ============================================================================== --- branches/2019Q3/databases/postgresql11-server/Makefile Thu Aug 22 11:07:38 2019 (r509595) +++ branches/2019Q3/databases/postgresql11-server/Makefile Thu Aug 22 12:01:35 2019 (r509596) @@ -1,55 +1,14 @@ # Created by: Marc G. Fournier # $FreeBSD$ -PORTNAME?= postgresql -DISTVERSION?= 11.4 +DISTVERSION?= 11.5 # PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # not their own. Probably best to keep it at ?=0 when reset here too. PORTREVISION?= 0 -CATEGORIES?= databases -MASTER_SITES= PGSQL/source/v${DISTVERSION} -PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT} +PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org -COMMENT?= PostgreSQL is the most advanced open-source database available anywhere -LICENSE= PostgreSQL - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 10 -CONFLICTS+= ${PORTNAME}9* ${PORTNAME}1[^${PORTVERSION:R:C/.*([0-9]$)/\\1/}]* -.else -CONFLICTS+= ${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}1[0-9]* -.endif - -WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} -DIST_SUBDIR= postgresql - -OPTIONS_SUB= yes - -PKGINSTALL?= ${PKGDIR}/pkg-install${COMPONENT} -USES+= tar:bzip2 cpe -.if !defined(NO_BUILD) -USES+= gmake -GNU_CONFIGURE= yes -.endif - -PG_USER?= postgres -PG_GROUP?= postgres -PG_UID?= 770 - -LDFLAGS+= -L${LOCALBASE}/lib -INCLUDES+= -I${LOCALBASE}/include -CONFIGURE_ARGS+=--with-libraries=${PREFIX}/lib \ - --with-includes=${PREFIX}/include \ - --enable-thread-safety -CONFIGURE_ENV+= INCLUDES="${INCLUDES}" \ - PTHREAD_LIBS="-lpthread" \ - LDFLAGS_SL="${LDFLAGS_SL}" -LDFLAGS+= -lpthread -MAKE_ENV= MAKELEVEL=0 - -PLIST= ${PKGDIR}/pkg-plist${COMPONENT} - INSTALL_DIRS?= src/common src/timezone src/backend \ src/backend/utils/mb/conversion_procs \ src/backend/snowball src/backend/replication/libpqwalreceiver \ @@ -61,247 +20,8 @@ INSTALL_DIRS?= src/common src/timezone src/backend \ src/bin/pg_test_fsync src/bin/pg_test_timing \ src/bin/pg_waldump src/bin/pg_upgrade -BUILD_DIRS?= src/port ${INSTALL_DIRS} -INSTALL_TARGET?=install-strip +PG_USER?= postgres +PG_GROUP?= postgres +PG_UID?= 770 -.if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY) -SERVER_ONLY= yes -COMPONENT= -server -USE_RC_SUBR= postgresql -USES+= pgsql:${DISTVERSION:C/([0-9]\.?[0-9]).*/\1/g} -USERS= ${PG_USER} -GROUPS= ${PG_GROUP} -SUB_FILES+= 502.pgsql -.endif - -.if defined(CLIENT_ONLY) -OPTIONS_DEFINE+=LIBEDIT DOCS -LIBEDIT_DESC= Use non-GPL libedit instead of readline -USES+= perl5 -.else -MAKE_ENV+= PATH=${PREFIX}/bin:${PATH} -CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} -.endif - -.if defined(SERVER_ONLY) -OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA XML DOCS -LDAP_DESC= Build with LDAP authentication support -DTRACE_DESC= Build with DTrace probes -TZDATA_DESC= Use internal timezone database -XML_DESC= Build with XML data type - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 11 -OPTIONS_DEFINE+=LLVM -LLVM_DESC= Build with support for JIT-compiling expressions -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} < 10 -# See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info -OPTIONS_DEFINE+= ICU -ICU_DESC= Use ICU for unicode collation -.else -CONFIGURE_ARGS+=--with-icu -LIB_DEPENDS+= libicudata.so:devel/icu -USES+= pkgconfig -.endif - -# See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info -# (requires dump/restore if modified.) -OPTIONS_DEFINE+= INTDATE -INTDATE_DESC= Builds with 64-bit date/time type -OPTIONS_DEFAULT+= TZDATA INTDATE -.endif - -.if !defined(SLAVE_ONLY) -OPTIONS_DEFINE+= NLS PAM GSSAPI OPTIMIZED_CFLAGS DEBUG DOCS -. if ${DISTVERSION:R} == 9.2 || ${DISTVERSION:R} == 9.3 - OPTIONS_RADIO= KRB5 - OPTIONS_RADIO_KRB5= MIT_KRB5 HEIMDAL_KRB5 -. endif - -KRB5_DESC= Build with kerberos provider support -NLS_DESC= Use internationalized messages -PAM_DESC= Build with PAM Support -MIT_KRB5_DESC= Build with MIT kerberos support -HEIMDAL_KRB5_DESC= Builds with Heimdal kerberos -GSSAPI_DESC= Build with GSSAPI support -OPTIMIZED_CFLAGS_DESC= Builds with compiler optimizations (-O3) - -OPTIONS_DEFINE+= SSL -SSL_DESC= Build with OpenSSL support - -OPTIONS_DEFAULT+= SSL -.endif # !SLAVE_ONLY - -.if defined(CLIENT_ONLY) -LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred -LIBEDIT_USES= libedit -LIBEDIT_USES_OFF= readline -.endif # CLIENT_ONLY - -SSL_USES= ssl -SSL_CONFIGURE_WITH= openssl - -PAM_CONFIGURE_WITH= pam - -XML_CONFIGURE_WITH= libxml -XML_LIB_DEPENDS= libxml2.so:textproc/libxml2 - -TZDATA_CONFIGURE_OFF= --with-system-tzdata=/usr/share/zoneinfo - -INTDATE_CONFIGURE_OFF= --disable-integer-datetimes - -NLS_CONFIGURE_ENABLE= nls -NLS_USES= gettext - -LDAP_CONFIGURE_WITH= ldap -LDAP_USE= OPENLDAP=yes - -OPTIMIZED_CFLAGS_CFLAGS=-O3 -funroll-loops - -DEBUG_CONFIGURE_ENABLE= debug - -PLIST_SUB+= PG_USER=${PG_USER} \ - PG_GROUP=${PG_GROUP} -SUB_LIST+= PG_GROUP=${PG_GROUP} \ - PG_USER=${PG_USER} \ - PG_UID=${PG_UID} - -.include - -.if ${ARCH} == "i386" -USES+= compiler:gcc-c++11-lib -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 11 -. if defined(SERVER_ONLY) && ${PORT_OPTIONS:MLLVM} -BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} -BUILD_DEPENDS+= llvm-config${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} -RUN_DEPENDS+= llvm-config${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} -CONFIGURE_ENV+= LLVM_CONFIG=${LOCALBASE}/bin/llvm-config${LLVM_DEFAULT} -CONFIGURE_ARGS+= --with-llvm -PLIST_SUB+= LLVM="" -INSTALL_DIRS+= src/backend/jit/llvm -. else -PLIST_SUB+= LLVM="@comment " -CONFIGURE_ARGS+= --without-llvm -. endif -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} < 10 -. if ( defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} ) || make(makesum) -USES+= autoreconf -CONFIGURE_ARGS+=--with-icu -PATCH_SITES+= http://people.freebsd.org/~girgen/postgresql-icu/:icu -PATCHFILES+= ${ICU_PATCHFILE}:icu -LIB_DEPENDS+= libicudata.so:devel/icu -. endif -.endif # server && version < 10 - -.if !defined(SLAVE_ONLY) - -PATCH_DIST_STRIP=-p1 - -. if ${PORT_OPTIONS:MDTRACE} -CONFIGURE_ARGS+=--enable-dtrace -LDFLAGS+=-lelf -INSTALL_TARGET= install -. endif - -.if ${PORT_OPTIONS:MGSSAPI} -CONFIGURE_ARGS+=--with-gssapi -.if empty(PORT_OPTIONS:MMIT_KRB5) && empty(PORT_OPTIONS:MHEIMDAL_KRB5) -# Kerberos libraries will pull the proper GSSAPI library -# via linker dependencies, but otherwise we must specify -# it explicitely: ld --as-needed is used for compilation, -# so configure's -lgssapi_krb5 won't go. -LDFLAGS+= -lgssapi -LDFLAGS_SL+= -lgssapi -.endif -.else -CONFIGURE_ARGS+=--without-gssapi -.endif - -. if ${PORT_OPTIONS:MMIT_KRB5} -. if defined(IGNORE_WITH_SRC_KRB5) && (exists(/usr/lib/libkrb5.so) || exists(/usr/bin/krb5-config)) -IGNORE= requires that you remove heimdal\'s /usr/bin/krb5-config and /usr/lib/libkrb5.so*, and set NO_KERBEROS=true in /etc/src.conf to build successfully with MIT-KRB -. else -CONFIGURE_ARGS+=--with-krb5 -# Allow defining a home built MIT Kerberos by setting KRB5_HOME -. if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.a) && exists(${KRB5_HOME}/bin/krb5-config) -LIB_DEPENDS+= libkrb5.so.3:security/krb5 -. endif -. endif -. endif - -. if ${PORT_OPTIONS:MHEIMDAL_KRB5} -CONFIGURE_ARGS+=--with-krb5 -. endif - -.endif # !SLAVE_ONLY - -# For testing files in FILESDIR -.include - -.if defined(SERVER_ONLY) -pre-build: - @${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL -.endif - -.if !defined(NO_BUILD) && !target(do-build) - -do-build: - @ cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} symlinks - @ for dir in ${BUILD_DIRS}; do \ - cd ${WRKSRC}/$${dir} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD}; \ - done - -. if exists(${FILESDIR}/pkg-message${COMPONENT}.in) -SUB_FILES+= pkg-message${COMPONENT} -PKGMESSAGE= ${WRKSRC}/pkg-message${COMPONENT} -. endif -. if exists(${FILESDIR}/pkg-install${COMPONENT}.in) -SUB_FILES+= pkg-install${COMPONENT} -PLIST_SUB+= PG_USER=${PG_USER} -. endif - -post-patch: -. if defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} - @${REINPLACE_CMD} \ - -e '/m4_PACKAGE_VERSION/s/\[2\.6[0-9]\]/m4_defn([m4_PACKAGE_VERSION])/' \ - -e '/icu/s/_57//' \ - ${WRKSRC}/configure.in -. endif - -do-install: - @for dir in ${INSTALL_DIRS}; do \ - cd ${WRKSRC}/$${dir} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${INSTALL_TARGET}; \ - done -. if defined(SERVER_ONLY) - @ ${MKDIR} ${STAGEDIR}${PREFIX}/share/postgresql ;\ - ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily ;\ - ${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \ - ${STAGEDIR}${PREFIX}/etc/periodic/daily -. endif # SERVER_ONLY -. if defined(CLIENT_ONLY) - @ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install-local -. endif - @ if [ -r ${PKGMESSAGE} ]; then \ - ${MKDIR} ${STAGEDIR}${DOCSDIR} ;\ - ${INSTALL_DATA} ${PKGMESSAGE} ${STAGEDIR}${DOCSDIR}/README${COMPONENT} ;\ - fi -.endif # !NO_BUILD - -.if defined(SERVER_ONLY) -check: - @if [ `id -u` != 0 ] ; then \ - ${ECHO} "Running postgresql regressions tests" ;\ - cd ${WRKSRC}; ${MAKE_CMD} check ;\ - else \ - ${ECHO} "You cannot run regression tests when postgresql is built as user root." ; \ - ${ECHO} "Clean and rebuild the port as a regular user to run the tests." ;\ - fi -.endif - -.include +.include "${.CURDIR}/../postgresql12-server/Makefile" From owner-svn-ports-branches@freebsd.org Thu Aug 22 14:59:19 2019 Return-Path: Delivered-To: svn-ports-branches@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 65026CAB9E; Thu, 22 Aug 2019 14:59:19 +0000 (UTC) (envelope-from bhughes@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 46Dnjz1xVmz4XNl; Thu, 22 Aug 2019 14:59:19 +0000 (UTC) (envelope-from bhughes@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 245945D14; Thu, 22 Aug 2019 14:59:19 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7MExJrp097540; Thu, 22 Aug 2019 14:59:19 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7MExIeu097538; Thu, 22 Aug 2019 14:59:18 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201908221459.x7MExIeu097538@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Thu, 22 Aug 2019 14:59:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509603 - branches/2019Q3/www/node8 X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: branches/2019Q3/www/node8 X-SVN-Commit-Revision: 509603 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2019 14:59:19 -0000 Author: bhughes Date: Thu Aug 22 14:59:18 2019 New Revision: 509603 URL: https://svnweb.freebsd.org/changeset/ports/509603 Log: MFH: r509479 www/node8: Update 8.16.0 -> 8.16.1 This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/aug-2019-security-releases/ for details on patched vulnerabilities. Security: c97a940b-c392-11e9-bb38-000d3ab229d6 Sponsored by: Miles AS Approved by: ports-secteam (joneum) Modified: branches/2019Q3/www/node8/Makefile branches/2019Q3/www/node8/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/node8/Makefile ============================================================================== --- branches/2019Q3/www/node8/Makefile Thu Aug 22 14:51:13 2019 (r509602) +++ branches/2019Q3/www/node8/Makefile Thu Aug 22 14:59:18 2019 (r509603) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 8.16.0 +PORTVERSION= 8.16.1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -66,7 +66,7 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ BUILD_DEPENDS+= c-ares>=1.10.0:dns/c-ares\ libuv>1.23.2:devel/libuv \ - libnghttp2>=1.33.0:www/libnghttp2 + libnghttp2>=1.39.2:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 Modified: branches/2019Q3/www/node8/distinfo ============================================================================== --- branches/2019Q3/www/node8/distinfo Thu Aug 22 14:51:13 2019 (r509602) +++ branches/2019Q3/www/node8/distinfo Thu Aug 22 14:59:18 2019 (r509603) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555485506 -SHA256 (node-v8.16.0.tar.gz) = a1a885add3e511177f05676f0834df710886b68cb559b893169f8674a23adfcf -SIZE (node-v8.16.0.tar.gz) = 30661334 +TIMESTAMP = 1565994483 +SHA256 (node-v8.16.1.tar.gz) = 7666207212ac5cbd766b052951f57da62aaa641fedf83fabcb31dbb19f61169d +SIZE (node-v8.16.1.tar.gz) = 30666987 From owner-svn-ports-branches@freebsd.org Thu Aug 22 19:31:08 2019 Return-Path: Delivered-To: svn-ports-branches@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 97331D0C5A; Thu, 22 Aug 2019 19:31:08 +0000 (UTC) (envelope-from flo@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 46Dvlc2x3cz3LGQ; Thu, 22 Aug 2019 19:31:08 +0000 (UTC) (envelope-from flo@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 47E7B8F6D; Thu, 22 Aug 2019 19:31:08 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7MJV8PX061434; Thu, 22 Aug 2019 19:31:08 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7MJV7rH061430; Thu, 22 Aug 2019 19:31:07 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201908221931.x7MJV7rH061430@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Thu, 22 Aug 2019 19:31:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509621 - in branches/2019Q3/databases/percona56-server: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: flo X-SVN-Commit-Paths: in branches/2019Q3/databases/percona56-server: . files X-SVN-Commit-Revision: 509621 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2019 19:31:08 -0000 Author: flo Date: Thu Aug 22 19:31:07 2019 New Revision: 509621 URL: https://svnweb.freebsd.org/changeset/ports/509621 Log: MFH: r506309 r506986 r509524 databases/percona56-server: update 5.6.43-84.2 -> 5.6.43-84.3 - Fixes several CVEs, see https://vuxml.FreeBSD.org/freebsd/d3d02d3a-2242-11e9-b95c-b499baebfeaf.htm for the list PR: 235930 Submitted by: j@avt0gen.ru Approved by: flo (maintainer timeout) Update to 5.6.44-86.0 Update to 5.6.45-86.1 Security: 198e6220-ac8b-11e9-a1c7-b499baebfeaf Approved by: ports-secteam (miwi) Modified: branches/2019Q3/databases/percona56-server/Makefile branches/2019Q3/databases/percona56-server/distinfo branches/2019Q3/databases/percona56-server/files/patch-cmake_plugin.cmake branches/2019Q3/databases/percona56-server/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/databases/percona56-server/Makefile ============================================================================== --- branches/2019Q3/databases/percona56-server/Makefile Thu Aug 22 18:25:09 2019 (r509620) +++ branches/2019Q3/databases/percona56-server/Makefile Thu Aug 22 19:31:07 2019 (r509621) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= percona -DISTVERSION= 5.6.42-84.2 +DISTVERSION= 5.6.45-86.1 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-${DISTVERSION}/source/tarball/ Modified: branches/2019Q3/databases/percona56-server/distinfo ============================================================================== --- branches/2019Q3/databases/percona56-server/distinfo Thu Aug 22 18:25:09 2019 (r509620) +++ branches/2019Q3/databases/percona56-server/distinfo Thu Aug 22 19:31:07 2019 (r509621) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547501540 -SHA256 (percona-server-5.6.42-84.2.tar.gz) = 3105ead687f56a1ae0ace557d276fe8dc7f4e1f71d8523032f713ebb80635347 -SIZE (percona-server-5.6.42-84.2.tar.gz) = 52836067 +TIMESTAMP = 1566412174 +SHA256 (percona-server-5.6.45-86.1.tar.gz) = 0c4d1541b4e4292d48f9fe25a7f39a6c46a85beb0f9bb4693d776f44c16a068c +SIZE (percona-server-5.6.45-86.1.tar.gz) = 53178072 Modified: branches/2019Q3/databases/percona56-server/files/patch-cmake_plugin.cmake ============================================================================== --- branches/2019Q3/databases/percona56-server/files/patch-cmake_plugin.cmake Thu Aug 22 18:25:09 2019 (r509620) +++ branches/2019Q3/databases/percona56-server/files/patch-cmake_plugin.cmake Thu Aug 22 19:31:07 2019 (r509621) @@ -1,10 +1,12 @@ ---- cmake/plugin.cmake.orig 2011-09-09 17:56:39.000000000 +0200 -+++ cmake/plugin.cmake 2011-10-07 10:56:37.000000000 +0200 -@@ -195,7 +195,6 @@ - OUTPUT_NAME "${ARG_MODULE_OUTPUT_NAME}") - # Install dynamic library - MYSQL_INSTALL_TARGETS(${target} DESTINATION ${INSTALL_PLUGINDIR} COMPONENT Server) -- INSTALL_DEBUG_TARGET(${target} DESTINATION ${INSTALL_PLUGINDIR}/debug) - # Add installed files to list for RPMs - FILE(APPEND ${CMAKE_BINARY_DIR}/support-files/plugins.files - "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/${ARG_MODULE_OUTPUT_NAME}.so\n" +--- cmake/plugin.cmake.orig 2019-07-20 08:37:32 UTC ++++ cmake/plugin.cmake +@@ -224,9 +224,6 @@ MACRO(MYSQL_ADD_PLUGIN) + MYSQL_INSTALL_TARGETS(${target} + DESTINATION ${INSTALL_PLUGINDIR} + COMPONENT ${INSTALL_COMPONENT}) +- INSTALL_DEBUG_TARGET(${target} +- DESTINATION ${INSTALL_PLUGINDIR}/debug +- COMPONENT ${INSTALL_COMPONENT}) + # Add installed files to list for RPMs + FILE(APPEND ${CMAKE_BINARY_DIR}/support-files/plugins.files + "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/${ARG_MODULE_OUTPUT_NAME}.so\n" Modified: branches/2019Q3/databases/percona56-server/pkg-plist ============================================================================== --- branches/2019Q3/databases/percona56-server/pkg-plist Thu Aug 22 18:25:09 2019 (r509620) +++ branches/2019Q3/databases/percona56-server/pkg-plist Thu Aug 22 19:31:07 2019 (r509621) @@ -52,6 +52,7 @@ lib/mysql/plugin/semisync_master.so lib/mysql/plugin/semisync_slave.so lib/mysql/plugin/test_udf_services.so %%TOKUDB%%lib/mysql/plugin/tokudb_backup.so +lib/mysql/plugin/udf_example.so lib/mysql/plugin/validate_password.so libexec/mysqld man/man1/my_print_defaults.1.gz From owner-svn-ports-branches@freebsd.org Fri Aug 23 06:28:22 2019 Return-Path: Delivered-To: svn-ports-branches@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 64DDADB929; Fri, 23 Aug 2019 06:28:22 +0000 (UTC) (envelope-from pi@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 46FBKy22Kgz4NT4; Fri, 23 Aug 2019 06:28:22 +0000 (UTC) (envelope-from pi@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 288D518815; Fri, 23 Aug 2019 06:28:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7N6SLad048070; Fri, 23 Aug 2019 06:28:21 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7N6SLBG048069; Fri, 23 Aug 2019 06:28:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201908230628.x7N6SLBG048069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 23 Aug 2019 06:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509632 - branches/2019Q3/security/clamav X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: branches/2019Q3/security/clamav X-SVN-Commit-Revision: 509632 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Aug 2019 06:28:22 -0000 Author: pi Date: Fri Aug 23 06:28:21 2019 New Revision: 509632 URL: https://svnweb.freebsd.org/changeset/ports/509632 Log: MFH: r509631 security/clamav: upgrade 0.101.3 -> 0.101.4 PR: 239684 Approved by: ports-secteam (joneum) Relnotes: https://blog.clamav.net/2019/08/clamav-01014-security-patch-release-has.html Security: CVE-2019-12900, CVE-2019-12625 Approved by: ports-secteam (joneum) Modified: branches/2019Q3/security/clamav/Makefile branches/2019Q3/security/clamav/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/security/clamav/Makefile ============================================================================== --- branches/2019Q3/security/clamav/Makefile Fri Aug 23 06:27:15 2019 (r509631) +++ branches/2019Q3/security/clamav/Makefile Fri Aug 23 06:28:21 2019 (r509632) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= clamav -PORTVERSION= 0.101.3 +PORTVERSION= 0.101.4 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= https://www.clamav.net/downloads/production/ Modified: branches/2019Q3/security/clamav/distinfo ============================================================================== --- branches/2019Q3/security/clamav/distinfo Fri Aug 23 06:27:15 2019 (r509631) +++ branches/2019Q3/security/clamav/distinfo Fri Aug 23 06:28:21 2019 (r509632) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565176798 -SHA256 (clamav-0.101.3.tar.gz) = 68d42aac4a9cbde293288533a9a3c3d55863de38f2b8707c1ef2d987b1260338 -SIZE (clamav-0.101.3.tar.gz) = 21389753 +TIMESTAMP = 1566501172 +SHA256 (clamav-0.101.4.tar.gz) = 0bf094f0919d158a578421d66bc2569c8c8181233ba162bb51722f98c802bccd +SIZE (clamav-0.101.4.tar.gz) = 21408145 From owner-svn-ports-branches@freebsd.org Sat Aug 24 17:27:30 2019 Return-Path: Delivered-To: svn-ports-branches@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 522E7C52A4; Sat, 24 Aug 2019 17:27:30 +0000 (UTC) (envelope-from riggs@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 46G4w21SWkz3R9x; Sat, 24 Aug 2019 17:27:30 +0000 (UTC) (envelope-from riggs@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 13B5087AA; Sat, 24 Aug 2019 17:27:30 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7OHRTiX096697; Sat, 24 Aug 2019 17:27:29 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7OHRTGY096696; Sat, 24 Aug 2019 17:27:29 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201908241727.x7OHRTGY096696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 24 Aug 2019 17:27:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r509730 - branches/2019Q3/audio/musicpd X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2019Q3/audio/musicpd X-SVN-Commit-Revision: 509730 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2019 17:27:30 -0000 Author: riggs Date: Sat Aug 24 17:27:29 2019 New Revision: 509730 URL: https://svnweb.freebsd.org/changeset/ports/509730 Log: MFH: r509729 Update to upstream version 0.21.14 Details: - Bugfix release, see https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.21.14/NEWS - Includes a fix for rare crash after song change Approved by: ports-secteam (riggs) Modified: branches/2019Q3/audio/musicpd/Makefile branches/2019Q3/audio/musicpd/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/audio/musicpd/Makefile ============================================================================== --- branches/2019Q3/audio/musicpd/Makefile Sat Aug 24 17:20:12 2019 (r509729) +++ branches/2019Q3/audio/musicpd/Makefile Sat Aug 24 17:27:29 2019 (r509730) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= musicpd -PORTVERSION= 0.21.13 +PORTVERSION= 0.21.14 CATEGORIES= audio ipv6 MASTER_SITES= https://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} Modified: branches/2019Q3/audio/musicpd/distinfo ============================================================================== --- branches/2019Q3/audio/musicpd/distinfo Sat Aug 24 17:20:12 2019 (r509729) +++ branches/2019Q3/audio/musicpd/distinfo Sat Aug 24 17:27:29 2019 (r509730) @@ -1,3 +1,3 @@ -TIMESTAMP = 1566206583 -SHA256 (mpd-0.21.13.tar.xz) = 95b70b268406bde15bda4464ef768f7e773417a8c776d42a678c5a5070855eea -SIZE (mpd-0.21.13.tar.xz) = 672184 +TIMESTAMP = 1566648819 +SHA256 (mpd-0.21.14.tar.xz) = 1e2c8a8d89e8792b1849075cf51aa0695e1957cd5c4281209acff1dd53b57646 +SIZE (mpd-0.21.14.tar.xz) = 673036