From owner-svn-ports-branches@freebsd.org Sun Nov 29 16:56:07 2015 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 83FD0A3C0EC; Sun, 29 Nov 2015 16:56:07 +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 mx1.freebsd.org (Postfix) with ESMTPS id 445AD1EB9; Sun, 29 Nov 2015 16:56:07 +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 tATGu6Cd055391; Sun, 29 Nov 2015 16:56:06 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATGu6Za055386; Sun, 29 Nov 2015 16:56:06 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201511291656.tATGu6Za055386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 29 Nov 2015 16:56:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402607 - in branches/2015Q4/comms/efax: . files X-SVN-Group: ports-branches 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.20 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, 29 Nov 2015 16:56:07 -0000 Author: riggs Date: Sun Nov 29 16:56:05 2015 New Revision: 402607 URL: https://svnweb.freebsd.org/changeset/ports/402607 Log: MFH: r402606 Fix runtime segfault due to uninitialised variable, bump PORTREVISION While on it: - Pet portlint: regenerate patches using 'make makepatch' - Add LICENSE PR: 204845 Submitted by: yama@jasper.co.jp Approved by: ports-secteam (fix blanket) Added: branches/2015Q4/comms/efax/files/patch-Makefile - copied unchanged from r402606, head/comms/efax/files/patch-Makefile branches/2015Q4/comms/efax/files/patch-efaxmsg.c - copied unchanged from r402606, head/comms/efax/files/patch-efaxmsg.c branches/2015Q4/comms/efax/files/patch-fax - copied unchanged from r402606, head/comms/efax/files/patch-fax Deleted: branches/2015Q4/comms/efax/files/patch-src_Makefile branches/2015Q4/comms/efax/files/patch-src_fax Modified: branches/2015Q4/comms/efax/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/comms/efax/Makefile ============================================================================== --- branches/2015Q4/comms/efax/Makefile Sun Nov 29 16:52:05 2015 (r402606) +++ branches/2015Q4/comms/efax/Makefile Sun Nov 29 16:56:05 2015 (r402607) @@ -3,13 +3,16 @@ PORTNAME= efax-0.9a PORTVERSION= 001114a7 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= comms MASTER_SITES= http://shino.pos.to/linux/ MAINTAINER= ports@FreeBSD.org COMMENT= Fax send/receive program +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + RUN_DEPENDS=xloadimage:${PORTSDIR}/x11/xloadimage DOCSDIR= ${PREFIX}/share/doc/efax Copied: branches/2015Q4/comms/efax/files/patch-Makefile (from r402606, head/comms/efax/files/patch-Makefile) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/comms/efax/files/patch-Makefile Sun Nov 29 16:56:05 2015 (r402607, copy of r402606, head/comms/efax/files/patch-Makefile) @@ -0,0 +1,41 @@ +--- Makefile.orig 2000-06-29 02:01:22 UTC ++++ Makefile +@@ -3,20 +3,17 @@ + # Change the following to the name of your ANSI C compiler + # (normally gcc). + +-CC=gcc ++CC?=cc + + # Compile/load options. Add -DNO_STRERROR to CFLAGS if _strerror + # is undefined + +-CFLAGS= +-LDFLAGS= +- + # Change the following to the destination directories for + # binaries and man pages. Probably /usr/bin and /usr/man on + # Linux, /usr/local/{bin,man} on other systems. + +-BINDIR=/usr/bin +-MANDIR=/usr/man ++BINDIR=$(PREFIX)/bin ++MANDIR=$(PREFIX)/man + + .c.o: + $(CC) $(CFLAGS) -c $< +@@ -32,11 +29,9 @@ efix: efix.o efaxlib.o efaxmsg.o + strip efix + + install: +- cp fax efax efix $(BINDIR) +- chmod 755 $(BINDIR)/fax $(BINDIR)/efax $(BINDIR)/efix +- cp fax.1 efax.1 efix.1 $(MANDIR)/man1 +- chmod 644 $(MANDIR)/man1/fax.1 $(MANDIR)/man1/efax.1 \ +- $(MANDIR)/man1/efix.1 ++ $(INSTALL_PROGRAM) efax efix $(BINDIR) ++ $(INSTALL_SCRIPT) fax $(BINDIR) ++ $(INSTALL_DATA) fax.1 efax.1 efix.1 $(MANDIR)/man1 + + clean: + rm -f efax efix efax.o efix.o efaxlib.o efaxio.o efaxos.o efaxmsg.o Copied: branches/2015Q4/comms/efax/files/patch-efaxmsg.c (from r402606, head/comms/efax/files/patch-efaxmsg.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/comms/efax/files/patch-efaxmsg.c Sun Nov 29 16:56:05 2015 (r402607, copy of r402606, head/comms/efax/files/patch-efaxmsg.c) @@ -0,0 +1,36 @@ +--- efaxmsg.c.orig 1999-03-20 04:38:20 UTC ++++ efaxmsg.c +@@ -98,9 +98,6 @@ int msg ( char *fmt, ... ) + int err=0, i, flags=0 ; + char *p ; + +- va_list ap ; +- va_start ( ap, fmt ) ; +- + if ( ! init ) { + logfile[0] = stderr ; + logfile[1] = stdout ; +@@ -112,6 +109,9 @@ int msg ( char *fmt, ... ) + + for ( i=0 ; i&2 < 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 C9E05A3C28A; Sun, 29 Nov 2015 17:02:21 +0000 (UTC) (envelope-from mmoll@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 914C6128A; Sun, 29 Nov 2015 17:02:21 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tATH2KKZ058423; Sun, 29 Nov 2015 17:02:20 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATH2KqB058422; Sun, 29 Nov 2015 17:02:20 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201511291702.tATH2KqB058422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 29 Nov 2015 17:02:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402608 - branches/2015Q4/graphics/libGL/files X-SVN-Group: ports-branches 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.20 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, 29 Nov 2015 17:02:21 -0000 Author: mmoll Date: Sun Nov 29 17:02:20 2015 New Revision: 402608 URL: https://svnweb.freebsd.org/changeset/ports/402608 Log: MFH: r402605 graphics/libGL: unbreak build on sparc64 Approved by: ports-secteam (feld) Modified: branches/2015Q4/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h ============================================================================== --- branches/2015Q4/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h Sun Nov 29 16:56:05 2015 (r402607) +++ branches/2015Q4/graphics/libGL/files/patch-src__gallium__include__pipe__p_config.h Sun Nov 29 17:02:20 2015 (r402608) @@ -1,4 +1,4 @@ ---- src/gallium/include/pipe/p_config.h.orig 2014-08-14 17:22:24 UTC +--- src/gallium/include/pipe/p_config.h.orig 2015-11-29 13:40:59 UTC +++ src/gallium/include/pipe/p_config.h @@ -81,6 +81,13 @@ #define PIPE_CC_SUNPRO @@ -14,6 +14,15 @@ /* * Processor architecture +@@ -171,7 +178,7 @@ + + #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) || defined(PIPE_ARCH_ARM) || defined(PIPE_ARCH_AARCH64) + #define PIPE_ARCH_LITTLE_ENDIAN +-#elif defined(PIPE_ARCH_PPC) || defined(PIPE_ARCH_PPC_64) || defined(PIPE_ARCH_S390) ++#elif defined(PIPE_ARCH_PPC) || defined(PIPE_ARCH_PPC_64) || defined(PIPE_ARCH_S390) || defined(PIPE_ARCH_SPARC) || defined(PIPE_ARCH_SPARC_64) + #define PIPE_ARCH_BIG_ENDIAN + #endif + @@ -200,6 +207,12 @@ #define PIPE_OS_ANDROID #endif From owner-svn-ports-branches@freebsd.org Sun Nov 29 17:06:54 2015 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 7F51EA3C3F5; Sun, 29 Nov 2015 17:06:54 +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 mx1.freebsd.org (Postfix) with ESMTPS id 47F20164A; Sun, 29 Nov 2015 17:06:54 +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 tATH6rsV059286; Sun, 29 Nov 2015 17:06:53 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATH6rro059284; Sun, 29 Nov 2015 17:06:53 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201511291706.tATH6rro059284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 29 Nov 2015 17:06:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402611 - branches/2015Q4/graphics/pngcrush X-SVN-Group: ports-branches 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.20 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, 29 Nov 2015 17:06:54 -0000 Author: riggs Date: Sun Nov 29 17:06:53 2015 New Revision: 402611 URL: https://svnweb.freebsd.org/changeset/ports/402611 Log: MFH: r402541 Update to upstream version 1.7.88 Version 1.7.88 eliminates a potential overflow while adding iTXt chunk. PR: 204733 Submitted by: vsasjason@gmail.com (maintainer) Approved by: ports-secteam (feld) Modified: branches/2015Q4/graphics/pngcrush/Makefile branches/2015Q4/graphics/pngcrush/distinfo Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/graphics/pngcrush/Makefile ============================================================================== --- branches/2015Q4/graphics/pngcrush/Makefile Sun Nov 29 17:03:14 2015 (r402610) +++ branches/2015Q4/graphics/pngcrush/Makefile Sun Nov 29 17:06:53 2015 (r402611) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pngcrush -PORTVERSION= 1.7.86 +PORTVERSION= 1.7.88 CATEGORIES= graphics MASTER_SITES= SF/pmt/${PORTNAME}/${PORTVERSION}/ \ SF/pmt/${PORTNAME}/old-versions/1.7/${PORTVERSION}/ Modified: branches/2015Q4/graphics/pngcrush/distinfo ============================================================================== --- branches/2015Q4/graphics/pngcrush/distinfo Sun Nov 29 17:03:14 2015 (r402610) +++ branches/2015Q4/graphics/pngcrush/distinfo Sun Nov 29 17:06:53 2015 (r402611) @@ -1,2 +1,2 @@ -SHA256 (pngcrush-1.7.86-nolib.tar.xz) = 135cb6cf0607b5b72152c0eb2cbd1db9722f333ec4f8e166c7ef96db8eeadece -SIZE (pngcrush-1.7.86-nolib.tar.xz) = 60024 +SHA256 (pngcrush-1.7.88-nolib.tar.xz) = d8fdfa25951465651b8f791bec3dc71acc4a752685885b41646f423a609f4855 +SIZE (pngcrush-1.7.88-nolib.tar.xz) = 60432 From owner-svn-ports-branches@freebsd.org Sun Nov 29 19:27:45 2015 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 5E885A3A74A; Sun, 29 Nov 2015 19:27:45 +0000 (UTC) (envelope-from rakuco@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 357361A99; Sun, 29 Nov 2015 19:27:45 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tATJRi4F000973; Sun, 29 Nov 2015 19:27:44 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATJRi6T000971; Sun, 29 Nov 2015 19:27:44 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201511291927.tATJRi6T000971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 29 Nov 2015 19:27:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402617 - in branches/2015Q4/audio/libkcompactdisc: . files X-SVN-Group: ports-branches 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.20 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, 29 Nov 2015 19:27:45 -0000 Author: rakuco Date: Sun Nov 29 19:27:43 2015 New Revision: 402617 URL: https://svnweb.freebsd.org/changeset/ports/402617 Log: MFH: r402530 r402545 Add upstream patch to fix the build with clang + ALSA option. Extend the compiler check so that the code is built with -std=c99, which is required by the ALSA headers. Bump PORTREVISION because this also changes the build flags for GCC users. PR: 204858 Fix the ALSA=OFF build after r402530. Both extrapatch-no_alsa and patch-git_d6927712 touch the same region of CMakeLists.txt, and the latter was failing to apply when the ALSA option was disabled. Fix it by keeping patch-git_d6927712 (which fixes the CFLAGS values regardless of the value of the ALSA option) and replacing extrapatch-no_alsa with some post-patch/post-configure changes that achieve the same end result. PR: 204858 Approved by: ports-secteam (feld) Added: branches/2015Q4/audio/libkcompactdisc/files/patch-git_d6927712 - copied unchanged from r402530, head/audio/libkcompactdisc/files/patch-git_d6927712 Deleted: branches/2015Q4/audio/libkcompactdisc/files/extrapatch-no_alsa Modified: branches/2015Q4/audio/libkcompactdisc/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/audio/libkcompactdisc/Makefile ============================================================================== --- branches/2015Q4/audio/libkcompactdisc/Makefile Sun Nov 29 19:12:03 2015 (r402616) +++ branches/2015Q4/audio/libkcompactdisc/Makefile Sun Nov 29 19:27:43 2015 (r402617) @@ -3,6 +3,7 @@ PORTNAME= libkcompactdisc PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} @@ -18,6 +19,12 @@ USE_LDCONFIG= yes OPTIONS_DEFINE= ALSA ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib -ALSA_EXTRA_PATCHES_OFF= ${FILESDIR}/extrapatch-no_alsa + +post-patch-ALSA-off: + ${REINPLACE_CMD} -e '/find_package(Alsa)/d' \ + -e '/alsa_configure_file/d' ${WRKSRC}/CMakeLists.txt + +post-configure-ALSA-off: + ${TOUCH} ${CONFIGURE_WRKSRC}/config-alsa.h .include Copied: branches/2015Q4/audio/libkcompactdisc/files/patch-git_d6927712 (from r402530, head/audio/libkcompactdisc/files/patch-git_d6927712) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/audio/libkcompactdisc/files/patch-git_d6927712 Sun Nov 29 19:27:43 2015 (r402617, copy of r402530, head/audio/libkcompactdisc/files/patch-git_d6927712) @@ -0,0 +1,33 @@ +Makes the port build with clang when the ALSA option is on. + +commit d69277128afb60999e420c533e826b0061fc40eb +Author: Raphael Kubo da Costa +Date: Sat Nov 28 14:27:45 2015 +0100 + + Extend -std=c99 compiler flag to clang. + + The ALSA headers use features such as the `inline' keyword that require + C99 support. Commit e36c628 ("Fix compilation: ALSA no longer compiles + with -std=c90") started passing it to the compiler when GCC is used. + + We now do the same for clang with a better comment, and also append the + flag to the existing CMAKE_C_FLAGS, otherwise we lose several other + options which are set by FindKDE4Internal.cmake. + +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -7,9 +7,12 @@ include(MacroLibrary) + add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS}) + + ## Compiler flags +-if(CMAKE_COMPILER_IS_GNUCXX) +- set(CMAKE_C_FLAGS "-std=c99") ## ALSA no longer compiles with -std=c90, see https://bugzilla.novell.com/show_bug.cgi?id=817077 ++if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") ++ # ALSA does not build with the default -std=iso9899:1990 from FindKDE4Internal.cmake. ++ # See https://bugzilla.novell.com/show_bug.cgi?id=817077 for more information. ++ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") + endif() ++ + find_package(Alsa) + alsa_configure_file(${CMAKE_CURRENT_BINARY_DIR}/config-alsa.h) + From owner-svn-ports-branches@freebsd.org Tue Dec 1 15:29:41 2015 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 329BCA2C9F6; Tue, 1 Dec 2015 15:29:41 +0000 (UTC) (envelope-from ume@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 EF7DB18FF; Tue, 1 Dec 2015 15:29:40 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1FTeK9088627; Tue, 1 Dec 2015 15:29:40 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB1FTdE6088625; Tue, 1 Dec 2015 15:29:39 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201512011529.tB1FTdE6088625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Tue, 1 Dec 2015 15:29:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402747 - branches/2015Q4/mail/cyrus-imapd25 X-SVN-Group: ports-branches 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.20 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, 01 Dec 2015 15:29:41 -0000 Author: ume Date: Tue Dec 1 15:29:39 2015 New Revision: 402747 URL: https://svnweb.freebsd.org/changeset/ports/402747 Log: MFH r402744: Update to 2.5.7. This release fixes CVE-2015-8077 and CVE-2015-8078. Approved by: portmgr (feld@) Security: d62ec98e-97d8-11e5-8c0e-080027b00c2e Modified: branches/2015Q4/mail/cyrus-imapd25/Makefile branches/2015Q4/mail/cyrus-imapd25/distinfo Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/mail/cyrus-imapd25/Makefile ============================================================================== --- branches/2015Q4/mail/cyrus-imapd25/Makefile Tue Dec 1 15:04:34 2015 (r402746) +++ branches/2015Q4/mail/cyrus-imapd25/Makefile Tue Dec 1 15:29:39 2015 (r402747) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cyrus-imapd -PORTVERSION= 2.5.6 +PORTVERSION= 2.5.7 #PORTREVISION= 0 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-imapd/ \ Modified: branches/2015Q4/mail/cyrus-imapd25/distinfo ============================================================================== --- branches/2015Q4/mail/cyrus-imapd25/distinfo Tue Dec 1 15:04:34 2015 (r402746) +++ branches/2015Q4/mail/cyrus-imapd25/distinfo Tue Dec 1 15:29:39 2015 (r402747) @@ -1,2 +1,2 @@ -SHA256 (cyrus-imapd-2.5.6.tar.gz) = 60f9be717c17497e7d69f468a8da3daf926c49edeac958bc769b4547f10103df -SIZE (cyrus-imapd-2.5.6.tar.gz) = 2938962 +SHA256 (cyrus-imapd-2.5.7.tar.gz) = f06c2c030b16b70145fecdf7edaa0f2ef6bf690b0d8fd6e2c62d95af303d68da +SIZE (cyrus-imapd-2.5.7.tar.gz) = 2928358 From owner-svn-ports-branches@freebsd.org Tue Dec 1 16:16:04 2015 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 40E70A3E148; Tue, 1 Dec 2015 16:16:04 +0000 (UTC) (envelope-from ume@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 1BC071B6D; Tue, 1 Dec 2015 16:16:04 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1GG3O9005636; Tue, 1 Dec 2015 16:16:03 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB1GG3RF005633; Tue, 1 Dec 2015 16:16:03 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201512011616.tB1GG3RF005633@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Tue, 1 Dec 2015 16:16:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402766 - in branches/2015Q4/mail/cyrus-imapd24: . files X-SVN-Group: ports-branches 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.20 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, 01 Dec 2015 16:16:04 -0000 Author: ume Date: Tue Dec 1 16:16:02 2015 New Revision: 402766 URL: https://svnweb.freebsd.org/changeset/ports/402766 Log: MFH r402745: Apply upstream patches to fix CVE-2015-8077 and CVE-2015-8078. Approved by: portmgr (feld@) Obtained from: https://cyrus.foundation/cyrus-imapd/patch/?id=745e161c834f1eb6d62fc14477f51dae799e1e08, https://cyrus.foundation/cyrus-imapd/patch/?id=6fb6a272171f49c79ba6ab7c6403eb25b39ec1b2 Security: d62ec98e-97d8-11e5-8c0e-080027b00c2e Added: branches/2015Q4/mail/cyrus-imapd24/files/patch-CVE-2015-8077 - copied unchanged from r402745, head/mail/cyrus-imapd24/files/patch-CVE-2015-8077 branches/2015Q4/mail/cyrus-imapd24/files/patch-CVE-2015-8078 - copied unchanged from r402745, head/mail/cyrus-imapd24/files/patch-CVE-2015-8078 Modified: branches/2015Q4/mail/cyrus-imapd24/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/mail/cyrus-imapd24/Makefile ============================================================================== --- branches/2015Q4/mail/cyrus-imapd24/Makefile Tue Dec 1 16:06:20 2015 (r402765) +++ branches/2015Q4/mail/cyrus-imapd24/Makefile Tue Dec 1 16:16:02 2015 (r402766) @@ -2,7 +2,7 @@ PORTNAME= cyrus-imapd PORTVERSION= 2.4.18 -#PORTREVISION= 0 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-imapd/ \ http://cyrusimap.org/releases/ Copied: branches/2015Q4/mail/cyrus-imapd24/files/patch-CVE-2015-8077 (from r402745, head/mail/cyrus-imapd24/files/patch-CVE-2015-8077) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/mail/cyrus-imapd24/files/patch-CVE-2015-8077 Tue Dec 1 16:16:02 2015 (r402766, copy of r402745, head/mail/cyrus-imapd24/files/patch-CVE-2015-8077) @@ -0,0 +1,40 @@ +From 745e161c834f1eb6d62fc14477f51dae799e1e08 Mon Sep 17 00:00:00 2001 +From: ellie timoney +Date: Mon, 26 Oct 2015 16:15:40 +1100 +Subject: urlfetch: protect against overflow in range checks + + +--- imap/index.c.orig 2015-07-06 03:38:29 UTC ++++ imap/index.c +@@ -2712,7 +2712,8 @@ int index_urlfetch(struct index_state *s + int fetchmime = 0, domain = DOMAIN_7BIT; + unsigned size; + int32_t skip = 0; +- int n, r = 0; ++ unsigned long n; ++ int r = 0; + char *decbuf = NULL; + struct mailbox *mailbox = state->mailbox; + struct index_map *im = &state->map[msgno-1]; +@@ -2849,7 +2850,7 @@ int index_urlfetch(struct index_state *s + start_octet = size; + n = 0; + } +- else if (start_octet + n > size) { ++ else if (start_octet + n < start_octet || start_octet + n > size) { + n = size - start_octet; + } + +@@ -2861,10 +2862,10 @@ int index_urlfetch(struct index_state *s + + if (domain == DOMAIN_BINARY) { + /* Write size of literal8 */ +- prot_printf(pout, " ~{%u}\r\n", n); ++ prot_printf(pout, " ~{%lu}\r\n", n); + } else { + /* Write size of literal */ +- prot_printf(pout, " {%u}\r\n", n); ++ prot_printf(pout, " {%lu}\r\n", n); + } + } + Copied: branches/2015Q4/mail/cyrus-imapd24/files/patch-CVE-2015-8078 (from r402745, head/mail/cyrus-imapd24/files/patch-CVE-2015-8078) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/mail/cyrus-imapd24/files/patch-CVE-2015-8078 Tue Dec 1 16:16:02 2015 (r402766, copy of r402745, head/mail/cyrus-imapd24/files/patch-CVE-2015-8078) @@ -0,0 +1,23 @@ +From 6fb6a272171f49c79ba6ab7c6403eb25b39ec1b2 Mon Sep 17 00:00:00 2001 +From: ellie timoney +Date: Mon, 26 Oct 2015 16:21:01 +1100 +Subject: urlfetch: and the other bit + + +diff --git a/imap/index.c b/imap/index.c +index f5161cd..da8ce3d 100644 +--- imap/index.c ++++ imap/index.c +@@ -4244,7 +4244,8 @@ EXPORTED int index_urlfetch(struct index_state *state, uint32_t msgno, + size_t section_offset = CACHE_ITEM_BIT32(cacheitem); + size_t section_size = CACHE_ITEM_BIT32(cacheitem + CACHE_ITEM_SIZE_SKIP); + +- if (section_offset + section_size > size) { ++ if (section_offset + section_size < section_offset ++ || section_offset + section_size > size) { + r = IMAP_INTERNAL; + goto done; + } +-- +cgit v0.10.2 + From owner-svn-ports-branches@freebsd.org Tue Dec 1 21:03:32 2015 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 25EC6A3E863; Tue, 1 Dec 2015 21:03:32 +0000 (UTC) (envelope-from brnrd@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 EC7521399; Tue, 1 Dec 2015 21:03:31 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1L3V0Z092366; Tue, 1 Dec 2015 21:03:31 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB1L3UNZ092363; Tue, 1 Dec 2015 21:03:30 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201512012103.tB1L3UNZ092363@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 1 Dec 2015 21:03:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402788 - in branches/2015Q4/databases: mariadb55-client mariadb55-server X-SVN-Group: ports-branches 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.20 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, 01 Dec 2015 21:03:32 -0000 Author: brnrd Date: Tue Dec 1 21:03:30 2015 New Revision: 402788 URL: https://svnweb.freebsd.org/changeset/ports/402788 Log: MFH: r402786 databases/mariadb55-server: Update to 5.5.46 * Update server and (slave) client port * Add LICENSE * Consistent globbing of CONFLICTS The release notes for MariaDB 5.5.46 can be found at: https://mariadb.com/kb/en/mariadb/mariadb-5546-release-notes/ PR: 204410 Submitted by: Sevan Janiyan Reviewed by: koobs (mentor), feld (ports-secteam@) Approved by: ports-secteam (feld) Security: 851a0eea-88aa-11e5-90e7-b499baebfeaf Differential Revision: https://reviews.freebsd.org/D4134 > Description of fields to fill in above: 76 columns --| > PR: If a Bugzilla PR is affected by the change. > Submitted by: If someone else sent in the change. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Empty fields above will be automatically removed. M mariadb55-client/Makefile M mariadb55-server/Makefile M mariadb55-server/distinfo Modified: branches/2015Q4/databases/mariadb55-client/Makefile branches/2015Q4/databases/mariadb55-server/Makefile branches/2015Q4/databases/mariadb55-server/distinfo Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/databases/mariadb55-client/Makefile ============================================================================== --- branches/2015Q4/databases/mariadb55-client/Makefile Tue Dec 1 20:50:34 2015 (r402787) +++ branches/2015Q4/databases/mariadb55-client/Makefile Tue Dec 1 21:03:30 2015 (r402788) @@ -5,15 +5,17 @@ PKGNAMESUFFIX= 55-client COMMENT= Multithreaded SQL database (client) +LICENSE+= LGPL21 + MASTERDIR= ${.CURDIR}/../mariadb55-server FILESDIR= ${.CURDIR}/files PATCHDIR= ${.CURDIR}/files PLIST= ${.CURDIR}/pkg-plist -CONFLICTS_INSTALL= mysql*-client-* \ - mariadb1[0-9][0-9]-client-* \ - mariadb5[0-46-9]-client-* \ +CONFLICTS_INSTALL= mariadb5[0-46-9]-client-* \ + mariadb1*-client-* \ + mysql*-client-* \ percona*-client-* CMAKE_ARGS+= -DWITHOUT_SERVER=1 Modified: branches/2015Q4/databases/mariadb55-server/Makefile ============================================================================== --- branches/2015Q4/databases/mariadb55-server/Makefile Tue Dec 1 20:50:34 2015 (r402787) +++ branches/2015Q4/databases/mariadb55-server/Makefile Tue Dec 1 21:03:30 2015 (r402788) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 5.5.44 +PORTVERSION= 5.5.46 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ http://mirrors.supportex.net/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ @@ -17,6 +17,8 @@ PKGNAMESUFFIX?= 55-server MAINTAINER= never@nevermind.kiev.ua COMMENT?= Multithreaded SQL database (server) +LICENSE= GPLv2 + SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message @@ -58,10 +60,10 @@ BROKEN_armv6= Does not compile on arm USE_MYSQL= yes WANT_MYSQL_VER= 55m -CONFLICTS_INSTALL= mysql*-server-* \ - mariadb1[0-9][0-9]-server-* \ - mariadb5[0-46-9]-server-* \ - percona*-server-* +CONFLICTS_INSTALL= mariadb5[0-46-9]-server-* \ + mariadb1*-server-* \ + mysql[0-9]*-server-* \ + percona[0-9]*-server-* USE_RC_SUBR= mysql-server Modified: branches/2015Q4/databases/mariadb55-server/distinfo ============================================================================== --- branches/2015Q4/databases/mariadb55-server/distinfo Tue Dec 1 20:50:34 2015 (r402787) +++ branches/2015Q4/databases/mariadb55-server/distinfo Tue Dec 1 21:03:30 2015 (r402788) @@ -1,2 +1,2 @@ -SHA256 (mariadb-5.5.44.tar.gz) = 7d425caf5f1e45de9e5eb72daa98ceb542e7b134a89bd01540b60fe9c5965e8f -SIZE (mariadb-5.5.44.tar.gz) = 45672065 +SHA256 (mariadb-5.5.46.tar.gz) = 45b66b7adc87cad32e553df1d5211e5b6426b78a3bc318a5ccde088bf93e6e10 +SIZE (mariadb-5.5.46.tar.gz) = 45683962 From owner-svn-ports-branches@freebsd.org Wed Dec 2 05:36:46 2015 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 D5740A34B30; Wed, 2 Dec 2015 05:36:46 +0000 (UTC) (envelope-from delphij@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 8B10C1386; Wed, 2 Dec 2015 05:36:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB25ajqS043285; Wed, 2 Dec 2015 05:36:45 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB25ajaV043279; Wed, 2 Dec 2015 05:36:45 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201512020536.tB25ajaV043279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Wed, 2 Dec 2015 05:36:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402811 - in branches/2015Q4/net/openldap24-server: . files X-SVN-Group: ports-branches 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.20 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, 02 Dec 2015 05:36:46 -0000 Author: delphij Date: Wed Dec 2 05:36:45 2015 New Revision: 402811 URL: https://svnweb.freebsd.org/changeset/ports/402811 Log: MFH: r402810 Update OpenLDAP to 2.4.43. While there, revert previous NDEBUG behavior for non-debug builds. Approved by: ports-secteam Deleted: branches/2015Q4/net/openldap24-server/files/patch-CVE-2015-6908 Modified: branches/2015Q4/net/openldap24-server/Makefile branches/2015Q4/net/openldap24-server/distinfo Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/net/openldap24-server/Makefile ============================================================================== --- branches/2015Q4/net/openldap24-server/Makefile Wed Dec 2 05:35:50 2015 (r402810) +++ branches/2015Q4/net/openldap24-server/Makefile Wed Dec 2 05:36:45 2015 (r402811) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openldap -DISTVERSION= 2.4.42 +DISTVERSION= 2.4.43 PORTREVISION= ${OPENLDAP_PORTREVISION} CATEGORIES= net databases MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ @@ -56,10 +56,10 @@ WANT_OPENLDAP_VER?= 24 BROKEN= incompatible OpenLDAP version: ${WANT_OPENLDAP_VER} .endif -PORTREVISION_CLIENT= 2 -PORTREVISION_SERVER= 2 +PORTREVISION_CLIENT= 0 +PORTREVISION_SERVER= 0 OPENLDAP_SHLIB_MAJOR= 2 -OPENLDAP_SHLIB_MINOR= 10.5 +OPENLDAP_SHLIB_MINOR= 10.6 OPENLDAP_MAJOR= ${DISTVERSION:R} OPTIONS_DEFINE= DEBUG FETCH GSSAPI @@ -189,15 +189,6 @@ CONFIGURE_ARGS= --with-threads=posix \ # XXX FreeBSD does not implement O_DSYNC and fdatasync at this time. CFLAGS+= -DMDB_DSYNC=O_SYNC -Dfdatasync=fsync -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --enable-debug=yes -.else -CONFIGURE_ARGS+= --disable-debug -CFLAGS+= -DNDEBUG -.endif - -MAKE_ENV+= STRIP=${STRIP} - .if !${PORT_OPTIONS:MFETCH} CONFIGURE_ARGS+= --without-fetch .endif @@ -283,6 +274,12 @@ CONFIGURE_ARGS+= --enable-constraint=${O CONFIGURE_ARGS+= --enable-dds=${OVERLAY_ENABLE} .endif +.if ${PORT_OPTIONS:MDEBUG} +CONFIGURE_ARGS+= --enable-debug=yes +.endif + +MAKE_ENV+= STRIP=${STRIP} + .if ${PORT_OPTIONS:MDEREF} CONFIGURE_ARGS+= --enable-deref=${OVERLAY_ENABLE} .endif Modified: branches/2015Q4/net/openldap24-server/distinfo ============================================================================== --- branches/2015Q4/net/openldap24-server/distinfo Wed Dec 2 05:35:50 2015 (r402810) +++ branches/2015Q4/net/openldap24-server/distinfo Wed Dec 2 05:36:45 2015 (r402811) @@ -1,2 +1,2 @@ -SHA256 (openldap-2.4.42.tgz) = eeb7b0e2c5852bfd2650e83909bb6152835c0b862fab10b63954dc1bcbba8e63 -SIZE (openldap-2.4.42.tgz) = 5645925 +SHA256 (openldap-2.4.43.tgz) = 34d78e5598a2b0360d26a9050fcdbbe198c65493b013bb607839d5598b6978c8 +SIZE (openldap-2.4.43.tgz) = 5654057 From owner-svn-ports-branches@freebsd.org Wed Dec 2 15:46:15 2015 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 E2955A3E866; Wed, 2 Dec 2015 15:46:15 +0000 (UTC) (envelope-from amdmi3@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 AFB971324; Wed, 2 Dec 2015 15:46:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB2FkENn026260; Wed, 2 Dec 2015 15:46:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB2FkEVY026259; Wed, 2 Dec 2015 15:46:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512021546.tB2FkEVY026259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 2 Dec 2015 15:46:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402834 - branches/2015Q4/sysutils/conky X-SVN-Group: ports-branches 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.20 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, 02 Dec 2015 15:46:16 -0000 Author: amdmi3 Date: Wed Dec 2 15:46:14 2015 New Revision: 402834 URL: https://svnweb.freebsd.org/changeset/ports/402834 Log: MFH: r402833 - Fix build with LUA_CAIRO or LUA_IMLIB2 enabled PR: 204778 Submitted by: walkerd@pamandduncan.co.uk Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2015Q4/sysutils/conky/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/sysutils/conky/Makefile ============================================================================== --- branches/2015Q4/sysutils/conky/Makefile Wed Dec 2 15:45:19 2015 (r402833) +++ branches/2015Q4/sysutils/conky/Makefile Wed Dec 2 15:46:14 2015 (r402834) @@ -116,7 +116,7 @@ CONFIGURE_ARGS+= --disable-lua .endif .if ${PORT_OPTIONS:MLUA_CAIRO} || ${PORT_OPTIONS:MLUA_IMLIB2} -LUA_COMPS= toluaxx +LIB_DEPENDS+= libtolua++-5.1.so:${PORTSDIR}/lang/tolua++ .endif post-patch: From owner-svn-ports-branches@freebsd.org Wed Dec 2 16:18:28 2015 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 05663A3EE7E; Wed, 2 Dec 2015 16:18:28 +0000 (UTC) (envelope-from amdmi3@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 A20C810C1; Wed, 2 Dec 2015 16:18:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB2GIQb9035145; Wed, 2 Dec 2015 16:18:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB2GIQ7k035142; Wed, 2 Dec 2015 16:18:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512021618.tB2GIQ7k035142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 2 Dec 2015 16:18:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402835 - branches/2015Q4/www/piwik X-SVN-Group: ports-branches 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.20 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, 02 Dec 2015 16:18:28 -0000 Author: amdmi3 Date: Wed Dec 2 16:18:26 2015 New Revision: 402835 URL: https://svnweb.freebsd.org/changeset/ports/402835 Log: MFH: r402831 - Update to 2.15.0 PR: 204219 Submitted by: ports@bsdserwis.com Approved by: hans@nordhaug.priv.no (maintainer) Approved by: ports-secteam (feld) Security: 11351c82-9909-11e5-a9c8-14dae9d5a9d2 Security: CVE-2015-7816 Security: CVE-2015-7815 Modified: branches/2015Q4/www/piwik/Makefile branches/2015Q4/www/piwik/distinfo branches/2015Q4/www/piwik/pkg-plist Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/www/piwik/Makefile ============================================================================== --- branches/2015Q4/www/piwik/Makefile Wed Dec 2 15:46:14 2015 (r402834) +++ branches/2015Q4/www/piwik/Makefile Wed Dec 2 16:18:26 2015 (r402835) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= piwik -PORTVERSION= 2.14.3 +PORTVERSION= 2.15.0 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ Modified: branches/2015Q4/www/piwik/distinfo ============================================================================== --- branches/2015Q4/www/piwik/distinfo Wed Dec 2 15:46:14 2015 (r402834) +++ branches/2015Q4/www/piwik/distinfo Wed Dec 2 16:18:26 2015 (r402835) @@ -1,2 +1,2 @@ -SHA256 (piwik-2.14.3.tar.gz) = 8a96533e59747405edc6c2f52963f3dfd32fa1446067716bf2f724a607ef0249 -SIZE (piwik-2.14.3.tar.gz) = 12620182 +SHA256 (piwik-2.15.0.tar.gz) = 9cdca2d97330b9bf02f4b4c0bd6b69cc858e578ae4a3ba9964742e29a4b5db78 +SIZE (piwik-2.15.0.tar.gz) = 12795397 Modified: branches/2015Q4/www/piwik/pkg-plist ============================================================================== --- branches/2015Q4/www/piwik/pkg-plist Wed Dec 2 15:46:14 2015 (r402834) +++ branches/2015Q4/www/piwik/pkg-plist Wed Dec 2 16:18:26 2015 (r402835) @@ -1,4 +1,3 @@ -%%WWWDIR%%/.phpstorm.meta.php %%WWWDIR%%/CHANGELOG.md %%WWWDIR%%/CONTRIBUTING.md %%WWWDIR%%/LEGALNOTICE @@ -17,10 +16,10 @@ %%WWWDIR%%/core/API/ApiRenderer.php %%WWWDIR%%/core/API/CORSHandler.php %%WWWDIR%%/core/API/DataTableGenericFilter.php -%%WWWDIR%%/core/API/DataTableManipulator.php %%WWWDIR%%/core/API/DataTableManipulator/Flattener.php %%WWWDIR%%/core/API/DataTableManipulator/LabelFilter.php %%WWWDIR%%/core/API/DataTableManipulator/ReportTotalsCalculator.php +%%WWWDIR%%/core/API/DataTableManipulator.php %%WWWDIR%%/core/API/DataTablePostProcessor.php %%WWWDIR%%/core/API/DocumentationGenerator.php %%WWWDIR%%/core/API/Inconsistencies.php @@ -33,65 +32,67 @@ %%WWWDIR%%/core/Application/Kernel/EnvironmentValidator.php %%WWWDIR%%/core/Application/Kernel/GlobalSettingsProvider.php %%WWWDIR%%/core/Application/Kernel/PluginList.php -%%WWWDIR%%/core/Archive.php +%%WWWDIR%%/core/Archive/ArchiveInvalidator/InvalidationResult.php %%WWWDIR%%/core/Archive/ArchiveInvalidator.php %%WWWDIR%%/core/Archive/ArchivePurger.php %%WWWDIR%%/core/Archive/Chunk.php %%WWWDIR%%/core/Archive/DataCollection.php %%WWWDIR%%/core/Archive/DataTableFactory.php %%WWWDIR%%/core/Archive/Parameters.php -%%WWWDIR%%/core/ArchiveProcessor.php +%%WWWDIR%%/core/Archive.php %%WWWDIR%%/core/ArchiveProcessor/Loader.php %%WWWDIR%%/core/ArchiveProcessor/Parameters.php %%WWWDIR%%/core/ArchiveProcessor/PluginsArchiver.php %%WWWDIR%%/core/ArchiveProcessor/Rules.php +%%WWWDIR%%/core/ArchiveProcessor.php %%WWWDIR%%/core/Archiver/Request.php -%%WWWDIR%%/core/AssetManager.php -%%WWWDIR%%/core/AssetManager/UIAsset.php %%WWWDIR%%/core/AssetManager/UIAsset/InMemoryUIAsset.php %%WWWDIR%%/core/AssetManager/UIAsset/OnDiskUIAsset.php +%%WWWDIR%%/core/AssetManager/UIAsset.php %%WWWDIR%%/core/AssetManager/UIAssetCacheBuster.php %%WWWDIR%%/core/AssetManager/UIAssetCatalog.php %%WWWDIR%%/core/AssetManager/UIAssetCatalogSorter.php -%%WWWDIR%%/core/AssetManager/UIAssetFetcher.php %%WWWDIR%%/core/AssetManager/UIAssetFetcher/JScriptUIAssetFetcher.php %%WWWDIR%%/core/AssetManager/UIAssetFetcher/StaticUIAssetFetcher.php %%WWWDIR%%/core/AssetManager/UIAssetFetcher/StylesheetUIAssetFetcher.php -%%WWWDIR%%/core/AssetManager/UIAssetMerger.php +%%WWWDIR%%/core/AssetManager/UIAssetFetcher.php %%WWWDIR%%/core/AssetManager/UIAssetMerger/JScriptUIAssetMerger.php %%WWWDIR%%/core/AssetManager/UIAssetMerger/StylesheetUIAssetMerger.php +%%WWWDIR%%/core/AssetManager/UIAssetMerger.php %%WWWDIR%%/core/AssetManager/UIAssetMinifier.php +%%WWWDIR%%/core/AssetManager.php %%WWWDIR%%/core/Auth.php %%WWWDIR%%/core/BaseFactory.php %%WWWDIR%%/core/Cache.php %%WWWDIR%%/core/CacheId.php -%%WWWDIR%%/core/CliMulti.php %%WWWDIR%%/core/CliMulti/CliPhp.php %%WWWDIR%%/core/CliMulti/Output.php %%WWWDIR%%/core/CliMulti/Process.php %%WWWDIR%%/core/CliMulti/RequestCommand.php +%%WWWDIR%%/core/CliMulti.php %%WWWDIR%%/core/Columns/Dimension.php %%WWWDIR%%/core/Columns/Updater.php %%WWWDIR%%/core/Common.php %%WWWDIR%%/core/Composer/ScriptHandler.php %%WWWDIR%%/core/Concurrency/DistributedList.php -%%WWWDIR%%/core/Config.php %%WWWDIR%%/core/Config/ConfigNotFoundException.php %%WWWDIR%%/core/Config/IniFileChain.php +%%WWWDIR%%/core/Config.php %%WWWDIR%%/core/Console.php %%WWWDIR%%/core/Container/ContainerDoesNotExistException.php %%WWWDIR%%/core/Container/ContainerFactory.php %%WWWDIR%%/core/Container/IniConfigDefinitionSource.php %%WWWDIR%%/core/Container/StaticContainer.php %%WWWDIR%%/core/Cookie.php -%%WWWDIR%%/core/CronArchive.php %%WWWDIR%%/core/CronArchive/FixedSiteIds.php %%WWWDIR%%/core/CronArchive/SegmentArchivingRequestUrlProvider.php %%WWWDIR%%/core/CronArchive/SharedSiteIds.php %%WWWDIR%%/core/CronArchive/SitesToReprocessDistributedList.php +%%WWWDIR%%/core/CronArchive.php %%WWWDIR%%/core/DataAccess/Actions.php %%WWWDIR%%/core/DataAccess/ArchiveSelector.php %%WWWDIR%%/core/DataAccess/ArchiveTableCreator.php +%%WWWDIR%%/core/DataAccess/ArchiveTableDao.php %%WWWDIR%%/core/DataAccess/ArchiveWriter.php %%WWWDIR%%/core/DataAccess/LogAggregator.php %%WWWDIR%%/core/DataAccess/LogQueryBuilder.php @@ -103,7 +104,6 @@ %%WWWDIR%%/core/DataFiles/SearchEngines.php %%WWWDIR%%/core/DataFiles/Socials.php %%WWWDIR%%/core/DataFiles/cacert.pem -%%WWWDIR%%/core/DataTable.php %%WWWDIR%%/core/DataTable/BaseFilter.php %%WWWDIR%%/core/DataTable/Bridges.php %%WWWDIR%%/core/DataTable/DataTableInterface.php @@ -143,7 +143,6 @@ %%WWWDIR%%/core/DataTable/Filter/Truncate.php %%WWWDIR%%/core/DataTable/Manager.php %%WWWDIR%%/core/DataTable/Map.php -%%WWWDIR%%/core/DataTable/Renderer.php %%WWWDIR%%/core/DataTable/Renderer/Console.php %%WWWDIR%%/core/DataTable/Renderer/Csv.php %%WWWDIR%%/core/DataTable/Renderer/Html.php @@ -152,23 +151,25 @@ %%WWWDIR%%/core/DataTable/Renderer/Rss.php %%WWWDIR%%/core/DataTable/Renderer/Tsv.php %%WWWDIR%%/core/DataTable/Renderer/Xml.php -%%WWWDIR%%/core/DataTable/Row.php +%%WWWDIR%%/core/DataTable/Renderer.php %%WWWDIR%%/core/DataTable/Row/DataTableSummaryRow.php +%%WWWDIR%%/core/DataTable/Row.php %%WWWDIR%%/core/DataTable/Simple.php %%WWWDIR%%/core/DataTable/TableNotFoundException.php +%%WWWDIR%%/core/DataTable.php %%WWWDIR%%/core/Date.php -%%WWWDIR%%/core/Db.php -%%WWWDIR%%/core/Db/Adapter.php %%WWWDIR%%/core/Db/Adapter/Mysqli.php %%WWWDIR%%/core/Db/Adapter/Pdo/Mssql.php %%WWWDIR%%/core/Db/Adapter/Pdo/Mysql.php %%WWWDIR%%/core/Db/Adapter/Pdo/Pgsql.php +%%WWWDIR%%/core/Db/Adapter.php %%WWWDIR%%/core/Db/AdapterInterface.php %%WWWDIR%%/core/Db/BatchInsert.php -%%WWWDIR%%/core/Db/Schema.php %%WWWDIR%%/core/Db/Schema/Mysql.php +%%WWWDIR%%/core/Db/Schema.php %%WWWDIR%%/core/Db/SchemaInterface.php %%WWWDIR%%/core/Db/Settings.php +%%WWWDIR%%/core/Db.php %%WWWDIR%%/core/DbHelper.php %%WWWDIR%%/core/Development.php %%WWWDIR%%/core/DeviceDetectorCache.php @@ -188,9 +189,9 @@ %%WWWDIR%%/core/Filechecks.php %%WWWDIR%%/core/Filesystem.php %%WWWDIR%%/core/FrontController.php -%%WWWDIR%%/core/Http.php %%WWWDIR%%/core/Http/ControllerResolver.php %%WWWDIR%%/core/Http/Router.php +%%WWWDIR%%/core/Http.php %%WWWDIR%%/core/IP.php %%WWWDIR%%/core/Intl/Data/Provider/CurrencyDataProvider.php %%WWWDIR%%/core/Intl/Data/Provider/LanguageDataProvider.php @@ -209,8 +210,8 @@ %%WWWDIR%%/core/Measurable/MeasurableSetting.php %%WWWDIR%%/core/Measurable/MeasurableSettings.php %%WWWDIR%%/core/Measurable/Settings/Storage.php -%%WWWDIR%%/core/Measurable/Type.php %%WWWDIR%%/core/Measurable/Type/TypeManager.php +%%WWWDIR%%/core/Measurable/Type.php %%WWWDIR%%/core/Menu/Group.php %%WWWDIR%%/core/Menu/MenuAbstract.php %%WWWDIR%%/core/Menu/MenuAdmin.php @@ -218,15 +219,15 @@ %%WWWDIR%%/core/Menu/MenuReporting.php %%WWWDIR%%/core/Menu/MenuTop.php %%WWWDIR%%/core/Menu/MenuUser.php -%%WWWDIR%%/core/Metrics.php -%%WWWDIR%%/core/Metrics/Formatter.php %%WWWDIR%%/core/Metrics/Formatter/Html.php +%%WWWDIR%%/core/Metrics/Formatter.php +%%WWWDIR%%/core/Metrics.php %%WWWDIR%%/core/MetricsFormatter.php %%WWWDIR%%/core/Nonce.php -%%WWWDIR%%/core/Notification.php %%WWWDIR%%/core/Notification/Manager.php +%%WWWDIR%%/core/Notification.php +%%WWWDIR%%/core/NumberFormatter.php %%WWWDIR%%/core/Option.php -%%WWWDIR%%/core/Period.php %%WWWDIR%%/core/Period/Day.php %%WWWDIR%%/core/Period/Factory.php %%WWWDIR%%/core/Period/Month.php @@ -234,8 +235,8 @@ %%WWWDIR%%/core/Period/Range.php %%WWWDIR%%/core/Period/Week.php %%WWWDIR%%/core/Period/Year.php +%%WWWDIR%%/core/Period.php %%WWWDIR%%/core/Piwik.php -%%WWWDIR%%/core/Plugin.php %%WWWDIR%%/core/Plugin/API.php %%WWWDIR%%/core/Plugin/AggregatedMetric.php %%WWWDIR%%/core/Plugin/Archiver.php @@ -254,6 +255,7 @@ %%WWWDIR%%/core/Plugin/Metric.php %%WWWDIR%%/core/Plugin/PluginException.php %%WWWDIR%%/core/Plugin/ProcessedMetric.php +%%WWWDIR%%/core/Plugin/ReleaseChannels.php %%WWWDIR%%/core/Plugin/Report.php %%WWWDIR%%/core/Plugin/Segment.php %%WWWDIR%%/core/Plugin/Settings.php @@ -261,6 +263,7 @@ %%WWWDIR%%/core/Plugin/ViewDataTable.php %%WWWDIR%%/core/Plugin/Visualization.php %%WWWDIR%%/core/Plugin/Widgets.php +%%WWWDIR%%/core/Plugin.php %%WWWDIR%%/core/PluginDeactivatedException.php %%WWWDIR%%/core/Profiler.php %%WWWDIR%%/core/ProxyHeaders.php @@ -268,10 +271,10 @@ %%WWWDIR%%/core/QuickForm2.php %%WWWDIR%%/core/RankingQuery.php %%WWWDIR%%/core/Registry.php -%%WWWDIR%%/core/ReportRenderer.php %%WWWDIR%%/core/ReportRenderer/Csv.php %%WWWDIR%%/core/ReportRenderer/Html.php %%WWWDIR%%/core/ReportRenderer/Pdf.php +%%WWWDIR%%/core/ReportRenderer.php %%WWWDIR%%/core/ScheduledTask.php %%WWWDIR%%/core/Scheduler/Schedule/Daily.php %%WWWDIR%%/core/Scheduler/Schedule/Hourly.php @@ -282,17 +285,17 @@ %%WWWDIR%%/core/Scheduler/Task.php %%WWWDIR%%/core/Scheduler/TaskLoader.php %%WWWDIR%%/core/Scheduler/Timetable.php -%%WWWDIR%%/core/Segment.php %%WWWDIR%%/core/Segment/SegmentExpression.php +%%WWWDIR%%/core/Segment.php %%WWWDIR%%/core/Sequence.php -%%WWWDIR%%/core/Session.php %%WWWDIR%%/core/Session/SaveHandler/DbTable.php %%WWWDIR%%/core/Session/SessionNamespace.php +%%WWWDIR%%/core/Session.php %%WWWDIR%%/core/Settings/Manager.php %%WWWDIR%%/core/Settings/Setting.php -%%WWWDIR%%/core/Settings/Storage.php %%WWWDIR%%/core/Settings/Storage/Factory.php %%WWWDIR%%/core/Settings/Storage/StaticStorage.php +%%WWWDIR%%/core/Settings/Storage.php %%WWWDIR%%/core/Settings/StorageInterface.php %%WWWDIR%%/core/Settings/SystemSetting.php %%WWWDIR%%/core/Settings/UserSetting.php @@ -304,37 +307,41 @@ %%WWWDIR%%/core/TaskScheduler.php %%WWWDIR%%/core/Theme.php %%WWWDIR%%/core/Timer.php -%%WWWDIR%%/core/Tracker.php %%WWWDIR%%/core/Tracker/Action.php %%WWWDIR%%/core/Tracker/ActionPageview.php %%WWWDIR%%/core/Tracker/Cache.php -%%WWWDIR%%/core/Tracker/Db.php %%WWWDIR%%/core/Tracker/Db/DbException.php %%WWWDIR%%/core/Tracker/Db/Mysqli.php %%WWWDIR%%/core/Tracker/Db/Pdo/Mysql.php %%WWWDIR%%/core/Tracker/Db/Pdo/Pgsql.php +%%WWWDIR%%/core/Tracker/Db.php %%WWWDIR%%/core/Tracker/GoalManager.php -%%WWWDIR%%/core/Tracker/Handler.php %%WWWDIR%%/core/Tracker/Handler/Factory.php +%%WWWDIR%%/core/Tracker/Handler.php %%WWWDIR%%/core/Tracker/IgnoreCookie.php %%WWWDIR%%/core/Tracker/Model.php %%WWWDIR%%/core/Tracker/PageUrl.php %%WWWDIR%%/core/Tracker/Request.php +%%WWWDIR%%/core/Tracker/RequestProcessor.php %%WWWDIR%%/core/Tracker/RequestSet.php %%WWWDIR%%/core/Tracker/Response.php %%WWWDIR%%/core/Tracker/ScheduledTasksRunner.php %%WWWDIR%%/core/Tracker/Settings.php %%WWWDIR%%/core/Tracker/SettingsStorage.php +%%WWWDIR%%/core/Tracker/TableLogAction/Cache.php %%WWWDIR%%/core/Tracker/TableLogAction.php %%WWWDIR%%/core/Tracker/TrackerCodeGenerator.php %%WWWDIR%%/core/Tracker/TrackerConfig.php -%%WWWDIR%%/core/Tracker/Visit.php %%WWWDIR%%/core/Tracker/Visit/Factory.php %%WWWDIR%%/core/Tracker/Visit/ReferrerSpamFilter.php +%%WWWDIR%%/core/Tracker/Visit/VisitProperties.php +%%WWWDIR%%/core/Tracker/Visit.php %%WWWDIR%%/core/Tracker/VisitExcluded.php %%WWWDIR%%/core/Tracker/VisitInterface.php %%WWWDIR%%/core/Tracker/Visitor.php %%WWWDIR%%/core/Tracker/VisitorNotFoundInDb.php +%%WWWDIR%%/core/Tracker/VisitorRecognizer.php +%%WWWDIR%%/core/Tracker.php %%WWWDIR%%/core/Translate.php %%WWWDIR%%/core/Translation/Loader/DevelopmentLoader.php %%WWWDIR%%/core/Translation/Loader/JsonFileLoader.php @@ -344,10 +351,10 @@ %%WWWDIR%%/core/Translation/Translator.php %%WWWDIR%%/core/Twig.php %%WWWDIR%%/core/Unzip.php +%%WWWDIR%%/core/UpdateCheck/ReleaseChannel.php %%WWWDIR%%/core/UpdateCheck.php -%%WWWDIR%%/core/Updater.php %%WWWDIR%%/core/Updater/UpdateObserver.php -%%WWWDIR%%/core/Updates.php +%%WWWDIR%%/core/Updater.php %%WWWDIR%%/core/Updates/0.2.10.php %%WWWDIR%%/core/Updates/0.2.12.php %%WWWDIR%%/core/Updates/0.2.13.php @@ -432,6 +439,13 @@ %%WWWDIR%%/core/Updates/2.14.0-b1.php %%WWWDIR%%/core/Updates/2.14.0-b2.php %%WWWDIR%%/core/Updates/2.14.2.php +%%WWWDIR%%/core/Updates/2.15.0-b12.php +%%WWWDIR%%/core/Updates/2.15.0-b16.php +%%WWWDIR%%/core/Updates/2.15.0-b17.php +%%WWWDIR%%/core/Updates/2.15.0-b20.php +%%WWWDIR%%/core/Updates/2.15.0-b3.php +%%WWWDIR%%/core/Updates/2.15.0-b4.php +%%WWWDIR%%/core/Updates/2.15.0.php %%WWWDIR%%/core/Updates/2.2.0-b15.php %%WWWDIR%%/core/Updates/2.2.3-b6.php %%WWWDIR%%/core/Updates/2.3.0-rc2.php @@ -449,15 +463,16 @@ %%WWWDIR%%/core/Updates/2.7.0-b4.php %%WWWDIR%%/core/Updates/2.9.0-b1.php %%WWWDIR%%/core/Updates/2.9.0-b7.php +%%WWWDIR%%/core/Updates.php %%WWWDIR%%/core/Url.php %%WWWDIR%%/core/UrlHelper.php %%WWWDIR%%/core/Version.php -%%WWWDIR%%/core/View.php %%WWWDIR%%/core/View/OneClickDone.php %%WWWDIR%%/core/View/RenderTokenParser.php %%WWWDIR%%/core/View/ReportsByDimension.php %%WWWDIR%%/core/View/UIControl.php %%WWWDIR%%/core/View/ViewInterface.php +%%WWWDIR%%/core/View.php %%WWWDIR%%/core/ViewDataTable/Config.php %%WWWDIR%%/core/ViewDataTable/Factory.php %%WWWDIR%%/core/ViewDataTable/Manager.php @@ -531,27 +546,25 @@ %%WWWDIR%%/lang/zh-cn.json %%WWWDIR%%/lang/zh-tw.json %%WWWDIR%%/libs/HTML/Common2.php -%%WWWDIR%%/libs/HTML/QuickForm2.php -%%WWWDIR%%/libs/HTML/QuickForm2/Container.php %%WWWDIR%%/libs/HTML/QuickForm2/Container/Fieldset.php %%WWWDIR%%/libs/HTML/QuickForm2/Container/Group.php -%%WWWDIR%%/libs/HTML/QuickForm2/Controller.php -%%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action.php +%%WWWDIR%%/libs/HTML/QuickForm2/Container.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action/Back.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action/Direct.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action/Display.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action/Jump.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action/Next.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action/Submit.php +%%WWWDIR%%/libs/HTML/QuickForm2/Controller/Action.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/DefaultAction.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/Page.php %%WWWDIR%%/libs/HTML/QuickForm2/Controller/SessionContainer.php -%%WWWDIR%%/libs/HTML/QuickForm2/DataSource.php +%%WWWDIR%%/libs/HTML/QuickForm2/Controller.php %%WWWDIR%%/libs/HTML/QuickForm2/DataSource/Array.php %%WWWDIR%%/libs/HTML/QuickForm2/DataSource/Session.php %%WWWDIR%%/libs/HTML/QuickForm2/DataSource/Submit.php %%WWWDIR%%/libs/HTML/QuickForm2/DataSource/SuperGlobal.php -%%WWWDIR%%/libs/HTML/QuickForm2/Element.php +%%WWWDIR%%/libs/HTML/QuickForm2/DataSource.php %%WWWDIR%%/libs/HTML/QuickForm2/Element/Button.php %%WWWDIR%%/libs/HTML/QuickForm2/Element/Date.php %%WWWDIR%%/libs/HTML/QuickForm2/Element/Input.php @@ -569,18 +582,18 @@ %%WWWDIR%%/libs/HTML/QuickForm2/Element/Select.php %%WWWDIR%%/libs/HTML/QuickForm2/Element/Static.php %%WWWDIR%%/libs/HTML/QuickForm2/Element/Textarea.php +%%WWWDIR%%/libs/HTML/QuickForm2/Element.php %%WWWDIR%%/libs/HTML/QuickForm2/Exception.php %%WWWDIR%%/libs/HTML/QuickForm2/Factory.php %%WWWDIR%%/libs/HTML/QuickForm2/JavascriptBuilder.php %%WWWDIR%%/libs/HTML/QuickForm2/Loader.php %%WWWDIR%%/libs/HTML/QuickForm2/Node.php -%%WWWDIR%%/libs/HTML/QuickForm2/Renderer.php %%WWWDIR%%/libs/HTML/QuickForm2/Renderer/Array.php %%WWWDIR%%/libs/HTML/QuickForm2/Renderer/Default.php %%WWWDIR%%/libs/HTML/QuickForm2/Renderer/Plugin.php %%WWWDIR%%/libs/HTML/QuickForm2/Renderer/Proxy.php %%WWWDIR%%/libs/HTML/QuickForm2/Renderer/Smarty.php -%%WWWDIR%%/libs/HTML/QuickForm2/Rule.php +%%WWWDIR%%/libs/HTML/QuickForm2/Renderer.php %%WWWDIR%%/libs/HTML/QuickForm2/Rule/Callback.php %%WWWDIR%%/libs/HTML/QuickForm2/Rule/Compare.php %%WWWDIR%%/libs/HTML/QuickForm2/Rule/Each.php @@ -593,6 +606,8 @@ %%WWWDIR%%/libs/HTML/QuickForm2/Rule/NotRegex.php %%WWWDIR%%/libs/HTML/QuickForm2/Rule/Regex.php %%WWWDIR%%/libs/HTML/QuickForm2/Rule/Required.php +%%WWWDIR%%/libs/HTML/QuickForm2/Rule.php +%%WWWDIR%%/libs/HTML/QuickForm2.php %%WWWDIR%%/libs/MaxMindGeoIP/geoip.inc %%WWWDIR%%/libs/MaxMindGeoIP/geoipcity.inc %%WWWDIR%%/libs/MaxMindGeoIP/geoipregionvars.php @@ -602,8 +617,6 @@ %%WWWDIR%%/libs/PiwikTracker/README.md %%WWWDIR%%/libs/PiwikTracker/composer.json %%WWWDIR%%/libs/README.md -%%WWWDIR%%/libs/Zend/Cache.php -%%WWWDIR%%/libs/Zend/Cache/Backend.php %%WWWDIR%%/libs/Zend/Cache/Backend/Apc.php %%WWWDIR%%/libs/Zend/Cache/Backend/BlackHole.php %%WWWDIR%%/libs/Zend/Cache/Backend/ExtendedInterface.php @@ -618,9 +631,10 @@ %%WWWDIR%%/libs/Zend/Cache/Backend/WinCache.php %%WWWDIR%%/libs/Zend/Cache/Backend/Xcache.php %%WWWDIR%%/libs/Zend/Cache/Backend/ZendPlatform.php -%%WWWDIR%%/libs/Zend/Cache/Backend/ZendServer.php %%WWWDIR%%/libs/Zend/Cache/Backend/ZendServer/Disk.php %%WWWDIR%%/libs/Zend/Cache/Backend/ZendServer/ShMem.php +%%WWWDIR%%/libs/Zend/Cache/Backend/ZendServer.php +%%WWWDIR%%/libs/Zend/Cache/Backend.php %%WWWDIR%%/libs/Zend/Cache/Core.php %%WWWDIR%%/libs/Zend/Cache/Exception.php %%WWWDIR%%/libs/Zend/Cache/Frontend/Capture.php @@ -630,116 +644,116 @@ %%WWWDIR%%/libs/Zend/Cache/Frontend/Output.php %%WWWDIR%%/libs/Zend/Cache/Frontend/Page.php %%WWWDIR%%/libs/Zend/Cache/Manager.php -%%WWWDIR%%/libs/Zend/Config.php +%%WWWDIR%%/libs/Zend/Cache.php %%WWWDIR%%/libs/Zend/Config/Exception.php %%WWWDIR%%/libs/Zend/Config/Ini.php %%WWWDIR%%/libs/Zend/Config/Json.php -%%WWWDIR%%/libs/Zend/Config/Writer.php %%WWWDIR%%/libs/Zend/Config/Writer/Array.php %%WWWDIR%%/libs/Zend/Config/Writer/FileAbstract.php %%WWWDIR%%/libs/Zend/Config/Writer/Ini.php %%WWWDIR%%/libs/Zend/Config/Writer/Json.php %%WWWDIR%%/libs/Zend/Config/Writer/Xml.php %%WWWDIR%%/libs/Zend/Config/Writer/Yaml.php +%%WWWDIR%%/libs/Zend/Config/Writer.php %%WWWDIR%%/libs/Zend/Config/Xml.php %%WWWDIR%%/libs/Zend/Config/Yaml.php -%%WWWDIR%%/libs/Zend/Db.php +%%WWWDIR%%/libs/Zend/Config.php %%WWWDIR%%/libs/Zend/Db/Adapter/Abstract.php -%%WWWDIR%%/libs/Zend/Db/Adapter/Db2.php %%WWWDIR%%/libs/Zend/Db/Adapter/Db2/Exception.php +%%WWWDIR%%/libs/Zend/Db/Adapter/Db2.php %%WWWDIR%%/libs/Zend/Db/Adapter/Exception.php -%%WWWDIR%%/libs/Zend/Db/Adapter/Mysqli.php %%WWWDIR%%/libs/Zend/Db/Adapter/Mysqli/Exception.php -%%WWWDIR%%/libs/Zend/Db/Adapter/Oracle.php +%%WWWDIR%%/libs/Zend/Db/Adapter/Mysqli.php %%WWWDIR%%/libs/Zend/Db/Adapter/Oracle/Exception.php +%%WWWDIR%%/libs/Zend/Db/Adapter/Oracle.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Abstract.php -%%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Ibm.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Ibm/Db2.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Ibm/Ids.php +%%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Ibm.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Mssql.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Mysql.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Oci.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Pgsql.php %%WWWDIR%%/libs/Zend/Db/Adapter/Pdo/Sqlite.php -%%WWWDIR%%/libs/Zend/Db/Adapter/Sqlsrv.php %%WWWDIR%%/libs/Zend/Db/Adapter/Sqlsrv/Exception.php +%%WWWDIR%%/libs/Zend/Db/Adapter/Sqlsrv.php %%WWWDIR%%/libs/Zend/Db/Exception.php %%WWWDIR%%/libs/Zend/Db/Expr.php -%%WWWDIR%%/libs/Zend/Db/Profiler.php %%WWWDIR%%/libs/Zend/Db/Profiler/Exception.php %%WWWDIR%%/libs/Zend/Db/Profiler/Firebug.php %%WWWDIR%%/libs/Zend/Db/Profiler/Query.php -%%WWWDIR%%/libs/Zend/Db/Select.php +%%WWWDIR%%/libs/Zend/Db/Profiler.php %%WWWDIR%%/libs/Zend/Db/Select/Exception.php -%%WWWDIR%%/libs/Zend/Db/Statement.php -%%WWWDIR%%/libs/Zend/Db/Statement/Db2.php +%%WWWDIR%%/libs/Zend/Db/Select.php %%WWWDIR%%/libs/Zend/Db/Statement/Db2/Exception.php +%%WWWDIR%%/libs/Zend/Db/Statement/Db2.php %%WWWDIR%%/libs/Zend/Db/Statement/Exception.php %%WWWDIR%%/libs/Zend/Db/Statement/Interface.php -%%WWWDIR%%/libs/Zend/Db/Statement/Mysqli.php %%WWWDIR%%/libs/Zend/Db/Statement/Mysqli/Exception.php -%%WWWDIR%%/libs/Zend/Db/Statement/Oracle.php +%%WWWDIR%%/libs/Zend/Db/Statement/Mysqli.php %%WWWDIR%%/libs/Zend/Db/Statement/Oracle/Exception.php -%%WWWDIR%%/libs/Zend/Db/Statement/Pdo.php +%%WWWDIR%%/libs/Zend/Db/Statement/Oracle.php %%WWWDIR%%/libs/Zend/Db/Statement/Pdo/Ibm.php %%WWWDIR%%/libs/Zend/Db/Statement/Pdo/Oci.php -%%WWWDIR%%/libs/Zend/Db/Statement/Sqlsrv.php +%%WWWDIR%%/libs/Zend/Db/Statement/Pdo.php %%WWWDIR%%/libs/Zend/Db/Statement/Sqlsrv/Exception.php -%%WWWDIR%%/libs/Zend/Db/Table.php +%%WWWDIR%%/libs/Zend/Db/Statement/Sqlsrv.php +%%WWWDIR%%/libs/Zend/Db/Statement.php %%WWWDIR%%/libs/Zend/Db/Table/Abstract.php %%WWWDIR%%/libs/Zend/Db/Table/Definition.php %%WWWDIR%%/libs/Zend/Db/Table/Exception.php -%%WWWDIR%%/libs/Zend/Db/Table/Row.php %%WWWDIR%%/libs/Zend/Db/Table/Row/Abstract.php %%WWWDIR%%/libs/Zend/Db/Table/Row/Exception.php -%%WWWDIR%%/libs/Zend/Db/Table/Rowset.php +%%WWWDIR%%/libs/Zend/Db/Table/Row.php %%WWWDIR%%/libs/Zend/Db/Table/Rowset/Abstract.php %%WWWDIR%%/libs/Zend/Db/Table/Rowset/Exception.php -%%WWWDIR%%/libs/Zend/Db/Table/Select.php +%%WWWDIR%%/libs/Zend/Db/Table/Rowset.php %%WWWDIR%%/libs/Zend/Db/Table/Select/Exception.php +%%WWWDIR%%/libs/Zend/Db/Table/Select.php +%%WWWDIR%%/libs/Zend/Db/Table.php +%%WWWDIR%%/libs/Zend/Db.php %%WWWDIR%%/libs/Zend/Exception.php %%WWWDIR%%/libs/Zend/LICENSE.txt -%%WWWDIR%%/libs/Zend/Mail.php %%WWWDIR%%/libs/Zend/Mail/Exception.php -%%WWWDIR%%/libs/Zend/Mail/Message.php %%WWWDIR%%/libs/Zend/Mail/Message/File.php %%WWWDIR%%/libs/Zend/Mail/Message/Interface.php -%%WWWDIR%%/libs/Zend/Mail/Part.php +%%WWWDIR%%/libs/Zend/Mail/Message.php %%WWWDIR%%/libs/Zend/Mail/Part/File.php %%WWWDIR%%/libs/Zend/Mail/Part/Interface.php +%%WWWDIR%%/libs/Zend/Mail/Part.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Abstract.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Exception.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Imap.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Pop3.php -%%WWWDIR%%/libs/Zend/Mail/Protocol/Smtp.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Smtp/Auth/Login.php %%WWWDIR%%/libs/Zend/Mail/Protocol/Smtp/Auth/Plain.php -%%WWWDIR%%/libs/Zend/Mail/Storage.php +%%WWWDIR%%/libs/Zend/Mail/Protocol/Smtp.php %%WWWDIR%%/libs/Zend/Mail/Storage/Abstract.php %%WWWDIR%%/libs/Zend/Mail/Storage/Exception.php -%%WWWDIR%%/libs/Zend/Mail/Storage/Folder.php %%WWWDIR%%/libs/Zend/Mail/Storage/Folder/Interface.php %%WWWDIR%%/libs/Zend/Mail/Storage/Folder/Maildir.php %%WWWDIR%%/libs/Zend/Mail/Storage/Folder/Mbox.php +%%WWWDIR%%/libs/Zend/Mail/Storage/Folder.php %%WWWDIR%%/libs/Zend/Mail/Storage/Imap.php %%WWWDIR%%/libs/Zend/Mail/Storage/Maildir.php %%WWWDIR%%/libs/Zend/Mail/Storage/Mbox.php %%WWWDIR%%/libs/Zend/Mail/Storage/Pop3.php %%WWWDIR%%/libs/Zend/Mail/Storage/Writable/Interface.php %%WWWDIR%%/libs/Zend/Mail/Storage/Writable/Maildir.php +%%WWWDIR%%/libs/Zend/Mail/Storage.php %%WWWDIR%%/libs/Zend/Mail/Transport/Abstract.php %%WWWDIR%%/libs/Zend/Mail/Transport/Exception.php %%WWWDIR%%/libs/Zend/Mail/Transport/File.php %%WWWDIR%%/libs/Zend/Mail/Transport/Sendmail.php %%WWWDIR%%/libs/Zend/Mail/Transport/Smtp.php -%%WWWDIR%%/libs/Zend/Mime.php +%%WWWDIR%%/libs/Zend/Mail.php %%WWWDIR%%/libs/Zend/Mime/Decode.php %%WWWDIR%%/libs/Zend/Mime/Exception.php %%WWWDIR%%/libs/Zend/Mime/Message.php %%WWWDIR%%/libs/Zend/Mime/Part.php +%%WWWDIR%%/libs/Zend/Mime.php %%WWWDIR%%/libs/Zend/Registry.php -%%WWWDIR%%/libs/Zend/Session.php %%WWWDIR%%/libs/Zend/Session/Abstract.php %%WWWDIR%%/libs/Zend/Session/Exception.php %%WWWDIR%%/libs/Zend/Session/Namespace.php @@ -749,7 +763,7 @@ %%WWWDIR%%/libs/Zend/Session/Validator/Abstract.php %%WWWDIR%%/libs/Zend/Session/Validator/HttpUserAgent.php %%WWWDIR%%/libs/Zend/Session/Validator/Interface.php -%%WWWDIR%%/libs/Zend/Validate.php +%%WWWDIR%%/libs/Zend/Session.php %%WWWDIR%%/libs/Zend/Validate/Abstract.php %%WWWDIR%%/libs/Zend/Validate/Alnum.php %%WWWDIR%%/libs/Zend/Validate/Alpha.php @@ -782,11 +796,11 @@ %%WWWDIR%%/libs/Zend/Validate/Float.php %%WWWDIR%%/libs/Zend/Validate/GreaterThan.php %%WWWDIR%%/libs/Zend/Validate/Hex.php -%%WWWDIR%%/libs/Zend/Validate/Hostname.php %%WWWDIR%%/libs/Zend/Validate/Hostname/Biz.php %%WWWDIR%%/libs/Zend/Validate/Hostname/Cn.php %%WWWDIR%%/libs/Zend/Validate/Hostname/Com.php %%WWWDIR%%/libs/Zend/Validate/Hostname/Jp.php +%%WWWDIR%%/libs/Zend/Validate/Hostname.php %%WWWDIR%%/libs/Zend/Validate/Iban.php %%WWWDIR%%/libs/Zend/Validate/Identical.php %%WWWDIR%%/libs/Zend/Validate/InArray.php @@ -799,7 +813,17 @@ %%WWWDIR%%/libs/Zend/Validate/PostCode.php %%WWWDIR%%/libs/Zend/Validate/Regex.php %%WWWDIR%%/libs/Zend/Validate/StringLength.php +%%WWWDIR%%/libs/Zend/Validate.php %%WWWDIR%%/libs/Zend/Version.php +%%WWWDIR%%/libs/bower_components/angular/.bower.json +%%WWWDIR%%/libs/bower_components/angular/README.md +%%WWWDIR%%/libs/bower_components/angular/angular-csp.css +%%WWWDIR%%/libs/bower_components/angular/angular.js +%%WWWDIR%%/libs/bower_components/angular/angular.min.js +%%WWWDIR%%/libs/bower_components/angular/angular.min.js.gzip +%%WWWDIR%%/libs/bower_components/angular/angular.min.js.map +%%WWWDIR%%/libs/bower_components/angular/bower.json +%%WWWDIR%%/libs/bower_components/angular/package.json %%WWWDIR%%/libs/bower_components/angular-animate/.bower.json %%WWWDIR%%/libs/bower_components/angular-animate/README.md %%WWWDIR%%/libs/bower_components/angular-animate/angular-animate.js @@ -826,15 +850,6 @@ %%WWWDIR%%/libs/bower_components/angular-sanitize/angular-sanitize.min.js.map %%WWWDIR%%/libs/bower_components/angular-sanitize/bower.json %%WWWDIR%%/libs/bower_components/angular-sanitize/package.json -%%WWWDIR%%/libs/bower_components/angular/.bower.json -%%WWWDIR%%/libs/bower_components/angular/README.md -%%WWWDIR%%/libs/bower_components/angular/angular-csp.css -%%WWWDIR%%/libs/bower_components/angular/angular.js -%%WWWDIR%%/libs/bower_components/angular/angular.min.js -%%WWWDIR%%/libs/bower_components/angular/angular.min.js.gzip -%%WWWDIR%%/libs/bower_components/angular/angular.min.js.map -%%WWWDIR%%/libs/bower_components/angular/bower.json -%%WWWDIR%%/libs/bower_components/angular/package.json %%WWWDIR%%/libs/bower_components/chroma-js/.bower.json %%WWWDIR%%/libs/bower_components/chroma-js/LICENSE %%WWWDIR%%/libs/bower_components/chroma-js/LICENSE-colors @@ -891,8 +906,8 @@ %%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content2.html %%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content3.html %%WWWDIR%%/libs/bower_components/jScrollPane/iframe_content4.html -%%WWWDIR%%/libs/bower_components/jScrollPane/image.html %%WWWDIR%%/libs/bower_components/jScrollPane/image/logo.png +%%WWWDIR%%/libs/bower_components/jScrollPane/image.html %%WWWDIR%%/libs/bower_components/jScrollPane/image2.html %%WWWDIR%%/libs/bower_components/jScrollPane/index.html %%WWWDIR%%/libs/bower_components/jScrollPane/invisibles.html @@ -945,6 +960,93 @@ %%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/index.html %%WWWDIR%%/libs/bower_components/jScrollPane/themes/lozenge/style/jquery.jscrollpane.lozenge.css %%WWWDIR%%/libs/bower_components/jScrollPane/v1.html +%%WWWDIR%%/libs/bower_components/jquery/.bower.json +%%WWWDIR%%/libs/bower_components/jquery/MIT-LICENSE.txt +%%WWWDIR%%/libs/bower_components/jquery/bower.json +%%WWWDIR%%/libs/bower_components/jquery/dist/jquery.js +%%WWWDIR%%/libs/bower_components/jquery/dist/jquery.min.js +%%WWWDIR%%/libs/bower_components/jquery/dist/jquery.min.map +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/jsonp.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/load.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/parseJSON.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/parseXML.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/script.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/var/nonce.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/var/rquery.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax/xhr.js +%%WWWDIR%%/libs/bower_components/jquery/src/ajax.js +%%WWWDIR%%/libs/bower_components/jquery/src/attributes/attr.js +%%WWWDIR%%/libs/bower_components/jquery/src/attributes/classes.js +%%WWWDIR%%/libs/bower_components/jquery/src/attributes/prop.js +%%WWWDIR%%/libs/bower_components/jquery/src/attributes/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/attributes/val.js +%%WWWDIR%%/libs/bower_components/jquery/src/attributes.js +%%WWWDIR%%/libs/bower_components/jquery/src/callbacks.js +%%WWWDIR%%/libs/bower_components/jquery/src/core/access.js +%%WWWDIR%%/libs/bower_components/jquery/src/core/init.js +%%WWWDIR%%/libs/bower_components/jquery/src/core/parseHTML.js +%%WWWDIR%%/libs/bower_components/jquery/src/core/ready.js +%%WWWDIR%%/libs/bower_components/jquery/src/core/var/rsingleTag.js +%%WWWDIR%%/libs/bower_components/jquery/src/core.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/addGetHookIf.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/curCSS.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/defaultDisplay.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/hiddenVisibleSelectors.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/swap.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/var/cssExpand.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/var/isHidden.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/var/rmargin.js +%%WWWDIR%%/libs/bower_components/jquery/src/css/var/rnumnonpx.js +%%WWWDIR%%/libs/bower_components/jquery/src/css.js +%%WWWDIR%%/libs/bower_components/jquery/src/data/accepts.js +%%WWWDIR%%/libs/bower_components/jquery/src/data/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/data.js +%%WWWDIR%%/libs/bower_components/jquery/src/deferred.js +%%WWWDIR%%/libs/bower_components/jquery/src/deprecated.js +%%WWWDIR%%/libs/bower_components/jquery/src/dimensions.js +%%WWWDIR%%/libs/bower_components/jquery/src/effects/Tween.js +%%WWWDIR%%/libs/bower_components/jquery/src/effects/animatedSelector.js +%%WWWDIR%%/libs/bower_components/jquery/src/effects/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/effects.js +%%WWWDIR%%/libs/bower_components/jquery/src/event/alias.js +%%WWWDIR%%/libs/bower_components/jquery/src/event/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/event.js +%%WWWDIR%%/libs/bower_components/jquery/src/exports/amd.js +%%WWWDIR%%/libs/bower_components/jquery/src/exports/global.js +%%WWWDIR%%/libs/bower_components/jquery/src/intro.js +%%WWWDIR%%/libs/bower_components/jquery/src/jquery.js +%%WWWDIR%%/libs/bower_components/jquery/src/manipulation/_evalUrl.js +%%WWWDIR%%/libs/bower_components/jquery/src/manipulation/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/manipulation/var/rcheckableType.js +%%WWWDIR%%/libs/bower_components/jquery/src/manipulation.js +%%WWWDIR%%/libs/bower_components/jquery/src/offset.js +%%WWWDIR%%/libs/bower_components/jquery/src/outro.js +%%WWWDIR%%/libs/bower_components/jquery/src/queue/delay.js +%%WWWDIR%%/libs/bower_components/jquery/src/queue.js +%%WWWDIR%%/libs/bower_components/jquery/src/selector-sizzle.js +%%WWWDIR%%/libs/bower_components/jquery/src/selector.js +%%WWWDIR%%/libs/bower_components/jquery/src/serialize.js +%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.js +%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.min.js +%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.min.map +%%WWWDIR%%/libs/bower_components/jquery/src/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/traversing/findFilter.js +%%WWWDIR%%/libs/bower_components/jquery/src/traversing/var/rneedsContext.js +%%WWWDIR%%/libs/bower_components/jquery/src/traversing.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/class2type.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/concat.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/deletedIds.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/hasOwn.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/indexOf.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/pnum.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/push.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/rnotwhite.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/slice.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/strundefined.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/support.js +%%WWWDIR%%/libs/bower_components/jquery/src/var/toString.js +%%WWWDIR%%/libs/bower_components/jquery/src/wrap.js %%WWWDIR%%/libs/bower_components/jquery-mousewheel/.bower.json %%WWWDIR%%/libs/bower_components/jquery-mousewheel/ChangeLog.md %%WWWDIR%%/libs/bower_components/jquery-mousewheel/LICENSE.txt @@ -1199,93 +1301,6 @@ %%WWWDIR%%/libs/bower_components/jquery.scrollTo/jquery.scrollTo.min.js %%WWWDIR%%/libs/bower_components/jquery.scrollTo/package.json %%WWWDIR%%/libs/bower_components/jquery.scrollTo/scrollTo.jquery.json -%%WWWDIR%%/libs/bower_components/jquery/.bower.json -%%WWWDIR%%/libs/bower_components/jquery/MIT-LICENSE.txt -%%WWWDIR%%/libs/bower_components/jquery/bower.json -%%WWWDIR%%/libs/bower_components/jquery/dist/jquery.js -%%WWWDIR%%/libs/bower_components/jquery/dist/jquery.min.js -%%WWWDIR%%/libs/bower_components/jquery/dist/jquery.min.map -%%WWWDIR%%/libs/bower_components/jquery/src/ajax.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/jsonp.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/load.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/parseJSON.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/parseXML.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/script.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/var/nonce.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/var/rquery.js -%%WWWDIR%%/libs/bower_components/jquery/src/ajax/xhr.js -%%WWWDIR%%/libs/bower_components/jquery/src/attributes.js -%%WWWDIR%%/libs/bower_components/jquery/src/attributes/attr.js -%%WWWDIR%%/libs/bower_components/jquery/src/attributes/classes.js -%%WWWDIR%%/libs/bower_components/jquery/src/attributes/prop.js -%%WWWDIR%%/libs/bower_components/jquery/src/attributes/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/attributes/val.js -%%WWWDIR%%/libs/bower_components/jquery/src/callbacks.js -%%WWWDIR%%/libs/bower_components/jquery/src/core.js -%%WWWDIR%%/libs/bower_components/jquery/src/core/access.js -%%WWWDIR%%/libs/bower_components/jquery/src/core/init.js -%%WWWDIR%%/libs/bower_components/jquery/src/core/parseHTML.js -%%WWWDIR%%/libs/bower_components/jquery/src/core/ready.js -%%WWWDIR%%/libs/bower_components/jquery/src/core/var/rsingleTag.js -%%WWWDIR%%/libs/bower_components/jquery/src/css.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/addGetHookIf.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/curCSS.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/defaultDisplay.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/hiddenVisibleSelectors.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/swap.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/var/cssExpand.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/var/isHidden.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/var/rmargin.js -%%WWWDIR%%/libs/bower_components/jquery/src/css/var/rnumnonpx.js -%%WWWDIR%%/libs/bower_components/jquery/src/data.js -%%WWWDIR%%/libs/bower_components/jquery/src/data/accepts.js -%%WWWDIR%%/libs/bower_components/jquery/src/data/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/deferred.js -%%WWWDIR%%/libs/bower_components/jquery/src/deprecated.js -%%WWWDIR%%/libs/bower_components/jquery/src/dimensions.js -%%WWWDIR%%/libs/bower_components/jquery/src/effects.js -%%WWWDIR%%/libs/bower_components/jquery/src/effects/Tween.js -%%WWWDIR%%/libs/bower_components/jquery/src/effects/animatedSelector.js -%%WWWDIR%%/libs/bower_components/jquery/src/effects/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/event.js -%%WWWDIR%%/libs/bower_components/jquery/src/event/alias.js -%%WWWDIR%%/libs/bower_components/jquery/src/event/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/exports/amd.js -%%WWWDIR%%/libs/bower_components/jquery/src/exports/global.js -%%WWWDIR%%/libs/bower_components/jquery/src/intro.js -%%WWWDIR%%/libs/bower_components/jquery/src/jquery.js -%%WWWDIR%%/libs/bower_components/jquery/src/manipulation.js -%%WWWDIR%%/libs/bower_components/jquery/src/manipulation/_evalUrl.js -%%WWWDIR%%/libs/bower_components/jquery/src/manipulation/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/manipulation/var/rcheckableType.js -%%WWWDIR%%/libs/bower_components/jquery/src/offset.js -%%WWWDIR%%/libs/bower_components/jquery/src/outro.js -%%WWWDIR%%/libs/bower_components/jquery/src/queue.js -%%WWWDIR%%/libs/bower_components/jquery/src/queue/delay.js -%%WWWDIR%%/libs/bower_components/jquery/src/selector-sizzle.js -%%WWWDIR%%/libs/bower_components/jquery/src/selector.js -%%WWWDIR%%/libs/bower_components/jquery/src/serialize.js -%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.js -%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.min.js -%%WWWDIR%%/libs/bower_components/jquery/src/sizzle/dist/sizzle.min.map -%%WWWDIR%%/libs/bower_components/jquery/src/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/traversing.js -%%WWWDIR%%/libs/bower_components/jquery/src/traversing/findFilter.js -%%WWWDIR%%/libs/bower_components/jquery/src/traversing/var/rneedsContext.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/class2type.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/concat.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/deletedIds.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/hasOwn.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/indexOf.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/pnum.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/push.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/rnotwhite.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/slice.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/strundefined.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/support.js -%%WWWDIR%%/libs/bower_components/jquery/src/var/toString.js -%%WWWDIR%%/libs/bower_components/jquery/src/wrap.js %%WWWDIR%%/libs/bower_components/mousetrap/.bower.json %%WWWDIR%%/libs/bower_components/mousetrap/.gitignore %%WWWDIR%%/libs/bower_components/mousetrap/Gruntfile.js @@ -1428,6 +1443,7 @@ %%WWWDIR%%/misc/gpl-3.0.txt %%WWWDIR%%/misc/internal-docs/content-tracking.md %%WWWDIR%%/misc/log-analytics/.gitignore +%%WWWDIR%%/misc/log-analytics/.travis.yml %%WWWDIR%%/misc/log-analytics/CONTRIBUTING.md %%WWWDIR%%/misc/log-analytics/README.md %%WWWDIR%%/misc/log-analytics/import_logs.py @@ -1452,6 +1468,7 @@ %%WWWDIR%%/plugins/API/API.php %%WWWDIR%%/plugins/API/Controller.php %%WWWDIR%%/plugins/API/DataTable/MergeDataTables.php +%%WWWDIR%%/plugins/API/Glossary.php %%WWWDIR%%/plugins/API/Menu.php %%WWWDIR%%/plugins/API/ProcessedReport.php %%WWWDIR%%/plugins/API/Renderer/Console.php @@ -1519,12 +1536,13 @@ %%WWWDIR%%/plugins/API/lang/zh-cn.json %%WWWDIR%%/plugins/API/lang/zh-tw.json %%WWWDIR%%/plugins/API/stylesheets/listAllAPI.less +%%WWWDIR%%/plugins/API/templates/glossary.twig %%WWWDIR%%/plugins/API/templates/listAllAPI.twig %%WWWDIR%%/plugins/Actions/API.php -%%WWWDIR%%/plugins/Actions/Actions.php %%WWWDIR%%/plugins/Actions/Actions/ActionClickUrl.php %%WWWDIR%%/plugins/Actions/Actions/ActionDownloadUrl.php %%WWWDIR%%/plugins/Actions/Actions/ActionSiteSearch.php +%%WWWDIR%%/plugins/Actions/Actions.php %%WWWDIR%%/plugins/Actions/Archiver.php %%WWWDIR%%/plugins/Actions/ArchivingHelper.php %%WWWDIR%%/plugins/Actions/Columns/ClickedUrl.php @@ -1570,6 +1588,8 @@ %%WWWDIR%%/plugins/Actions/Reports/GetSiteSearchNoResultKeywords.php %%WWWDIR%%/plugins/Actions/Reports/SiteSearchBase.php %%WWWDIR%%/plugins/Actions/Segment.php +%%WWWDIR%%/plugins/Actions/Tracker/ActionsRequestProcessor.php +%%WWWDIR%%/plugins/Actions/config/config.php %%WWWDIR%%/plugins/Actions/javascripts/actionsDataTable.js %%WWWDIR%%/plugins/Actions/lang/am.json %%WWWDIR%%/plugins/Actions/lang/ar.json @@ -1588,6 +1608,7 @@ %%WWWDIR%%/plugins/Actions/lang/fa.json %%WWWDIR%%/plugins/Actions/lang/fi.json %%WWWDIR%%/plugins/Actions/lang/fr.json +%%WWWDIR%%/plugins/Actions/lang/gl.json %%WWWDIR%%/plugins/Actions/lang/he.json %%WWWDIR%%/plugins/Actions/lang/hi.json %%WWWDIR%%/plugins/Actions/lang/hr.json @@ -1643,6 +1664,7 @@ %%WWWDIR%%/plugins/Annotations/lang/fa.json %%WWWDIR%%/plugins/Annotations/lang/fi.json %%WWWDIR%%/plugins/Annotations/lang/fr.json +%%WWWDIR%%/plugins/Annotations/lang/gl.json %%WWWDIR%%/plugins/Annotations/lang/he.json %%WWWDIR%%/plugins/Annotations/lang/hi.json %%WWWDIR%%/plugins/Annotations/lang/hr.json @@ -1728,13 +1750,17 @@ %%WWWDIR%%/plugins/Contents/lang/sq.json %%WWWDIR%%/plugins/Contents/lang/sr.json %%WWWDIR%%/plugins/Contents/lang/sv.json +%%WWWDIR%%/plugins/Contents/lang/ta.json %%WWWDIR%%/plugins/Contents/lang/tl.json %%WWWDIR%%/plugins/Contents/lang/tr.json +%%WWWDIR%%/plugins/Contents/lang/vi.json %%WWWDIR%%/plugins/Contents/screenshots/.gitkeep %%WWWDIR%%/plugins/Contents/stylesheets/datatable.less %%WWWDIR%%/plugins/CoreAdminHome/API.php %%WWWDIR%%/plugins/CoreAdminHome/Commands/DeleteLogsData.php %%WWWDIR%%/plugins/CoreAdminHome/Commands/FixDuplicateLogActions.php +%%WWWDIR%%/plugins/CoreAdminHome/Commands/InvalidateReportData.php +%%WWWDIR%%/plugins/CoreAdminHome/Commands/OptimizeArchiveTables.php %%WWWDIR%%/plugins/CoreAdminHome/Commands/PurgeOldArchiveData.php %%WWWDIR%%/plugins/CoreAdminHome/Commands/RunScheduledTasks.php %%WWWDIR%%/plugins/CoreAdminHome/Controller.php @@ -1743,8 +1769,8 @@ %%WWWDIR%%/plugins/CoreAdminHome/Menu.php %%WWWDIR%%/plugins/CoreAdminHome/Model/DuplicateActionRemover.php %%WWWDIR%%/plugins/CoreAdminHome/OptOutManager.php -%%WWWDIR%%/plugins/CoreAdminHome/Tasks.php %%WWWDIR%%/plugins/CoreAdminHome/Tasks/ArchivesToPurgeDistributedList.php +%%WWWDIR%%/plugins/CoreAdminHome/Tasks.php %%WWWDIR%%/plugins/CoreAdminHome/javascripts/generalSettings.js %%WWWDIR%%/plugins/CoreAdminHome/javascripts/jsTrackingGenerator.js %%WWWDIR%%/plugins/CoreAdminHome/javascripts/pluginSettings.js @@ -1799,8 +1825,6 @@ %%WWWDIR%%/plugins/CoreAdminHome/lang/zh-tw.json %%WWWDIR%%/plugins/CoreAdminHome/stylesheets/generalSettings.less %%WWWDIR%%/plugins/CoreAdminHome/stylesheets/jsTrackingGenerator.css -%%WWWDIR%%/plugins/CoreAdminHome/stylesheets/menu.less -%%WWWDIR%%/plugins/CoreAdminHome/templates/_menu.twig %%WWWDIR%%/plugins/CoreAdminHome/templates/generalSettings.twig %%WWWDIR%%/plugins/CoreAdminHome/templates/optOut.twig %%WWWDIR%%/plugins/CoreAdminHome/templates/pluginSettings.twig @@ -1844,10 +1868,13 @@ %%WWWDIR%%/plugins/CoreHome/Columns/VisitFirstActionTime.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitGoalBuyer.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitGoalConverted.php +%%WWWDIR%%/plugins/CoreHome/Columns/VisitId.php +%%WWWDIR%%/plugins/CoreHome/Columns/VisitIp.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitLastActionTime.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitTotalTime.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitorDaysSinceFirst.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitorDaysSinceOrder.php +%%WWWDIR%%/plugins/CoreHome/Columns/VisitorId.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitorReturning.php %%WWWDIR%%/plugins/CoreHome/Columns/VisitsCount.php %%WWWDIR%%/plugins/CoreHome/Controller.php @@ -1856,13 +1883,13 @@ %%WWWDIR%%/plugins/CoreHome/DataTableRowAction/RowEvolution.php %%WWWDIR%%/plugins/CoreHome/Menu.php %%WWWDIR%%/plugins/CoreHome/Segment.php +%%WWWDIR%%/plugins/CoreHome/Tracker/VisitRequestProcessor.php %%WWWDIR%%/plugins/CoreHome/Visitor.php %%WWWDIR%%/plugins/CoreHome/Widgets.php %%WWWDIR%%/plugins/CoreHome/angularjs/ajax-form/ajax-form.controller.js %%WWWDIR%%/plugins/CoreHome/angularjs/ajax-form/ajax-form.directive.js %%WWWDIR%%/plugins/CoreHome/angularjs/anchorLinkFix.js %%WWWDIR%%/plugins/CoreHome/angularjs/common/directives/autocomplete-matched.js -%%WWWDIR%%/plugins/CoreHome/angularjs/common/directives/autocomplete-matched.spec.js %%WWWDIR%%/plugins/CoreHome/angularjs/common/directives/dialog.js %%WWWDIR%%/plugins/CoreHome/angularjs/common/directives/directive.module.js %%WWWDIR%%/plugins/CoreHome/angularjs/common/directives/focus-anywhere-but-here.js @@ -1902,11 +1929,18 @@ %%WWWDIR%%/plugins/CoreHome/angularjs/notification/notification.directive.less %%WWWDIR%%/plugins/CoreHome/angularjs/piwikApp.config.js %%WWWDIR%%/plugins/CoreHome/angularjs/piwikApp.js +%%WWWDIR%%/plugins/CoreHome/angularjs/quick-access/quick-access.controller.js +%%WWWDIR%%/plugins/CoreHome/angularjs/quick-access/quick-access.directive.html +%%WWWDIR%%/plugins/CoreHome/angularjs/quick-access/quick-access.directive.js +%%WWWDIR%%/plugins/CoreHome/angularjs/quick-access/quick-access.directive.less +%%WWWDIR%%/plugins/CoreHome/angularjs/selector/selector.directive.js +%%WWWDIR%%/plugins/CoreHome/angularjs/selector/selector.directive.less %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector-model.service.js %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector.controller.js %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector.directive.html %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector.directive.js %%WWWDIR%%/plugins/CoreHome/angularjs/siteselector/siteselector.directive.less +%%WWWDIR%%/plugins/CoreHome/config/config.php %%WWWDIR%%/plugins/CoreHome/images/bg_header.jpg %%WWWDIR%%/plugins/CoreHome/images/bullet1.gif %%WWWDIR%%/plugins/CoreHome/images/bullet2.gif @@ -1931,6 +1965,7 @@ %%WWWDIR%%/plugins/CoreHome/javascripts/menu_init.js %%WWWDIR%%/plugins/CoreHome/javascripts/notification.js %%WWWDIR%%/plugins/CoreHome/javascripts/notification_parser.js +%%WWWDIR%%/plugins/CoreHome/javascripts/numberFormatter.js %%WWWDIR%%/plugins/CoreHome/javascripts/popover.js %%WWWDIR%%/plugins/CoreHome/javascripts/require.js %%WWWDIR%%/plugins/CoreHome/javascripts/sparkline.js @@ -1992,16 +2027,16 @@ %%WWWDIR%%/plugins/CoreHome/stylesheets/cloud.less %%WWWDIR%%/plugins/CoreHome/stylesheets/color_manager.css %%WWWDIR%%/plugins/CoreHome/stylesheets/coreHome.less -%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable.less %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_dataTable.less %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_limitSelection.less %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_reportDocumentation.less %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_rowActions.less %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_subDataTable.less %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_tableConfiguration.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable.less %%WWWDIR%%/plugins/CoreHome/stylesheets/jqplotColors.less %%WWWDIR%%/plugins/CoreHome/stylesheets/jquery.ui.autocomplete.css -%%WWWDIR%%/plugins/CoreHome/stylesheets/menu.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/layout.less %%WWWDIR%%/plugins/CoreHome/stylesheets/notification.less %%WWWDIR%%/plugins/CoreHome/stylesheets/promo.less *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Wed Dec 2 18:14:51 2015 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 6ACA6A3F83B; Wed, 2 Dec 2015 18:14:51 +0000 (UTC) (envelope-from junovitch@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 41F901845; Wed, 2 Dec 2015 18:14:51 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB2IEoln071475; Wed, 2 Dec 2015 18:14:50 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB2IEoRG071471; Wed, 2 Dec 2015 18:14:50 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201512021814.tB2IEoRG071471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 2 Dec 2015 18:14:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402841 - branches/2015Q4/www/hiawatha X-SVN-Group: ports-branches 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.20 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, 02 Dec 2015 18:14:51 -0000 Author: junovitch Date: Wed Dec 2 18:14:49 2015 New Revision: 402841 URL: https://svnweb.freebsd.org/changeset/ports/402841 Log: MFH: r399650, r399808, r399956, r402639 r399650 www/hiawatha: Reset MAINTAINER Reset MAINTAINER at current maintainers request. PR: 203862 Requested by: Chris Petrik (maintainer) r399808 www/hiawatha: Update to 9.15 * Update PORTVERSION and distinfo (9.15) * Update pkg-plist (new shared library versions) * Add LICENSE_FILE Changes: https://www.hiawatha-webserver.org/changelog Approved by: unmaintained r399956 - Switch to options helpers r402639 www/hiawatha: Fix fetch due to upstream subdirectory change PR: 204861 Submitted by: Mats Klingberg Approved by: ports-secteam (delphij) Modified: branches/2015Q4/www/hiawatha/Makefile branches/2015Q4/www/hiawatha/distinfo branches/2015Q4/www/hiawatha/pkg-plist Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/www/hiawatha/Makefile ============================================================================== --- branches/2015Q4/www/hiawatha/Makefile Wed Dec 2 17:49:30 2015 (r402840) +++ branches/2015Q4/www/hiawatha/Makefile Wed Dec 2 18:14:49 2015 (r402841) @@ -2,14 +2,15 @@ # $FreeBSD$ PORTNAME= hiawatha -PORTVERSION= 9.14 +PORTVERSION= 9.15 CATEGORIES= www -MASTER_SITES= https://www.hiawatha-webserver.org/files/ +MASTER_SITES= https://www.hiawatha-webserver.org/files/hiawatha-9/ -MAINTAINER= chris@bsdjunk.com +MAINTAINER= ports@FreeBSD.org COMMENT= Advanced and secure webserver for Unix LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE PORTDOCS= ChangeLog README.md CONFIG_FILES= hiawatha.conf mimetype.conf cgi-wrapper.conf toolkit.conf \ @@ -69,9 +70,6 @@ post-patch: ${WRKSRC}/man/hiawatha.1.in ${WRKSRC}/man/cgi-wrapper.1.in post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ - .for FILE in ${CONFIG_FILES} ${INSTALL_DATA} ${WRKSRC}/config/${FILE} ${STAGEDIR}${PREFIX}/etc/hiawatha/${FILE}.sample .endfor @@ -79,4 +77,8 @@ post-install: @${MKDIR} ${STAGEDIR}${WWWDIR} ; \ ${INSTALL_DATA} ${WRKSRC}/extra/index.html ${STAGEDIR}${WWWDIR}/index.html.sample +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ + .include Modified: branches/2015Q4/www/hiawatha/distinfo ============================================================================== --- branches/2015Q4/www/hiawatha/distinfo Wed Dec 2 17:49:30 2015 (r402840) +++ branches/2015Q4/www/hiawatha/distinfo Wed Dec 2 18:14:49 2015 (r402841) @@ -1,2 +1,2 @@ -SHA256 (hiawatha-9.14.tar.gz) = 79c92587cd86a0461d952c99036f5615dacdcaccabe0a9a29359e6044d809bfa -SIZE (hiawatha-9.14.tar.gz) = 891930 +SHA256 (hiawatha-9.15.tar.gz) = e9252133a1114095d1a9a89144b88828ee3b9754f435bd88270f7bf444dd9421 +SIZE (hiawatha-9.15.tar.gz) = 869922 Modified: branches/2015Q4/www/hiawatha/pkg-plist ============================================================================== --- branches/2015Q4/www/hiawatha/pkg-plist Wed Dec 2 17:49:30 2015 (r402840) +++ branches/2015Q4/www/hiawatha/pkg-plist Wed Dec 2 18:14:49 2015 (r402841) @@ -11,12 +11,12 @@ sbin/wigwam lib/hiawatha/libmbedtls.so lib/hiawatha/libmbedcrypto.so lib/hiawatha/libmbedcrypto.so.0 -lib/hiawatha/libmbedcrypto.so.2.0.0 +lib/hiawatha/libmbedcrypto.so.2.1.2 lib/hiawatha/libmbedtls.so.10 -lib/hiawatha/libmbedtls.so.2.0.0 +lib/hiawatha/libmbedtls.so.2.1.2 lib/hiawatha/libmbedx509.so lib/hiawatha/libmbedx509.so.0 -lib/hiawatha/libmbedx509.so.2.0.0 +lib/hiawatha/libmbedx509.so.2.1.2 man/man1/cgi-wrapper.1.gz man/man1/hiawatha.1.gz man/man1/ssi-cgi.1.gz From owner-svn-ports-branches@freebsd.org Wed Dec 2 18:41:06 2015 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 90AC4A3FDB3; Wed, 2 Dec 2015 18:41:06 +0000 (UTC) (envelope-from robak@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 5AA521A9B; Wed, 2 Dec 2015 18:41:06 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB2If51t078180; Wed, 2 Dec 2015 18:41:05 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB2If5MZ078179; Wed, 2 Dec 2015 18:41:05 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201512021841.tB2If5MZ078179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 2 Dec 2015 18:41:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402842 - branches/2015Q4/devel/pecl-ev X-SVN-Group: ports-branches 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.20 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, 02 Dec 2015 18:41:06 -0000 Author: robak Date: Wed Dec 2 18:41:05 2015 New Revision: 402842 URL: https://svnweb.freebsd.org/changeset/ports/402842 Log: MFH: r402609 devel/pecl-ev: fix build errors PR: 204895 Submitted by: John Chen (maintainer) Approved by: ports-secteam Modified: branches/2015Q4/devel/pecl-ev/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/devel/pecl-ev/Makefile ============================================================================== --- branches/2015Q4/devel/pecl-ev/Makefile Wed Dec 2 18:14:49 2015 (r402841) +++ branches/2015Q4/devel/pecl-ev/Makefile Wed Dec 2 18:41:05 2015 (r402842) @@ -3,6 +3,7 @@ PORTNAME= ev PORTVERSION= 0.2.13 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- From owner-svn-ports-branches@freebsd.org Wed Dec 2 18:43:26 2015 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 B1E35A3FEE5; Wed, 2 Dec 2015 18:43:26 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: from mail-ig0-x22b.google.com (mail-ig0-x22b.google.com [IPv6:2607:f8b0:4001:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 807881DB2; Wed, 2 Dec 2015 18:43:26 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by igvg19 with SMTP id g19so124440107igv.1; Wed, 02 Dec 2015 10:43:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=6Jpn7agI+4elNndeHBGAMw4oN6jBWckSn/LBnhxFZAo=; b=wowUAkU+vHk/0lPIYRCOWuf/FR0IFKwpR9XhFKxrT9JHmg8PvH16tFESfKhWpcLp2g tAfNjRTOaXAVFa2weHJ+pxWCWECE+j/OBo6dA9k8d5Vq5z9vUQD3x1lukUQwlNAgX1pL c+P+qddI2bfdMkTQ7eO7bl3z1XSxf1rzMAcCkCS4hVBFxmfHukNgo78TJTmrncRGaov9 0YuV3W6BmV6UNS4AO7d0nr33Vq0uHAauJPZ92RwhE4ZlVHyVG59hZcSJC6TeINqhzgLZ 0IY2JHLtModNdQrqyCW23vQlXKjdCLBZX9ab0tmlaQ7kYesbgoFwf2g4rFz1reINKDlp UxCw== MIME-Version: 1.0 X-Received: by 10.50.79.201 with SMTP id l9mr36302254igx.53.1449081805964; Wed, 02 Dec 2015 10:43:25 -0800 (PST) Received: by 10.36.43.23 with HTTP; Wed, 2 Dec 2015 10:43:25 -0800 (PST) In-Reply-To: <201512021841.tB2If5MZ078179@repo.freebsd.org> References: <201512021841.tB2If5MZ078179@repo.freebsd.org> Date: Wed, 2 Dec 2015 13:43:25 -0500 Message-ID: Subject: Re: svn commit: r402842 - branches/2015Q4/devel/pecl-ev From: Jason Unovitch To: Bartek Rutkowski Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 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, 02 Dec 2015 18:43:26 -0000 On Wed, Dec 2, 2015 at 1:41 PM, Bartek Rutkowski wrote: > Author: robak > Date: Wed Dec 2 18:41:05 2015 > New Revision: 402842 > URL: https://svnweb.freebsd.org/changeset/ports/402842 > > Log: > MFH: r402609 > > devel/pecl-ev: fix build errors > > PR: 204895 > Submitted by: John Chen (maintainer) > Approved by: ports-secteam > > Modified: > branches/2015Q4/devel/pecl-ev/Makefile > Directory Properties: > branches/2015Q4/ (props changed) > Bartek, This didn't seem to add the patch from the original commit properly. From owner-svn-ports-branches@freebsd.org Wed Dec 2 20:22:02 2015 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 32BBCA3F45D; Wed, 2 Dec 2015 20:22:02 +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 EFF3E10A4; Wed, 2 Dec 2015 20:22:01 +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 tB2KM1OG008625; Wed, 2 Dec 2015 20:22:01 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB2KM167008624; Wed, 2 Dec 2015 20:22:01 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201512022022.tB2KM167008624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 2 Dec 2015 20:22:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402852 - branches/2015Q4/devel/pecl-ev X-SVN-Group: ports-branches 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.20 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, 02 Dec 2015 20:22:02 -0000 Author: feld Date: Wed Dec 2 20:22:00 2015 New Revision: 402852 URL: https://svnweb.freebsd.org/changeset/ports/402852 Log: This is a no-op that bumps PORTREVISION so quarterly is in sync and future MFH works cleanly. MFH: r402851 devel/pecl-ev: fix patch, port was out of sync with quarterly Somehow head/devel/pecl-ev and the quarterly version became out of sync. The quarterly one already had a patch for libev/ev.c that covered the intended change and more. I can't reproduce a build issue with 10.1 or 9.3, so I'm attempting to re-sync the ports at PORTREVISION=2 and then we can approach any leftover issues that arise. We should then be able to do a clean MFH as well. PR: 204895 Approved by: ports-secteam (with hat) Modified: branches/2015Q4/devel/pecl-ev/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/devel/pecl-ev/Makefile ============================================================================== --- branches/2015Q4/devel/pecl-ev/Makefile Wed Dec 2 20:18:52 2015 (r402851) +++ branches/2015Q4/devel/pecl-ev/Makefile Wed Dec 2 20:22:00 2015 (r402852) @@ -3,7 +3,7 @@ PORTNAME= ev PORTVERSION= 0.2.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- From owner-svn-ports-branches@freebsd.org Thu Dec 3 16:39:54 2015 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 62B9EA40FA5; Thu, 3 Dec 2015 16:39:54 +0000 (UTC) (envelope-from garga@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 18B7515FB; Thu, 3 Dec 2015 16:39:54 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB3GdrWx060400; Thu, 3 Dec 2015 16:39:53 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3GdriE060398; Thu, 3 Dec 2015 16:39:53 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201512031639.tB3GdriE060398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Thu, 3 Dec 2015 16:39:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402884 - branches/2015Q4/security/strongswan X-SVN-Group: ports-branches 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.20 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, 03 Dec 2015 16:39:54 -0000 Author: garga Date: Thu Dec 3 16:39:52 2015 New Revision: 402884 URL: https://svnweb.freebsd.org/changeset/ports/402884 Log: MFH: r402880 r402881 Add @sample to gcm.conf missed when I introduced it. No bump on PORTREVISION since GCM is disabled by default Submitted by: Jose Luis Duran Obtained from: https://github.com/pfsense/FreeBSD-ports/pull/2 Bump PORTREVISION to help users with custom OPTIONS to get the fix committed in r402880, as suggested by AMDmi3 Approved by: ports-secteam (feld) Modified: branches/2015Q4/security/strongswan/Makefile branches/2015Q4/security/strongswan/pkg-plist Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/security/strongswan/Makefile ============================================================================== --- branches/2015Q4/security/strongswan/Makefile Thu Dec 3 16:39:24 2015 (r402883) +++ branches/2015Q4/security/strongswan/Makefile Thu Dec 3 16:39:52 2015 (r402884) @@ -3,6 +3,7 @@ PORTNAME= strongswan PORTVERSION= 5.3.4 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://download.strongswan.org/ \ http://download2.strongswan.org/ Modified: branches/2015Q4/security/strongswan/pkg-plist ============================================================================== --- branches/2015Q4/security/strongswan/pkg-plist Thu Dec 3 16:39:24 2015 (r402883) +++ branches/2015Q4/security/strongswan/pkg-plist Thu Dec 3 16:39:52 2015 (r402884) @@ -253,7 +253,7 @@ man/man8/charon-cmd.8.gz %%GCM%%lib/ipsec/plugins/libstrongswan-gcm.a %%GCM%%lib/ipsec/plugins/libstrongswan-gcm.la %%GCM%%lib/ipsec/plugins/libstrongswan-gcm.so -%%GCM%%%%ETCDIR%%.d/charon/gcm.conf.sample +%%GCM%%@sample %%ETCDIR%%.d/charon/gcm.conf.sample %%IKEv1%%lib/ipsec/plugins/libstrongswan-xauth-generic.a %%IKEv1%%lib/ipsec/plugins/libstrongswan-xauth-generic.la %%IKEv1%%lib/ipsec/plugins/libstrongswan-xauth-generic.so From owner-svn-ports-branches@freebsd.org Thu Dec 3 16:44:23 2015 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 41347A3F277; Thu, 3 Dec 2015 16:44:23 +0000 (UTC) (envelope-from amdmi3@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 E909B1CAF; Thu, 3 Dec 2015 16:44:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB3GiMoS063444; Thu, 3 Dec 2015 16:44:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3GiL9n063441; Thu, 3 Dec 2015 16:44:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201512031644.tB3GiL9n063441@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 3 Dec 2015 16:44:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402886 - branches/2015Q4/mail/phpmailer X-SVN-Group: ports-branches 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.20 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, 03 Dec 2015 16:44:23 -0000 Author: amdmi3 Date: Thu Dec 3 16:44:21 2015 New Revision: 402886 URL: https://svnweb.freebsd.org/changeset/ports/402886 Log: MFH: r402885 - Update to 5.2.14 - Pass maintainership to submitter PR: 204500 Submitted by: ports@toco-domains.de Security: 8a90dc87-89f9-11e5-a408-00248c0c745d Approved by: ports-secteam (feld) Modified: branches/2015Q4/mail/phpmailer/Makefile branches/2015Q4/mail/phpmailer/distinfo branches/2015Q4/mail/phpmailer/pkg-descr Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/mail/phpmailer/Makefile ============================================================================== --- branches/2015Q4/mail/phpmailer/Makefile Thu Dec 3 16:40:06 2015 (r402885) +++ branches/2015Q4/mail/phpmailer/Makefile Thu Dec 3 16:44:21 2015 (r402886) @@ -2,18 +2,18 @@ # $FreeBSD$ PORTNAME= phpmailer -PORTVERSION= 5.2.13 +PORTVERSION= 5.2.14 DISTVERSIONPREFIX= v CATEGORIES= mail -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@toco-domains.de COMMENT= Full Featured Email Transfer Class for PHP LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes -GH_ACCOUNT= Synchro +GH_ACCOUNT= PHPMailer GH_PROJECT= PHPMailer NO_BUILD= yes Modified: branches/2015Q4/mail/phpmailer/distinfo ============================================================================== --- branches/2015Q4/mail/phpmailer/distinfo Thu Dec 3 16:40:06 2015 (r402885) +++ branches/2015Q4/mail/phpmailer/distinfo Thu Dec 3 16:44:21 2015 (r402886) @@ -1,2 +1,2 @@ -SHA256 (Synchro-PHPMailer-v5.2.13_GH0.tar.gz) = 6259ddd93e84a92fc70f5fe66b977cedbb71ccfda69b9350f50524a919b843c2 -SIZE (Synchro-PHPMailer-v5.2.13_GH0.tar.gz) = 189248 +SHA256 (PHPMailer-PHPMailer-v5.2.14_GH0.tar.gz) = 54acc99a6cdd807c5646e712e4499308d885bc76a3dc27679388fe0359bd3a93 +SIZE (PHPMailer-PHPMailer-v5.2.14_GH0.tar.gz) = 192100 Modified: branches/2015Q4/mail/phpmailer/pkg-descr ============================================================================== --- branches/2015Q4/mail/phpmailer/pkg-descr Thu Dec 3 16:40:06 2015 (r402885) +++ branches/2015Q4/mail/phpmailer/pkg-descr Thu Dec 3 16:44:21 2015 (r402886) @@ -3,4 +3,4 @@ servers, CCs, BCCs, HTML messages, and w send email via sendmail, PHP mail(), or with SMTP. Methods are based on the popular AspEmail active server component. -WWW: http://sourceforge.net/projects/phpmailer +WWW: https://github.com/PHPMailer/PHPMailer From owner-svn-ports-branches@freebsd.org Thu Dec 3 17:50:17 2015 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 0B589A4047F; Thu, 3 Dec 2015 17:50:17 +0000 (UTC) (envelope-from brooks@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 C45991DA3; Thu, 3 Dec 2015 17:50:16 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB3HoFMg082266; Thu, 3 Dec 2015 17:50:15 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3HoFVc082265; Thu, 3 Dec 2015 17:50:15 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201512031750.tB3HoFVc082265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Thu, 3 Dec 2015 17:50:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402896 - branches/2015Q4/lang/clang37 X-SVN-Group: ports-branches 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.20 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, 03 Dec 2015 17:50:17 -0000 Author: brooks Date: Thu Dec 3 17:50:15 2015 New Revision: 402896 URL: https://svnweb.freebsd.org/changeset/ports/402896 Log: MFH: r402868 Depend on ${PREFIX}/bin/clang37 to avoid confusion with the clang37 installed by devel/ccache. PR: 204937 Approved by: portmgr (feld) Modified: branches/2015Q4/lang/clang37/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/lang/clang37/Makefile ============================================================================== --- branches/2015Q4/lang/clang37/Makefile Thu Dec 3 17:46:36 2015 (r402895) +++ branches/2015Q4/lang/clang37/Makefile Thu Dec 3 17:50:15 2015 (r402896) @@ -3,14 +3,14 @@ PORTNAME= clang PORTVERSION= 3.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang devel PKGNAMESUFFIX= ${LLVM_SUFFIX} MAINTAINER= brooks@FreeBSD.org COMMENT= C, Objective-C, and C++ compiler (use devel/llvm${LLVM_SUFFIX}) -RUN_DEPENDS+= clang${LLVM_SUFFIX}:${PORTSDIR}/devel/llvm${LLVM_SUFFIX} +RUN_DEPENDS+= ${PREFIX}/bin/clang${LLVM_SUFFIX}:${PORTSDIR}/devel/llvm${LLVM_SUFFIX} LLVM_SUFFIX= 37 From owner-svn-ports-branches@freebsd.org Thu Dec 3 20:12:43 2015 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 2443CA40ADD; Thu, 3 Dec 2015 20:12:43 +0000 (UTC) (envelope-from antoine@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 C91FF1C83; Thu, 3 Dec 2015 20:12:42 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB3KCfgT026062; Thu, 3 Dec 2015 20:12:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB3KCfSG026059; Thu, 3 Dec 2015 20:12:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201512032012.tB3KCfSG026059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 3 Dec 2015 20:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402899 - branches/2015Q4/graphics/png X-SVN-Group: ports-branches 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.20 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, 03 Dec 2015 20:12:43 -0000 Author: antoine Date: Thu Dec 3 20:12:41 2015 New Revision: 402899 URL: https://svnweb.freebsd.org/changeset/ports/402899 Log: MFH: r402897 Update to 1.6.20 Security: CVE-2015-8126 Modified: branches/2015Q4/graphics/png/Makefile branches/2015Q4/graphics/png/distinfo branches/2015Q4/graphics/png/pkg-plist Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/graphics/png/Makefile ============================================================================== --- branches/2015Q4/graphics/png/Makefile Thu Dec 3 20:01:03 2015 (r402898) +++ branches/2015Q4/graphics/png/Makefile Thu Dec 3 20:12:41 2015 (r402899) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= png -PORTVERSION= 1.6.19 +PORTVERSION= 1.6.20 CATEGORIES= graphics MASTER_SITES= SF/lib${PORTNAME}/lib${PORTNAME}16/${PORTVERSION} \ ftp://ftp.simplesystems.org/pub/lib${PORTNAME}/${PORTNAME}/src/lib${PORTNAME}16/ Modified: branches/2015Q4/graphics/png/distinfo ============================================================================== --- branches/2015Q4/graphics/png/distinfo Thu Dec 3 20:01:03 2015 (r402898) +++ branches/2015Q4/graphics/png/distinfo Thu Dec 3 20:12:41 2015 (r402899) @@ -1,4 +1,4 @@ -SHA256 (libpng-1.6.19.tar.xz) = 311c5657f53516986c67713c946f616483e3cdb52b8b2ee26711be74e8ac35e8 -SIZE (libpng-1.6.19.tar.xz) = 941280 -SHA256 (libpng-1.6.19-apng.patch.gz) = 5ec713a51c35c25d5e53dd61270a6fd5313b26872b382f0fbaed41a0743768a2 -SIZE (libpng-1.6.19-apng.patch.gz) = 10330 +SHA256 (libpng-1.6.20.tar.xz) = 55c5959e9f3484d96141a3226c53bc9da42a4845e70879d3e1d6e94833d1918b +SIZE (libpng-1.6.20.tar.xz) = 942672 +SHA256 (libpng-1.6.20-apng.patch.gz) = ed7bc9d03bc7390c477623e1abff42977395c75ed3e69e8308ea25bc3871774d +SIZE (libpng-1.6.20-apng.patch.gz) = 10304 Modified: branches/2015Q4/graphics/png/pkg-plist ============================================================================== --- branches/2015Q4/graphics/png/pkg-plist Thu Dec 3 20:01:03 2015 (r402898) +++ branches/2015Q4/graphics/png/pkg-plist Thu Dec 3 20:12:41 2015 (r402899) @@ -13,7 +13,7 @@ lib/libpng.so lib/libpng16.a lib/libpng16.so lib/libpng16.so.16 -lib/libpng16.so.16.19.0 +lib/libpng16.so.16.20.0 libdata/pkgconfig/libpng.pc libdata/pkgconfig/libpng16.pc man/man3/libpng.3.gz From owner-svn-ports-branches@freebsd.org Fri Dec 4 06:24:12 2015 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 C0BD8A40E01; Fri, 4 Dec 2015 06:24:12 +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 mx1.freebsd.org (Postfix) with ESMTPS id 909C91EF6; Fri, 4 Dec 2015 06:24:12 +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 tB46OBXr001896; Fri, 4 Dec 2015 06:24:11 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB46OBB0001895; Fri, 4 Dec 2015 06:24:11 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201512040624.tB46OBB0001895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 4 Dec 2015 06:24:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402910 - branches/2015Q4/audio/cmus X-SVN-Group: ports-branches 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.20 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, 04 Dec 2015 06:24:12 -0000 Author: koobs Date: Fri Dec 4 06:24:11 2015 New Revision: 402910 URL: https://svnweb.freebsd.org/changeset/ports/402910 Log: MFH: r402908 audio/cmus: Enable AAC FFMPEG MP4 by default Enable the AAC, FFMPEG and MP4 codecs by default, so that the binary packages are more valuable out of the box. Prior to this change, it was limited to playing mp3, Vorbis and FLAC format files. While I'm here: - Add LICENSE_FILE PR: 203533 Submitted by: Tobias Kortkamp Approved by: maintainer (timeout, 1 month, 15 days) Approved by: ports-secteam (blanket) Modified: branches/2015Q4/audio/cmus/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/audio/cmus/Makefile ============================================================================== --- branches/2015Q4/audio/cmus/Makefile Fri Dec 4 06:22:32 2015 (r402909) +++ branches/2015Q4/audio/cmus/Makefile Fri Dec 4 06:24:11 2015 (r402910) @@ -4,13 +4,14 @@ PORTNAME= cmus PORTVERSION= 2.6.0 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MAINTAINER= h.skuhra@gmail.com COMMENT= Console-based music player with really cool features LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes @@ -24,7 +25,8 @@ CONFIGURE_ARGS+=prefix=${PREFIX} mandir= OPTIONS_DEFINE= AAC AO CDDB CDIO CUE DISCID FFMPEG FLAC JACK MAD MIKMOD \ MODPLUG MP4 MUSEPACK OPUS PULSEAUDIO SAMPLERATE TREMOR \ VORBIS WAVPACK -OPTIONS_DEFAULT=FLAC MAD VORBIS +OPTIONS_DEFAULT=AAC FFMPEG FLAC MAD MP4 VORBIS + DISCID_DESC= DISCID support .include From owner-svn-ports-branches@freebsd.org Fri Dec 4 11:01:36 2015 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 4E39AA40B82; Fri, 4 Dec 2015 11:01:36 +0000 (UTC) (envelope-from ume@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 23BD81277; Fri, 4 Dec 2015 11:01:36 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB4B1Zmo081475; Fri, 4 Dec 2015 11:01:35 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB4B1ZG3081472; Fri, 4 Dec 2015 11:01:35 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201512041101.tB4B1ZG3081472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Fri, 4 Dec 2015 11:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r402916 - branches/2015Q4/mail/cyrus-imapd25/files X-SVN-Group: ports-branches 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.20 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, 04 Dec 2015 11:01:36 -0000 Author: ume Date: Fri Dec 4 11:01:34 2015 New Revision: 402916 URL: https://svnweb.freebsd.org/changeset/ports/402916 Log: MFH: r402820 Fix build on 9.X. Reported by: Andrea Venturoli Approved by: portmgr (feld@) Added: branches/2015Q4/mail/cyrus-imapd25/files/patch-imap__tls.c - copied unchanged from r402820, head/mail/cyrus-imapd25/files/patch-imap__tls.c branches/2015Q4/mail/cyrus-imapd25/files/patch-imtest__imtest.c - copied unchanged from r402820, head/mail/cyrus-imapd25/files/patch-imtest__imtest.c branches/2015Q4/mail/cyrus-imapd25/files/patch-lib__imclient.c - copied unchanged from r402820, head/mail/cyrus-imapd25/files/patch-lib__imclient.c Modified: Directory Properties: branches/2015Q4/ (props changed) Copied: branches/2015Q4/mail/cyrus-imapd25/files/patch-imap__tls.c (from r402820, head/mail/cyrus-imapd25/files/patch-imap__tls.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/mail/cyrus-imapd25/files/patch-imap__tls.c Fri Dec 4 11:01:34 2015 (r402916, copy of r402820, head/mail/cyrus-imapd25/files/patch-imap__tls.c) @@ -0,0 +1,22 @@ +--- imap/tls.c.orig 2015-11-30 06:30:33 UTC ++++ imap/tls.c +@@ -683,7 +683,9 @@ EXPORTED int tls_init_serverengine(c + off |= SSL_OP_ALL; /* Work around all known bugs */ + off |= SSL_OP_NO_SSLv2; /* Disable insecure SSLv2 */ + off |= SSL_OP_NO_SSLv3; /* Disable insecure SSLv3 */ ++#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + off |= SSL_OP_NO_COMPRESSION; /* Disable TLS compression */ ++#endif // (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + + const char *tls_versions = config_getstring(IMAPOPT_TLS_VERSIONS); + +@@ -1399,7 +1401,9 @@ HIDDEN int tls_init_clientengine(int ver + off |= SSL_OP_ALL; /* Work around all known bugs */ + off |= SSL_OP_NO_SSLv2; /* Disable insecure SSLv2 */ + off |= SSL_OP_NO_SSLv3; /* Disable insecure SSLv3 */ ++#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + off |= SSL_OP_NO_COMPRESSION; /* Disable TLS compression */ ++#endif // (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + + SSL_CTX_set_options(c_ctx, off); + SSL_CTX_set_info_callback(c_ctx, apps_ssl_info_callback); Copied: branches/2015Q4/mail/cyrus-imapd25/files/patch-imtest__imtest.c (from r402820, head/mail/cyrus-imapd25/files/patch-imtest__imtest.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/mail/cyrus-imapd25/files/patch-imtest__imtest.c Fri Dec 4 11:01:34 2015 (r402916, copy of r402820, head/mail/cyrus-imapd25/files/patch-imtest__imtest.c) @@ -0,0 +1,12 @@ +--- imtest/imtest.c.orig 2015-11-30 06:30:33 UTC ++++ imtest/imtest.c +@@ -503,7 +503,9 @@ static int tls_init_clientengine(int ver + off |= SSL_OP_ALL; /* Work around all known bugs */ + off |= SSL_OP_NO_SSLv2; /* Disable insecure SSLv2 */ + off |= SSL_OP_NO_SSLv3; /* Disable insecure SSLv3 */ ++#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + off |= SSL_OP_NO_COMPRESSION; /* Disable TLS compression */ ++#endif // (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + SSL_CTX_set_options(tls_ctx, off); + SSL_CTX_set_info_callback(tls_ctx, apps_ssl_info_callback); + Copied: branches/2015Q4/mail/cyrus-imapd25/files/patch-lib__imclient.c (from r402820, head/mail/cyrus-imapd25/files/patch-lib__imclient.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/mail/cyrus-imapd25/files/patch-lib__imclient.c Fri Dec 4 11:01:34 2015 (r402916, copy of r402820, head/mail/cyrus-imapd25/files/patch-lib__imclient.c) @@ -0,0 +1,12 @@ +--- lib/imclient.c.orig 2015-11-30 06:30:33 UTC ++++ lib/imclient.c +@@ -1641,7 +1641,9 @@ static int tls_init_clientengine(struct + off |= SSL_OP_ALL; /* Work around all known bugs */ + off |= SSL_OP_NO_SSLv2; /* Disable insecure SSLv2 */ + off |= SSL_OP_NO_SSLv3; /* Disable insecure SSLv3 */ ++#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + off |= SSL_OP_NO_COMPRESSION; /* Disable TLS compression */ ++#endif // (OPENSSL_VERSION_NUMBER >= 0x1000000fL) + SSL_CTX_set_options(imclient->tls_ctx, off); + + /* debugging SSL_CTX_set_info_callback(imclient->tls_ctx, apps_ssl_info_callback); */ From owner-svn-ports-branches@freebsd.org Fri Dec 4 22:02:19 2015 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 A69EBA41CA5; Fri, 4 Dec 2015 22:02:19 +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 74A8B1D30; Fri, 4 Dec 2015 22:02:19 +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 tB4M2IeD086937; Fri, 4 Dec 2015 22:02:18 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB4M2IbD086936; Fri, 4 Dec 2015 22:02:18 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201512042202.tB4M2IbD086936@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 4 Dec 2015 22:02:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r403012 - branches/2015Q4/devel/gdb X-SVN-Group: ports-branches 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.20 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, 04 Dec 2015 22:02:19 -0000 Author: jkim Date: Fri Dec 4 22:02:18 2015 New Revision: 403012 URL: https://svnweb.freebsd.org/changeset/ports/403012 Log: MFH: r403011 Partially revert r401242 to fix build with PYTHON option turned on. Approved by: ports-secteam (bapt) Modified: branches/2015Q4/devel/gdb/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/devel/gdb/Makefile ============================================================================== --- branches/2015Q4/devel/gdb/Makefile Fri Dec 4 21:52:09 2015 (r403011) +++ branches/2015Q4/devel/gdb/Makefile Fri Dec 4 22:02:18 2015 (r403012) @@ -57,7 +57,8 @@ GUILE_CONFIGURE_WITH= guile GUILE_USES= pkgconfig GUILE_LIB_DEPENDS= libguile-2.0.so:${PORTSDIR}/lang/guile2 PORT_READLINE_USES= readline:port -PYTHON_CONFIGURE_WITH= python=${PYTHON_CMD} +PYTHON_CONFIGURE_ON= --with-python=${PYTHON_CMD} +PYTHON_CONFIGURE_OFF= --without-python PYTHON_USES= python:2 TUI_CONFIGURE_ENABLE= tui From owner-svn-ports-branches@freebsd.org Sat Dec 5 09:41:55 2015 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 541A9A40AAB; Sat, 5 Dec 2015 09:41:55 +0000 (UTC) (envelope-from delphij@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 143221444; Sat, 5 Dec 2015 09:41:55 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB59fsv0004443; Sat, 5 Dec 2015 09:41:54 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB59frBE004440; Sat, 5 Dec 2015 09:41:53 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201512050941.tB59frBE004440@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sat, 5 Dec 2015 09:41:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r403045 - branches/2015Q4/security/openssl X-SVN-Group: ports-branches 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.20 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, 05 Dec 2015 09:41:55 -0000 Author: delphij Date: Sat Dec 5 09:41:53 2015 New Revision: 403045 URL: https://svnweb.freebsd.org/changeset/ports/403045 Log: MFH: r403044 Update to 1.0.2e. Security: CVE-2015-3193 Security: CVE-2015-3194 Security: CVE-2015-3195 Security: CVE-2015-3196 Security: CVE-2015-1794 Approved by: ports-secteam Modified: branches/2015Q4/security/openssl/Makefile branches/2015Q4/security/openssl/distinfo branches/2015Q4/security/openssl/pkg-plist Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/security/openssl/Makefile ============================================================================== --- branches/2015Q4/security/openssl/Makefile Sat Dec 5 09:41:11 2015 (r403044) +++ branches/2015Q4/security/openssl/Makefile Sat Dec 5 09:41:53 2015 (r403045) @@ -3,8 +3,8 @@ PORTNAME= openssl PORTVERSION= 1.0.2 -DISTVERSIONSUFFIX= d -PORTREVISION= 4 +DISTVERSIONSUFFIX= e +PORTREVISION= 5 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/source/ \ ftp://ftp.openssl.org/source/ \ Modified: branches/2015Q4/security/openssl/distinfo ============================================================================== --- branches/2015Q4/security/openssl/distinfo Sat Dec 5 09:41:11 2015 (r403044) +++ branches/2015Q4/security/openssl/distinfo Sat Dec 5 09:41:53 2015 (r403045) @@ -1,10 +1,10 @@ -SHA256 (openssl-1.0.2d/openssl-1.0.2d.tar.gz) = 671c36487785628a703374c652ad2cebea45fa920ae5681515df25d9f2c9a8c8 -SIZE (openssl-1.0.2d/openssl-1.0.2d.tar.gz) = 5295447 -SHA256 (openssl-1.0.2d/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 2eddcb7ab342285cb637ce6b6be143cca835f449f35dd9bb8c7b9167ba2117a7 -SIZE (openssl-1.0.2d/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 3717 -SHA256 (openssl-1.0.2d/1002-backport-changes-from-upstream-padlock-module.patch) = aee88a24622ce9d71e38deeb874e58435dcf8ff5690f56194f0e4a00fb09b260 -SIZE (openssl-1.0.2d/1002-backport-changes-from-upstream-padlock-module.patch) = 5770 -SHA256 (openssl-1.0.2d/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = c10b8aaf56a4f4f79ca195fc587e0bb533f643e777d7a3e6fb0350399a6060ea -SIZE (openssl-1.0.2d/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = 20935 -SHA256 (openssl-1.0.2d/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 2f7c850af078a3ae71b2dd38d5d0b3964ea4262e52673e36ff33498cc6223e6c -SIZE (openssl-1.0.2d/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 809 +SHA256 (openssl-1.0.2e/openssl-1.0.2e.tar.gz) = e23ccafdb75cfcde782da0151731aa2185195ac745eea3846133f2e05c0e0bff +SIZE (openssl-1.0.2e/openssl-1.0.2e.tar.gz) = 5256555 +SHA256 (openssl-1.0.2e/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 2eddcb7ab342285cb637ce6b6be143cca835f449f35dd9bb8c7b9167ba2117a7 +SIZE (openssl-1.0.2e/1001-crypto-hmac-support-EVP_MD_CTX_FLAG_ONESHOT-and-set-.patch) = 3717 +SHA256 (openssl-1.0.2e/1002-backport-changes-from-upstream-padlock-module.patch) = aee88a24622ce9d71e38deeb874e58435dcf8ff5690f56194f0e4a00fb09b260 +SIZE (openssl-1.0.2e/1002-backport-changes-from-upstream-padlock-module.patch) = 5770 +SHA256 (openssl-1.0.2e/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = c10b8aaf56a4f4f79ca195fc587e0bb533f643e777d7a3e6fb0350399a6060ea +SIZE (openssl-1.0.2e/1003-engines-e_padlock-implement-sha1-sha224-sha256-accel.patch) = 20935 +SHA256 (openssl-1.0.2e/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 2f7c850af078a3ae71b2dd38d5d0b3964ea4262e52673e36ff33498cc6223e6c +SIZE (openssl-1.0.2e/1004-crypto-engine-autoload-padlock-dynamic-engine.patch) = 809 Modified: branches/2015Q4/security/openssl/pkg-plist ============================================================================== --- branches/2015Q4/security/openssl/pkg-plist Sat Dec 5 09:41:11 2015 (r403044) +++ branches/2015Q4/security/openssl/pkg-plist Sat Dec 5 09:41:53 2015 (r403045) @@ -419,7 +419,12 @@ man/man3/BN_zero.3.gz man/man3/BUF_MEM_free.3.gz man/man3/BUF_MEM_grow.3.gz man/man3/BUF_MEM_new.3.gz +man/man3/BUF_MEM_new_ex.3.gz +man/man3/BUF_memdup.3.gz man/man3/BUF_strdup.3.gz +man/man3/BUF_strlcat.3.gz +man/man3/BUF_strlcpy.3.gz +man/man3/BUF_strndup.3.gz man/man3/CMS_ReceiptRequest_create0.3.gz man/man3/CMS_ReceiptRequest_get0_values.3.gz man/man3/CMS_RecipientInfo_decrypt.3.gz @@ -841,6 +846,7 @@ man/man3/EVP_SealInit.3.gz man/man3/EVP_SealUpdate.3.gz man/man3/EVP_SignFinal.3.gz man/man3/EVP_SignInit.3.gz +man/man3/EVP_SignInit_ex.3.gz man/man3/EVP_SignUpdate.3.gz man/man3/EVP_VerifyFinal.3.gz man/man3/EVP_VerifyInit.3.gz @@ -1149,6 +1155,7 @@ man/man3/SSL_CTX_build_cert_chain.3.gz man/man3/SSL_CTX_callback_ctrl.3.gz man/man3/SSL_CTX_check_private_key.3.gz man/man3/SSL_CTX_clear_chain_certs.3.gz +man/man3/SSL_CTX_clear_extra_chain_certs.3.gz man/man3/SSL_CTX_clear_options.3.gz man/man3/SSL_CTX_ctrl.3.gz man/man3/SSL_CTX_flush_sessions.3.gz @@ -1274,6 +1281,7 @@ man/man3/SSL_alert_type_string.3.gz man/man3/SSL_alert_type_string_long.3.gz man/man3/SSL_build_cert_chain.3.gz man/man3/SSL_callback_ctrl.3.gz +man/man3/SSL_check_chain.3.gz man/man3/SSL_check_private_key.3.gz man/man3/SSL_clear.3.gz man/man3/SSL_clear_chain_certs.3.gz From owner-svn-ports-branches@freebsd.org Sat Dec 5 13:50:35 2015 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 CF50DA4152F; Sat, 5 Dec 2015 13:50:35 +0000 (UTC) (envelope-from rakuco@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 95D731F0C; Sat, 5 Dec 2015 13:50:35 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB5DoYub078159; Sat, 5 Dec 2015 13:50:34 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB5DoYfh078158; Sat, 5 Dec 2015 13:50:34 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201512051350.tB5DoYfh078158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 5 Dec 2015 13:50:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r403066 - in branches/2015Q4/x11-toolkits: qt4-gui qt5-gui X-SVN-Group: ports-branches 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.20 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, 05 Dec 2015 13:50:35 -0000 Author: rakuco Date: Sat Dec 5 13:50:34 2015 New Revision: 403066 URL: https://svnweb.freebsd.org/changeset/ports/403066 Log: MFH: r402882 r402883 Remove x11-toolkit/qt4-gui's pkg-message. Back in mid-2012 (ports revisions r297367 and r299321), pkg-message was added to the port suggesting changes to the default shared memory limits in loader.conf(5). Since then, the default limits have been changed and the values suggested by the port are no longer sensible (base r209037, present in all supported FreeBSD releases). According to theraven@: Suggesting lowering the maximum number of pages available for shared pages doesn't seem sensible. The other default limits look as if they ought to be high enough (kern.ipc.shmseg is the number of shm segments that each process can have open, so should be fine. kern.ipc.shmmni is the total number of shm objects, so might need lowering). Follow his advice and drop the suggestions from pkg-message. PR: 202927 Submitted by: theraven@ Drop x11-toolkits/qt5-gui's pkg-message too. It contains the same suggestions that were dropped from its Qt4 counterpart in r402882. Mention both ports in UPDATING. PR: 202927 Submitted by: theraven@ Approved by: ports-secteam (feld) Deleted: branches/2015Q4/x11-toolkits/qt4-gui/pkg-message branches/2015Q4/x11-toolkits/qt5-gui/pkg-message Modified: Directory Properties: branches/2015Q4/ (props changed)