From owner-svn-ports-branches@freebsd.org Mon Nov 13 20:46:24 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C6F1DD5445; Mon, 13 Nov 2017 20:46:24 +0000 (UTC) (envelope-from brd@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 mx1.freebsd.org (Postfix) with ESMTPS id 4948D7D704; Mon, 13 Nov 2017 20:46:24 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vADKkNrr031881; Mon, 13 Nov 2017 20:46:23 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vADKkNnN031879; Mon, 13 Nov 2017 20:46:23 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201711132046.vADKkNnN031879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Mon, 13 Nov 2017 20:46:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454149 - in branches/2017Q4/security/sudo: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: brd X-SVN-Commit-Paths: in branches/2017Q4/security/sudo: . files X-SVN-Commit-Revision: 454149 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.25 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, 13 Nov 2017 20:46:24 -0000 Author: brd Date: Mon Nov 13 20:46:22 2017 New Revision: 454149 URL: https://svnweb.freebsd.org/changeset/ports/454149 Log: MFH: r454126 Pull in an upstream patch for security/sudo to not coredump if the hostname is not set. PR: 222510 Approved by: garga Approved by: portmgr (swills) Added: branches/2017Q4/security/sudo/files/patch-bug222510 - copied unchanged from r454126, head/security/sudo/files/patch-bug222510 Modified: branches/2017Q4/security/sudo/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/security/sudo/Makefile ============================================================================== --- branches/2017Q4/security/sudo/Makefile Mon Nov 13 19:36:53 2017 (r454148) +++ branches/2017Q4/security/sudo/Makefile Mon Nov 13 20:46:22 2017 (r454149) @@ -3,6 +3,7 @@ PORTNAME= sudo PORTVERSION= 1.8.21p2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SUDO Copied: branches/2017Q4/security/sudo/files/patch-bug222510 (from r454126, head/security/sudo/files/patch-bug222510) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/security/sudo/files/patch-bug222510 Mon Nov 13 20:46:22 2017 (r454149, copy of r454126, head/security/sudo/files/patch-bug222510) @@ -0,0 +1,14 @@ +diff -r 926deea0d506 -r fafb3a3083cb lib/util/gethostname.c +--- lib/util/gethostname.c Tue Oct 17 14:28:38 2017 -0600 ++++ lib/util/gethostname.c Fri Oct 20 07:37:40 2017 -0600 +@@ -42,7 +42,7 @@ + + hname = malloc(host_name_max + 1); + if (hname != NULL) { +- if (gethostname(hname, host_name_max + 1) == 0) { ++ if (gethostname(hname, host_name_max + 1) == 0 && *hname != '\0') { + /* Old gethostname() may not NUL-terminate if there is no room. */ + hname[host_name_max] = '\0'; + } else { + + From owner-svn-ports-branches@freebsd.org Mon Nov 13 22:25:09 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41912DD8A22; Mon, 13 Nov 2017 22:25:09 +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 mx1.freebsd.org (Postfix) with ESMTPS id 0E6101120; Mon, 13 Nov 2017 22:25:08 +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 vADMP81q074824; Mon, 13 Nov 2017 22:25:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vADMP8QM074822; Mon, 13 Nov 2017 22:25:08 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201711132225.vADMP8QM074822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 13 Nov 2017 22:25:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454156 - branches/2017Q4/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/emulators/rpcs3 X-SVN-Commit-Revision: 454156 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.25 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, 13 Nov 2017 22:25:09 -0000 Author: jbeich Date: Mon Nov 13 22:25:07 2017 New Revision: 454156 URL: https://svnweb.freebsd.org/changeset/ports/454156 Log: MFH: r454154 emulators/rpcs3: update to 0.0.4.0 Changes: https://github.com/RPCS3/rpcs3/compare/3c9126d9...0064976c Approved by: ports-secteam (junovitch, implicit for snapshots) Modified: branches/2017Q4/emulators/rpcs3/Makefile branches/2017Q4/emulators/rpcs3/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/emulators/rpcs3/Makefile ============================================================================== --- branches/2017Q4/emulators/rpcs3/Makefile Mon Nov 13 22:22:31 2017 (r454155) +++ branches/2017Q4/emulators/rpcs3/Makefile Mon Nov 13 22:25:07 2017 (r454156) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.3-563 -DISTVERSIONSUFFIX= -g3c9126d9 +DISTVERSION= 0.0.4-0 +DISTVERSIONSUFFIX= -g0064976c CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: branches/2017Q4/emulators/rpcs3/distinfo ============================================================================== --- branches/2017Q4/emulators/rpcs3/distinfo Mon Nov 13 22:22:31 2017 (r454155) +++ branches/2017Q4/emulators/rpcs3/distinfo Mon Nov 13 22:25:07 2017 (r454156) @@ -1,6 +1,6 @@ -TIMESTAMP = 1510227590 -SHA256 (RPCS3-rpcs3-v0.0.3-563-g3c9126d9_GH0.tar.gz) = ebd3eaf671e929d08a112688e2238b4630fd547fa2b279c2d795a0cce74b1465 -SIZE (RPCS3-rpcs3-v0.0.3-563-g3c9126d9_GH0.tar.gz) = 3561507 +TIMESTAMP = 1510510402 +SHA256 (RPCS3-rpcs3-v0.0.4-0-g0064976c_GH0.tar.gz) = aa2f6c09b944519b3d3d901156f4f75681a9ebf8aef68b56b135300180b1e0aa +SIZE (RPCS3-rpcs3-v0.0.4-0-g0064976c_GH0.tar.gz) = 3560879 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-branches@freebsd.org Mon Nov 13 22:31:19 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9117ADD8C25; Mon, 13 Nov 2017 22:31:19 +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 mx1.freebsd.org (Postfix) with ESMTPS id 5D7921562; Mon, 13 Nov 2017 22:31:19 +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 vADMVIJ8077485; Mon, 13 Nov 2017 22:31:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vADMVIAV077482; Mon, 13 Nov 2017 22:31:18 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201711132231.vADMVIAV077482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 13 Nov 2017 22:31:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454158 - branches/2017Q4/emulators/ppsspp-devel X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/emulators/ppsspp-devel X-SVN-Commit-Revision: 454158 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.25 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, 13 Nov 2017 22:31:19 -0000 Author: jbeich Date: Mon Nov 13 22:31:18 2017 New Revision: 454158 URL: https://svnweb.freebsd.org/changeset/ports/454158 Log: MFH: r454155 emulators/ppsspp-devel: update to 1.4.2.768 Changes: https://github.com/hrydgard/ppsspp/compare/08041d877...a0f1276a5 Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2017Q4/emulators/ppsspp-devel/Makefile branches/2017Q4/emulators/ppsspp-devel/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/emulators/ppsspp-devel/Makefile ============================================================================== --- branches/2017Q4/emulators/ppsspp-devel/Makefile Mon Nov 13 22:28:46 2017 (r454157) +++ branches/2017Q4/emulators/ppsspp-devel/Makefile Mon Nov 13 22:31:18 2017 (r454158) @@ -1,7 +1,7 @@ # $FreeBSD$ -DISTVERSION= 1.4.2-704 -DISTVERSIONSUFFIX= -g08041d877 +DISTVERSION= 1.4.2-768 +DISTVERSIONSUFFIX= -ga0f1276a5 PORTREVISION?= 0 PKGNAMESUFFIX?= -devel Modified: branches/2017Q4/emulators/ppsspp-devel/distinfo ============================================================================== --- branches/2017Q4/emulators/ppsspp-devel/distinfo Mon Nov 13 22:28:46 2017 (r454157) +++ branches/2017Q4/emulators/ppsspp-devel/distinfo Mon Nov 13 22:31:18 2017 (r454158) @@ -1,8 +1,8 @@ -TIMESTAMP = 1510349580 +TIMESTAMP = 1510589892 SHA256 (ppsspp.1) = 64a7cca4c3a5fc6ad5b63399edef9056b0c85ea68fed00fb7e97f4b2724e503b SIZE (ppsspp.1) = 1598 -SHA256 (hrydgard-ppsspp-v1.4.2-704-g08041d877_GH0.tar.gz) = f6d5c2b54b14e2e4ed4149a66e54e3823dc2452c038e56d679449f8150bf2cc2 -SIZE (hrydgard-ppsspp-v1.4.2-704-g08041d877_GH0.tar.gz) = 19002156 +SHA256 (hrydgard-ppsspp-v1.4.2-768-ga0f1276a5_GH0.tar.gz) = e660b0fdf8cefabf0ff75241bb3890d217368df19d835be74ccd91888d85f75f +SIZE (hrydgard-ppsspp-v1.4.2-768-ga0f1276a5_GH0.tar.gz) = 19002444 SHA256 (hrydgard-glslang-2edde666_GH0.tar.gz) = 9ab09c2aa5a89b2c32297358d25850bec56667aa28fdfe6986fbedd1ced28e78 SIZE (hrydgard-glslang-2edde666_GH0.tar.gz) = 1941913 SHA256 (hrydgard-ppsspp-lang-4fddbc9_GH0.tar.gz) = 73d007391fe0cb5f6691ae8d385eeae7eda02992b1a0eb121d265c4c70047d4f From owner-svn-ports-branches@freebsd.org Wed Nov 15 13:01:44 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3ABCDDC7C8; Wed, 15 Nov 2017 13:01:44 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id AE5006A541; Wed, 15 Nov 2017 13:01:44 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAFD1hxG059185; Wed, 15 Nov 2017 13:01:43 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAFD1hwr059183; Wed, 15 Nov 2017 13:01:43 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201711151301.vAFD1hwr059183@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 15 Nov 2017 13:01:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454238 - branches/2017Q4/www/varnish4 X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q4/www/varnish4 X-SVN-Commit-Revision: 454238 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.25 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, 15 Nov 2017 13:01:45 -0000 Author: feld Date: Wed Nov 15 13:01:43 2017 New Revision: 454238 URL: https://svnweb.freebsd.org/changeset/ports/454238 Log: MFH: r454237 www/varnish4: Update to 4.1.9 Changelog: https://varnish-cache.org/releases/rel4.1.9.html#rel4-1-9 Security: CVE-2017-8807 Security: VSV00002 Modified: branches/2017Q4/www/varnish4/Makefile branches/2017Q4/www/varnish4/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/varnish4/Makefile ============================================================================== --- branches/2017Q4/www/varnish4/Makefile Wed Nov 15 13:01:09 2017 (r454237) +++ branches/2017Q4/www/varnish4/Makefile Wed Nov 15 13:01:43 2017 (r454238) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= varnish -PORTVERSION= 4.1.8 +PORTVERSION= 4.1.9 DISTVERSIONPREFIX= varnish- PORTREVISION= 0 CATEGORIES= www Modified: branches/2017Q4/www/varnish4/distinfo ============================================================================== --- branches/2017Q4/www/varnish4/distinfo Wed Nov 15 13:01:09 2017 (r454237) +++ branches/2017Q4/www/varnish4/distinfo Wed Nov 15 13:01:43 2017 (r454238) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502147563 -SHA256 (varnishcache-varnish-cache-varnish-4.1.8_GH0.tar.gz) = 6d5735d1562570517feae551b236d2c321537785ff5e08fe40ce5315c32ef53c -SIZE (varnishcache-varnish-cache-varnish-4.1.8_GH0.tar.gz) = 946513 +TIMESTAMP = 1510750668 +SHA256 (varnishcache-varnish-cache-varnish-4.1.9_GH0.tar.gz) = c062169e334063af1390357fdb6d1d223ed8813c422fae0dc2e3101ca7ee2c84 +SIZE (varnishcache-varnish-cache-varnish-4.1.9_GH0.tar.gz) = 949367 From owner-svn-ports-branches@freebsd.org Wed Nov 15 13:03:15 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A9F4DDC85D; Wed, 15 Nov 2017 13:03:15 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id 14E326A7A4; Wed, 15 Nov 2017 13:03:15 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAFD3ESg061883; Wed, 15 Nov 2017 13:03:14 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAFD3EKO061881; Wed, 15 Nov 2017 13:03:14 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201711151303.vAFD3EKO061881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 15 Nov 2017 13:03:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454240 - branches/2017Q4/www/varnish5 X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q4/www/varnish5 X-SVN-Commit-Revision: 454240 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.25 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, 15 Nov 2017 13:03:15 -0000 Author: feld Date: Wed Nov 15 13:03:13 2017 New Revision: 454240 URL: https://svnweb.freebsd.org/changeset/ports/454240 Log: MFH: r454239 www/varnish5: Update to 5.2.1 Changelog: https://varnish-cache.org/releases/rel5.2.1.html#rel5-2-1 Security: CVE-2017-8807 Security: VSV00002 Modified: branches/2017Q4/www/varnish5/Makefile branches/2017Q4/www/varnish5/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/varnish5/Makefile ============================================================================== --- branches/2017Q4/www/varnish5/Makefile Wed Nov 15 13:02:46 2017 (r454239) +++ branches/2017Q4/www/varnish5/Makefile Wed Nov 15 13:03:13 2017 (r454240) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= varnish -PORTVERSION= 5.2.0 +PORTVERSION= 5.2.1 DISTVERSIONPREFIX= varnish- PORTREVISION= 0 CATEGORIES= www Modified: branches/2017Q4/www/varnish5/distinfo ============================================================================== --- branches/2017Q4/www/varnish5/distinfo Wed Nov 15 13:02:46 2017 (r454239) +++ branches/2017Q4/www/varnish5/distinfo Wed Nov 15 13:03:13 2017 (r454240) @@ -1,3 +1,3 @@ -TIMESTAMP = 1506694764 -SHA256 (varnishcache-varnish-cache-varnish-5.2.0_GH0.tar.gz) = fb95ff65e23eacf96f7d2899a225000e7adc2bc520540deff1e92ee4ad1b5e75 -SIZE (varnishcache-varnish-cache-varnish-5.2.0_GH0.tar.gz) = 1259189 +TIMESTAMP = 1510750491 +SHA256 (varnishcache-varnish-cache-varnish-5.2.1_GH0.tar.gz) = f44decf0f382a2ac76aaaa2478167a6b41909a3f6179eeefce402d19e694aba0 +SIZE (varnishcache-varnish-cache-varnish-5.2.1_GH0.tar.gz) = 1259369 From owner-svn-ports-branches@freebsd.org Wed Nov 15 14:26:07 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80DBEDDE56C; Wed, 15 Nov 2017 14:26:07 +0000 (UTC) (envelope-from sunpoet@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 mx1.freebsd.org (Postfix) with ESMTPS id 4A9726CFEA; Wed, 15 Nov 2017 14:26:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAFEQ6w2096006; Wed, 15 Nov 2017 14:26:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAFEQ6MD096004; Wed, 15 Nov 2017 14:26:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201711151426.vAFEQ6MD096004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 15 Nov 2017 14:26:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454247 - branches/2017Q4/www/rubygem-geminabox X-SVN-Group: ports-branches X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: branches/2017Q4/www/rubygem-geminabox X-SVN-Commit-Revision: 454247 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.25 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, 15 Nov 2017 14:26:07 -0000 Author: sunpoet Date: Wed Nov 15 14:26:06 2017 New Revision: 454247 URL: https://svnweb.freebsd.org/changeset/ports/454247 Log: MFH: r454148 Update to 0.13.10 Changes: https://github.com/geminabox/geminabox/blob/master/CHANGELOG.md Security: 27b38d85-c891-11e7-a7bd-cd1209e563f2 Approved by: ports-secteam (swills) Modified: branches/2017Q4/www/rubygem-geminabox/Makefile branches/2017Q4/www/rubygem-geminabox/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/rubygem-geminabox/Makefile ============================================================================== --- branches/2017Q4/www/rubygem-geminabox/Makefile Wed Nov 15 13:55:16 2017 (r454246) +++ branches/2017Q4/www/rubygem-geminabox/Makefile Wed Nov 15 14:26:06 2017 (r454247) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= geminabox -PORTVERSION= 0.13.9 +PORTVERSION= 0.13.10 CATEGORIES= www rubygems MASTER_SITES= RG Modified: branches/2017Q4/www/rubygem-geminabox/distinfo ============================================================================== --- branches/2017Q4/www/rubygem-geminabox/distinfo Wed Nov 15 13:55:16 2017 (r454246) +++ branches/2017Q4/www/rubygem-geminabox/distinfo Wed Nov 15 14:26:06 2017 (r454247) @@ -1,3 +1,3 @@ -TIMESTAMP = 1506343664 -SHA256 (rubygem/geminabox-0.13.9.gem) = 8fb88cd7819593c89293e530b0b12a4f62386ca15e78db71ed97d30a3ac5c389 -SIZE (rubygem/geminabox-0.13.9.gem) = 51200 +TIMESTAMP = 1510587492 +SHA256 (rubygem/geminabox-0.13.10.gem) = 371f50c6d4874b9cd0270f11afc80b1d4d33378d9a87760ad80373075e581683 +SIZE (rubygem/geminabox-0.13.10.gem) = 51200 From owner-svn-ports-branches@freebsd.org Thu Nov 16 13:39:36 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46C7EDDE2F0; Thu, 16 Nov 2017 13:39:36 +0000 (UTC) (envelope-from ehaupt@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 mx1.freebsd.org (Postfix) with ESMTPS id 12BB87B408; Thu, 16 Nov 2017 13:39:36 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAGDdZcs018681; Thu, 16 Nov 2017 13:39:35 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAGDdZfL018679; Thu, 16 Nov 2017 13:39:35 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711161339.vAGDdZfL018679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 16 Nov 2017 13:39:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454309 - in branches/2017Q4/devel: py-freezegun py3-freezegun X-SVN-Group: ports-branches X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in branches/2017Q4/devel: py-freezegun py3-freezegun X-SVN-Commit-Revision: 454309 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.25 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, 16 Nov 2017 13:39:36 -0000 Author: ehaupt Date: Thu Nov 16 13:39:34 2017 New Revision: 454309 URL: https://svnweb.freebsd.org/changeset/ports/454309 Log: MFH: r454308 The port lists databases/py3-sqlite3 as dependency which does not exist. There are individual python-sub-version ports though (devel/py3{4,5,6}-sqlite3). Use PYTHON_SUFFIX to depend on requested version. PR: 223514 Approved by: koobs (maintainer) Approved by: ports-secteam (blanket) Modified: branches/2017Q4/devel/py-freezegun/Makefile branches/2017Q4/devel/py3-freezegun/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/devel/py-freezegun/Makefile ============================================================================== --- branches/2017Q4/devel/py-freezegun/Makefile Thu Nov 16 13:33:35 2017 (r454308) +++ branches/2017Q4/devel/py-freezegun/Makefile Thu Nov 16 13:39:34 2017 (r454309) @@ -3,6 +3,7 @@ PORTNAME= freezegun PORTVERSION= 0.3.9 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2017Q4/devel/py3-freezegun/Makefile ============================================================================== --- branches/2017Q4/devel/py3-freezegun/Makefile Thu Nov 16 13:33:35 2017 (r454308) +++ branches/2017Q4/devel/py3-freezegun/Makefile Thu Nov 16 13:39:34 2017 (r454309) @@ -6,7 +6,7 @@ MASTERDIR= ${.CURDIR}/../py-freezegun RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py3-six \ ${PYTHON_PKGNAMEPREFIX}dateutil>=2.0:devel/py3-dateutil TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py3-nose \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py3-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py${PYTHON_SUFFIX}-sqlite3 \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py3-mock USES= python:3.3+ From owner-svn-ports-branches@freebsd.org Thu Nov 16 18:49:25 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39C2BDE5BE3; Thu, 16 Nov 2017 18:49:25 +0000 (UTC) (envelope-from jkim@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 mx1.freebsd.org (Postfix) with ESMTPS id 02DF7655F9; Thu, 16 Nov 2017 18:49:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAGInOnJ050888; Thu, 16 Nov 2017 18:49:24 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAGInNMO050886; Thu, 16 Nov 2017 18:49:23 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201711161849.vAGInNMO050886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 16 Nov 2017 18:49:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454325 - branches/2017Q4/www/linux-flashplayer X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: branches/2017Q4/www/linux-flashplayer X-SVN-Commit-Revision: 454325 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.25 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, 16 Nov 2017 18:49:25 -0000 Author: jkim Date: Thu Nov 16 18:49:23 2017 New Revision: 454325 URL: https://svnweb.freebsd.org/changeset/ports/454325 Log: MFH: r454324 Update to 27.0.0.187. https://helpx.adobe.com/security/products/flash-player/apsb17-33.html Approved by: ports-secteam (blanket) Modified: branches/2017Q4/www/linux-flashplayer/Makefile branches/2017Q4/www/linux-flashplayer/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/linux-flashplayer/Makefile ============================================================================== --- branches/2017Q4/www/linux-flashplayer/Makefile Thu Nov 16 18:47:14 2017 (r454324) +++ branches/2017Q4/www/linux-flashplayer/Makefile Thu Nov 16 18:49:23 2017 (r454325) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 27.0.0.183 +PORTVERSION= 27.0.0.187 CATEGORIES= www multimedia linux MASTER_SITES= https://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION}/ PKGNAMEPREFIX= linux- Modified: branches/2017Q4/www/linux-flashplayer/distinfo ============================================================================== --- branches/2017Q4/www/linux-flashplayer/distinfo Thu Nov 16 18:47:14 2017 (r454324) +++ branches/2017Q4/www/linux-flashplayer/distinfo Thu Nov 16 18:49:23 2017 (r454325) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508993162 -SHA256 (flashplayer/27.0.0.183/flash_player_npapi_linux.i386.tar.gz) = ae4532b374b63aa2ce5a625d93e5ae543a073bcb1f812489a88c1595691e466f -SIZE (flashplayer/27.0.0.183/flash_player_npapi_linux.i386.tar.gz) = 8512893 +TIMESTAMP = 1510856334 +SHA256 (flashplayer/27.0.0.187/flash_player_npapi_linux.i386.tar.gz) = bc3a0722a72f6b24d314c04b75c05412c7b0802b8392c68b081c10549a244b1a +SIZE (flashplayer/27.0.0.187/flash_player_npapi_linux.i386.tar.gz) = 8511242 From owner-svn-ports-branches@freebsd.org Thu Nov 16 19:12:11 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0F65DE6478; Thu, 16 Nov 2017 19:12:11 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id 888D066756; Thu, 16 Nov 2017 19:12:11 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAGJCAe7062709; Thu, 16 Nov 2017 19:12:10 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAGJCA97062708; Thu, 16 Nov 2017 19:12:10 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201711161912.vAGJCA97062708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 16 Nov 2017 19:12:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454329 - branches/2017Q4/net/chrony X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q4/net/chrony X-SVN-Commit-Revision: 454329 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.25 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, 16 Nov 2017 19:12:11 -0000 Author: feld Date: Thu Nov 16 19:12:10 2017 New Revision: 454329 URL: https://svnweb.freebsd.org/changeset/ports/454329 Log: MFH: r454328 net/chrony: Remove dubious security warnings in pkg-message PR: 223647 Deleted: branches/2017Q4/net/chrony/pkg-message Modified: branches/2017Q4/net/chrony/Makefile Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/net/chrony/Makefile ============================================================================== --- branches/2017Q4/net/chrony/Makefile Thu Nov 16 19:11:42 2017 (r454328) +++ branches/2017Q4/net/chrony/Makefile Thu Nov 16 19:12:10 2017 (r454329) @@ -3,6 +3,7 @@ PORTNAME= chrony PORTVERSION= 3.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://download.tuxfamily.org/chrony/ From owner-svn-ports-branches@freebsd.org Thu Nov 16 20:21:17 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7525EDE80A9; Thu, 16 Nov 2017 20:21:17 +0000 (UTC) (envelope-from bdrewery@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 mx1.freebsd.org (Postfix) with ESMTPS id 414D568DCF; Thu, 16 Nov 2017 20:21:17 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAGKLG6m089745; Thu, 16 Nov 2017 20:21:16 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAGKLG8I089744; Thu, 16 Nov 2017 20:21:16 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201711162021.vAGKLG8I089744@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 16 Nov 2017 20:21:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454336 - branches/2017Q4/Mk X-SVN-Group: ports-branches X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: branches/2017Q4/Mk X-SVN-Commit-Revision: 454336 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.25 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, 16 Nov 2017 20:21:17 -0000 Author: bdrewery Date: Thu Nov 16 20:21:16 2017 New Revision: 454336 URL: https://svnweb.freebsd.org/changeset/ports/454336 Log: MFH: r454266 r454332 Fix [DE]SELECTED_OPTIONS to lazily evaluate as late as possible. If a port modifies OPTIONS_UNSET after including bsd.port.options.mk then these values were wrong even though all of 'showconfig', 'pretty-print-config', and the package generated all had the expected options. Only Poudriere and synth use these variables for incremental build checks. Reviewed by: sjg, bapt Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D13092 Follow-up r454266: Sort and remove duplicates for [DE]SELECTED_OPTIONS. Some ports like graphics/povray-meta do funky things like add the same option into PORT_OPTIONS twice. This also avoids a new leading blank space in some cases. With hat: portmgr Approved by: portmgr (implicit) Modified: branches/2017Q4/Mk/bsd.options.mk Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/Mk/bsd.options.mk ============================================================================== --- branches/2017Q4/Mk/bsd.options.mk Thu Nov 16 20:19:10 2017 (r454335) +++ branches/2017Q4/Mk/bsd.options.mk Thu Nov 16 20:21:16 2017 (r454336) @@ -640,23 +640,18 @@ _OPTIONS_${_target}:= ${_OPTIONS_${_target}} ${_prio}: .undef (SELECTED_OPTIONS) .undef (DESELECTED_OPTIONS) -.for opt in ${ALL_OPTIONS} -. if ${PORT_OPTIONS:M${opt}} -SELECTED_OPTIONS:= ${opt} ${SELECTED_OPTIONS} -. else -DESELECTED_OPTIONS:= ${opt} ${DESELECTED_OPTIONS} -. endif -.endfor +# Wait to expand PORT_OPTIONS until the last moment in case something modifies +# the selected OPTIONS after bsd.port.options.mk is included. This uses +# bmake's :@ for loop. +_SELECTED_OPTIONS= ${ALL_OPTIONS:@opt@${PORT_OPTIONS:M${opt}}@} +_DESELECTED_OPTIONS= ${ALL_OPTIONS:@opt@${"${PORT_OPTIONS:M${opt}}":?:${opt}}@} .for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} -. for opt in ${OPTIONS_${otype}_${m}} -. if ${PORT_OPTIONS:M${opt}} -SELECTED_OPTIONS:= ${opt} ${SELECTED_OPTIONS} -. else -DESELECTED_OPTIONS:= ${opt} ${DESELECTED_OPTIONS} -. endif -. endfor +_SELECTED_OPTIONS+= ${OPTIONS_${otype}_${m}:@opt@${PORT_OPTIONS:M${opt}}@} +_DESELECTED_OPTIONS+= ${OPTIONS_${otype}_${m}:@opt@${"${PORT_OPTIONS:M${opt}}":?:${opt}}@} . endfor .endfor +SELECTED_OPTIONS= ${_SELECTED_OPTIONS:O:u} +DESELECTED_OPTIONS= ${_DESELECTED_OPTIONS:O:u} .endif From owner-svn-ports-branches@freebsd.org Fri Nov 17 07:47:18 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23E67DBD2AF; Fri, 17 Nov 2017 07:47:18 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id EE9357E155; Fri, 17 Nov 2017 07:47:17 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAH7lHlY080904; Fri, 17 Nov 2017 07:47:17 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAH7lGph080897; Fri, 17 Nov 2017 07:47:16 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201711170747.vAH7lGph080897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 17 Nov 2017 07:47:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454365 - in branches/2017Q4/www: mediawiki127 mediawiki128 mediawiki129 X-SVN-Group: ports-branches X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in branches/2017Q4/www: mediawiki127 mediawiki128 mediawiki129 X-SVN-Commit-Revision: 454365 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.25 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, 17 Nov 2017 07:47:18 -0000 Author: wen Date: Fri Nov 17 07:47:16 2017 New Revision: 454365 URL: https://svnweb.freebsd.org/changeset/ports/454365 Log: MFH: r454245 - Update mediawiki to 1.29.2, 1.28.3 and 1.27.4 (include security fix) Approved by: ports-secteam (swills) Modified: branches/2017Q4/www/mediawiki127/Makefile branches/2017Q4/www/mediawiki127/distinfo branches/2017Q4/www/mediawiki128/Makefile branches/2017Q4/www/mediawiki128/distinfo branches/2017Q4/www/mediawiki129/Makefile branches/2017Q4/www/mediawiki129/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/mediawiki127/Makefile ============================================================================== --- branches/2017Q4/www/mediawiki127/Makefile Fri Nov 17 07:37:54 2017 (r454364) +++ branches/2017Q4/www/mediawiki127/Makefile Fri Nov 17 07:47:16 2017 (r454365) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.27.3 +PORTVERSION= 1.27.4 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 127 Modified: branches/2017Q4/www/mediawiki127/distinfo ============================================================================== --- branches/2017Q4/www/mediawiki127/distinfo Fri Nov 17 07:37:54 2017 (r454364) +++ branches/2017Q4/www/mediawiki127/distinfo Fri Nov 17 07:47:16 2017 (r454365) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494242844 -SHA256 (mediawiki-1.27.3.tar.gz) = 11d470582b52a471b4e99735b36a44b230681847a97ef032c2fc050fd8aea823 -SIZE (mediawiki-1.27.3.tar.gz) = 31509270 +TIMESTAMP = 1510734121 +SHA256 (mediawiki-1.27.4.tar.gz) = 6ffac6baacf8a0c999e2d15d24631963efc242b4dab2f632d2614c539eea3976 +SIZE (mediawiki-1.27.4.tar.gz) = 31813391 Modified: branches/2017Q4/www/mediawiki128/Makefile ============================================================================== --- branches/2017Q4/www/mediawiki128/Makefile Fri Nov 17 07:37:54 2017 (r454364) +++ branches/2017Q4/www/mediawiki128/Makefile Fri Nov 17 07:47:16 2017 (r454365) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.28.2 +PORTVERSION= 1.28.3 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 128 Modified: branches/2017Q4/www/mediawiki128/distinfo ============================================================================== --- branches/2017Q4/www/mediawiki128/distinfo Fri Nov 17 07:37:54 2017 (r454364) +++ branches/2017Q4/www/mediawiki128/distinfo Fri Nov 17 07:47:16 2017 (r454365) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494242041 -SHA256 (mediawiki-1.28.2.tar.gz) = 295026bfa63316fcffdeeaf84703d41bedaf31eef2fbaa9381c5356392537664 -SIZE (mediawiki-1.28.2.tar.gz) = 32965916 +TIMESTAMP = 1510734060 +SHA256 (mediawiki-1.28.3.tar.gz) = f6363df366eb5bb3b745630935eaf991503ba352f012709a0023f19993536a35 +SIZE (mediawiki-1.28.3.tar.gz) = 33311052 Modified: branches/2017Q4/www/mediawiki129/Makefile ============================================================================== --- branches/2017Q4/www/mediawiki129/Makefile Fri Nov 17 07:37:54 2017 (r454364) +++ branches/2017Q4/www/mediawiki129/Makefile Fri Nov 17 07:47:16 2017 (r454365) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.29.1 +PORTVERSION= 1.29.2 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 129 Modified: branches/2017Q4/www/mediawiki129/distinfo ============================================================================== --- branches/2017Q4/www/mediawiki129/distinfo Fri Nov 17 07:37:54 2017 (r454364) +++ branches/2017Q4/www/mediawiki129/distinfo Fri Nov 17 07:47:16 2017 (r454365) @@ -1,3 +1,3 @@ -TIMESTAMP = 1503799952 -SHA256 (mediawiki-1.29.1.tar.gz) = 752cbe4ea9d3fb1a83ac34eaec0b7dd20fc29ab985d36a850e01acddd757b70e -SIZE (mediawiki-1.29.1.tar.gz) = 39734499 +TIMESTAMP = 1510733991 +SHA256 (mediawiki-1.29.2.tar.gz) = 17dad8a5e5088b14cd120736bbf6a9f8b560a2d458f3c939bd0011f041931e80 +SIZE (mediawiki-1.29.2.tar.gz) = 40146157 From owner-svn-ports-branches@freebsd.org Fri Nov 17 07:50:08 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36ADCDBD347; Fri, 17 Nov 2017 07:50:08 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id ED0667E33A; Fri, 17 Nov 2017 07:50:07 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAH7o6qA081255; Fri, 17 Nov 2017 07:50:06 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAH7o6C8081249; Fri, 17 Nov 2017 07:50:06 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201711170750.vAH7o6C8081249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 17 Nov 2017 07:50:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454366 - in branches/2017Q4/www: moodle31 moodle32 moodle33 X-SVN-Group: ports-branches X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in branches/2017Q4/www: moodle31 moodle32 moodle33 X-SVN-Commit-Revision: 454366 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.25 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, 17 Nov 2017 07:50:08 -0000 Author: wen Date: Fri Nov 17 07:50:06 2017 New Revision: 454366 URL: https://svnweb.freebsd.org/changeset/ports/454366 Log: MFH: r454244 - Update moodle to 3.3.3, 3.2.6 and 3.1.9 (include security fix) - Adjust CONFLICTS to welcome moodle-3.4 Approved by: ports-secteam (swills) Modified: branches/2017Q4/www/moodle31/Makefile branches/2017Q4/www/moodle31/distinfo branches/2017Q4/www/moodle32/Makefile branches/2017Q4/www/moodle32/distinfo branches/2017Q4/www/moodle33/Makefile branches/2017Q4/www/moodle33/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/www/moodle31/Makefile ============================================================================== --- branches/2017Q4/www/moodle31/Makefile Fri Nov 17 07:47:16 2017 (r454365) +++ branches/2017Q4/www/moodle31/Makefile Fri Nov 17 07:50:06 2017 (r454366) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.1.8 +PORTVERSION= 3.1.9 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable31/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} @@ -12,7 +12,7 @@ COMMENT= Course management system based on social cons LICENSE= GPLv3 -CONFLICTS= moodle30-3.0.[0-9]* moodle32-3.2.[0-9]* moodle33-3.3.[0-9]* +CONFLICTS= moodle32-3.2.[0-9]* moodle33-3.3.[0-9]* moodle34-3.4 USES= cpe tar:tgz USE_PHP= ctype curl dom gd hash iconv intl json mbstring opcache \ Modified: branches/2017Q4/www/moodle31/distinfo ============================================================================== --- branches/2017Q4/www/moodle31/distinfo Fri Nov 17 07:47:16 2017 (r454365) +++ branches/2017Q4/www/moodle31/distinfo Fri Nov 17 07:50:06 2017 (r454366) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505228130 -SHA256 (moodle-3.1.8.tgz) = 5209cdda1eaf3f88eb7e9eb852217ad5918607077251dab7fe29f088c76db35d -SIZE (moodle-3.1.8.tgz) = 38015937 +TIMESTAMP = 1510578379 +SHA256 (moodle-3.1.9.tgz) = 6c4b0afb71a96c9d0f532783e826ddc3f74df583b6c72fc30835c7f466f10be6 +SIZE (moodle-3.1.9.tgz) = 38020777 Modified: branches/2017Q4/www/moodle32/Makefile ============================================================================== --- branches/2017Q4/www/moodle32/Makefile Fri Nov 17 07:47:16 2017 (r454365) +++ branches/2017Q4/www/moodle32/Makefile Fri Nov 17 07:50:06 2017 (r454366) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.2.5 +PORTVERSION= 3.2.6 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable32/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} @@ -12,7 +12,7 @@ COMMENT= Course management system based on social cons LICENSE= GPLv3 -CONFLICTS= moodle30-3.0.[0-9]* moodle31-3.1.[0-9]* moodle33-3.3.[0-9]* +CONFLICTS= moodle31-3.1.[0-9]* moodle33-3.3.[0-9]* moodle34-3.4 USES= cpe tar:tgz USE_PHP= ctype curl dom gd hash iconv intl json mbstring opcache \ Modified: branches/2017Q4/www/moodle32/distinfo ============================================================================== --- branches/2017Q4/www/moodle32/distinfo Fri Nov 17 07:47:16 2017 (r454365) +++ branches/2017Q4/www/moodle32/distinfo Fri Nov 17 07:50:06 2017 (r454366) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505227764 -SHA256 (moodle-3.2.5.tgz) = 53a381988fc0aa0169c4e2af2364406614bc3cf0948631a1f3008df3ccbfa3c4 -SIZE (moodle-3.2.5.tgz) = 39902419 +TIMESTAMP = 1510578528 +SHA256 (moodle-3.2.6.tgz) = d5372913c4b4920e55fdf16d93f6902d0517d30b10eb8f54c2912c927105f02c +SIZE (moodle-3.2.6.tgz) = 40314104 Modified: branches/2017Q4/www/moodle33/Makefile ============================================================================== --- branches/2017Q4/www/moodle33/Makefile Fri Nov 17 07:47:16 2017 (r454365) +++ branches/2017Q4/www/moodle33/Makefile Fri Nov 17 07:50:06 2017 (r454366) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.3.2 +PORTVERSION= 3.3.3 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable33/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} @@ -12,7 +12,7 @@ COMMENT= Course management system based on social cons LICENSE= GPLv3 -CONFLICTS= moodle30-3.0.[0-9]* moodle31-3.1.[0-9]* moodle32-3.2.[0-9]* +CONFLICTS= moodle31-3.1.[0-9]* moodle32-3.2.[0-9]* moodle34-3.4 USES= cpe tar:tgz USE_PHP= ctype curl dom fileinfo gd hash iconv intl json mbstring \ Modified: branches/2017Q4/www/moodle33/distinfo ============================================================================== --- branches/2017Q4/www/moodle33/distinfo Fri Nov 17 07:47:16 2017 (r454365) +++ branches/2017Q4/www/moodle33/distinfo Fri Nov 17 07:50:06 2017 (r454366) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505227359 -SHA256 (moodle-3.3.2.tgz) = 1a34c8e85d05bb693a1f4f5e70b63f527cac655101236ab1e474aa295843fbf1 -SIZE (moodle-3.3.2.tgz) = 44171663 +TIMESTAMP = 1510578632 +SHA256 (moodle-3.3.3.tgz) = 2c7acf7b8011bfb958ea558e6c33f2f5ccc95cf3f57a90f85d57303a8f766066 +SIZE (moodle-3.3.3.tgz) = 44238027 From owner-svn-ports-branches@freebsd.org Fri Nov 17 19:18:40 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0D2DDE15B7; Fri, 17 Nov 2017 19:18:40 +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 mx1.freebsd.org (Postfix) with ESMTPS id 6A86A72185; Fri, 17 Nov 2017 19:18:40 +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 vAHJIdoe070885; Fri, 17 Nov 2017 19:18:39 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAHJId3l070883; Fri, 17 Nov 2017 19:18:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201711171918.vAHJId3l070883@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 17 Nov 2017 19:18:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454379 - branches/2017Q4/graphics/sekrit-twc-zimg X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/graphics/sekrit-twc-zimg X-SVN-Commit-Revision: 454379 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.25 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, 17 Nov 2017 19:18:40 -0000 Author: jbeich Date: Fri Nov 17 19:18:39 2017 New Revision: 454379 URL: https://svnweb.freebsd.org/changeset/ports/454379 Log: MFH: r454233 graphics/sekrit-twc-zimg: update to 2.6.2 Changes: https://github.com/sekrit-twc/zimg/compare/release-2.6.1...release-2.6.2 ABI: https://abi-laboratory.pro/tracker/timeline/z/ Approved by: ports-secteam (swills) Modified: branches/2017Q4/graphics/sekrit-twc-zimg/Makefile branches/2017Q4/graphics/sekrit-twc-zimg/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/graphics/sekrit-twc-zimg/Makefile ============================================================================== --- branches/2017Q4/graphics/sekrit-twc-zimg/Makefile Fri Nov 17 18:39:05 2017 (r454378) +++ branches/2017Q4/graphics/sekrit-twc-zimg/Makefile Fri Nov 17 19:18:39 2017 (r454379) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= zimg -PORTVERSION= 2.6.1 -PORTREVISION= 1 +PORTVERSION= 2.6.2 DISTVERSIONPREFIX= release- CATEGORIES= graphics PKGNAMEPREFIX= ${GH_ACCOUNT}- Modified: branches/2017Q4/graphics/sekrit-twc-zimg/distinfo ============================================================================== --- branches/2017Q4/graphics/sekrit-twc-zimg/distinfo Fri Nov 17 18:39:05 2017 (r454378) +++ branches/2017Q4/graphics/sekrit-twc-zimg/distinfo Fri Nov 17 19:18:39 2017 (r454379) @@ -1,3 +1,3 @@ -TIMESTAMP = 1504621137 -SHA256 (sekrit-twc-zimg-release-2.6.1_GH0.tar.gz) = 3f380898b4bf71c20cfedf9b2f87ba30612520c28b57c344c538dd56b1a5ea62 -SIZE (sekrit-twc-zimg-release-2.6.1_GH0.tar.gz) = 238285 +TIMESTAMP = 1510330823 +SHA256 (sekrit-twc-zimg-release-2.6.2_GH0.tar.gz) = db407144b265c1587867e00108f6fc810d40cf94be697de75985a0cb9041313d +SIZE (sekrit-twc-zimg-release-2.6.2_GH0.tar.gz) = 238355 From owner-svn-ports-branches@freebsd.org Fri Nov 17 22:40:06 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FB46DE4B7B; Fri, 17 Nov 2017 22:40:06 +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 mx1.freebsd.org (Postfix) with ESMTPS id 79F88782A1; Fri, 17 Nov 2017 22:40:06 +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 vAHMe5mO055962; Fri, 17 Nov 2017 22:40:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAHMe5On055960; Fri, 17 Nov 2017 22:40:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201711172240.vAHMe5On055960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 17 Nov 2017 22:40:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454391 - branches/2017Q4/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q4/emulators/citra X-SVN-Commit-Revision: 454391 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.25 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, 17 Nov 2017 22:40:06 -0000 Author: jbeich Date: Fri Nov 17 22:40:05 2017 New Revision: 454391 URL: https://svnweb.freebsd.org/changeset/ports/454391 Log: MFH: r453150 r453584 r453587 r453649 r453946 r454386 emulators/citra: update to s20171116 Changes: https://github.com/citra-emu/citra/compare/9381cfa6...c810a3f3b Approved by: ports-secteam (swills, implicit for snapshots) Modified: branches/2017Q4/emulators/citra/Makefile branches/2017Q4/emulators/citra/distinfo Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/emulators/citra/Makefile ============================================================================== --- branches/2017Q4/emulators/citra/Makefile Fri Nov 17 22:22:56 2017 (r454390) +++ branches/2017Q4/emulators/citra/Makefile Fri Nov 17 22:40:05 2017 (r454391) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20171023 +PORTVERSION= s20171116 PORTREVISION?= 0 CATEGORIES= emulators @@ -26,11 +26,11 @@ ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dy USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 9381cfa6 +GH_TAGNAME= c810a3f3b GH_TUPLE= citra-emu:ext-soundtouch:019d208:soundtouch/externals/soundtouch \ - MerryMage:dynarmic:8f15e3f:dynarmic/externals/dynarmic \ - fmtlib:fmt:3.0.0-187-gac5484c:fmt/externals/fmt \ - herumi:xbyak:v5.40:xbyak/externals/xbyak \ + MerryMage:dynarmic:d3fb603:dynarmic/externals/dynarmic \ + fmtlib:fmt:4.0.0:fmt/externals/fmt \ + herumi:xbyak:v5.53-1-gc5da377:xbyak/externals/xbyak \ lsalzman:enet:a84c120:enet/externals/enet \ neobrain:nihstro:7e24743:nihstro/externals/nihstro \ philsquared:Catch:v1.9.4:catch/externals/catch \ @@ -63,8 +63,8 @@ QT5_CMAKE_BOOL= ENABLE_QT QT5_PLIST_FILES=bin/${PORTNAME}-qt \ man/man6/${PORTNAME}-qt.6.gz \ share/applications/${PORTNAME}.desktop \ - share/mime/packages/${PORTNAME}.xml \ - share/pixmaps/${PORTNAME}.svg + share/icons/hicolor/scalable/apps/${PORTNAME}.svg \ + share/mime/packages/${PORTNAME}.xml post-patch: @${REINPLACE_CMD} -e 's,share/man,man,' \ Modified: branches/2017Q4/emulators/citra/distinfo ============================================================================== --- branches/2017Q4/emulators/citra/distinfo Fri Nov 17 22:22:56 2017 (r454390) +++ branches/2017Q4/emulators/citra/distinfo Fri Nov 17 22:40:05 2017 (r454391) @@ -1,14 +1,14 @@ -TIMESTAMP = 1508780670 -SHA256 (citra-emu-citra-s20171023-9381cfa6_GH0.tar.gz) = e1d199aed784bbde9749790d5641d7582e9c9307c68e617710f36e4c6c622b27 -SIZE (citra-emu-citra-s20171023-9381cfa6_GH0.tar.gz) = 1587512 +TIMESTAMP = 1510889730 +SHA256 (citra-emu-citra-s20171116-c810a3f3b_GH0.tar.gz) = a70fde728b71a3b1682fc1b1bfaca1269e9779072c03e776322a290fbbc89066 +SIZE (citra-emu-citra-s20171116-c810a3f3b_GH0.tar.gz) = 1630153 SHA256 (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = f48c211bbabe7ad79e1c504af1082756c74241be6bab4aca13140803f4b694e7 SIZE (citra-emu-ext-soundtouch-019d208_GH0.tar.gz) = 59366 -SHA256 (MerryMage-dynarmic-8f15e3f_GH0.tar.gz) = 3e5b184c8d190849374fa426ee6a511f3375682232b46aaa8e060632eaa4cadb -SIZE (MerryMage-dynarmic-8f15e3f_GH0.tar.gz) = 420423 -SHA256 (fmtlib-fmt-3.0.0-187-gac5484c_GH0.tar.gz) = 1400d4e807c5bb0329e44784210bbabddd4f42103f3d9d86c8d3d97188bc9975 -SIZE (fmtlib-fmt-3.0.0-187-gac5484c_GH0.tar.gz) = 615682 -SHA256 (herumi-xbyak-v5.40_GH0.tar.gz) = 106bbe15dc7e5d025ff98d1b5dd62a3f0a26d2569debe77fcde14852d50a66e1 -SIZE (herumi-xbyak-v5.40_GH0.tar.gz) = 203521 +SHA256 (MerryMage-dynarmic-d3fb603_GH0.tar.gz) = a6e159eab0d40a39e868dbab7d250af5076fb3cef5a4030dcaa0eaa8ead71f66 +SIZE (MerryMage-dynarmic-d3fb603_GH0.tar.gz) = 421395 +SHA256 (fmtlib-fmt-4.0.0_GH0.tar.gz) = 35300a0d356529447a79ed5ccf419239d8b34f916e5d4625f046fd37afa3650a +SIZE (fmtlib-fmt-4.0.0_GH0.tar.gz) = 617818 +SHA256 (herumi-xbyak-v5.53-1-gc5da377_GH0.tar.gz) = 51129bc945fe2650f5fcd41f3b0166555b17589f03bda5d2216927234ef6446a +SIZE (herumi-xbyak-v5.53-1-gc5da377_GH0.tar.gz) = 206888 SHA256 (lsalzman-enet-a84c120_GH0.tar.gz) = 409d458f2da9d8bba49191ab6abaeb6bcf89193cd5eff07382c1d7b5f3fb06f0 SIZE (lsalzman-enet-a84c120_GH0.tar.gz) = 79369 SHA256 (neobrain-nihstro-7e24743_GH0.tar.gz) = 063728b01f7de99ca91693c46bd5c5a0fb03c0058baf4452d539f630b10f3650 From owner-svn-ports-branches@freebsd.org Sat Nov 18 20:56:02 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87A0DDDC24E; Sat, 18 Nov 2017 20:56:02 +0000 (UTC) (envelope-from madpilot@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 mx1.freebsd.org (Postfix) with ESMTPS id 4FF357D177; Sat, 18 Nov 2017 20:56:02 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAIKu1hi026539; Sat, 18 Nov 2017 20:56:01 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAIKu0LJ026528; Sat, 18 Nov 2017 20:56:00 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201711182056.vAIKu0LJ026528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sat, 18 Nov 2017 20:56:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r454459 - in branches/2017Q4/net: asterisk13 pjsip pjsip/files X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in branches/2017Q4/net: asterisk13 pjsip pjsip/files X-SVN-Commit-Revision: 454459 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.25 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, 18 Nov 2017 20:56:02 -0000 Author: madpilot Date: Sat Nov 18 20:56:00 2017 New Revision: 454459 URL: https://svnweb.freebsd.org/changeset/ports/454459 Log: MFH: r451278 r451306 r451358 r451461 r451734 r454258 Register conflict with libsrtp. Reported by: rodrigo - Update net/pjsip to 2.7 - Bump PORTVERSION on asterisk13 port to avoid ABI problems - While here, sort the plist Fix CONFLICTS to not overwrite slave port setting. PR: 222804 Submitted by: vvd@unislabs.com Correctly handle option caused conflict. PR: 222845 Submitted by: O. Hartmann Update pjsip patch to work with libressl after the latest update to 2.7, which broke it. PR: 216898 Submitted by: OlivierW - Update pjsip to 2.7.1 - Import patches from the asterisk project - Regenrate patches Security: 19b052c9-c533-11e7-8da5-001999f8d30b Approved by: ports-secteam (swills) Added: branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__parser.c - copied unchanged from r454258, head/net/pjsip/files/patch-pjsip_src_pjsip_sip__parser.c branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__transport.c - copied unchanged from r454258, head/net/pjsip/files/patch-pjsip_src_pjsip_sip__transport.c Deleted: branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__multipart.c branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__transaction.c Modified: branches/2017Q4/net/asterisk13/Makefile branches/2017Q4/net/pjsip/Makefile branches/2017Q4/net/pjsip/distinfo branches/2017Q4/net/pjsip/files/patch-aconfigure branches/2017Q4/net/pjsip/files/patch-pjlib_src_pj_ssl__sock__ossl.c branches/2017Q4/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in branches/2017Q4/net/pjsip/files/patch-third__party_build_os-auto.mak.in branches/2017Q4/net/pjsip/pkg-plist Directory Properties: branches/2017Q4/ (props changed) Modified: branches/2017Q4/net/asterisk13/Makefile ============================================================================== --- branches/2017Q4/net/asterisk13/Makefile Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/asterisk13/Makefile Sat Nov 18 20:56:00 2017 (r454459) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.18.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Modified: branches/2017Q4/net/pjsip/Makefile ============================================================================== --- branches/2017Q4/net/pjsip/Makefile Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/Makefile Sat Nov 18 20:56:00 2017 (r454459) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= pjsip -PORTVERSION= 2.6 -PORTREVISION= 2 +PORTVERSION= 2.7.1 CATEGORIES= net MASTER_SITES= http://www.pjsip.org/release/${PORTVERSION}/ DISTNAME= pjproject-${DISTVERSION} @@ -14,7 +13,7 @@ LICENSE= GPLv2+ LIB_DEPENDS= libportaudio.so:audio/portaudio -CONFLICTS= pjsip-extsrtp-[0-9]* +CONFLICTS?= pjsip-extsrtp-[0-9]* GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-external-pa \ @@ -87,6 +86,7 @@ AMR_LIB_DEPENDS= libopencore-amrwb.so:audio/opencore- libvo-amrwbenc.so:audio/vo-amrwbenc EXTSRTP_CONFIGURE_WITH= external-srtp EXTSRTP_LIB_DEPENDS= libsrtp.so:net/libsrtp +EXTSRTP_CONFLICTS_OFF= libsrtp-[0-9]* WEBRTC_CONFIGURE_OFF= --disable-libwebrtc post-patch: Modified: branches/2017Q4/net/pjsip/distinfo ============================================================================== --- branches/2017Q4/net/pjsip/distinfo Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/distinfo Sat Nov 18 20:56:00 2017 (r454459) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486460881 -SHA256 (pjproject-2.6.tar.bz2) = 2f5a1da1c174d845871c758bd80fbb580fca7799d3cfaa0d3c4e082b5161c7b4 -SIZE (pjproject-2.6.tar.bz2) = 4933273 +TIMESTAMP = 1510760850 +SHA256 (pjproject-2.7.1.tar.bz2) = 59fabc62a02b2b80857297cfb10e2c68c473f4a0acc6e848cfefe8421f2c3126 +SIZE (pjproject-2.7.1.tar.bz2) = 4880007 Modified: branches/2017Q4/net/pjsip/files/patch-aconfigure ============================================================================== --- branches/2017Q4/net/pjsip/files/patch-aconfigure Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/files/patch-aconfigure Sat Nov 18 20:56:00 2017 (r454459) @@ -1,6 +1,6 @@ ---- aconfigure.orig 2017-01-25 11:23:08 UTC +--- aconfigure.orig 2017-11-01 05:23:36 UTC +++ aconfigure -@@ -6310,14 +6310,7 @@ $as_echo "Checking sound device backend... null sound" +@@ -6362,14 +6362,7 @@ $as_echo "Checking sound device backend... null sound" ;; *) ac_pjmedia_snd=alsa @@ -15,7 +15,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: result: Checking sound device backend... unix" >&5 -@@ -6941,7 +6934,7 @@ else +@@ -7022,7 +7015,7 @@ else FFMPEG_PREFIX=$with_ffmpeg { $as_echo "$as_me:${as_lineno-$LINENO}: result: Using ffmpeg prefix... $FFMPEG_PREFIX" >&5 $as_echo "Using ffmpeg prefix... $FFMPEG_PREFIX" >&6; } @@ -24,7 +24,7 @@ fi for ac_prog in pkg-config "python pkgconfig.py" -@@ -8493,7 +8486,7 @@ $as_echo "Checking if libwebrtc is disabled...no" >&6; +@@ -8669,7 +8662,7 @@ $as_echo "Checking if libwebrtc is disabled...no" >&6; ac_webrtc_instset=sse2 ac_webrtc_cflags="-msse2" ;; Modified: branches/2017Q4/net/pjsip/files/patch-pjlib_src_pj_ssl__sock__ossl.c ============================================================================== --- branches/2017Q4/net/pjsip/files/patch-pjlib_src_pj_ssl__sock__ossl.c Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/files/patch-pjlib_src_pj_ssl__sock__ossl.c Sat Nov 18 20:56:00 2017 (r454459) @@ -1,7 +1,7 @@ ---- pjlib/src/pj/ssl_sock_ossl.c.orig 2017-01-24 05:41:05 UTC +--- pjlib/src/pj/ssl_sock_ossl.c.orig 2017-09-14 05:03:45 UTC +++ pjlib/src/pj/ssl_sock_ossl.c -@@ -54,7 +54,7 @@ - #include +@@ -53,7 +53,7 @@ + #include #include -#if !defined(OPENSSL_NO_EC) && OPENSSL_VERSION_NUMBER >= 0x1000200fL @@ -9,7 +9,7 @@ # include -@@ -112,7 +112,7 @@ static unsigned get_nid_from_cid(unsigned cid) +@@ -111,7 +111,7 @@ static unsigned get_nid_from_cid(unsigned cid) #endif @@ -18,8 +18,42 @@ # define OPENSSL_NO_SSL2 /* seems to be removed in 1.1.0 */ # define M_ASN1_STRING_data(x) ASN1_STRING_get0_data(x) # define M_ASN1_STRING_length(x) ASN1_STRING_length(x) -@@ -452,7 +452,7 @@ static pj_status_t init_openssl(void) +@@ -126,7 +126,7 @@ static unsigned get_nid_from_cid(unsigned cid) + + #ifdef _MSC_VER +-# if OPENSSL_VERSION_NUMBER >= 0x10100000L ++# if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + # pragma comment(lib, "libcrypto") + # pragma comment(lib, "libssl") + # pragma comment(lib, "crypt32") +@@ -535,13 +535,13 @@ static pj_status_t init_openssl(void) + pj_assert(status == PJ_SUCCESS); + + /* Init OpenSSL lib */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + SSL_library_init(); + SSL_load_error_strings(); + #else + OPENSSL_init_ssl(0, NULL); + #endif +-#if OPENSSL_VERSION_NUMBER < 0x009080ffL ++#if OPENSSL_VERSION_NUMBER < 0x009080ffL || defined(LIBRESSL_VERSION_NUMBER) + /* This is now synonym of SSL_library_init() */ + OpenSSL_add_all_algorithms(); + #endif +@@ -556,7 +556,7 @@ static pj_status_t init_openssl(void) + int nid; + const char *cname; + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + meth = (SSL_METHOD*)SSLv23_server_method(); + if (!meth) + meth = (SSL_METHOD*)TLSv1_server_method(); +@@ -599,7 +599,7 @@ static pj_status_t init_openssl(void) + SSL_set_session(ssl, SSL_SESSION_new()); -#if !defined(OPENSSL_NO_EC) && OPENSSL_VERSION_NUMBER >= 0x1000200fL @@ -27,8 +61,44 @@ openssl_curves_num = SSL_get_shared_curve(ssl,-1); if (openssl_curves_num > PJ_ARRAY_SIZE(openssl_curves)) openssl_curves_num = PJ_ARRAY_SIZE(openssl_curves); -@@ -1069,7 +1069,7 @@ static pj_status_t set_cipher_list(pj_ssl_sock_t *ssoc +@@ -768,7 +768,7 @@ static pj_status_t create_ssl(pj_ssl_sock_t *ssock) + BIO *bio; + DH *dh; + long options; +-#if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L ++#if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L && !defined(LIBRESSL_VERSION_NUMBER) + EC_KEY *ecdh; + #endif + SSL_METHOD *ssl_method = NULL; +@@ -791,7 +791,7 @@ static pj_status_t create_ssl(pj_ssl_sock_t *ssock) + ssock->param.proto = PJ_SSL_SOCK_PROTO_SSL23; + /* Determine SSL method to use */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + switch (ssock->param.proto) { + case PJ_SSL_SOCK_PROTO_TLS1: + ssl_method = (SSL_METHOD*)TLSv1_method(); +@@ -927,7 +927,7 @@ static pj_status_t create_ssl(pj_ssl_sock_t *ssock) + if (dh != NULL) { + if (SSL_CTX_set_tmp_dh(ctx, dh)) { + options = SSL_OP_CIPHER_SERVER_PREFERENCE | +- #if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L ++ #if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L && !defined(LIBRESSL_VERSION_NUMBER) + SSL_OP_SINGLE_ECDH_USE | + #endif + SSL_OP_SINGLE_DH_USE; +@@ -995,7 +995,7 @@ static pj_status_t create_ssl(pj_ssl_sock_t *ssock) + if (SSL_CTX_ctrl(ctx, SSL_CTRL_SET_ECDH_AUTO, 1, NULL)) { + PJ_LOG(4,(ssock->pool->obj_name, "SSL ECDH initialized " + "(automatic), faster PFS ciphers enabled")); +- #if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L ++ #if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L && !defined(LIBRESSL_VERSION_NUMBER) + } else { + /* enables AES-128 ciphers, to get AES-256 use NID_secp384r1 */ + ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); +@@ -1228,7 +1228,7 @@ static pj_status_t set_cipher_list(pj_ssl_sock_t *ssoc + static pj_status_t set_curves_list(pj_ssl_sock_t *ssock) { -#if !defined(OPENSSL_NO_EC) && OPENSSL_VERSION_NUMBER >= 0x1000200fL @@ -36,7 +106,7 @@ int ret; int curves[PJ_SSL_SOCK_MAX_CURVES]; unsigned cnt; -@@ -1100,7 +1100,7 @@ static pj_status_t set_curves_list(pj_ssl_sock_t *ssoc +@@ -1259,7 +1259,7 @@ static pj_status_t set_curves_list(pj_ssl_sock_t *ssoc static pj_status_t set_sigalgs(pj_ssl_sock_t *ssock) { Modified: branches/2017Q4/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in ============================================================================== --- branches/2017Q4/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in Sat Nov 18 20:56:00 2017 (r454459) @@ -1,6 +1,6 @@ ---- pjmedia/build/os-auto.mak.in.orig 2016-08-25 01:36:33 UTC +--- pjmedia/build/os-auto.mak.in.orig 2017-09-22 02:42:22 UTC +++ pjmedia/build/os-auto.mak.in -@@ -215,50 +215,7 @@ export CFLAGS += -I$(THIRD_PARTY)/webrtc/src +@@ -220,50 +220,7 @@ export CFLAGS += -I$(THIRD_PARTY)/webrtc/src endif endif Copied: branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__parser.c (from r454258, head/net/pjsip/files/patch-pjsip_src_pjsip_sip__parser.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__parser.c Sat Nov 18 20:56:00 2017 (r454459, copy of r454258, head/net/pjsip/files/patch-pjsip_src_pjsip_sip__parser.c) @@ -0,0 +1,20 @@ +--- pjsip/src/pjsip/sip_parser.c.orig 2017-11-08 02:58:18 UTC ++++ pjsip/src/pjsip/sip_parser.c +@@ -834,13 +834,13 @@ PJ_DEF(pj_status_t) pjsip_find_msg( const char *buf, p + pj_bool_t is_datagram, pj_size_t *msg_size) + { + #if PJ_HAS_TCP +- const char *hdr_end; +- const char *body_start; ++ const char *volatile hdr_end; ++ const char *volatile body_start; + const char *pos; +- const char *line; ++ const char *volatile line; + int content_length = -1; + pj_str_t cur_msg; +- pj_status_t status = PJ_SUCCESS; ++ volatile pj_status_t status = PJSIP_EMISSINGHDR; + const pj_str_t end_hdr = { "\n\r\n", 3}; + + *msg_size = size; Copied: branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__transport.c (from r454258, head/net/pjsip/files/patch-pjsip_src_pjsip_sip__transport.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q4/net/pjsip/files/patch-pjsip_src_pjsip_sip__transport.c Sat Nov 18 20:56:00 2017 (r454459, copy of r454258, head/net/pjsip/files/patch-pjsip_src_pjsip_sip__transport.c) @@ -0,0 +1,25 @@ +--- pjsip/src/pjsip/sip_transport.c.orig 2017-11-08 02:58:18 UTC ++++ pjsip/src/pjsip/sip_transport.c +@@ -974,7 +974,21 @@ static pj_bool_t is_transport_valid(pjsip_transport *t + const pjsip_transport_key *key, + int key_len) + { +- return (pj_hash_get(tpmgr->table, key, key_len, NULL) == (void*)tp); ++ transport *tp_iter; ++ ++ if (pj_hash_get(tpmgr->table, key, key_len, NULL) == (void*)tp) { ++ return PJ_TRUE; ++ } ++ ++ tp_iter = tpmgr->tp_list.next; ++ while (tp_iter != &tpmgr->tp_list) { ++ if (tp_iter->tp == tp) { ++ return PJ_TRUE; ++ } ++ tp_iter = tp_iter->next; ++ } ++ ++ return PJ_FALSE; + } + + /* Modified: branches/2017Q4/net/pjsip/files/patch-third__party_build_os-auto.mak.in ============================================================================== --- branches/2017Q4/net/pjsip/files/patch-third__party_build_os-auto.mak.in Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/files/patch-third__party_build_os-auto.mak.in Sat Nov 18 20:56:00 2017 (r454459) @@ -1,6 +1,6 @@ ---- third_party/build/os-auto.mak.in.orig 2016-12-22 09:33:55 UTC +--- third_party/build/os-auto.mak.in.orig 2017-09-22 02:42:22 UTC +++ third_party/build/os-auto.mak.in -@@ -104,8 +104,7 @@ else ifneq ($(findstring mips,@ac_webrtc_instset@),) +@@ -112,8 +112,7 @@ else ifneq ($(findstring mips,@ac_webrtc_instset@),) else # Generic fixed point WEBRTC_SRC = \ modules/audio_processing/aecm/aecm_core_c.o \ Modified: branches/2017Q4/net/pjsip/pkg-plist ============================================================================== --- branches/2017Q4/net/pjsip/pkg-plist Sat Nov 18 20:30:35 2017 (r454458) +++ branches/2017Q4/net/pjsip/pkg-plist Sat Nov 18 20:56:00 2017 (r454459) @@ -1,16 +1,5 @@ -include/pj++/file.hpp -include/pj++/hash.hpp -include/pj++/list.hpp -include/pj++/lock.hpp -include/pj++/os.hpp -include/pj++/pool.hpp -include/pj++/proactor.hpp -include/pj++/scanner.hpp -include/pj++/sock.hpp -include/pj++/string.hpp -include/pj++/timer.hpp -include/pj++/tree.hpp -include/pj++/types.hpp +%%PJSUA%%bin/pjsua +%%PJSUA%%bin/pjsystest include/pj/activesock.h include/pj/addr_resolv.h include/pj/array.h @@ -25,6 +14,7 @@ include/pj/compat/cc_mwcc.h include/pj/compat/ctype.h include/pj/compat/errno.h include/pj/compat/high_precision.h +include/pj/compat/limits.h include/pj/compat/m_alpha.h include/pj/compat/m_armv4.h include/pj/compat/m_auto.h @@ -38,14 +28,14 @@ include/pj/compat/malloc.h include/pj/compat/os_auto.h include/pj/compat/os_auto.h.in include/pj/compat/os_darwinos.h -include/pj/compat/os_linux.h include/pj/compat/os_linux_kernel.h +include/pj/compat/os_linux.h include/pj/compat/os_palmos.h include/pj/compat/os_rtems.h include/pj/compat/os_sunos.h include/pj/compat/os_symbian.h -include/pj/compat/os_win32.h include/pj/compat/os_win32_wince.h +include/pj/compat/os_win32.h include/pj/compat/os_winphone8.h include/pj/compat/os_winuwp.h include/pj/compat/rand.h @@ -56,9 +46,9 @@ include/pj/compat/stdarg.h include/pj/compat/stdfileio.h include/pj/compat/string.h include/pj/compat/time.h -include/pj/config.h -include/pj/config_site.h include/pj/config_site_sample.h +include/pj/config_site.h +include/pj/config.h include/pj/ctype.h include/pj/doxygen.h include/pj/errno.h @@ -70,38 +60,51 @@ include/pj/guid.h include/pj/hash.h include/pj/ioqueue.h include/pj/ip_helper.h -include/pj/list.h +include/pj/limits.h include/pj/list_i.h +include/pj/list.h include/pj/lock.h include/pj/log.h include/pj/math.h include/pj/os.h -include/pj/pool.h include/pj/pool_alt.h include/pj/pool_buf.h include/pj/pool_i.h +include/pj/pool.h include/pj/rand.h include/pj/rbtree.h -include/pj/sock.h include/pj/sock_qos.h include/pj/sock_select.h +include/pj/sock.h include/pj/ssl_sock.h -include/pj/string.h include/pj/string_i.h +include/pj/string.h include/pj/timer.h include/pj/types.h include/pj/unicode.h -include/pjlib++.hpp +include/pj++/file.hpp +include/pj++/hash.hpp +include/pj++/list.hpp +include/pj++/lock.hpp +include/pj++/os.hpp +include/pj++/pool.hpp +include/pj++/proactor.hpp +include/pj++/scanner.hpp +include/pj++/sock.hpp +include/pj++/string.hpp +include/pj++/timer.hpp +include/pj++/tree.hpp +include/pj++/types.hpp include/pjlib-util.h include/pjlib-util/base64.h -include/pjlib-util/cli.h include/pjlib-util/cli_console.h include/pjlib-util/cli_imp.h include/pjlib-util/cli_telnet.h +include/pjlib-util/cli.h include/pjlib-util/config.h include/pjlib-util/crc32.h -include/pjlib-util/dns.h include/pjlib-util/dns_server.h +include/pjlib-util/dns.h include/pjlib-util/errno.h include/pjlib-util/getopt.h include/pjlib-util/hmac_md5.h @@ -111,9 +114,9 @@ include/pjlib-util/json.h include/pjlib-util/md5.h include/pjlib-util/pcap.h include/pjlib-util/resolver.h -include/pjlib-util/scanner.h include/pjlib-util/scanner_cis_bitwise.h include/pjlib-util/scanner_cis_uint.h +include/pjlib-util/scanner.h include/pjlib-util/sha1.h include/pjlib-util/srv_resolver.h include/pjlib-util/string.h @@ -121,8 +124,11 @@ include/pjlib-util/stun_simple.h include/pjlib-util/types.h include/pjlib-util/xml.h include/pjlib.h -include/pjmedia-audiodev/audiodev.h +include/pjlib++.hpp +include/pjmedia_audiodev.h +include/pjmedia_videodev.h include/pjmedia-audiodev/audiodev_imp.h +include/pjmedia-audiodev/audiodev.h include/pjmedia-audiodev/audiotest.h include/pjmedia-audiodev/config.h include/pjmedia-audiodev/errno.h @@ -130,13 +136,14 @@ include/pjmedia-codec.h include/pjmedia-codec/amr_helper.h include/pjmedia-codec/amr_sdp_match.h include/pjmedia-codec/audio_codecs.h -include/pjmedia-codec/config.h +include/pjmedia-codec/bcg729.h include/pjmedia-codec/config_auto.h include/pjmedia-codec/config_auto.h.in +include/pjmedia-codec/config.h include/pjmedia-codec/ffmpeg_vid_codecs.h include/pjmedia-codec/g722.h -include/pjmedia-codec/g7221.h include/pjmedia-codec/g7221_sdp_match.h +include/pjmedia-codec/g7221.h include/pjmedia-codec/gsm.h include/pjmedia-codec/h263_packetizer.h include/pjmedia-codec/h264_packetizer.h @@ -150,30 +157,31 @@ include/pjmedia-codec/passthrough.h include/pjmedia-codec/silk.h include/pjmedia-codec/speex.h include/pjmedia-codec/types.h +include/pjmedia-codec/vid_toolbox.h include/pjmedia-videodev/avi_dev.h include/pjmedia-videodev/config.h include/pjmedia-videodev/errno.h include/pjmedia-videodev/opengl_dev.h -include/pjmedia-videodev/videodev.h include/pjmedia-videodev/videodev_imp.h +include/pjmedia-videodev/videodev.h include/pjmedia.h include/pjmedia/alaw_ulaw.h include/pjmedia/audiodev.h -include/pjmedia/avi.h include/pjmedia/avi_stream.h +include/pjmedia/avi.h include/pjmedia/bidirectional.h include/pjmedia/circbuf.h include/pjmedia/clock.h include/pjmedia/codec.h include/pjmedia/conference.h -include/pjmedia/config.h include/pjmedia/config_auto.h include/pjmedia/config_auto.h.in +include/pjmedia/config.h include/pjmedia/converter.h include/pjmedia/delaybuf.h include/pjmedia/doxygen.h -include/pjmedia/echo.h include/pjmedia/echo_port.h +include/pjmedia/echo.h include/pjmedia/endpoint.h include/pjmedia/errno.h include/pjmedia/event.h @@ -187,31 +195,31 @@ include/pjmedia/null_port.h include/pjmedia/plc.h include/pjmedia/port.h include/pjmedia/resample.h -include/pjmedia/rtcp.h include/pjmedia/rtcp_xr.h +include/pjmedia/rtcp.h include/pjmedia/rtp.h -include/pjmedia/sdp.h include/pjmedia/sdp_neg.h +include/pjmedia/sdp.h include/pjmedia/session.h include/pjmedia/signatures.h include/pjmedia/silencedet.h -include/pjmedia/sound.h include/pjmedia/sound_port.h +include/pjmedia/sound.h include/pjmedia/splitcomb.h include/pjmedia/stereo.h -include/pjmedia/stream.h include/pjmedia/stream_common.h +include/pjmedia/stream.h include/pjmedia/symbian_sound_aps.h include/pjmedia/tonegen.h -include/pjmedia/transport.h include/pjmedia/transport_adapter_sample.h include/pjmedia/transport_ice.h include/pjmedia/transport_loop.h include/pjmedia/transport_srtp.h include/pjmedia/transport_udp.h +include/pjmedia/transport.h include/pjmedia/types.h -include/pjmedia/vid_codec.h include/pjmedia/vid_codec_util.h +include/pjmedia/vid_codec.h include/pjmedia/vid_port.h include/pjmedia/vid_stream.h include/pjmedia/vid_tee.h @@ -220,8 +228,6 @@ include/pjmedia/wav_playlist.h include/pjmedia/wav_port.h include/pjmedia/wave.h include/pjmedia/wsola.h -include/pjmedia_audiodev.h -include/pjmedia_videodev.h include/pjnath.h include/pjnath/config.h include/pjnath/errno.h @@ -237,9 +243,12 @@ include/pjnath/stun_transaction.h include/pjnath/turn_session.h include/pjnath/turn_sock.h include/pjnath/types.h +include/pjsip_auth.h +include/pjsip_simple.h +include/pjsip_ua.h include/pjsip-simple/errno.h -include/pjsip-simple/evsub.h include/pjsip-simple/evsub_msg.h +include/pjsip-simple/evsub.h include/pjsip-simple/iscomposing.h include/pjsip-simple/mwi.h include/pjsip-simple/pidf.h @@ -256,10 +265,10 @@ include/pjsip-ua/sip_timer.h include/pjsip-ua/sip_xfer.h include/pjsip.h include/pjsip/print_util.h -include/pjsip/sip_auth.h include/pjsip/sip_auth_aka.h include/pjsip/sip_auth_msg.h include/pjsip/sip_auth_parser.h +include/pjsip/sip_auth.h include/pjsip/sip_autoconf.h include/pjsip/sip_autoconf.h.in include/pjsip/sip_config.h @@ -275,20 +284,17 @@ include/pjsip/sip_private.h include/pjsip/sip_resolve.h include/pjsip/sip_tel_uri.h include/pjsip/sip_transaction.h -include/pjsip/sip_transport.h include/pjsip/sip_transport_loop.h include/pjsip/sip_transport_tcp.h include/pjsip/sip_transport_tls.h include/pjsip/sip_transport_udp.h +include/pjsip/sip_transport.h include/pjsip/sip_types.h include/pjsip/sip_ua_layer.h include/pjsip/sip_uri.h include/pjsip/sip_util.h -include/pjsip_auth.h -include/pjsip_simple.h -include/pjsip_ua.h -include/pjsua-lib/pjsua.h include/pjsua-lib/pjsua_internal.h +include/pjsua-lib/pjsua.h include/pjsua.h include/pjsua2.hpp include/pjsua2/account.hpp @@ -344,9 +350,6 @@ lib/libpjsua-%%CONFIGURE_TARGET%%.a lib/libpjsua2-%%CONFIGURE_TARGET%%.a %%SHARED%%lib/libpjsua2.so %%SHARED%%lib/libpjsua2.so.2 -%%SHARED%%%%VIDEO%%lib/libyuv.so -%%SHARED%%%%VIDEO%%lib/libyuv.so.2 -%%VIDEO%%lib/libyuv-%%CONFIGURE_TARGET%%.a %%NO_SAMPLERATE%%%%RESAMPLE%%lib/libresample-%%CONFIGURE_TARGET%%.a %%NO_SAMPLERATE%%%%RESAMPLE%%%%RESAMPLEDLL%%lib/libresample.so %%NO_SAMPLERATE%%%%RESAMPLE%%%%RESAMPLEDLL%%lib/libresample.so.2 @@ -356,6 +359,7 @@ lib/libpjsua2-%%CONFIGURE_TARGET%%.a %%WEBRTC%%lib/libwebrtc-%%CONFIGURE_TARGET%%.a %%WEBRTC%%%%SHARED%%lib/libwebrtc.so %%WEBRTC%%%%SHARED%%lib/libwebrtc.so.2 +%%SHARED%%%%VIDEO%%lib/libyuv.so +%%SHARED%%%%VIDEO%%lib/libyuv.so.2 +%%VIDEO%%lib/libyuv-%%CONFIGURE_TARGET%%.a libdata/pkgconfig/libpjproject.pc -%%PJSUA%%bin/pjsua -%%PJSUA%%bin/pjsystest