From owner-svn-ports-branches@freebsd.org Sun Jan 17 05:31:01 2016 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 7279BA6D299; Sun, 17 Jan 2016 05:31:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2810B11C7; Sun, 17 Jan 2016 05:31:01 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0H5V0nT059035; Sun, 17 Jan 2016 05:31:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0H5UxTN059024; Sun, 17 Jan 2016 05:30:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601170530.u0H5UxTN059024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 17 Jan 2016 05:30:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406284 - in branches/2016Q1/graphics/lensfun: . 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, 17 Jan 2016 05:31:01 -0000 Author: jbeich Date: Sun Jan 17 05:30:59 2016 New Revision: 406284 URL: https://svnweb.freebsd.org/changeset/ports/406284 Log: MFH: r406040 by danfe - Limit -msse/-msse2 to files that actually use intrinsics - Limit SSE/SSE2 optimizations to x86 CPUs (exposed as SIMD option) PR: 205006 Approved by: ports-secteam (feld) Added: branches/2016Q1/graphics/lensfun/files/patch-libs_lensfun_CMakeLists.txt - copied unchanged from r406040, head/graphics/lensfun/files/patch-libs_lensfun_CMakeLists.txt Modified: branches/2016Q1/graphics/lensfun/Makefile branches/2016Q1/graphics/lensfun/files/patch-CMakeLists.txt Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/lensfun/Makefile ============================================================================== --- branches/2016Q1/graphics/lensfun/Makefile Sat Jan 16 23:32:40 2016 (r406283) +++ branches/2016Q1/graphics/lensfun/Makefile Sun Jan 17 05:30:59 2016 (r406284) @@ -3,7 +3,7 @@ PORTNAME= lensfun PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} @@ -19,13 +19,10 @@ USE_GNOME= glib20 USE_LDCONFIG= yes CMAKE_ARGS= -DBUILD_AUXFUN:BOOL=ON -DINSTALL_HELPER_SCRIPTS:BOOL=OFF -.if ! ${MACHINE_CPU:Msse} == "sse" -CMAKE_ARGS+= -DBUILD_FOR_SSE:BOOL=OFF -.endif - -.if ! ${MACHINE_CPU:Msse2} == "sse2" -CMAKE_ARGS+= -DBUILD_FOR_SSE2:BOOL=OFF -.endif +OPTIONS_DEFINE= SIMD +OPTIONS_DEFAULT= SIMD + +SIMD_CMAKE_OFF= -DBUILD_FOR_SSE:BOOL=OFF -DBUILD_FOR_SSE2:BOOL=OFF post-patch: @${REINPLACE_CMD} -e '/pkgconfig/s,$${LIBDIR},libdata,' \ Modified: branches/2016Q1/graphics/lensfun/files/patch-CMakeLists.txt ============================================================================== --- branches/2016Q1/graphics/lensfun/files/patch-CMakeLists.txt Sat Jan 16 23:32:40 2016 (r406283) +++ branches/2016Q1/graphics/lensfun/files/patch-CMakeLists.txt Sun Jan 17 05:30:59 2016 (r406284) @@ -1,24 +1,46 @@ --- CMakeLists.txt.orig 2014-09-30 17:37:34 UTC +++ CMakeLists.txt -@@ -46,15 +46,11 @@ ENDIF() +@@ -28,12 +28,18 @@ IF(NOT HAVE_REGEX_H) + INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/libs/regex) + ENDIF() + ++IF(CMAKE_SYSTEM_PROCESSOR MATCHES "[XxIi][0-9]?86|[Aa][Mm][Dd]64") ++ SET(X86_ON ON) ++else() ++ SET(X86_ON OFF) ++ENDIF() ++ + # options controlling the build process + OPTION(BUILD_STATIC "Build static library" OFF) + OPTION(BUILD_TESTS "Build test programs" OFF) + OPTION(BUILD_AUXFUN "Build auxfun library (requires libpng)" OFF) +-OPTION(BUILD_FOR_SSE "Build with support for SSE" ON) +-OPTION(BUILD_FOR_SSE2 "Build with support for SSE2" ON) ++OPTION(BUILD_FOR_SSE "Build with support for SSE" ${X86_ON}) ++OPTION(BUILD_FOR_SSE2 "Build with support for SSE2" ${X86_ON}) + OPTION(BUILD_DOC "Build documentation with doxygen" OFF) + OPTION(INSTALL_HELPER_SCRIPTS "Install various helper scripts" ON) + +@@ -46,14 +52,14 @@ ENDIF() IF(BUILD_FOR_SSE) SET(VECTORIZATION_SSE 1) - IF(CMAKE_COMPILER_IS_GNUCXX) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse") -- ENDIF() -+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse") ++ IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") ++ SET(VECTORIZATION_SSE_FLAGS "-msse") + ENDIF() ENDIF() IF(BUILD_FOR_SSE2) SET(VECTORIZATION_SSE2 1) - IF(CMAKE_COMPILER_IS_GNUCXX) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse2") -- ENDIF() -+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse2") ++ IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") ++ SET(VECTORIZATION_SSE2_FLAGS "-msse2") + ENDIF() ENDIF() - IF(WIN32) -@@ -68,6 +64,7 @@ ENDIF() +@@ -68,6 +74,7 @@ ENDIF() # find dependencies FIND_PACKAGE(GLIB2 REQUIRED) INCLUDE_DIRECTORIES(${GLIB2_INCLUDE_DIRS}) Copied: branches/2016Q1/graphics/lensfun/files/patch-libs_lensfun_CMakeLists.txt (from r406040, head/graphics/lensfun/files/patch-libs_lensfun_CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/graphics/lensfun/files/patch-libs_lensfun_CMakeLists.txt Sun Jan 17 05:30:59 2016 (r406284, copy of r406040, head/graphics/lensfun/files/patch-libs_lensfun_CMakeLists.txt) @@ -0,0 +1,14 @@ +--- libs/lensfun/CMakeLists.txt.orig 2014-09-30 17:37:34 UTC ++++ libs/lensfun/CMakeLists.txt +@@ -9,6 +9,11 @@ IF(WIN32) + LIST(APPEND LENSFUN_SRC windows/auxfun.cpp) + ENDIF() + ++SET_SOURCE_FILES_PROPERTIES(mod-color-sse.cpp mod-coord-sse.cpp ++ PROPERTIES COMPILE_FLAGS "${VECTORIZATION_SSE_FLAGS}") ++SET_SOURCE_FILES_PROPERTIES(mod-color-sse2.cpp ++ PROPERTIES COMPILE_FLAGS "${VECTORIZATION_SSE2_FLAGS}") ++ + IF(BUILD_STATIC) + ADD_LIBRARY(lensfun STATIC ${LENSFUN_SRC}) + ELSE() From owner-svn-ports-branches@freebsd.org Sun Jan 17 10:14:50 2016 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 DEBFAA85E64; Sun, 17 Jan 2016 10:14:50 +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 B000C1257; Sun, 17 Jan 2016 10:14:50 +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 u0HAEnih044362; Sun, 17 Jan 2016 10:14:49 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HAEnew044360; Sun, 17 Jan 2016 10:14:49 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201601171014.u0HAEnew044360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 17 Jan 2016 10:14:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406294 - branches/2016Q1/multimedia/ffmpeg 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, 17 Jan 2016 10:14:51 -0000 Author: riggs Date: Sun Jan 17 10:14:49 2016 New Revision: 406294 URL: https://svnweb.freebsd.org/changeset/ports/406294 Log: MFH: r406290 Upgrade to upstream release 2.8.5; fix zero-day remote vulnerability Both mentioned CVE IDs refer to vulnerabilities where a remote attacker can read arbitrary files by using the subfile protocol in an HTTP Live Streaming (HLS) M3U8 file. The new release fixes those in the process. PR: 206282 Reported by: sasamotikomi@gmail.com Security: CVE-2016-1897 CVE-2016-1898 Approved by: ports-secteam (miwi) Modified: branches/2016Q1/multimedia/ffmpeg/Makefile branches/2016Q1/multimedia/ffmpeg/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/multimedia/ffmpeg/Makefile ============================================================================== --- branches/2016Q1/multimedia/ffmpeg/Makefile Sun Jan 17 10:12:17 2016 (r406293) +++ branches/2016Q1/multimedia/ffmpeg/Makefile Sun Jan 17 10:14:49 2016 (r406294) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ffmpeg -PORTVERSION= 2.8.4 +PORTVERSION= 2.8.5 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ Modified: branches/2016Q1/multimedia/ffmpeg/distinfo ============================================================================== --- branches/2016Q1/multimedia/ffmpeg/distinfo Sun Jan 17 10:12:17 2016 (r406293) +++ branches/2016Q1/multimedia/ffmpeg/distinfo Sun Jan 17 10:14:49 2016 (r406294) @@ -1,2 +1,2 @@ -SHA256 (ffmpeg-2.8.4.tar.bz2) = 83cc8136a7845546062a43cda9ae3cf0a02f43ef5e434d2f997f055231a75f8e -SIZE (ffmpeg-2.8.4.tar.bz2) = 8579383 +SHA256 (ffmpeg-2.8.5.tar.bz2) = 3b6d9951533323ee64a21d0aa7667a780b3470bfe4e0fb7c1b33307ce290615a +SIZE (ffmpeg-2.8.5.tar.bz2) = 8580755 From owner-svn-ports-branches@freebsd.org Sun Jan 17 10:56:55 2016 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 2AD64A6D052; Sun, 17 Jan 2016 10:56:55 +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 05E361AA9; Sun, 17 Jan 2016 10:56: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 u0HAus2T056552; Sun, 17 Jan 2016 10:56:54 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HAur2s056547; Sun, 17 Jan 2016 10:56:53 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201601171056.u0HAur2s056547@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 17 Jan 2016 10:56:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406299 - in branches/2016Q1/multimedia: mencoder mplayer 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, 17 Jan 2016 10:56:55 -0000 Author: riggs Date: Sun Jan 17 10:56:53 2016 New Revision: 406299 URL: https://svnweb.freebsd.org/changeset/ports/406299 Log: MFH: r406295 Build with ffmpeg-2.8.5; fix zero-day remote vulnerability Both mentioned CVE IDs refer to vulnerabilities where a remote attacker can read arbitrary files by using the subfile protocol in an HTTP Live Streaming (HLS) M3U8 file. Building with 2.8.5 fixes those. Security: CVE-2016-1897 CVE-2016-1898 Approved by: ports-secteam (miwi) Modified: branches/2016Q1/multimedia/mencoder/Makefile branches/2016Q1/multimedia/mencoder/distinfo branches/2016Q1/multimedia/mplayer/Makefile branches/2016Q1/multimedia/mplayer/Makefile.common branches/2016Q1/multimedia/mplayer/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/multimedia/mencoder/Makefile ============================================================================== --- branches/2016Q1/multimedia/mencoder/Makefile Sun Jan 17 10:29:27 2016 (r406298) +++ branches/2016Q1/multimedia/mencoder/Makefile Sun Jan 17 10:56:53 2016 (r406299) @@ -3,7 +3,7 @@ PORTNAME= mencoder PORTVERSION= ${MPLAYER_PORT_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia audio MAINTAINER= riggs@FreeBSD.org Modified: branches/2016Q1/multimedia/mencoder/distinfo ============================================================================== --- branches/2016Q1/multimedia/mencoder/distinfo Sun Jan 17 10:29:27 2016 (r406298) +++ branches/2016Q1/multimedia/mencoder/distinfo Sun Jan 17 10:56:53 2016 (r406299) @@ -1,4 +1,4 @@ -SHA256 (ffmpeg-2.8.4.tar.bz2) = 83cc8136a7845546062a43cda9ae3cf0a02f43ef5e434d2f997f055231a75f8e -SIZE (ffmpeg-2.8.4.tar.bz2) = 8579383 +SHA256 (ffmpeg-2.8.5.tar.bz2) = 3b6d9951533323ee64a21d0aa7667a780b3470bfe4e0fb7c1b33307ce290615a +SIZE (ffmpeg-2.8.5.tar.bz2) = 8580755 SHA256 (mplayer-1.2.20151219.tar.xz) = f11d1100a1c37ec9e3e19c7698baf77871ae305ae431ec4a3dc187ca9316e4a2 SIZE (mplayer-1.2.20151219.tar.xz) = 5167716 Modified: branches/2016Q1/multimedia/mplayer/Makefile ============================================================================== --- branches/2016Q1/multimedia/mplayer/Makefile Sun Jan 17 10:29:27 2016 (r406298) +++ branches/2016Q1/multimedia/mplayer/Makefile Sun Jan 17 10:56:53 2016 (r406299) @@ -3,7 +3,7 @@ PORTNAME= mplayer PORTVERSION= ${MPLAYER_PORT_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia audio MAINTAINER= riggs@FreeBSD.org Modified: branches/2016Q1/multimedia/mplayer/Makefile.common ============================================================================== --- branches/2016Q1/multimedia/mplayer/Makefile.common Sun Jan 17 10:29:27 2016 (r406298) +++ branches/2016Q1/multimedia/mplayer/Makefile.common Sun Jan 17 10:56:53 2016 (r406299) @@ -6,7 +6,7 @@ MPLAYER_SNAPSHOT_DATE= 2015-12-19 MPLAYER_PORT_VERSION= 1.2.r${MPLAYER_SNAPSHOT_DATE:S/-//g} -FFMPEG_VERSION= 2.8.4 +FFMPEG_VERSION= 2.8.5 MASTER_SITES= LOCAL/riggs/mplayer:local \ http://ffmpeg.org/releases/:ffmpeg DISTFILES+= ffmpeg-${FFMPEG_VERSION}.tar.bz2:ffmpeg \ Modified: branches/2016Q1/multimedia/mplayer/distinfo ============================================================================== --- branches/2016Q1/multimedia/mplayer/distinfo Sun Jan 17 10:29:27 2016 (r406298) +++ branches/2016Q1/multimedia/mplayer/distinfo Sun Jan 17 10:56:53 2016 (r406299) @@ -1,4 +1,4 @@ -SHA256 (ffmpeg-2.8.4.tar.bz2) = 83cc8136a7845546062a43cda9ae3cf0a02f43ef5e434d2f997f055231a75f8e -SIZE (ffmpeg-2.8.4.tar.bz2) = 8579383 +SHA256 (ffmpeg-2.8.5.tar.bz2) = 3b6d9951533323ee64a21d0aa7667a780b3470bfe4e0fb7c1b33307ce290615a +SIZE (ffmpeg-2.8.5.tar.bz2) = 8580755 SHA256 (mplayer-1.2.20151219.tar.xz) = f11d1100a1c37ec9e3e19c7698baf77871ae305ae431ec4a3dc187ca9316e4a2 SIZE (mplayer-1.2.20151219.tar.xz) = 5167716 From owner-svn-ports-branches@freebsd.org Sun Jan 17 12:04:49 2016 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 B6A05A85339; Sun, 17 Jan 2016 12:04:49 +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 875AB11D1; Sun, 17 Jan 2016 12:04:49 +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 u0HC4mgo077562; Sun, 17 Jan 2016 12:04:48 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HC4mFD077561; Sun, 17 Jan 2016 12:04:48 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601171204.u0HC4mFD077561@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, 17 Jan 2016 12:04:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406305 - in branches/2016Q1/textproc/py-pygments: . 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, 17 Jan 2016 12:04:49 -0000 Author: rakuco Date: Sun Jan 17 12:04:48 2016 New Revision: 406305 URL: https://svnweb.freebsd.org/changeset/ports/406305 Log: MFH: r406304 Add upstream patch to fix CVE-2015-8557. PR: 206072 Approved by: ports-secteam (miwi) Security: 5f276780-b6ce-11e5-9731-5453ed2e2b49 Approved by: portmgr blanket approval Added: branches/2016Q1/textproc/py-pygments/files/ - copied from r406304, head/textproc/py-pygments/files/ Modified: branches/2016Q1/textproc/py-pygments/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/textproc/py-pygments/Makefile ============================================================================== --- branches/2016Q1/textproc/py-pygments/Makefile Sun Jan 17 12:03:37 2016 (r406304) +++ branches/2016Q1/textproc/py-pygments/Makefile Sun Jan 17 12:04:48 2016 (r406305) @@ -3,6 +3,7 @@ PORTNAME= pygments PORTVERSION= 2.0.2 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} From owner-svn-ports-branches@freebsd.org Sun Jan 17 12:56:37 2016 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 591C7A869DF; Sun, 17 Jan 2016 12:56:37 +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 320BF1117; Sun, 17 Jan 2016 12:56:37 +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 u0HCuaeq094392; Sun, 17 Jan 2016 12:56:36 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HCuZdN094386; Sun, 17 Jan 2016 12:56:35 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601171256.u0HCuZdN094386@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, 17 Jan 2016 12:56:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406315 - in branches/2016Q1/net: libproxy libproxy-gnome libproxy-kde libproxy-perl libproxy-webkit libproxy/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, 17 Jan 2016 12:56:37 -0000 Author: rakuco Date: Sun Jan 17 12:56:35 2016 New Revision: 406315 URL: https://svnweb.freebsd.org/changeset/ports/406315 Log: MFH: r406314 Add upstream patch to fix CVE-2012-4504. Approved by: gnome (kwm) Security: 3b5c2362-bd07-11e5-b7ef-5453ed2e2b49 Security: CVE-2012-4504 Approved by: portmgr blanket approval Added: branches/2016Q1/net/libproxy/files/patch-CVE-2012-4504 - copied unchanged from r406314, head/net/libproxy/files/patch-CVE-2012-4504 Modified: branches/2016Q1/net/libproxy-gnome/Makefile branches/2016Q1/net/libproxy-kde/Makefile branches/2016Q1/net/libproxy-perl/Makefile branches/2016Q1/net/libproxy-webkit/Makefile branches/2016Q1/net/libproxy/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/libproxy-gnome/Makefile ============================================================================== --- branches/2016Q1/net/libproxy-gnome/Makefile Sun Jan 17 12:55:14 2016 (r406314) +++ branches/2016Q1/net/libproxy-gnome/Makefile Sun Jan 17 12:56:35 2016 (r406315) @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/net/libproxy-gnome/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net devel PKGNAMESUFFIX= -gnome Modified: branches/2016Q1/net/libproxy-kde/Makefile ============================================================================== --- branches/2016Q1/net/libproxy-kde/Makefile Sun Jan 17 12:55:14 2016 (r406314) +++ branches/2016Q1/net/libproxy-kde/Makefile Sun Jan 17 12:56:35 2016 (r406315) @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/net/libproxy-kde/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net devel PKGNAMESUFFIX= -kde Modified: branches/2016Q1/net/libproxy-perl/Makefile ============================================================================== --- branches/2016Q1/net/libproxy-perl/Makefile Sun Jan 17 12:55:14 2016 (r406314) +++ branches/2016Q1/net/libproxy-perl/Makefile Sun Jan 17 12:56:35 2016 (r406315) @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/net/libproxy-perl/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net lang PKGNAMESUFFIX= -perl Modified: branches/2016Q1/net/libproxy-webkit/Makefile ============================================================================== --- branches/2016Q1/net/libproxy-webkit/Makefile Sun Jan 17 12:55:14 2016 (r406314) +++ branches/2016Q1/net/libproxy-webkit/Makefile Sun Jan 17 12:56:35 2016 (r406315) @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/net/libproxy-webkit/Makefile,v 1.13 2011/03/06 23:12:41 kwm Exp $ -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net www PKGNAMESUFFIX= -webkit Modified: branches/2016Q1/net/libproxy/Makefile ============================================================================== --- branches/2016Q1/net/libproxy/Makefile Sun Jan 17 12:55:14 2016 (r406314) +++ branches/2016Q1/net/libproxy/Makefile Sun Jan 17 12:56:35 2016 (r406315) @@ -4,7 +4,7 @@ PORTNAME= libproxy PORTVERSION= 0.4.6 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net devel MASTER_SITES= GOOGLE_CODE Copied: branches/2016Q1/net/libproxy/files/patch-CVE-2012-4504 (from r406314, head/net/libproxy/files/patch-CVE-2012-4504) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net/libproxy/files/patch-CVE-2012-4504 Sun Jan 17 12:56:35 2016 (r406315, copy of r406314, head/net/libproxy/files/patch-CVE-2012-4504) @@ -0,0 +1,22 @@ +commit c440553c12836664afd24a24fb3a4d10a2facd2c +Author: nicolas.dufresne@gmail.com +Date: Wed Oct 10 16:14:27 2012 +0000 + + Fix buffer overflow downloading large pac file + + This fixes CVE CVE-2012-4504 + +--- libproxy/url.cpp ++++ libproxy/url.cpp +@@ -474,9 +474,10 @@ char* url::get_pac() { + // Add this chunk to our content length, + // ensuring that we aren't over our max size + content_length += chunk_length; +- if (content_length >= PAC_MAX_SIZE) break; + } + ++ if (content_length >= PAC_MAX_SIZE) break; ++ + while (recvd != content_length) { + int r = recv(sock, buffer + recvd, content_length - recvd, 0); + if (r < 0) break; From owner-svn-ports-branches@freebsd.org Sun Jan 17 18:12:14 2016 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 46D93A869A1; Sun, 17 Jan 2016 18:12:14 +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 EFDC61536; Sun, 17 Jan 2016 18:12:13 +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 u0HICCJr016014; Sun, 17 Jan 2016 18:12:12 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HICCKP016012; Sun, 17 Jan 2016 18:12:12 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601171812.u0HICCKP016012@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 17 Jan 2016 18:12:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406522 - branches/2016Q1/net/isc-dhcp43-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: Sun, 17 Jan 2016 18:12:14 -0000 Author: feld Date: Sun Jan 17 18:12:12 2016 New Revision: 406522 URL: https://svnweb.freebsd.org/changeset/ports/406522 Log: MFH: r406000 - Update to 4.3.3-P1 Approved by: ports-secteam (with hat) Modified: branches/2016Q1/net/isc-dhcp43-server/Makefile branches/2016Q1/net/isc-dhcp43-server/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/isc-dhcp43-server/Makefile ============================================================================== --- branches/2016Q1/net/isc-dhcp43-server/Makefile Sun Jan 17 18:06:31 2016 (r406521) +++ branches/2016Q1/net/isc-dhcp43-server/Makefile Sun Jan 17 18:12:12 2016 (r406522) @@ -3,12 +3,12 @@ PORTNAME= dhcp DISTVERSION= 4.3.3 +DISTVERSIONSUFFIX= ${PATCHSUFFIX} PORTREVISION= ${DHCP_PORTREVISION} CATEGORIES= net -MASTER_SITES= ISC/${PORTNAME}/${DISTVERSION} +MASTER_SITES= ISC/${PORTNAME}/${DISTVERSION}${PATCHSUFFIX} PKGNAMEPREFIX= isc- PKGNAMESUFFIX= 43-${SUBSYS} -#DISTNAME= ${PORTNAME}-${DISTVERSION}-${PATCHLEVEL} MAINTAINER= zi@FreeBSD.org COMMENT?= ISC Dynamic Host Configuration Protocol server @@ -17,13 +17,19 @@ LICENSE= ISCL USES= gmake -#PATCHLEVEL= P1 -PORTREVISION_SERVER= 0 -PORTREVISION_CLIENT= 0 -PORTREVISION_RELAY= 0 +PATCHLEVEL= P1 +PORTREVISION_SERVER= 1 +PORTREVISION_CLIENT= 1 +PORTREVISION_RELAY= 1 + +.if defined(PATCHLEVEL) +PATCHSUFFIX= -${PATCHLEVEL} +WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}-${PATCHLEVEL} +.else +PATCHSUFFIX= +.endif SUBSYS?= server -#WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}-${PATCHLEVEL} OPTIONS_DEFINE= IPV6 OPTIONS_DEFAULT=IPV6 Modified: branches/2016Q1/net/isc-dhcp43-server/distinfo ============================================================================== --- branches/2016Q1/net/isc-dhcp43-server/distinfo Sun Jan 17 18:06:31 2016 (r406521) +++ branches/2016Q1/net/isc-dhcp43-server/distinfo Sun Jan 17 18:12:12 2016 (r406522) @@ -1,2 +1,2 @@ -SHA256 (dhcp-4.3.3.tar.gz) = 553c4945b09b1c1b904c4780f34f72aaefa2fc8c6556715de0bc9d4e3d255ede -SIZE (dhcp-4.3.3.tar.gz) = 9205539 +SHA256 (dhcp-4.3.3-P1.tar.gz) = c11e896dffa1bfbc49462965d3f6dec45534e34068603546d9a236f2aa669921 +SIZE (dhcp-4.3.3-P1.tar.gz) = 9204043 From owner-svn-ports-branches@freebsd.org Sun Jan 17 18:13:19 2016 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 4F7B1A86A1B; Sun, 17 Jan 2016 18:13:19 +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 231001726; Sun, 17 Jan 2016 18:13:19 +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 u0HIDI90016801; Sun, 17 Jan 2016 18:13:18 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HIDIMP016800; Sun, 17 Jan 2016 18:13:18 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601171813.u0HIDIMP016800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 17 Jan 2016 18:13:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406523 - branches/2016Q1/net/isc-dhcp43-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: Sun, 17 Jan 2016 18:13:19 -0000 Author: feld Date: Sun Jan 17 18:13:17 2016 New Revision: 406523 URL: https://svnweb.freebsd.org/changeset/ports/406523 Log: MFH: r406041 - Move to smarts to allow us to add patchlevels without uncommenting lines - Don't bump PORTREVISION Approved by: ports-secteam (with hat) Security: CVE-2015-8605 Modified: branches/2016Q1/net/isc-dhcp43-server/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/isc-dhcp43-server/Makefile ============================================================================== --- branches/2016Q1/net/isc-dhcp43-server/Makefile Sun Jan 17 18:12:12 2016 (r406522) +++ branches/2016Q1/net/isc-dhcp43-server/Makefile Sun Jan 17 18:13:17 2016 (r406523) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= dhcp -DISTVERSION= 4.3.3 -DISTVERSIONSUFFIX= ${PATCHSUFFIX} +PORTVERSION= 4.3.3P1 PORTREVISION= ${DHCP_PORTREVISION} CATEGORIES= net -MASTER_SITES= ISC/${PORTNAME}/${DISTVERSION}${PATCHSUFFIX} +MASTER_SITES= ISC/${PORTNAME}/${PORTVERSION:S/P/-P/g} PKGNAMEPREFIX= isc- PKGNAMESUFFIX= 43-${SUBSYS} +DISTNAME= ${PORTNAME}-${PORTVERSION:S/P/-P/g} MAINTAINER= zi@FreeBSD.org COMMENT?= ISC Dynamic Host Configuration Protocol server @@ -17,18 +17,10 @@ LICENSE= ISCL USES= gmake -PATCHLEVEL= P1 PORTREVISION_SERVER= 1 PORTREVISION_CLIENT= 1 PORTREVISION_RELAY= 1 -.if defined(PATCHLEVEL) -PATCHSUFFIX= -${PATCHLEVEL} -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}-${PATCHLEVEL} -.else -PATCHSUFFIX= -.endif - SUBSYS?= server OPTIONS_DEFINE= IPV6 From owner-svn-ports-branches@freebsd.org Sun Jan 17 18:24:23 2016 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 0339CA86E61; Sun, 17 Jan 2016 18:24:23 +0000 (UTC) (envelope-from dbn@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 D30D01E56; Sun, 17 Jan 2016 18:24:22 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0HIOL2S020262; Sun, 17 Jan 2016 18:24:21 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HIOLfd020258; Sun, 17 Jan 2016 18:24:21 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201601171824.u0HIOLfd020258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 17 Jan 2016 18:24:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406525 - in branches/2016Q1/mail/bayespam: . 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, 17 Jan 2016 18:24:23 -0000 Author: dbn Date: Sun Jan 17 18:24:21 2016 New Revision: 406525 URL: https://svnweb.freebsd.org/changeset/ports/406525 Log: MFH: r406524 mail/bayespam: make fetchable Changes: - Change MASTER_SITE to BSDforge.org - Assign MAINTAINERship to reporter - Remove BROKEN - Add LICENSE of GPLv2 - Make portlint happy: - Capitalise start of COMMENT - Regenerate patches PR: 206043 Submitted by: Chris Hutchinson (portmaster@BSDforge.com) Approved by: ports-secteam (feld@) Modified: branches/2016Q1/mail/bayespam/Makefile branches/2016Q1/mail/bayespam/files/patch-bayes_process_email.pl branches/2016Q1/mail/bayespam/files/patch-bayes_spam_check.pl branches/2016Q1/mail/bayespam/pkg-descr Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/bayespam/Makefile ============================================================================== --- branches/2016Q1/mail/bayespam/Makefile Sun Jan 17 18:13:36 2016 (r406524) +++ branches/2016Q1/mail/bayespam/Makefile Sun Jan 17 18:24:21 2016 (r406525) @@ -5,13 +5,13 @@ PORTNAME= bayespam PORTVERSION= 0.9.2 PORTREVISION= 1 CATEGORIES= mail -MASTER_SITES= http://www.garyarnold.com/sites/default/files/ +MASTER_SITES= http://BSDforge.com/projects/source/mail/bayespam/ EXTRACT_SUFX= .tar_.gz -MAINTAINER= ports@FreeBSD.org -COMMENT= qmail spam filter written in Perl using Bayesian classification +MAINTAINER= portmaster@BSDforge.com +COMMENT= Qmail spam filter written in Perl using Bayesian classification -BROKEN= unfetchable +LICENSE= GPLv2 RUN_DEPENDS= p5-MIME-Tools>=0:${PORTSDIR}/mail/p5-MIME-Tools Modified: branches/2016Q1/mail/bayespam/files/patch-bayes_process_email.pl ============================================================================== --- branches/2016Q1/mail/bayespam/files/patch-bayes_process_email.pl Sun Jan 17 18:13:36 2016 (r406524) +++ branches/2016Q1/mail/bayespam/files/patch-bayes_process_email.pl Sun Jan 17 18:24:21 2016 (r406525) @@ -1,6 +1,6 @@ ---- bayes_process_email.pl.orig Sun Sep 8 16:48:05 2002 -+++ bayes_process_email.pl Sun Sep 8 16:48:28 2002 -@@ -6,6 +6,7 @@ +--- bayes_process_email.pl.orig 2016-01-17 18:02:48 UTC ++++ bayes_process_email.pl +@@ -6,6 +6,7 @@ use MIME::Parser; use Fcntl; use DB_File; @@ -8,7 +8,7 @@ use Bayespam::Process; # -@@ -165,8 +166,6 @@ +@@ -165,8 +166,6 @@ untie( %token_ratings ); # dashes, and dollar signs -- words, in other words. sub ProcessDirectory { @@ -17,7 +17,7 @@ my $directory = shift(@_); local *number_of_messages = shift(@_); local *token_occurrences = shift(@_); -@@ -227,7 +226,6 @@ +@@ -227,7 +226,6 @@ sub ProcessDirectory # dashes, and dollar signs -- words, in other words. sub ProcessFile { Modified: branches/2016Q1/mail/bayespam/files/patch-bayes_spam_check.pl ============================================================================== --- branches/2016Q1/mail/bayespam/files/patch-bayes_spam_check.pl Sun Jan 17 18:13:36 2016 (r406524) +++ branches/2016Q1/mail/bayespam/files/patch-bayes_spam_check.pl Sun Jan 17 18:24:21 2016 (r406525) @@ -1,6 +1,6 @@ ---- bayes_spam_check.pl.orig Sun Sep 8 17:06:34 2002 -+++ bayes_spam_check.pl Sun Sep 8 17:06:40 2002 -@@ -144,7 +144,7 @@ +--- bayes_spam_check.pl.orig 2016-01-17 18:02:48 UTC ++++ bayes_spam_check.pl +@@ -144,7 +144,7 @@ Given a corpus rating file and an email -h, --help : this (help) message -r, --rating : corpus rating file to use @@ -8,5 +8,4 @@ +example: $0 --rating bayes_rating.dat EOF --} -+} + } Modified: branches/2016Q1/mail/bayespam/pkg-descr ============================================================================== --- branches/2016Q1/mail/bayespam/pkg-descr Sun Jan 17 18:13:36 2016 (r406524) +++ branches/2016Q1/mail/bayespam/pkg-descr Sun Jan 17 18:24:21 2016 (r406525) @@ -1,5 +1,3 @@ -[ excerpt from developer's site ] - Bayespam is a qmail spam filter written in Perl, using Bayesian classification to filter out unsolicited commercial email. It is written with ease of installation and use in mind, and it is @@ -12,4 +10,4 @@ for Spam. In this paper, Mr. Graham talk is working on that used Bayesian classification to determine if a particular piece of email is spam or not. -WWW: http://www.garyarnold.com/Bayespam +WWW: http://BSDforge.com/projects/mail/bayespam From owner-svn-ports-branches@freebsd.org Sun Jan 17 19:03:51 2016 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 B51C4A85B20; Sun, 17 Jan 2016 19:03:51 +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 8FB931FFA; Sun, 17 Jan 2016 19:03:51 +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 u0HJ3oXk033476; Sun, 17 Jan 2016 19:03:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HJ3ojN033473; Sun, 17 Jan 2016 19:03:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601171903.u0HJ3ojN033473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 17 Jan 2016 19:03:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406528 - in branches/2016Q1/net/isc-dhcp41-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: Sun, 17 Jan 2016 19:03:51 -0000 Author: feld Date: Sun Jan 17 19:03:50 2016 New Revision: 406528 URL: https://svnweb.freebsd.org/changeset/ports/406528 Log: MFH: r406527 net/isc-dhcp41-server: Update to 4.1-ESV-R12-P1 This fixes CVE-2015-8605. Mark DEPRECATED and provide EXPIRES to coincide with 2016Q2 branch creation. The PORTVERSION scheme of this port is strange, but I am continuing the current version scheme as this is probably the last release of the 4.1 branch. The ISC Software Support Policy states that 4.1 ESV is support ends December 2015. [1] [1] http://www.isc.org/downloads/software-support-policy/ Security: CVE-2015-8605 Approved by: ports-secteam (with hat) Added: branches/2016Q1/net/isc-dhcp41-server/files/patch-client_dhclient.conf.example - copied unchanged from r406527, head/net/isc-dhcp41-server/files/patch-client_dhclient.conf.example Deleted: branches/2016Q1/net/isc-dhcp41-server/files/patch-client__Makefile.in branches/2016Q1/net/isc-dhcp41-server/files/patch-client__dhclient.conf branches/2016Q1/net/isc-dhcp41-server/files/patch-server__Makefile.am branches/2016Q1/net/isc-dhcp41-server/files/patch-server__Makefile.in branches/2016Q1/net/isc-dhcp41-server/files/patch-server__bpf.c Modified: branches/2016Q1/net/isc-dhcp41-server/Makefile branches/2016Q1/net/isc-dhcp41-server/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/isc-dhcp41-server/Makefile ============================================================================== --- branches/2016Q1/net/isc-dhcp41-server/Makefile Sun Jan 17 19:02:59 2016 (r406527) +++ branches/2016Q1/net/isc-dhcp41-server/Makefile Sun Jan 17 19:03:50 2016 (r406528) @@ -15,10 +15,13 @@ COMMENT?= The ISC Dynamic Host Configura LICENSE= ISCL -PATCHLEVEL= R7 -PORTREVISION_SERVER= 9 -PORTREVISION_CLIENT= 2 -PORTREVISION_RELAY= 5 +PATCHLEVEL= R12-P1 +PORTREVISION_SERVER= 10 +PORTREVISION_CLIENT= 3 +PORTREVISION_RELAY= 6 + +DEPRECATED= isc-dhcp 4.1 is now End of Life +EXPIRES= 2016-03-01 SUBSYS?= server WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}-${PATCHLEVEL} @@ -138,7 +141,7 @@ post-patch: @${SED} ${PKGMESSAGE_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${MSG_FILE} > ${PKGMESSAGE} @${REINPLACE_CMD} ${REINPLACE_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ - ${WRKSRC}/client/dhclient.conf + ${WRKSRC}/client/dhclient.conf.example do-install: ${SETENV} DESTDIR=${STAGEDIR} ${MAKE} -C ${WRKSRC}/${SUBSYS} install @@ -168,7 +171,9 @@ do-install: post-install: .if ${SUBSYS} == client ${INSTALL_SCRIPT} ${WRKSRC}/client/scripts/freebsd ${STAGEDIR}${PREFIX}/sbin/dhclient-script + ${MV} ${STAGEDIR}${PREFIX}/etc/dhclient.conf.example ${STAGEDIR}${PREFIX}/etc/dhclient.conf.sample .elif ${SUBSYS} == server + ${MV} ${STAGEDIR}${PREFIX}/etc/dhcpd.conf.example ${STAGEDIR}${PREFIX}/etc/dhcpd.conf.sample .if ${PORT_OPTIONS:MIPV6} @${LN} -sf isc-dhcpd ${STAGEDIR}${PREFIX}/etc/rc.d/isc-dhcpd6 .endif Modified: branches/2016Q1/net/isc-dhcp41-server/distinfo ============================================================================== --- branches/2016Q1/net/isc-dhcp41-server/distinfo Sun Jan 17 19:02:59 2016 (r406527) +++ branches/2016Q1/net/isc-dhcp41-server/distinfo Sun Jan 17 19:03:50 2016 (r406528) @@ -1,4 +1,2 @@ -SHA256 (dhcp-4.1-ESV-R7.tar.gz) = 25d579291a13ccce39c5dbb0e2f2ce8e974c82015bc4e3ee653cf95a4ed15ca4 -SIZE (dhcp-4.1-ESV-R7.tar.gz) = 1162002 -SHA256 (ldap-for-dhcp-4.1.1-2.tar.gz) = 566b7be2ebefdc583d0bf0095c804ba69807b67e5cc29a2b64b1b39202b37d0d -SIZE (ldap-for-dhcp-4.1.1-2.tar.gz) = 39004 +SHA256 (dhcp-4.1-ESV-R12-P1.tar.gz) = d46af9ce8fb19b797d7bd3d8542a05353522bae8d77231eb07736af0007feb62 +SIZE (dhcp-4.1-ESV-R12-P1.tar.gz) = 1252652 Copied: branches/2016Q1/net/isc-dhcp41-server/files/patch-client_dhclient.conf.example (from r406527, head/net/isc-dhcp41-server/files/patch-client_dhclient.conf.example) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/net/isc-dhcp41-server/files/patch-client_dhclient.conf.example Sun Jan 17 19:03:50 2016 (r406528, copy of r406527, head/net/isc-dhcp41-server/files/patch-client_dhclient.conf.example) @@ -0,0 +1,11 @@ +--- client/dhclient.conf.example.orig 2016-01-17 18:48:11 UTC ++++ client/dhclient.conf.example +@@ -11,7 +11,7 @@ retry 60; + reboot 10; + select-timeout 5; + initial-interval 2; +-script "/etc/dhclient-script"; ++script "%%PREFIX%%/sbin/dhclient-script"; + media "-link0 -link1 -link2", "link0 link1"; + reject 192.33.137.209; + From owner-svn-ports-branches@freebsd.org Sun Jan 17 19:11:02 2016 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 01295A85D1D; Sun, 17 Jan 2016 19:11: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 BFC1412C8; Sun, 17 Jan 2016 19:11: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 u0HJB0LE034183; Sun, 17 Jan 2016 19:11:00 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0HJB0gx034182; Sun, 17 Jan 2016 19:11:00 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601171911.u0HJB0gx034182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 17 Jan 2016 19:11:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406530 - branches/2016Q1/net/isc-dhcp42-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: Sun, 17 Jan 2016 19:11:02 -0000 Author: feld Date: Sun Jan 17 19:11:00 2016 New Revision: 406530 URL: https://svnweb.freebsd.org/changeset/ports/406530 Log: MFH: r406529 net/isc-dhcp42-server: Mark DEPRECATED This port is not receiving a patch for CVE-2015-8605 Also, set EXPIRES to coincide with 2016Q2 branch creation. The 4.2 branch reached End of Life in March 2015. [1] [1] https://kb.isc.org/article/AA-01259/0/DHCP-4.2.8-Release-Notes.html Security: 05eeb7e9-b987-11e5-83ef-14dae9d210b8 Security: CVE-2015-8605 Approved by: ports-secteam (with hat) Modified: branches/2016Q1/net/isc-dhcp42-server/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/isc-dhcp42-server/Makefile ============================================================================== --- branches/2016Q1/net/isc-dhcp42-server/Makefile Sun Jan 17 19:10:20 2016 (r406529) +++ branches/2016Q1/net/isc-dhcp42-server/Makefile Sun Jan 17 19:11:00 2016 (r406530) @@ -22,6 +22,9 @@ PORTREVISION_SERVER= 1 PORTREVISION_CLIENT= 0 PORTREVISION_RELAY= 0 +DEPRECATED= isc-dhcp 4.2 is End of Life +EXPIRES= 2016-03-01 + SUBSYS?= server #WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}-${PATCHLEVEL} From owner-svn-ports-branches@freebsd.org Mon Jan 18 14:14:57 2016 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 20CFEA87C12; Mon, 18 Jan 2016 14:14:57 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE7C31DD6; Mon, 18 Jan 2016 14:14:56 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0IEEtwT079710; Mon, 18 Jan 2016 14:14:55 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0IEEtos079708; Mon, 18 Jan 2016 14:14:55 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201601181414.u0IEEtos079708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 18 Jan 2016 14:14:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406574 - branches/2016Q1/www/chromium 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: Mon, 18 Jan 2016 14:14:57 -0000 Author: rene Date: Mon Jan 18 14:14:55 2016 New Revision: 406574 URL: https://svnweb.freebsd.org/changeset/ports/406574 Log: MFH: r406565 www/chromium: update to 47.0.2526.111 Submitted by: Christoph Moench-Tegeder Approved by: portmgr (miwi) Modified: branches/2016Q1/www/chromium/Makefile branches/2016Q1/www/chromium/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/chromium/Makefile ============================================================================== --- branches/2016Q1/www/chromium/Makefile Mon Jan 18 14:04:44 2016 (r406573) +++ branches/2016Q1/www/chromium/Makefile Mon Jan 18 14:14:55 2016 (r406574) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 47.0.2526.106 +PORTVERSION= 47.0.2526.111 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on Modified: branches/2016Q1/www/chromium/distinfo ============================================================================== --- branches/2016Q1/www/chromium/distinfo Mon Jan 18 14:04:44 2016 (r406573) +++ branches/2016Q1/www/chromium/distinfo Mon Jan 18 14:14:55 2016 (r406574) @@ -1,4 +1,4 @@ -SHA256 (chromium-47.0.2526.106.tar.xz) = 64535073330a3d37aad228d10a15cdcbb5b389e59d079d1a3b22d023b99a58e6 -SIZE (chromium-47.0.2526.106.tar.xz) = 1433438428 -SHA256 (chromium-47.0.2526.106-testdata.tar.xz) = 327fe48a9611f55005654c49ce79349b1caed283fba2df6283ebdc486ce348b8 -SIZE (chromium-47.0.2526.106-testdata.tar.xz) = 117395412 +SHA256 (chromium-47.0.2526.111.tar.xz) = 179a9189634eb344078c5728fb429bc8581015437ff857261268ab7dbe093708 +SIZE (chromium-47.0.2526.111.tar.xz) = 394641184 +SHA256 (chromium-47.0.2526.111-testdata.tar.xz) = 7a014e11095749ea56683425baa3e7f5b1e6c8ae8cb5a572141e3ab570b8cf1a +SIZE (chromium-47.0.2526.111-testdata.tar.xz) = 117392528 From owner-svn-ports-branches@freebsd.org Tue Jan 19 00:37:26 2016 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 D9638A865D7; Tue, 19 Jan 2016 00:37:26 +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 A4B0C1C3D; Tue, 19 Jan 2016 00:37:26 +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 u0J0bPkf067196; Tue, 19 Jan 2016 00:37:25 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0J0bPhx067195; Tue, 19 Jan 2016 00:37:25 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201601190037.u0J0bPhx067195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 19 Jan 2016 00:37:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406626 - in branches/2016Q1/archivers/libarchive: . 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, 19 Jan 2016 00:37:27 -0000 Author: junovitch Date: Tue Jan 19 00:37:25 2016 New Revision: 406626 URL: https://svnweb.freebsd.org/changeset/ports/406626 Log: MFH: r406624 archivers/libarchive: apply patches for multiple security vulnerablities - Add patch for denial of service via unspecified vectors [1] - Add patch for directory traveral via absolute paths [2] - Add patch for crash/infinite loop on malformed CPIO archives (base r282932) [3] PR: 200176 [3] Reported by: Sevan Janiyan Approved by: maintainer timeout (glewis, 8 months) Approved by: ports-secteam (miwi) Obtained from: https://github.com/libarchive/libarchive Commits 2253154 [1], 5935715 [2], 3865cf2, e6c9668, 24f5de6 [3] Security: CVE-2013-0211 [1] Security: CVE-2015-2304 [2] Security: https://vuxml.FreeBSD.org/freebsd/7c63775e-be31-11e5-b5fe-002590263bf5.html Added: branches/2016Q1/archivers/libarchive/files/ - copied from r406624, head/archivers/libarchive/files/ Modified: branches/2016Q1/archivers/libarchive/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/archivers/libarchive/Makefile ============================================================================== --- branches/2016Q1/archivers/libarchive/Makefile Tue Jan 19 00:20:22 2016 (r406625) +++ branches/2016Q1/archivers/libarchive/Makefile Tue Jan 19 00:37:25 2016 (r406626) @@ -2,7 +2,7 @@ PORTNAME= libarchive PORTVERSION= 3.1.2 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= archivers MASTER_SITES= http://libarchive.org/downloads/ From owner-svn-ports-branches@freebsd.org Tue Jan 19 09:49:00 2016 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 BD060A88C40; Tue, 19 Jan 2016 09:49:00 +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 8F3401FE5; Tue, 19 Jan 2016 09:49:00 +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 u0J9mxdj032496; Tue, 19 Jan 2016 09:48:59 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0J9mxFD032493; Tue, 19 Jan 2016 09:48:59 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201601190948.u0J9mxFD032493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 19 Jan 2016 09:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406677 - in branches/2016Q1/www/h2o: . 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, 19 Jan 2016 09:49:00 -0000 Author: junovitch Date: Tue Jan 19 09:48:59 2016 New Revision: 406677 URL: https://svnweb.freebsd.org/changeset/ports/406677 Log: MFH: r405714, r406010 (manual; www/h2o only), r406168 www/h2o: update 1.6.0 -> 1.6.2 and add LibreSSL option - OPTIONS: Add bundled LIBRESSL option and set as default - HTTP/2 support requires TLS ALPN extension missing in base OpenSSL - Upstream expectation is the bundled LibreSSL is used to support HTTP/2 - Enables ChaCha20-Poly1305 ciphers as a bonus - Update sample configuration file - Fix typos in USE_* knobs for www/h2o Changes: https://github.com/h2o/h2o/releases/tag/v1.6.1 Changes: https://github.com/h2o/h2o/releases/tag/v1.6.2 PR: 205946 PR: 206193 Submitted by: Dave Cottlehuber (maintainer) Approved by: ports-secteam (miwi) Security: 6c808811-bb9a-11e5-a65c-485d605f4717 Modified: branches/2016Q1/www/h2o/Makefile branches/2016Q1/www/h2o/distinfo branches/2016Q1/www/h2o/files/h2o.conf.sample Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/www/h2o/Makefile ============================================================================== --- branches/2016Q1/www/h2o/Makefile Tue Jan 19 08:56:34 2016 (r406676) +++ branches/2016Q1/www/h2o/Makefile Tue Jan 19 09:48:59 2016 (r406677) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= h2o -PORTVERSION= 1.6.0 +PORTVERSION= 1.6.2 DISTVERSIONPREFIX= v CATEGORIES= www @@ -35,10 +35,21 @@ H2O_LOGDIR= /var/log/${PORTNAME}/ USE_RC_SUBR= ${PORTNAME} +OPTIONS_DEFINE= LIBRESSL +LIBRESSL_DESC= Build with bundled LibreSSL instead of OpenSSL +OPTIONS_DEFAULT= LIBRESSL + +CMAKE_ARGS+= -DEXTRA_LIBRARIES=OFF -DWITHOUT_LIBS=ON + .include -CMAKE_ARGS+= -DWITH_BUNDLED_SSL=OFF -DEXTRA_LIBRARIES=OFF -DWITHOUT_LIBS=ON -USE_OPENSSL_PORT= yes +.if ${PORT_OPTIONS:MLIBRESSL} +CMAKE_ARGS+= -DWITH_BUNDLED_SSL=ON +WITH_OPENSSL_PORT= no +.else +CMAKE_ARGS+= -DWITH_BUNDLED_SSL=OFF +WITH_OPENSSL_PORT= yes +.endif post-patch: @${REINPLACE_CMD} -e 's|exec perl|exec ${LOCALBASE}/bin/perl|' \ Modified: branches/2016Q1/www/h2o/distinfo ============================================================================== --- branches/2016Q1/www/h2o/distinfo Tue Jan 19 08:56:34 2016 (r406676) +++ branches/2016Q1/www/h2o/distinfo Tue Jan 19 09:48:59 2016 (r406677) @@ -1,2 +1,2 @@ -SHA256 (h2o-h2o-v1.6.0_GH0.tar.gz) = 5c8b96ac9e930fbd563359323413e3e08057fe850e515eb41c3bfff896a78593 -SIZE (h2o-h2o-v1.6.0_GH0.tar.gz) = 6279605 +SHA256 (h2o-h2o-v1.6.2_GH0.tar.gz) = 84602a50aec62c30af46996922db7bbfc4a3fe74779dc074d5ff32313d27d03c +SIZE (h2o-h2o-v1.6.2_GH0.tar.gz) = 6305853 Modified: branches/2016Q1/www/h2o/files/h2o.conf.sample ============================================================================== --- branches/2016Q1/www/h2o/files/h2o.conf.sample Tue Jan 19 08:56:34 2016 (r406676) +++ branches/2016Q1/www/h2o/files/h2o.conf.sample Tue Jan 19 09:48:59 2016 (r406677) @@ -1,5 +1,6 @@ # vi: ft=yaml -# to find out the configuration commands, run: h2o --help +# see https://h2o.examp1e.net/ for detailed documentation +# see h2o --help for command-line options and settings user: www pid-file: /var/run/h2o.pid access-log: /var/log/h2o/h2o-access.log @@ -12,7 +13,8 @@ listen: # generate your own certificates certificate-file: /usr/local/etc/h2o/server.crt key-file: /usr/local/etc/h2o/server.key -file.dirlisting: on +# enable Apache-style directory listings +# file.dirlisting: on # per-host configuration hosts: my.example.org: @@ -25,6 +27,6 @@ hosts: "/poudriere": file.dir: "/usr/local/poudriere/data/logs/bulk" "/FreeBSD:10:amd64": - file.dir: "/usr/local/poudriere/data/packages/10_1_amd64-default/" + file.dir: "/usr/local/poudriere/data/packages/10_2_amd64-default/" "/FreeBSD:11:amd64": file.dir: "/usr/local/poudriere/data/packages/current_amd64-default/" From owner-svn-ports-branches@freebsd.org Tue Jan 19 09:51:15 2016 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 DF4C7A88D60; Tue, 19 Jan 2016 09:51:14 +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 BA25C13AD; Tue, 19 Jan 2016 09:51:14 +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 u0J9pDsA034842; Tue, 19 Jan 2016 09:51:13 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0J9pDwR034839; Tue, 19 Jan 2016 09:51:13 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601190951.u0J9pDwR034839@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Tue, 19 Jan 2016 09:51:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406679 - in branches/2016Q1/net: libproxy libproxy-python 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, 19 Jan 2016 09:51:15 -0000 Author: rakuco Date: Tue Jan 19 09:51:13 2016 New Revision: 406679 URL: https://svnweb.freebsd.org/changeset/ports/406679 Log: MFH: r406678 Modernize net/libproxy-python and fix dependencies. In preparation for updating the libproxy ports to 0.4.12, first land some changes that also apply to 0.4.6 and can be MFH'ed. - Make net/libproxy a run-time dependency: we only install .py files in this port, and they only load libproxy.so when being run. Consequently, also set NO_ARCH=yes. - Set NO_BUILD=yes and modernize the installation. Instead of having an empty do-build target and invoking Python's compileall.py in post-build, do it like most other ports and call it in post-install (this requires guarding the post-install target in net/libproxy's Makefile). We also pass -d to compileall.py to avoid having ${STAGEDIR} in the .pyc and .pyo files (and shown in exception tracebacks). - Let the port handle installation instead of defining do-install. We just need to set INSTALL_WRKSRC appropriately to avoid installing more files than we want. Approved by: gnome (kwm) Approved by: portmgr blanket approval Modified: branches/2016Q1/net/libproxy-python/Makefile branches/2016Q1/net/libproxy-python/pkg-plist branches/2016Q1/net/libproxy/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/libproxy-python/Makefile ============================================================================== --- branches/2016Q1/net/libproxy-python/Makefile Tue Jan 19 09:50:10 2016 (r406678) +++ branches/2016Q1/net/libproxy-python/Makefile Tue Jan 19 09:51:13 2016 (r406679) @@ -2,36 +2,32 @@ # $FreeBSD$ # $MCom: ports/net/libproxy-python/Makefile,v 1.1 2011/01/12 13:10:54 kwm Exp $ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net lang PKGNAMESUFFIX= -python MAINTAINER= gnome@FreeBSD.org COMMENT= python binding for libproxy -LIB_DEPENDS= libproxy.so:${PORTSDIR}/net/libproxy +RUN_DEPENDS= libproxy>=${PORTVERSION}:${PORTSDIR}/net/libproxy MASTERDIR= ${.CURDIR}/../libproxy DESCR= ${.CURDIR}/pkg-descr PLIST= ${.CURDIR}/pkg-plist -USES+= python -LIBPROXY_SLAVE= python +INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}/bindings/python +NO_ARCH= yes +NO_BUILD= yes +USES= python -do-build: -# empty +LIBPROXY_SLAVE= python -post-build: - ${PYTHON_CMD} -Qold ${PYTHON_LIBDIR}/compileall.py \ - ${WRKSRC}/bindings/python +post-install: + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ - ${WRKSRC}/bindings/python - -do-install: - @${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} -.for file in libproxy.py libproxy.pyc libproxy.pyo - ${INSTALL_DATA} ${WRKSRC}/bindings/python/${file} \ - ${STAGEDIR}${PYTHON_SITELIBDIR} -.endfor + -f -d ${PYTHONPREFIX_SITELIBDIR} \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} .include "${MASTERDIR}/Makefile" Modified: branches/2016Q1/net/libproxy-python/pkg-plist ============================================================================== --- branches/2016Q1/net/libproxy-python/pkg-plist Tue Jan 19 09:50:10 2016 (r406678) +++ branches/2016Q1/net/libproxy-python/pkg-plist Tue Jan 19 09:51:13 2016 (r406679) @@ -1,4 +1,3 @@ %%PYTHON_SITELIBDIR%%/libproxy.py %%PYTHON_SITELIBDIR%%/libproxy.pyc %%PYTHON_SITELIBDIR%%/libproxy.pyo -@dir lib/libproxy/%%VERSION%%/modules Modified: branches/2016Q1/net/libproxy/Makefile ============================================================================== --- branches/2016Q1/net/libproxy/Makefile Tue Jan 19 09:50:10 2016 (r406678) +++ branches/2016Q1/net/libproxy/Makefile Tue Jan 19 09:51:13 2016 (r406679) @@ -66,7 +66,10 @@ CMAKE_ARGS+= -DWITH_MOZJS:BOOL=OFF . endif .endif +# This will be removed after the update to 0.4.12. +.if !target(post-install) post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ +.endif .include From owner-svn-ports-branches@freebsd.org Tue Jan 19 15:15:50 2016 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 AF364A8865B; Tue, 19 Jan 2016 15:15:50 +0000 (UTC) (envelope-from loader@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 7C7AC162B; Tue, 19 Jan 2016 15:15:50 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0JFFn06032137; Tue, 19 Jan 2016 15:15:49 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0JFFnrx032136; Tue, 19 Jan 2016 15:15:49 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201601191515.u0JFFnrx032136@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Tue, 19 Jan 2016 15:15:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406709 - branches/2016Q1/net/shadowsocks-libev 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, 19 Jan 2016 15:15:50 -0000 Author: loader (doc committer) Date: Tue Jan 19 15:15:49 2016 New Revision: 406709 URL: https://svnweb.freebsd.org/changeset/ports/406709 Log: MFH: r406685 - Disable TCP_FASTOPEN to fix build on 11.0-CURRENT - Pet portlint (PORTVERSION appears out-of-order) PR: 206338 Approved by: koobs Approved by: Xiaoding Liu (maintainer) Submitted by: loader Approved by: portmgr (erwin) Modified: branches/2016Q1/net/shadowsocks-libev/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/shadowsocks-libev/Makefile ============================================================================== --- branches/2016Q1/net/shadowsocks-libev/Makefile Tue Jan 19 15:10:54 2016 (r406708) +++ branches/2016Q1/net/shadowsocks-libev/Makefile Tue Jan 19 15:15:49 2016 (r406709) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= shadowsocks-libev -DISTVERSIONPREFIX=v PORTVERSION= 1.6.4 +DISTVERSIONPREFIX= v CATEGORIES= net MAINTAINER= xiaoding+freebsd@xiaoding.org @@ -25,6 +25,8 @@ USE_RC_SUBR= shadowsocks_libev post-patch: ${REINPLACE_CMD} -e 's|^pkgconfiglibdir.*|pkgconfiglibdir = ${PREFIX}/libdata/pkgconfig|g' \ ${WRKSRC}/Makefile.in + ${REINPLACE_CMD} -e 's|^#ifdef TCP_FASTOPEN|#if defined(TCP_FASTOPEN) \&\& defined(__linux)|' \ + ${WRKSRC}/src/local.c ${WRKSRC}/src/server.c post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} From owner-svn-ports-branches@freebsd.org Tue Jan 19 21:15:44 2016 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 5B9E2A8840B; Tue, 19 Jan 2016 21:15:44 +0000 (UTC) (envelope-from mat@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 35AF31270; Tue, 19 Jan 2016 21:15:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0JLFhBE038110; Tue, 19 Jan 2016 21:15:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0JLFg3G038102; Tue, 19 Jan 2016 21:15:42 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201601192115.u0JLFg3G038102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 19 Jan 2016 21:15:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406720 - in branches/2016Q1/dns: bind9-devel bind910 bind910/files bind99 bind99/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, 19 Jan 2016 21:15:44 -0000 Author: mat Date: Tue Jan 19 21:15:42 2016 New Revision: 406720 URL: https://svnweb.freebsd.org/changeset/ports/406720 Log: MFH: r406719 Update bind99 to 9.9.8-P3, bind910 to 9.10.3-P3 and bind9-devel to latest snapshot. Security: CVE-2015-8704 Security: CVE-2015-8705 Sponsored by: Absolight Modified: branches/2016Q1/dns/bind9-devel/Makefile branches/2016Q1/dns/bind9-devel/distinfo branches/2016Q1/dns/bind910/Makefile branches/2016Q1/dns/bind910/distinfo branches/2016Q1/dns/bind910/files/named.root branches/2016Q1/dns/bind99/Makefile branches/2016Q1/dns/bind99/distinfo branches/2016Q1/dns/bind99/files/named.root Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/dns/bind9-devel/Makefile ============================================================================== --- branches/2016Q1/dns/bind9-devel/Makefile Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind9-devel/Makefile Tue Jan 19 21:15:42 2016 (r406720) @@ -3,7 +3,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/} -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= dns net ipv6 MASTER_SITES= LOCAL/mat/bind #MASTER_SITES= https://source.isc.org/cgi-bin/gitweb.cgi?p=bind9.git;a=snapshot;h=${HASH};sf=tgz;f= @@ -19,8 +19,8 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.0.a20151227 -HASH= 7321d8d +ISCVERSION= 9.11.0.a20160119 +HASH= fc7bce5 MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q1/dns/bind9-devel/distinfo ============================================================================== --- branches/2016Q1/dns/bind9-devel/distinfo Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind9-devel/distinfo Tue Jan 19 21:15:42 2016 (r406720) @@ -1,2 +1,2 @@ -SHA256 (bind9-7321d8d.tar.gz) = 37a1f2475901af343ac79e0bf4e2b77ca42440dccb9a5ae5ffe341537792d33a -SIZE (bind9-7321d8d.tar.gz) = 11006113 +SHA256 (bind9-fc7bce5.tar.gz) = d216744bc16ed494d4fa86288c7194ccea46ca54a7b502b381eef16d788c989f +SIZE (bind9-fc7bce5.tar.gz) = 11010437 Modified: branches/2016Q1/dns/bind910/Makefile ============================================================================== --- branches/2016Q1/dns/bind910/Makefile Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind910/Makefile Tue Jan 19 21:15:42 2016 (r406720) @@ -29,7 +29,7 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.10.3-P2 +ISCVERSION= 9.10.3-P3 MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q1/dns/bind910/distinfo ============================================================================== --- branches/2016Q1/dns/bind910/distinfo Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind910/distinfo Tue Jan 19 21:15:42 2016 (r406720) @@ -1,2 +1,2 @@ -SHA256 (bind-9.10.3-P2.tar.gz) = 4a6c1911ac0d4b6be635b63de3429b6c168ea244043f12bbc8a4eb3368fd6ecd -SIZE (bind-9.10.3-P2.tar.gz) = 8523719 +SHA256 (bind-9.10.3-P3.tar.gz) = 690810d1fbb72afa629e74638d19cd44e28d2b2e5eb63f55c705ad85d1a4cb83 +SIZE (bind-9.10.3-P3.tar.gz) = 8527540 Modified: branches/2016Q1/dns/bind910/files/named.root ============================================================================== --- branches/2016Q1/dns/bind910/files/named.root Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind910/files/named.root Tue Jan 19 21:15:42 2016 (r406720) @@ -13,30 +13,32 @@ ; on server FTP.INTERNIC.NET ; -OR- RS.INTERNIC.NET ; -; last update: Jan 3, 2013 -; related version of root zone: 2013010300 +; last update: December 01, 2015 +; related version of root zone: 2015120100 ; ; formerly NS.INTERNIC.NET ; -. 3600000 IN NS A.ROOT-SERVERS.NET. +. 3600000 NS A.ROOT-SERVERS.NET. A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4 -A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:BA3E::2:30 +A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30 ; ; FORMERLY NS1.ISI.EDU ; . 3600000 NS B.ROOT-SERVERS.NET. B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201 +B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:84::b ; ; FORMERLY C.PSI.NET ; . 3600000 NS C.ROOT-SERVERS.NET. C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12 +C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c ; ; FORMERLY TERP.UMD.EDU ; . 3600000 NS D.ROOT-SERVERS.NET. D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13 -D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2D::D +D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d ; ; FORMERLY NS.NASA.GOV ; @@ -47,7 +49,7 @@ E.ROOT-SERVERS.NET. 3600000 A ; . 3600000 NS F.ROOT-SERVERS.NET. F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241 -F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2F::F +F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f ; ; FORMERLY NS.NIC.DDN.MIL ; @@ -57,26 +59,26 @@ G.ROOT-SERVERS.NET. 3600000 A ; FORMERLY AOS.ARL.ARMY.MIL ; . 3600000 NS H.ROOT-SERVERS.NET. -H.ROOT-SERVERS.NET. 3600000 A 128.63.2.53 -H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::803F:235 +H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53 +H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53 ; ; FORMERLY NIC.NORDU.NET ; . 3600000 NS I.ROOT-SERVERS.NET. I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17 -I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7FE::53 +I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53 ; ; OPERATED BY VERISIGN, INC. ; . 3600000 NS J.ROOT-SERVERS.NET. J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30 -J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:C27::2:30 +J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30 ; ; OPERATED BY RIPE NCC ; . 3600000 NS K.ROOT-SERVERS.NET. K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129 -K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7FD::1 +K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1 ; ; OPERATED BY ICANN ; @@ -88,5 +90,5 @@ L.ROOT-SERVERS.NET. 3600000 AA ; . 3600000 NS M.ROOT-SERVERS.NET. M.ROOT-SERVERS.NET. 3600000 A 202.12.27.33 -M.ROOT-SERVERS.NET. 3600000 AAAA 2001:DC3::35 -; End of File +M.ROOT-SERVERS.NET. 3600000 AAAA 2001:dc3::35 +; End of file Modified: branches/2016Q1/dns/bind99/Makefile ============================================================================== --- branches/2016Q1/dns/bind99/Makefile Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind99/Makefile Tue Jan 19 21:15:42 2016 (r406720) @@ -15,7 +15,7 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.9.8-P2 +ISCVERSION= 9.9.8-P3 MAKE_JOBS_UNSAFE= yes Modified: branches/2016Q1/dns/bind99/distinfo ============================================================================== --- branches/2016Q1/dns/bind99/distinfo Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind99/distinfo Tue Jan 19 21:15:42 2016 (r406720) @@ -1,4 +1,4 @@ -SHA256 (bind-9.9.8-P2.tar.gz) = f5841926e19637b93ec0b44b5abfbab2410e692736cf11143d461f656fbdf329 -SIZE (bind-9.9.8-P2.tar.gz) = 7996912 -SHA256 (9.9.8-P2-rpz2+rl.14038.05.patch.xz) = d729e23fcb2baa657b36cdb9da3b224d29c155aa911a4880b3d500bc7453d178 -SIZE (9.9.8-P2-rpz2+rl.14038.05.patch.xz) = 39232 +SHA256 (bind-9.9.8-P3.tar.gz) = 6a489f98dffaf31cfd8b572aa5cc345e8d775758488a4541f2f0c974c8090a07 +SIZE (bind-9.9.8-P3.tar.gz) = 7998476 +SHA256 (9.9.8-P3-rpz2+rl.14038.05.patch.xz) = d886ee7d350b65068c7502e2d925ce675875ed968f3b8c82ad87de5f6843e372 +SIZE (9.9.8-P3-rpz2+rl.14038.05.patch.xz) = 39224 Modified: branches/2016Q1/dns/bind99/files/named.root ============================================================================== --- branches/2016Q1/dns/bind99/files/named.root Tue Jan 19 21:13:06 2016 (r406719) +++ branches/2016Q1/dns/bind99/files/named.root Tue Jan 19 21:15:42 2016 (r406720) @@ -13,30 +13,32 @@ ; on server FTP.INTERNIC.NET ; -OR- RS.INTERNIC.NET ; -; last update: Jan 3, 2013 -; related version of root zone: 2013010300 +; last update: December 01, 2015 +; related version of root zone: 2015120100 ; ; formerly NS.INTERNIC.NET ; -. 3600000 IN NS A.ROOT-SERVERS.NET. +. 3600000 NS A.ROOT-SERVERS.NET. A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4 -A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:BA3E::2:30 +A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30 ; ; FORMERLY NS1.ISI.EDU ; . 3600000 NS B.ROOT-SERVERS.NET. B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201 +B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:84::b ; ; FORMERLY C.PSI.NET ; . 3600000 NS C.ROOT-SERVERS.NET. C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12 +C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c ; ; FORMERLY TERP.UMD.EDU ; . 3600000 NS D.ROOT-SERVERS.NET. D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13 -D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2D::D +D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d ; ; FORMERLY NS.NASA.GOV ; @@ -47,7 +49,7 @@ E.ROOT-SERVERS.NET. 3600000 A ; . 3600000 NS F.ROOT-SERVERS.NET. F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241 -F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2F::F +F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f ; ; FORMERLY NS.NIC.DDN.MIL ; @@ -57,26 +59,26 @@ G.ROOT-SERVERS.NET. 3600000 A ; FORMERLY AOS.ARL.ARMY.MIL ; . 3600000 NS H.ROOT-SERVERS.NET. -H.ROOT-SERVERS.NET. 3600000 A 128.63.2.53 -H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::803F:235 +H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53 +H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53 ; ; FORMERLY NIC.NORDU.NET ; . 3600000 NS I.ROOT-SERVERS.NET. I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17 -I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7FE::53 +I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53 ; ; OPERATED BY VERISIGN, INC. ; . 3600000 NS J.ROOT-SERVERS.NET. J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30 -J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:C27::2:30 +J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30 ; ; OPERATED BY RIPE NCC ; . 3600000 NS K.ROOT-SERVERS.NET. K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129 -K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7FD::1 +K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1 ; ; OPERATED BY ICANN ; @@ -88,5 +90,5 @@ L.ROOT-SERVERS.NET. 3600000 AA ; . 3600000 NS M.ROOT-SERVERS.NET. M.ROOT-SERVERS.NET. 3600000 A 202.12.27.33 -M.ROOT-SERVERS.NET. 3600000 AAAA 2001:DC3::35 -; End of File +M.ROOT-SERVERS.NET. 3600000 AAAA 2001:dc3::35 +; End of file From owner-svn-ports-branches@freebsd.org Wed Jan 20 16:15:54 2016 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 DA277A8A610; Wed, 20 Jan 2016 16:15:54 +0000 (UTC) (envelope-from pawel@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 AB77E1FCE; Wed, 20 Jan 2016 16:15:54 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0KGFrws018946; Wed, 20 Jan 2016 16:15:53 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0KGFrg9018944; Wed, 20 Jan 2016 16:15:53 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201601201615.u0KGFrg9018944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 20 Jan 2016 16:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406777 - branches/2016Q1/mail/claws-mail 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, 20 Jan 2016 16:15:54 -0000 Author: pawel Date: Wed Jan 20 16:15:53 2016 New Revision: 406777 URL: https://svnweb.freebsd.org/changeset/ports/406777 Log: MFH: r406732 Update to Claws Mail release 3.13.2 Security: CVE-2015-8614 Approved by: portmgr (miwi) Modified: branches/2016Q1/mail/claws-mail/Makefile.claws branches/2016Q1/mail/claws-mail/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/mail/claws-mail/Makefile.claws ============================================================================== --- branches/2016Q1/mail/claws-mail/Makefile.claws Wed Jan 20 15:46:33 2016 (r406776) +++ branches/2016Q1/mail/claws-mail/Makefile.claws Wed Jan 20 16:15:53 2016 (r406777) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTVERSION= 3.13.1 +PORTVERSION= 3.13.2 CATEGORIES?= mail MASTER_SITES= http://www.claws-mail.org/download.php?file=releases/ Modified: branches/2016Q1/mail/claws-mail/distinfo ============================================================================== --- branches/2016Q1/mail/claws-mail/distinfo Wed Jan 20 15:46:33 2016 (r406776) +++ branches/2016Q1/mail/claws-mail/distinfo Wed Jan 20 16:15:53 2016 (r406777) @@ -1,2 +1,2 @@ -SHA256 (claws-mail-3.13.1.tar.xz) = ad3cc8227b5f6236445698d9b18b0876ebd887b6828e74439552c20ef2d92a11 -SIZE (claws-mail-3.13.1.tar.xz) = 5581304 +SHA256 (claws-mail-3.13.2.tar.xz) = 6a731052814b3284abeca1662d47817a86e018bc7123ab428f015f0cfab40ad1 +SIZE (claws-mail-3.13.2.tar.xz) = 5582600 From owner-svn-ports-branches@freebsd.org Wed Jan 20 17:36:54 2016 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 0DC4FA8A7FF; Wed, 20 Jan 2016 17:36:54 +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 B97D71DD5; Wed, 20 Jan 2016 17:36:53 +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 u0KHaqiA046523; Wed, 20 Jan 2016 17:36:52 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0KHaqYW046519; Wed, 20 Jan 2016 17:36:52 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601201736.u0KHaqYW046519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 20 Jan 2016 17:36:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406783 - in branches/2016Q1/graphics/imlib2: . 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, 20 Jan 2016 17:36:54 -0000 Author: feld Date: Wed Jan 20 17:36:52 2016 New Revision: 406783 URL: https://svnweb.freebsd.org/changeset/ports/406783 Log: MFH: r406782 graphics/imlib2: Update to 1.4.7 This update includes fixes for potential security issues. No CVEs have been assigned yet. https://git.enlightenment.org/legacy/imlib2.git/tree/ChangeLog Approved by: ports-secteam (with hat) PR: 206372 Deleted: branches/2016Q1/graphics/imlib2/files/ Modified: branches/2016Q1/graphics/imlib2/Makefile branches/2016Q1/graphics/imlib2/distinfo branches/2016Q1/graphics/imlib2/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/imlib2/Makefile ============================================================================== --- branches/2016Q1/graphics/imlib2/Makefile Wed Jan 20 17:34:46 2016 (r406782) +++ branches/2016Q1/graphics/imlib2/Makefile Wed Jan 20 17:36:52 2016 (r406783) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= imlib2 -PORTVERSION= 1.4.6 -PORTREVISION= 7 +PORTVERSION= 1.4.7 PORTEPOCH= 2 CATEGORIES= graphics enlightenment MASTER_SITES= SF/enlightenment/imlib2-src/${PORTVERSION} Modified: branches/2016Q1/graphics/imlib2/distinfo ============================================================================== --- branches/2016Q1/graphics/imlib2/distinfo Wed Jan 20 17:34:46 2016 (r406782) +++ branches/2016Q1/graphics/imlib2/distinfo Wed Jan 20 17:36:52 2016 (r406783) @@ -1,2 +1,2 @@ -SHA256 (imlib2-1.4.6.tar.bz2) = af51be727d62cfcff7457c753f355e44848fb997f33a7e1d43775276a9073274 -SIZE (imlib2-1.4.6.tar.bz2) = 872717 +SHA256 (imlib2-1.4.7.tar.bz2) = 35d733ce23ad7d338cff009095d37e656cb8a7a53717d53793a38320f9924701 +SIZE (imlib2-1.4.7.tar.bz2) = 889510 Modified: branches/2016Q1/graphics/imlib2/pkg-plist ============================================================================== --- branches/2016Q1/graphics/imlib2/pkg-plist Wed Jan 20 17:34:46 2016 (r406782) +++ branches/2016Q1/graphics/imlib2/pkg-plist Wed Jan 20 17:36:52 2016 (r406783) @@ -26,7 +26,7 @@ lib/imlib2/loaders/xpm.so lib/imlib2/loaders/zlib.so lib/libImlib2.so lib/libImlib2.so.1 -lib/libImlib2.so.1.4.6 +lib/libImlib2.so.1.4.7 libdata/pkgconfig/imlib2.pc %%DATADIR%%/data/fonts/cinema.ttf %%DATADIR%%/data/fonts/grunge.ttf From owner-svn-ports-branches@freebsd.org Wed Jan 20 18:45:55 2016 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 126F5A8A226; Wed, 20 Jan 2016 18:45:55 +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 D6F4A18D2; Wed, 20 Jan 2016 18:45:54 +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 u0KIjrn5070746; Wed, 20 Jan 2016 18:45:53 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0KIjr1M070745; Wed, 20 Jan 2016 18:45:53 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601201845.u0KIjr1M070745@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 20 Jan 2016 18:45:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406787 - in branches/2016Q1/databases/rubygem-arel-helpers: . 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, 20 Jan 2016 18:45:55 -0000 Author: antoine Date: Wed Jan 20 18:45:53 2016 New Revision: 406787 URL: https://svnweb.freebsd.org/changeset/ports/406787 Log: MFH: r406786 Switch back to rubygem-activerecord (3.x) to unbreak metasploit at runtime Added: branches/2016Q1/databases/rubygem-arel-helpers/files/ - copied from r406786, head/databases/rubygem-arel-helpers/files/ Modified: branches/2016Q1/databases/rubygem-arel-helpers/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/databases/rubygem-arel-helpers/Makefile ============================================================================== --- branches/2016Q1/databases/rubygem-arel-helpers/Makefile Wed Jan 20 18:44:38 2016 (r406786) +++ branches/2016Q1/databases/rubygem-arel-helpers/Makefile Wed Jan 20 18:45:53 2016 (r406787) @@ -2,6 +2,7 @@ PORTNAME= arel-helpers PORTVERSION= 2.1.1 +PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -10,7 +11,7 @@ COMMENT= Helpers to construct database q LICENSE= MIT -RUN_DEPENDS= rubygem-activerecord4>=4.0.13:${PORTSDIR}/databases/rubygem-activerecord4 +RUN_DEPENDS= rubygem-activerecord>=3.1.0:${PORTSDIR}/databases/rubygem-activerecord NO_ARCH= yes USE_RUBY= yes From owner-svn-ports-branches@freebsd.org Wed Jan 20 18:54:17 2016 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 10C4FA8A68B; Wed, 20 Jan 2016 18:54:17 +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 D5E831007; Wed, 20 Jan 2016 18:54:16 +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 u0KIsFdh074045; Wed, 20 Jan 2016 18:54:15 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0KIsFhJ074044; Wed, 20 Jan 2016 18:54:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601201854.u0KIsFhJ074044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 20 Jan 2016 18:54:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406789 - branches/2016Q1/games/qwdtools 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, 20 Jan 2016 18:54:17 -0000 Author: antoine Date: Wed Jan 20 18:54:15 2016 New Revision: 406789 URL: https://svnweb.freebsd.org/changeset/ports/406789 Log: MFH: r406788 Mark BROKEN: fails to patch Reported by: pkg-fallout Modified: branches/2016Q1/games/qwdtools/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/games/qwdtools/Makefile ============================================================================== --- branches/2016Q1/games/qwdtools/Makefile Wed Jan 20 18:53:34 2016 (r406788) +++ branches/2016Q1/games/qwdtools/Makefile Wed Jan 20 18:54:15 2016 (r406789) @@ -9,4 +9,6 @@ PKGMESSAGE= /nonexistent MASTERDIR= ${.CURDIR}/../mvdsv +BROKEN= fails to patch + .include "${MASTERDIR}/Makefile" From owner-svn-ports-branches@freebsd.org Thu Jan 21 01:24:46 2016 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 A8868A8A1C0; Thu, 21 Jan 2016 01:24:46 +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 5BE4B1795; Thu, 21 Jan 2016 01:24:46 +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 u0L1OjZ8005562; Thu, 21 Jan 2016 01:24:45 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0L1Ojcx005559; Thu, 21 Jan 2016 01:24:45 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201601210124.u0L1Ojcx005559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 21 Jan 2016 01:24:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406817 - branches/2016Q1/devel/cgit 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, 21 Jan 2016 01:24:46 -0000 Author: junovitch Date: Thu Jan 21 01:24:44 2016 New Revision: 406817 URL: https://svnweb.freebsd.org/changeset/ports/406817 Log: MFH: r406816 devel/cgit: update 0.11.2 -> 0.12 Changes: http://lists.zx2c4.com/pipermail/cgit/2016-January/002817.html PR: 206417 Submitted by: Kevin Zheng (maintainer) Approved by: ports-secteam (miwi) Security: CVE-2016-1899 Security: CVE-2016-1900 Security: CVE-2016-1901 Security: https://vuxml.FreeBSD.org/freebsd/62c0dbbd-bfce-11e5-b5fe-002590263bf5.html Modified: branches/2016Q1/devel/cgit/Makefile branches/2016Q1/devel/cgit/distinfo branches/2016Q1/devel/cgit/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/cgit/Makefile ============================================================================== --- branches/2016Q1/devel/cgit/Makefile Wed Jan 20 23:42:59 2016 (r406816) +++ branches/2016Q1/devel/cgit/Makefile Thu Jan 21 01:24:44 2016 (r406817) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= cgit -PORTVERSION= 0.11.2 -PORTREVISION= 1 +PORTVERSION= 0.12 CATEGORIES= devel www MASTER_SITES= http://git.zx2c4.com/cgit/snapshot/:cgit \ https://www.kernel.org/pub/software/scm/git/:git @@ -16,11 +15,11 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING PROJECTHOST= git-core -GIT_VERSION= 2.3.3 +GIT_VERSION= 2.7.0 USES= cpe gmake iconv shebangfix tar:xz USE_OPENSSL= yes CPE_VENDOR= lars_hjemli -SHEBANG_FILES= filters/html-converters/resources/markdown.pl +SHEBANG_FILES= filters/html-converters/rst2html CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} Modified: branches/2016Q1/devel/cgit/distinfo ============================================================================== --- branches/2016Q1/devel/cgit/distinfo Wed Jan 20 23:42:59 2016 (r406816) +++ branches/2016Q1/devel/cgit/distinfo Thu Jan 21 01:24:44 2016 (r406817) @@ -1,4 +1,4 @@ -SHA256 (cgit-0.11.2.tar.xz) = 2e126e770693d7296c7eb5eb83b809410aef29870bfe8f54da072a3f4d813e3b -SIZE (cgit-0.11.2.tar.xz) = 93556 -SHA256 (git-2.3.3.tar.gz) = c189e4a48d8805482f450db666330c79bcefae37e0d035c7717517126ddf4305 -SIZE (git-2.3.3.tar.gz) = 5203135 +SHA256 (cgit-0.12.tar.xz) = 2ee233849335a64529a01cf2b6165ed492e20268e6e2526d7a7529ef1e24a5b7 +SIZE (cgit-0.12.tar.xz) = 85152 +SHA256 (git-2.7.0.tar.gz) = db9df4435c70a9b25d20a9ee20d65101692dc907a5a4b30e8343c9ae1b913ead +SIZE (git-2.7.0.tar.gz) = 5622494 Modified: branches/2016Q1/devel/cgit/pkg-plist ============================================================================== --- branches/2016Q1/devel/cgit/pkg-plist Wed Jan 20 23:42:59 2016 (r406816) +++ branches/2016Q1/devel/cgit/pkg-plist Thu Jan 21 01:24:44 2016 (r406817) @@ -6,8 +6,6 @@ lib/%%PORTNAME%%/filters/email-libravata lib/%%PORTNAME%%/filters/gentoo-ldap-authentication.lua lib/%%PORTNAME%%/filters/html-converters/man2html lib/%%PORTNAME%%/filters/html-converters/md2html -lib/%%PORTNAME%%/filters/html-converters/resources/markdown.pl -lib/%%PORTNAME%%/filters/html-converters/resources/rst-template.txt lib/%%PORTNAME%%/filters/html-converters/rst2html lib/%%PORTNAME%%/filters/html-converters/txt2html lib/%%PORTNAME%%/filters/owner-example.lua From owner-svn-ports-branches@freebsd.org Thu Jan 21 09:20:30 2016 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 AEF3EA8BC25; Thu, 21 Jan 2016 09:20:30 +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 7F9DA1279; Thu, 21 Jan 2016 09:20:30 +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 u0L9KTsZ048652; Thu, 21 Jan 2016 09:20:29 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0L9KTKx048650; Thu, 21 Jan 2016 09:20:29 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201601210920.u0L9KTKx048650@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 21 Jan 2016 09:20:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406836 - branches/2016Q1/net/ntp 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, 21 Jan 2016 09:20:30 -0000 Author: delphij Date: Thu Jan 21 09:20:29 2016 New Revision: 406836 URL: https://svnweb.freebsd.org/changeset/ports/406836 Log: MFH: r406830 Update 4.2.8p5 --> 4.2.8p6 Approved by: ports-secteam Modified: branches/2016Q1/net/ntp/Makefile branches/2016Q1/net/ntp/distinfo Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/net/ntp/Makefile ============================================================================== --- branches/2016Q1/net/ntp/Makefile Thu Jan 21 09:20:14 2016 (r406835) +++ branches/2016Q1/net/ntp/Makefile Thu Jan 21 09:20:29 2016 (r406836) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.2.8p5 +PORTVERSION= 4.2.8p6 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ Modified: branches/2016Q1/net/ntp/distinfo ============================================================================== --- branches/2016Q1/net/ntp/distinfo Thu Jan 21 09:20:14 2016 (r406835) +++ branches/2016Q1/net/ntp/distinfo Thu Jan 21 09:20:29 2016 (r406836) @@ -1,2 +1,2 @@ -SHA256 (ntp-4.2.8p5.tar.gz) = ca28baf4f6bb6fabdc1b62fd1dcec412be2e621192b40466a469a2496164f696 -SIZE (ntp-4.2.8p5.tar.gz) = 7138233 +SHA256 (ntp-4.2.8p6.tar.gz) = 583d0e1c573ace30a9c6afbea0fc52cae9c8c916dbc15c026e485a0dda4ba048 +SIZE (ntp-4.2.8p6.tar.gz) = 7152557 From owner-svn-ports-branches@freebsd.org Thu Jan 21 16:02:47 2016 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 84AFFA8B45A; Thu, 21 Jan 2016 16:02:47 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 488A61347; Thu, 21 Jan 2016 16:02:47 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0LG2kJ1083349; Thu, 21 Jan 2016 16:02:46 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0LG2kEN083345; Thu, 21 Jan 2016 16:02:46 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201601211602.u0LG2kEN083345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 21 Jan 2016 16:02:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406867 - branches/2016Q1/devel/cargo 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, 21 Jan 2016 16:02:47 -0000 Author: jbeich Date: Thu Jan 21 16:02:45 2016 New Revision: 406867 URL: https://svnweb.freebsd.org/changeset/ports/406867 Log: MFH: r406516 devel/cargo: update to 0.7.0 (release) and cleanup - Compress :registry with xz(1) to save a few megabytes - Add BOOTSTRAP option to build with already installed Cargo - Generate distfiles with BOOTSTRAP=off for extra deps - Require recent lang/rust to build (older versions not tested) - Drop cargo-nightly and rust-nightly hacks. The latter is still supported via RUST_PORT=lang/rust-nightly in environment, make.conf, Makefile.local - Drop MAKE_JOBS_UNSAFE, builds fine with MAKE_JOBS_NUMBER=32 - Drop _GH0 suffix from non-GitHub distfile - Don't use OpenSSL port on 11.0-CURRENT (no RPATH in bootstrap) - Don't install duplicate licenses under DOCSDIR - Don't depend on lang/python2 when only lang/python27 is used - Simplify manpage directory substitution - Fix LICENSE_FILE when used with LICENSE_COMB != single - Fix gen-registry target when WRKDIRPREFIX == MAKEOBJDIRPREFIX - Cleanup gen-registry target - Respect PREFIX != /usr/local - Prepare CARGO_BOOT_SIG for i386 and DragonFly - Apply minor style PR: 205529 Approved by: maintainer timeout (1 month) Approved by: ports-secteam (feld) Differential Revision: https://reviews.freebsd.org/D4562 Modified: branches/2016Q1/devel/cargo/Makefile branches/2016Q1/devel/cargo/distinfo branches/2016Q1/devel/cargo/pkg-descr branches/2016Q1/devel/cargo/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/cargo/Makefile ============================================================================== --- branches/2016Q1/devel/cargo/Makefile Thu Jan 21 15:59:40 2016 (r406866) +++ branches/2016Q1/devel/cargo/Makefile Thu Jan 21 16:02:45 2016 (r406867) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cargo -PORTVERSION= 0.4.0.20150720 +PORTVERSION= 0.7.0 CATEGORIES= devel MAINTAINER= dumbbell@FreeBSD.org @@ -12,8 +12,8 @@ COMMENT= Rust's Package Manager LICENSE= APACHE20 \ MIT LICENSE_COMB= dual -LICENSE_FILE= ${WRKSRC}/LICENSE-APACHE \ - ${WRKSRC}/LICENSE-MIT +# APACHE20 license is standard, see Templates/Licenses/APACHE20 +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT # The following files are required: # @@ -34,73 +34,69 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-APACHE \ # install Cargo. MASTER_SITES= https://static.rust-lang.org/cargo-dist/2015-04-02/:bootstrap \ - LOCAL/dumbbell:registry - -DISTFILES= ${CARGO_BOOT}:bootstrap -EXTRACT_ONLY= ${DISTNAME}${_GITHUB_EXTRACT_SUFX} \ - ${DISTFILE_rust_installer} - -.if (${.TARGET} != gen-registry) && !defined(SKIP_CARGO_REGISTRY) + LOCAL/jbeich:registry +.if !defined(SKIP_CARGO_REGISTRY) DISTFILES+= ${CARGO_REGISTRY}:registry -EXTRACT_ONLY+= ${CARGO_REGISTRY} .endif USE_GITHUB= yes GH_ACCOUNT= rust-lang -GH_PROJECT= ${PORTNAME} \ - rust-installer:rust_installer -GH_TAGNAME= 9c5ffcb871 \ - c37d374:rust_installer +GH_PROJECT= rust-installer:rust_installer +GH_TAGNAME= 4915c75:rust_installer -CARGO_BOOT_SIG= x86_64-unknown-freebsd +CARGO_BOOT_SIG= ${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl} CARGO_BOOT= ${PORTNAME}-nightly-${CARGO_BOOT_SIG}${EXTRACT_SUFX} -CARGO_REGISTRY= ${DISTNAME:S/${GH_ACCOUNT}-${PORTNAME}/${PORTNAME}-registry/}${EXTRACT_SUFX} - -USES= gmake python:2,build pkgconfig - -# The bootstrapped cargo is built with OpenSSL from ports (libssl.so.8). -USE_OPENSSL= yes -WITH_OPENSSL_PORT=yes +CARGO_REGISTRY= ${PORTNAME}-registry-${DISTVERSIONFULL}.tar.xz +CARGO_REGISTRY_BOOT_HASH= 1ecc6299db9ec823 +# Like above but with: pnacl-build-helper, libressl-pnacl-sys +CARGO_REGISTRY_CUR_HASH= 88ac128001ac3a9a # We don't USES=cmake here, because cmake is not Cargo's build system. # It's used by a bundled dependency (libgit2). -BUILD_DEPENDS= ${LOCALBASE}/bin/cmake:${PORTSDIR}/devel/cmake \ - rustc:${PORTSDIR}/lang/rust-nightly +BUILD_DEPENDS= cmake:${PORTSDIR}/devel/cmake \ + ${RUST_PORT:T}>=1.5.0:${PORTSDIR}/${RUST_PORT} LIB_DEPENDS= libssh2.so:${PORTSDIR}/security/libssh2 \ libcurl.so:${PORTSDIR}/ftp/curl +RUN_DEPENDS= rustc:${PORTSDIR}/${RUST_PORT} +RUST_PORT?= lang/rust -# FIXME: Don't add rust as a runtime dependency. As we need rust-nightly -# to build Cargo, the same version would be pulled by installing Cargo, -# preventing its use with the stable version of Rust. -# RUN_DEPENDS= rustc:${PORTSDIR}/lang/rust - +USES= gmake python:-2.7,build pkgconfig +USE_OPENSSL= yes HAS_CONFIGURE= yes -CONFIGURE_ARGS= --mandir=${MANPREFIX}/man -MAKE_ENV+= LD_LIBRARY_PATH="${WRKSRC}/target/snapshot/cargo/lib" - -# git log -1 --date=short --pretty=format:'%cd' -CFG_VER_DATE= ${PORTVERSION:C/.*\.([0-9]{4})([0-9]{2})([0-9]{2})/\1-\2-\3/} -# git rev-parse --short HEAD -CFG_VER_HASH= ${GH_TAGNAME} +CONFIGURE_ARGS= --prefix="${PREFIX}" --mandir="${MANPREFIX}/man" +MAKE_ENV= ARGS="${CARGO_ARGS}" +CARGO_ARGS= --jobs ${MAKE_JOBS_NUMBER} .if defined(BATCH) || defined(PACKAGE_BUILDING) MAKE_ARGS+= VERBOSE=1 .endif -MAKE_JOBS_UNSAFE= yes +OPTIONS_DEFINE= BOOTSTRAP +OPTIONS_DEFAULT=BOOTSTRAP -.include +BOOTSTRAP_DESC= Bootstrap using pre-built vendor snapshot +BOOTSTRAP_CONFIGURE_OFF=--local-cargo="$$(command -v cargo)" # respect PATH +BOOTSTRAP_VARS_OFF= EXTRACT_AFTER_ARGS="-s/${CARGO_REGISTRY_BOOT_HASH}/${CARGO_REGISTRY_CUR_HASH}/" +BOOTSTRAP_DISTFILES= ${CARGO_BOOT}:bootstrap +BOOTSTRAP_EXTRACT_ONLY= ${DISTFILES:N*\:bootstrap:C/:.*//} +BOOTSTRAP_MAKE_ENV= LD_LIBRARY_PATH="${WRKSRC}/target/snapshot/cargo/lib" +BOOTSTRAP_VARS= EXTRACT_AFTER_ARGS="-s/${CARGO_REGISTRY_CUR_HASH}/${CARGO_REGISTRY_BOOT_HASH}/" +.if !exists(/usr/lib/libssl.so.8) # OPENSSL_SHLIBVER +BOOTSTRAP_VARS+= WITH_OPENSSL_PORT=yes +.endif post-extract: - @(${RMDIR} ${WRKSRC}/src/rust-installer && \ - ${MV} ${WRKSRC_rust_installer} ${WRKSRC}/src/rust-installer) + @${RMDIR} ${WRKSRC}/src/rust-installer + @${MV} ${WRKSRC_rust_installer} ${WRKSRC}/src/rust-installer + +post-extract-BOOTSTRAP-on: @${MKDIR} ${WRKSRC}/target/dl ${LN} -sf ${DISTDIR}/${CARGO_BOOT} ${WRKSRC}/target/dl/ post-patch: - ${REINPLACE_CMD} \ - -e 's|^CFG_VER_DATE =.*|CFG_VER_DATE = ${CFG_VER_DATE}|' \ - -e 's|^CFG_VER_HASH =.*|CFG_VER_HASH = ${CFG_VER_HASH}|' \ +# Fix mandir and don't install licenses outside of ${_LICENSE_DIR} + @${REINPLACE_CMD} -e 's,share/man,man,' \ + -e 's, LICENSE-[^[:space:]]*,,g' \ ${WRKSRC}/Makefile.in # In case the previous "make stage" failed, this ensures rust's @@ -121,14 +117,8 @@ pre-install: post-install: @${RM} ${STAGEDIR}${PREFIX}/lib/rustlib/install.log - @${MV} ${STAGEDIR}${PREFIX}/share/man/man1/cargo.1 \ - ${STAGEDIR}${PREFIX}/man/man1/cargo.1 - @${RMDIR} ${STAGEDIR}${PREFIX}/share/man/man1 \ - ${STAGEDIR}${PREFIX}/share/man - @${REINPLACE_CMD} -e 's|${STAGEDIR}||' \ - -e 's|share/man/man1/cargo\.1|man/man1/cargo.1.gz|' \ + @${REINPLACE_CMD} -i '' -e 's|${STAGEDIR}||' \ ${STAGEDIR}${PREFIX}/lib/rustlib/manifest-cargo - @${RM} ${STAGEDIR}${PREFIX}/lib/rustlib/manifest-cargo.bak @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cargo @${RM} \ ${STAGEDIR}${PREFIX}/lib/rustlib/components \ @@ -138,19 +128,19 @@ post-install: # "make gen-registry" is a special target to ease this port update. # # After changing the version number and the Git revision, you can run -# "make registry" to update the distinfo and create a new snapshot of +# "make gen-registry" to update the distinfo and create a new snapshot of # the registry. The new registry is written to ${DISTDIR} and can be # uploaded. gen-registry: - ${MAKE} -DSKIP_CARGO_REGISTRY makesum - ${MAKE} -DSKIP_CARGO_REGISTRY - cd ${WRKDIR} && \ - ${TAR} cvf - \ + ${MAKE} -C${.CURDIR} -DSKIP_CARGO_REGISTRY makesum + ${MAKE} -C${.CURDIR} -DSKIP_CARGO_REGISTRY + ${TAR} cJvf ${_DISTDIR}/${CARGO_REGISTRY} -C${WRKDIR} \ + --uid 0 --gid 0 \ --exclude libgit2/tests/ \ --exclude curl/tests/ \ --exclude 'index/github.com-*/.git/' \ - .cargo | ${GZIP_CMD} > ${DISTDIR}/${CARGO_REGISTRY} - ${MAKE} makesum + .cargo + ${MAKE} -C${.CURDIR} makesum -.include +.include Modified: branches/2016Q1/devel/cargo/distinfo ============================================================================== --- branches/2016Q1/devel/cargo/distinfo Thu Jan 21 15:59:40 2016 (r406866) +++ branches/2016Q1/devel/cargo/distinfo Thu Jan 21 16:02:45 2016 (r406867) @@ -1,8 +1,10 @@ +SHA256 (cargo-registry-0.7.0.tar.xz) = 72542abb20b8871d3f030c5c3855cf49902300fa3dfc58cef74fdb8984a579c9 +SIZE (cargo-registry-0.7.0.tar.xz) = 17769584 +SHA256 (cargo-nightly-x86_64-unknown-dragonfly.tar.gz) = 49d70c798362fba7d691144a4c97ce1be29a921c3a38d2fe8ffa76f9daf628ab +SIZE (cargo-nightly-x86_64-unknown-dragonfly.tar.gz) = 2621548 SHA256 (cargo-nightly-x86_64-unknown-freebsd.tar.gz) = de678e858de5d2923cc206b7aa1cc84ddc67be00748160f66fc9b7325409e7c7 SIZE (cargo-nightly-x86_64-unknown-freebsd.tar.gz) = 7663548 -SHA256 (cargo-registry-0.4.0.20150720-9c5ffcb871_GH0.tar.gz) = 7d8b5d53e0d3f28e0f8d0078586a8d94c834d9f6c35e00b56abe00bd54ee9944 -SIZE (cargo-registry-0.4.0.20150720-9c5ffcb871_GH0.tar.gz) = 16391914 -SHA256 (rust-lang-cargo-0.4.0.20150720-9c5ffcb871_GH0.tar.gz) = af6a6b609b3d6bf52f55fdcc2f8e299016e9b805748e824ec6b92d4f8ed92c07 -SIZE (rust-lang-cargo-0.4.0.20150720-9c5ffcb871_GH0.tar.gz) = 351554 -SHA256 (rust-lang-rust-installer-c37d374_GH0.tar.gz) = 7cc41029b14de023dd4f250b332470c98cf9d1a77d174a20e93d78d07e4255f1 -SIZE (rust-lang-rust-installer-c37d374_GH0.tar.gz) = 19267 +SHA256 (rust-lang-cargo-0.7.0_GH0.tar.gz) = b1067d710e64b66a197294df2fa3dd4fb1d645171eaa517b93d42678bb687338 +SIZE (rust-lang-cargo-0.7.0_GH0.tar.gz) = 512415 +SHA256 (rust-lang-rust-installer-4915c75_GH0.tar.gz) = 022116173684c97d61e014940aada20f3830d2d3e1670887bf1861997133c234 +SIZE (rust-lang-rust-installer-4915c75_GH0.tar.gz) = 19234 Modified: branches/2016Q1/devel/cargo/pkg-descr ============================================================================== --- branches/2016Q1/devel/cargo/pkg-descr Thu Jan 21 15:59:40 2016 (r406866) +++ branches/2016Q1/devel/cargo/pkg-descr Thu Jan 21 16:02:45 2016 (r406867) @@ -1,4 +1,4 @@ Cargo is Cargo, Rust's Package Manager. Cargo downloads your Rust -project’s dependencies and compiles your project. +project's dependencies and compiles your project. WWW: http://doc.crates.io/ Modified: branches/2016Q1/devel/cargo/pkg-plist ============================================================================== --- branches/2016Q1/devel/cargo/pkg-plist Thu Jan 21 15:59:40 2016 (r406866) +++ branches/2016Q1/devel/cargo/pkg-plist Thu Jan 21 16:02:45 2016 (r406867) @@ -2,8 +2,5 @@ bin/cargo etc/bash_completion.d/cargo lib/rustlib/manifest-cargo man/man1/cargo.1.gz -%%PORTDOCS%%%%DOCSDIR%%/LICENSE-APACHE -%%PORTDOCS%%%%DOCSDIR%%/LICENSE-MIT -%%PORTDOCS%%%%DOCSDIR%%/LICENSE-THIRD-PARTY %%PORTDOCS%%%%DOCSDIR%%/README.md share/zsh/site-functions/_cargo From owner-svn-ports-branches@freebsd.org Fri Jan 22 11:54:10 2016 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 B714EA8D5AA; Fri, 22 Jan 2016 11:54:10 +0000 (UTC) (envelope-from lme@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 870CD1554; Fri, 22 Jan 2016 11:54:10 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0MBs9pL047862; Fri, 22 Jan 2016 11:54:09 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0MBs9AB047861; Fri, 22 Jan 2016 11:54:09 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201601221154.u0MBs9AB047861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Fri, 22 Jan 2016 11:54:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406924 - branches/2016Q1/graphics/lightzone 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, 22 Jan 2016 11:54:10 -0000 Author: lme Date: Fri Jan 22 11:54:09 2016 New Revision: 406924 URL: https://svnweb.freebsd.org/changeset/ports/406924 Log: MFH: r406896 - Add a runtime dependecy on java/javahelp - Bump PORTREVISION Approved by: portmgr (erwin) Modified: branches/2016Q1/graphics/lightzone/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/graphics/lightzone/Makefile ============================================================================== --- branches/2016Q1/graphics/lightzone/Makefile Fri Jan 22 11:35:23 2016 (r406923) +++ branches/2016Q1/graphics/lightzone/Makefile Fri Jan 22 11:54:09 2016 (r406924) @@ -3,6 +3,7 @@ PORTNAME= lightzone DISTVERSION= 4.1.4 +PORTREVISION= 1 CATEGORIES= graphics java DIST_SUBDIR= ${PORTNAME} @@ -18,6 +19,7 @@ BUILD_DEPENDS= jhindexer:${PORTSDIR}/jav autoconf:${PORTSDIR}/devel/autoconf LIB_DEPENDS= liblcms2.so:${PORTSDIR}/graphics/lcms2 \ libtiff.so:${PORTSDIR}/graphics/tiff +RUN_DEPENDS= jhindexer:${PORTSDIR}/java/javahelp USE_GITHUB= yes GH_ACCOUNT= ktgw0316 From owner-svn-ports-branches@freebsd.org Fri Jan 22 14:57:23 2016 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 6CD8CA8DAD6; Fri, 22 Jan 2016 14:57:23 +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 3DF5C1ED6; Fri, 22 Jan 2016 14:57:23 +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 u0MEvMWf013819; Fri, 22 Jan 2016 14:57:22 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0MEvMnk013818; Fri, 22 Jan 2016 14:57:22 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601221457.u0MEvMnk013818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 22 Jan 2016 14:57:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406934 - branches/2016Q1/archivers/file-roller 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, 22 Jan 2016 14:57:23 -0000 Author: feld Date: Fri Jan 22 14:57:22 2016 New Revision: 406934 URL: https://svnweb.freebsd.org/changeset/ports/406934 Log: MFH: r406930 archivers/file_roller: Fix ambiguous RUN_DEPENDS file_roller requires the ports version of unzip (I'm assuming based on makefile's specifications). However, since the full path to unzip was not specified, the base unzip satifies the requirement which results in the archivers/unzip package not being registered as a run dependency. Enforce the requirement by specifying "zipinfo" instead. It is a unique name which ensures archivers/unzip is always registered as a dependency, thus guaranteeing the ports unzip will be available for file roller. This requires a bump because all existing packages have a bad registry. Reported by: fernandel on forums Approved by: ports-secteam (with hat) Modified: branches/2016Q1/archivers/file-roller/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/archivers/file-roller/Makefile ============================================================================== --- branches/2016Q1/archivers/file-roller/Makefile Fri Jan 22 14:32:36 2016 (r406933) +++ branches/2016Q1/archivers/file-roller/Makefile Fri Jan 22 14:57:22 2016 (r406934) @@ -3,6 +3,7 @@ PORTNAME= file-roller PORTVERSION= 3.16.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= archivers gnome MASTER_SITES= GNOME @@ -13,7 +14,10 @@ COMMENT= Archive manager for zip files, BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar \ - unzip:${PORTSDIR}/archivers/unzip + zipinfo:${PORTSDIR}/archivers/unzip + +# Port unzip is desired, but specify the uniquely named zipinfo to ensure +# archivers/unzip is pulled in. Using "unzip" is satisfied by base unzip PORTSCOUT= limitw:1,even From owner-svn-ports-branches@freebsd.org Fri Jan 22 15:56:28 2016 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 63867A8C2AE; Fri, 22 Jan 2016 15:56:28 +0000 (UTC) (envelope-from vanilla@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 2865C137B; Fri, 22 Jan 2016 15:56:28 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0MFuRbj031768; Fri, 22 Jan 2016 15:56:27 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0MFuQ9X031762; Fri, 22 Jan 2016 15:56:26 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201601221556.u0MFuQ9X031762@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Fri, 22 Jan 2016 15:56:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406935 - in branches/2016Q1/devel: pure-ffi pure-stldict pure-stldict/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, 22 Jan 2016 15:56:28 -0000 Author: vanilla Date: Fri Jan 22 15:56:26 2016 New Revision: 406935 URL: https://svnweb.freebsd.org/changeset/ports/406935 Log: MFH: r406819 r406827 r406927 1: Upgrade to 0.8. 2: remove USE_GCC, it's compilable with clang. 3: Fix broken MASTER_SITES. 4: Fix build with gcc4.9. PR: 204385 Submitted by: gerald@, w.schwarzenfeld@aon.at Approved by: portmgr@ (antoine) Added: branches/2016Q1/devel/pure-stldict/files/patch-hashdict.cc - copied unchanged from r406827, head/devel/pure-stldict/files/patch-hashdict.cc branches/2016Q1/devel/pure-stldict/files/patch-orddict.cc - copied unchanged from r406827, head/devel/pure-stldict/files/patch-orddict.cc Modified: branches/2016Q1/devel/pure-ffi/Makefile branches/2016Q1/devel/pure-stldict/Makefile branches/2016Q1/devel/pure-stldict/distinfo branches/2016Q1/devel/pure-stldict/files/patch-Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/pure-ffi/Makefile ============================================================================== --- branches/2016Q1/devel/pure-ffi/Makefile Fri Jan 22 14:57:22 2016 (r406934) +++ branches/2016Q1/devel/pure-ffi/Makefile Fri Jan 22 15:56:26 2016 (r406935) @@ -4,7 +4,7 @@ PORTNAME= pure-ffi PORTVERSION= 0.13 CATEGORIES= devel -MASTER_SITES= https://cdn.bitbucket.org/purelang/pure-lang/downloads/ +MASTER_SITES= https://bitbucket.org/purelang/pure-lang/downloads/ DIST_SUBDIR= pure MAINTAINER= lichray@gmail.com Modified: branches/2016Q1/devel/pure-stldict/Makefile ============================================================================== --- branches/2016Q1/devel/pure-stldict/Makefile Fri Jan 22 14:57:22 2016 (r406934) +++ branches/2016Q1/devel/pure-stldict/Makefile Fri Jan 22 15:56:26 2016 (r406935) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= pure-stldict -PORTVERSION= 0.5 -PORTREVISION= 4 +PORTVERSION= 0.8 CATEGORIES= devel -MASTER_SITES= https://cdn.bitbucket.org/purelang/pure-lang/downloads/ +MASTER_SITES= https://bitbucket.org/purelang/pure-lang/downloads/ DIST_SUBDIR= pure MAINTAINER= lichray@gmail.com @@ -14,9 +13,8 @@ COMMENT= Pure interface to C++ STL map/u LICENSE= GPLv3 LGPL3 LICENSE_COMB= dual -USES= pure +USES= pkgconfig pure -USE_GCC= yes CXXFLAGS+= -std=c++0x -DHAVE_STD_IS_PERMUTATION PORTDOCS= README Modified: branches/2016Q1/devel/pure-stldict/distinfo ============================================================================== --- branches/2016Q1/devel/pure-stldict/distinfo Fri Jan 22 14:57:22 2016 (r406934) +++ branches/2016Q1/devel/pure-stldict/distinfo Fri Jan 22 15:56:26 2016 (r406935) @@ -1,2 +1,2 @@ -SHA256 (pure/pure-stldict-0.5.tar.gz) = 3c12b4e15d79955e28d025d62525685e3bdbf4a07a3849cffad82eeb578e022b -SIZE (pure/pure-stldict-0.5.tar.gz) = 64968 +SHA256 (pure/pure-stldict-0.8.tar.gz) = 5b894ae6dc574c7022258e2732bea649c82c959ec4d0be13fb5a3e8ba8488f28 +SIZE (pure/pure-stldict-0.8.tar.gz) = 69024 Modified: branches/2016Q1/devel/pure-stldict/files/patch-Makefile ============================================================================== --- branches/2016Q1/devel/pure-stldict/files/patch-Makefile Fri Jan 22 14:57:22 2016 (r406934) +++ branches/2016Q1/devel/pure-stldict/files/patch-Makefile Fri Jan 22 15:56:26 2016 (r406935) @@ -1,27 +1,11 @@ ---- ./Makefile.orig 2012-03-22 19:47:34.000000000 +0100 -+++ ./Makefile 2014-01-04 17:44:05.000000000 +0100 -@@ -4,11 +4,11 @@ - - # platform-specific setup - --DLL = $(shell pkg-config pure --variable DLL) --PIC = $(shell pkg-config pure --variable PIC) --shared = $(shell pkg-config pure --variable shared) -+DLL = .so -+PIC = -fPIC -+shared = -shared - --libdir = $(shell pkg-config pure --variable libdir) -+libdir = $(prefix)/lib - installdir = $(addprefix $(DESTDIR), $(libdir)/pure) - - MOD_CXXFLAGS = $(PIC) $(shell pkg-config pure --cflags) $(CXXFLAGS) $(CPPFLAGS) -@@ -25,7 +25,7 @@ +--- Makefile.orig 2014-03-22 20:23:33 UTC ++++ Makefile +@@ -30,7 +30,7 @@ objects = $(patsubst %.cc, %$(DLL), $(cp all: $(objects) %$(DLL): %.cc -- g++ $(shared) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS) -+ $(CXX) $(shared) $(CPPFLAGS) $(CXXFLAGS) $(PIC) $< -o $@ $(LDFLAGS) -lpure $(LIBS) +- g++ $(shared) $(dllname) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS) ++ $(CXX) $(shared) $(dllname) -o $@ $(MOD_CXXFLAGS) $< $(MOD_LDFLAGS) $(LIBS) clean: rm -f *.o *$(DLL) examples/life *~ Copied: branches/2016Q1/devel/pure-stldict/files/patch-hashdict.cc (from r406827, head/devel/pure-stldict/files/patch-hashdict.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/pure-stldict/files/patch-hashdict.cc Fri Jan 22 15:56:26 2016 (r406935, copy of r406827, head/devel/pure-stldict/files/patch-hashdict.cc) @@ -0,0 +1,11 @@ +--- hashdict.cc.orig 2016-01-21 06:37:40 UTC ++++ hashdict.cc +@@ -1,6 +1,8 @@ + + // This uses unordered_map, so a recent C++ library is required for now. + ++#include ++#include + #include + #include + #include Copied: branches/2016Q1/devel/pure-stldict/files/patch-orddict.cc (from r406827, head/devel/pure-stldict/files/patch-orddict.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/pure-stldict/files/patch-orddict.cc Fri Jan 22 15:56:26 2016 (r406935, copy of r406827, head/devel/pure-stldict/files/patch-orddict.cc) @@ -0,0 +1,11 @@ +--- orddict.cc.orig 2016-01-21 06:38:47 UTC ++++ orddict.cc +@@ -1,6 +1,8 @@ + + // This is completely analogous to hashdict.cc (which see). + ++#include ++#include + #include + #include + #include From owner-svn-ports-branches@freebsd.org Fri Jan 22 15:59:36 2016 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 C68F2A8C41C; Fri, 22 Jan 2016 15:59:36 +0000 (UTC) (envelope-from vanilla@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 A309C1788; Fri, 22 Jan 2016 15:59:36 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0MFxZjQ032129; Fri, 22 Jan 2016 15:59:35 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0MFxZoY032125; Fri, 22 Jan 2016 15:59:35 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201601221559.u0MFxZoY032125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Fri, 22 Jan 2016 15:59:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406936 - in branches/2016Q1/devel/pure-stllib: . 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, 22 Jan 2016 15:59:37 -0000 Author: vanilla Date: Fri Jan 22 15:59:35 2016 New Revision: 406936 URL: https://svnweb.freebsd.org/changeset/ports/406936 Log: MFH: r406821 r406828 1: Upgrade to 0.6. 2: remove USE_GCC. 3: Fix build with gcc4.9. PR: 204387 Submitted by: gerald@ Approved by: portmgr@ (antoine) Added: branches/2016Q1/devel/pure-stllib/files/patch-stlbase.hpp - copied unchanged from r406828, head/devel/pure-stllib/files/patch-stlbase.hpp Modified: branches/2016Q1/devel/pure-stllib/Makefile branches/2016Q1/devel/pure-stllib/distinfo branches/2016Q1/devel/pure-stllib/files/patch-Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/pure-stllib/Makefile ============================================================================== --- branches/2016Q1/devel/pure-stllib/Makefile Fri Jan 22 15:56:26 2016 (r406935) +++ branches/2016Q1/devel/pure-stllib/Makefile Fri Jan 22 15:59:35 2016 (r406936) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= pure-stllib -PORTVERSION= 0.5 -PORTREVISION= 2 +PORTVERSION= 0.6 CATEGORIES= devel -MASTER_SITES= https://cdn.bitbucket.org/purelang/pure-lang/downloads/ +MASTER_SITES= https://bitbucket.org/purelang/pure-lang/downloads/ DIST_SUBDIR= pure MAINTAINER= lichray@gmail.com @@ -13,9 +12,7 @@ COMMENT= Pure interface to C++ STL map a LICENSE= BSD3CLAUSE -USES= pure pkgconfig - -USE_GCC= yes +USES= pkgconfig pure PORTDOCS= * Modified: branches/2016Q1/devel/pure-stllib/distinfo ============================================================================== --- branches/2016Q1/devel/pure-stllib/distinfo Fri Jan 22 15:56:26 2016 (r406935) +++ branches/2016Q1/devel/pure-stllib/distinfo Fri Jan 22 15:59:35 2016 (r406936) @@ -1,2 +1,2 @@ -SHA256 (pure/pure-stllib-0.5.tar.gz) = 555d68f0d38905a4804116e5a6f37e14bec5bad3264c7b2beab3ab68b07beaef -SIZE (pure/pure-stllib-0.5.tar.gz) = 335191 +SHA256 (pure/pure-stllib-0.6.tar.gz) = 1d550764fc2f8ba6ddbd1fbd3da2d6965b69e2c992747265d9ebe4f16aa5e455 +SIZE (pure/pure-stllib-0.6.tar.gz) = 333766 Modified: branches/2016Q1/devel/pure-stllib/files/patch-Makefile ============================================================================== --- branches/2016Q1/devel/pure-stllib/files/patch-Makefile Fri Jan 22 15:56:26 2016 (r406935) +++ branches/2016Q1/devel/pure-stllib/files/patch-Makefile Fri Jan 22 15:59:35 2016 (r406936) @@ -1,19 +1,11 @@ ---- ./Makefile.orig 2013-08-28 18:17:41.000000000 +0200 -+++ ./Makefile 2013-10-16 22:49:25.000000000 +0200 -@@ -17,12 +17,12 @@ +--- Makefile.orig 2014-03-23 10:09:16 UTC ++++ Makefile +@@ -17,7 +17,7 @@ installdir = $(addprefix $(DESTDIR), $( MOD_CXXFLAGS = $(PIC) $(shell pkg-config pure --cflags) $(CFLAGS) $(CPPFLAGS) MOD_LDFLAGS = $(shell pkg-config pure --libs) $(LDFLAGS) -CFLAGS = -g -O2 -Wall -Wextra +CFLAGS ?= -g -O2 -Wall -Wextra --ifeq "$(DLL)" ".dylib" -+#ifeq "$(DLL)" ".dylib" - # OSX may need this (untested) --DLL_FLAGS = -install_name "$(libdir)/pure/$@" --endif -+#DLL_FLAGS = -install_name "$(libdir)/pure/$@" -+#endif - - # Basic rules to build the module, clean, check, install and uninstall. - + ifeq "$(DLL)" ".dylib" + DLL_FLAGS = -install_name "$(libdir)/pure/$@" Copied: branches/2016Q1/devel/pure-stllib/files/patch-stlbase.hpp (from r406828, head/devel/pure-stllib/files/patch-stlbase.hpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/pure-stllib/files/patch-stlbase.hpp Fri Jan 22 15:59:35 2016 (r406936, copy of r406828, head/devel/pure-stllib/files/patch-stlbase.hpp) @@ -0,0 +1,11 @@ +--- stlbase.hpp.orig 2016-01-21 06:40:43 UTC ++++ stlbase.hpp +@@ -17,6 +17,8 @@ included with the pure-stlvec distributi + #ifndef STLBASE_H + #define STLBASE_H + ++#include ++#include + #include + #include + #include From owner-svn-ports-branches@freebsd.org Fri Jan 22 22:01:59 2016 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 B999FA8DB6D; Fri, 22 Jan 2016 22:01:59 +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 728F81448; Fri, 22 Jan 2016 22:01:59 +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 u0MM1wSu041836; Fri, 22 Jan 2016 22:01:58 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0MM1wru041835; Fri, 22 Jan 2016 22:01:58 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201601222201.u0MM1wru041835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 22 Jan 2016 22:01:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406947 - branches/2016Q1/irc/minbif 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, 22 Jan 2016 22:01:59 -0000 Author: antoine Date: Fri Jan 22 22:01:58 2016 New Revision: 406947 URL: https://svnweb.freebsd.org/changeset/ports/406947 Log: MFH: r406945 Mark BROKEN: fails to build cd /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src && /usr/bin/c++ -I/usr/local/include/libpurple -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src -O2 -pipe -DX_DISPLAY_MISSING -fstack-protector -fno-strict-aliasing -DHAVE_IMLIB -DHAVE_CACA -DHAVE_PAM -D_REENTRANT -D_FILE_OFFSET_BITS=64 -Wall -Wextra -Wno-unused-parameter -O2 -pipe -DX_DISPLAY_MISSING -fstack-protector -fno-strict-aliasing -o CMakeFiles/minbif.dir/im/account.cpp.o -c /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src/im/account.cpp /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src/im/account.cpp: In member function 'void im::Account::setBuddyIcon(std::string)': /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src/im/account.cpp:276: error: 'ImlibLoadError' was not declared in this scope /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src/im/account.cpp:276: error: expected `;' before 'err' /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src/im/account.cpp:281: error: 'err' was not declared in this scope /wrkdirs/usr/ports/irc/minbif/work/minbif-1.0.5/src/im/account.cpp:287: error: 'err' was not declared in this scope Reported by: pkg-fallout Modified: branches/2016Q1/irc/minbif/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/irc/minbif/Makefile ============================================================================== --- branches/2016Q1/irc/minbif/Makefile Fri Jan 22 22:01:35 2016 (r406946) +++ branches/2016Q1/irc/minbif/Makefile Fri Jan 22 22:01:58 2016 (r406947) @@ -12,6 +12,8 @@ COMMENT= IRC to instant messaging gatewa LICENSE= GPLv2 +BROKEN= fails to build + LIB_DEPENDS= libpurple.so:${PORTSDIR}/net-im/libpurple # right now PLUGINS installs prpl-coincoin and prpl-gayattitude From owner-svn-ports-branches@freebsd.org Sat Jan 23 13:05:20 2016 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 23A35A8C84E; Sat, 23 Jan 2016 13:05:20 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE0841FD6; Sat, 23 Jan 2016 13:05:19 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0ND5IQW008752; Sat, 23 Jan 2016 13:05:18 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0ND5IrE008750; Sat, 23 Jan 2016 13:05:18 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201601231305.u0ND5IrE008750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 23 Jan 2016 13:05:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406975 - in branches/2016Q1/dns/sshfp: . 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: Sat, 23 Jan 2016 13:05:20 -0000 Author: ehaupt Date: Sat Jan 23 13:05:18 2016 New Revision: 406975 URL: https://svnweb.freebsd.org/changeset/ports/406975 Log: - Fix with python2.7 - Use shebangfix macro instead of manual shebang patching Approved by: portmgr (miwi) Added: branches/2016Q1/dns/sshfp/files/ branches/2016Q1/dns/sshfp/files/patch-sshfp (contents, props changed) Modified: branches/2016Q1/dns/sshfp/Makefile Modified: branches/2016Q1/dns/sshfp/Makefile ============================================================================== --- branches/2016Q1/dns/sshfp/Makefile Sat Jan 23 13:03:45 2016 (r406974) +++ branches/2016Q1/dns/sshfp/Makefile Sat Jan 23 13:05:18 2016 (r406975) @@ -3,6 +3,7 @@ PORTNAME= sshfp PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= dns security MAINTAINER= ehaupt@FreeBSD.org @@ -15,17 +16,13 @@ RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/dns/_ ${PYTHON_PKGNAMEPREFIX}ipcalc>=0.6:${PORTSDIR}/net-mgmt/py-ipcalc \ ${PYTHON_SITELIBDIR}/ldns.py:${PORTSDIR}/dns/py-ldns -USES= python +USES= python shebangfix NO_BUILD= yes USE_GITHUB= yes GH_ACCOUNT= xelerance PY_FILES= sshfp dane - -post-patch: -.for f in ${PY_FILES} daneldnsx.py - @${REINPLACE_CMD} -e '1s|.*|#!${PYTHON_CMD}|' ${WRKSRC}/${f} -.endfor +SHEBANG_FILES= daneldnsx.py ${PY_FILES} do-install: .for f in ${PY_FILES} Added: branches/2016Q1/dns/sshfp/files/patch-sshfp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/dns/sshfp/files/patch-sshfp Sat Jan 23 13:05:18 2016 (r406975) @@ -0,0 +1,29 @@ +--- sshfp.orig 2016-01-21 09:01:28 UTC ++++ sshfp +@@ -129,7 +129,7 @@ def sshfp_from_file(khfile, wantedHosts) + fingerprints.append(process_records(data, wantedHosts)) + return "\n".join(fingerprints) + +-def check_keytype(keytype): ++def check_keytype(keytype, hostname): + global algos + for algo in algos: + if "ssh-%s" % algo[:-1] == keytype[:-1]: +@@ -141,7 +141,7 @@ def check_keytype(keytype): + def process_record(record, hostname): + (host, keytype, key) = record.split(" ") + key = key.rstrip() +- if check_keytype(keytype): ++ if check_keytype(keytype, hostname): + record = create_sshfp(hostname, keytype, key) + return record + return "" +@@ -168,7 +168,7 @@ def process_records(data, hostnames): + if "," in host: + host = host.split(",")[0] + if all_hosts or host in hostnames or host == hostnames: +- if not check_keytype(keytype): ++ if not check_keytype(keytype, host): + continue + all_records.append(create_sshfp(host, keytype, key)) + if all_records: From owner-svn-ports-branches@freebsd.org Sat Jan 23 15:30:35 2016 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 6B03FA8E02C; Sat, 23 Jan 2016 15:30: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 3D731112D; Sat, 23 Jan 2016 15:30: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 u0NFUYsf056372; Sat, 23 Jan 2016 15:30:34 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NFUYw9056371; Sat, 23 Jan 2016 15:30:34 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601231530.u0NFUYw9056371@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, 23 Jan 2016 15:30:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407034 - branches/2016Q1/ports-mgmt/portrac 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, 23 Jan 2016 15:30:35 -0000 Author: rakuco Date: Sat Jan 23 15:30:34 2016 New Revision: 407034 URL: https://svnweb.freebsd.org/changeset/ports/407034 Log: MFH: r406993 Fix build on FreeBSD 9. Add the same -D_GLIBCXX_USE_C99 trick that a few other ports use so that gcc48 and its libstdc++ make std::to_string() available. Approved by: portmgr (miwi) Modified: branches/2016Q1/ports-mgmt/portrac/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/ports-mgmt/portrac/Makefile ============================================================================== --- branches/2016Q1/ports-mgmt/portrac/Makefile Sat Jan 23 15:26:48 2016 (r407033) +++ branches/2016Q1/ports-mgmt/portrac/Makefile Sat Jan 23 15:30:34 2016 (r407034) @@ -11,7 +11,6 @@ COMMENT= Simple GUI tool for tracking po LICENSE= BSD2CLAUSE -BROKEN_FreeBSD_9= does not build (lacking c++11 support) BROKEN_sparc64= fails to compile: error in C++ code PLIST_FILES= bin/portrac \ @@ -19,6 +18,9 @@ PLIST_FILES= bin/portrac \ share/portrac/up-to-date.png \ share/portrac/updates-available.png +# Unhide std::to_string() to fix build with GCC (ports/193528) +CXXFLAGS= -D_GLIBCXX_USE_C99 + USES= compiler:c++11-lib qmake tar:bzip2 USE_CXXSTD= c++11 USE_QT5= widgets buildtools_build From owner-svn-ports-branches@freebsd.org Sat Jan 23 15:55:34 2016 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 029DDA8EAF2; Sat, 23 Jan 2016 15:55:34 +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 C6E911485; Sat, 23 Jan 2016 15:55:33 +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 u0NFtWZG065005; Sat, 23 Jan 2016 15:55:32 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NFtWmH065004; Sat, 23 Jan 2016 15:55:32 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231555.u0NFtWmH065004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 15:55:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407035 - branches/2016Q1/math/why3-spark 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, 23 Jan 2016 15:55:34 -0000 Author: feld Date: Sat Jan 23 15:55:32 2016 New Revision: 407035 URL: https://svnweb.freebsd.org/changeset/ports/407035 Log: MFH: r406962 math/why3-spark: Mark BROKEN (broken by ocaml changes) Approved by: ports-secteam (with hat) Modified: branches/2016Q1/math/why3-spark/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/math/why3-spark/Makefile ============================================================================== --- branches/2016Q1/math/why3-spark/Makefile Sat Jan 23 15:30:34 2016 (r407034) +++ branches/2016Q1/math/why3-spark/Makefile Sat Jan 23 15:55:32 2016 (r407035) @@ -15,6 +15,8 @@ COMMENT= Component of SPARK 2015 LICENSE= LGPL21 GPLv3 LICENSE_COMB= multi +BROKEN= broken by recent updated to an ocaml dependency + BUILD_DEPENDS= menhir:${PORTSDIR}/devel/menhir \ ocaml-zip>1:${PORTSDIR}/archivers/ocaml-zip \ ocaml-zarith>1.2:${PORTSDIR}/math/ocaml-zarith \ From owner-svn-ports-branches@freebsd.org Sat Jan 23 15:56:27 2016 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 10C73A8EC3E; Sat, 23 Jan 2016 15:56:27 +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 D5A70180B; Sat, 23 Jan 2016 15:56:26 +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 u0NFuPOW065182; Sat, 23 Jan 2016 15:56:25 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NFuPlx065181; Sat, 23 Jan 2016 15:56:25 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231556.u0NFuPlx065181@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 15:56:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407036 - branches/2016Q1/java/eclipse 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, 23 Jan 2016 15:56:27 -0000 Author: feld Date: Sat Jan 23 15:56:25 2016 New Revision: 407036 URL: https://svnweb.freebsd.org/changeset/ports/407036 Log: MFH: r406967 Mark BROKEN on FreeBSD head Approved by: ports-secteam (with hat) Modified: branches/2016Q1/java/eclipse/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/java/eclipse/Makefile ============================================================================== --- branches/2016Q1/java/eclipse/Makefile Sat Jan 23 15:55:32 2016 (r407035) +++ branches/2016Q1/java/eclipse/Makefile Sat Jan 23 15:56:25 2016 (r407036) @@ -18,6 +18,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/java/m LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo \ libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 +BROKEN_FreeBSD_11= build eats all CPU, do not unbreak without portmgr@ approval ONLY_FOR_ARCHS= i386 amd64 CONFLICTS_INSTALL= eclipse From owner-svn-ports-branches@freebsd.org Sat Jan 23 15:57:58 2016 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 3B972A8ED12; Sat, 23 Jan 2016 15:57:58 +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 1651F1981; Sat, 23 Jan 2016 15:57:58 +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 u0NFvv1W065456; Sat, 23 Jan 2016 15:57:57 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NFvuB6065450; Sat, 23 Jan 2016 15:57:56 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231557.u0NFvuB6065450@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 15:57:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407037 - in branches/2016Q1/x11-fonts: comfortaa-ttf consolamono-ttf fantasque-sans-mono 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, 23 Jan 2016 15:57:58 -0000 Author: feld Date: Sat Jan 23 15:57:56 2016 New Revision: 407037 URL: https://svnweb.freebsd.org/changeset/ports/407037 Log: MFH: r406973 openfontlibrary.org has been fontlibrary.org for a while, update URLs in ports. Approved by: ports-secteam (with hat) Modified: branches/2016Q1/x11-fonts/comfortaa-ttf/Makefile branches/2016Q1/x11-fonts/comfortaa-ttf/pkg-descr branches/2016Q1/x11-fonts/consolamono-ttf/Makefile branches/2016Q1/x11-fonts/consolamono-ttf/pkg-descr branches/2016Q1/x11-fonts/fantasque-sans-mono/Makefile branches/2016Q1/x11-fonts/fantasque-sans-mono/pkg-descr Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/x11-fonts/comfortaa-ttf/Makefile ============================================================================== --- branches/2016Q1/x11-fonts/comfortaa-ttf/Makefile Sat Jan 23 15:56:25 2016 (r407036) +++ branches/2016Q1/x11-fonts/comfortaa-ttf/Makefile Sat Jan 23 15:57:56 2016 (r407037) @@ -4,7 +4,7 @@ PORTNAME= comfortaa-ttf PORTVERSION= 2.004 PORTREVISION= 3 CATEGORIES= x11-fonts -MASTER_SITES= http://openfontlibrary.org/assets/downloads/comfortaa/38318a69b56162733bf82bc0170b7521/ +MASTER_SITES= https://fontlibrary.org/assets/downloads/comfortaa/38318a69b56162733bf82bc0170b7521/ DISTNAME= comfortaa MAINTAINER= rakuco@FreeBSD.org Modified: branches/2016Q1/x11-fonts/comfortaa-ttf/pkg-descr ============================================================================== --- branches/2016Q1/x11-fonts/comfortaa-ttf/pkg-descr Sat Jan 23 15:56:25 2016 (r407036) +++ branches/2016Q1/x11-fonts/comfortaa-ttf/pkg-descr Sat Jan 23 15:57:56 2016 (r407037) @@ -3,4 +3,4 @@ A stylish, modern and free true type fon Comfortaa is a simple, good looking, true type font with an amazingly large number of 596 different characters and symbols. -WWW: http://openfontlibrary.org/en/font/comfortaa +WWW: https://fontlibrary.org/en/font/comfortaa Modified: branches/2016Q1/x11-fonts/consolamono-ttf/Makefile ============================================================================== --- branches/2016Q1/x11-fonts/consolamono-ttf/Makefile Sat Jan 23 15:56:25 2016 (r407036) +++ branches/2016Q1/x11-fonts/consolamono-ttf/Makefile Sat Jan 23 15:57:56 2016 (r407037) @@ -4,7 +4,7 @@ PORTNAME= consolamono-ttf PORTVERSION= 20130127 PORTREVISION= 1 CATEGORIES= x11-fonts -MASTER_SITES= http://openfontlibrary.org/assets/downloads/consolamono/61cc2afcc4eca96efe7c6ebf178d39df/ +MASTER_SITES= https://fontlibrary.org/assets/downloads/consolamono/61cc2afcc4eca96efe7c6ebf178d39df/ DISTNAME= consolamono MAINTAINER= rakuco@FreeBSD.org Modified: branches/2016Q1/x11-fonts/consolamono-ttf/pkg-descr ============================================================================== --- branches/2016Q1/x11-fonts/consolamono-ttf/pkg-descr Sat Jan 23 15:56:25 2016 (r407036) +++ branches/2016Q1/x11-fonts/consolamono-ttf/pkg-descr Sat Jan 23 15:57:56 2016 (r407037) @@ -5,4 +5,4 @@ editors and for terminal-use. the Latin, Greek, Cyrillic script and its variants, and could be expanded to support other scripts. -WWW: http://openfontlibrary.org/en/font/consolamono +WWW: https://fontlibrary.org/en/font/consolamono Modified: branches/2016Q1/x11-fonts/fantasque-sans-mono/Makefile ============================================================================== --- branches/2016Q1/x11-fonts/fantasque-sans-mono/Makefile Sat Jan 23 15:56:25 2016 (r407036) +++ branches/2016Q1/x11-fonts/fantasque-sans-mono/Makefile Sat Jan 23 15:57:56 2016 (r407037) @@ -4,7 +4,7 @@ PORTNAME= fantasque-sans-mono PORTVERSION= 1.6.5 PORTREVISION= 1 CATEGORIES= x11-fonts -MASTER_SITES= http://openfontlibrary.org/assets/downloads/${PORTNAME}/db52617ba875d08cbd8e080ca3d9f756/ +MASTER_SITES= https://fontlibrary.org/assets/downloads/${PORTNAME}/db52617ba875d08cbd8e080ca3d9f756/ DISTNAME= fantasque-sans-mono MAINTAINER= rakuco@FreeBSD.org Modified: branches/2016Q1/x11-fonts/fantasque-sans-mono/pkg-descr ============================================================================== --- branches/2016Q1/x11-fonts/fantasque-sans-mono/pkg-descr Sat Jan 23 15:56:25 2016 (r407036) +++ branches/2016Q1/x11-fonts/fantasque-sans-mono/pkg-descr Sat Jan 23 15:57:56 2016 (r407037) @@ -1,4 +1,4 @@ A programming font, designed with functionality in mind, and with some wibbly-wobbly handwriting-like fuzziness that makes it unassumingly cool. -WWW: http://openfontlibrary.org/en/font/fantasque-sans-mono +WWW: https://fontlibrary.org/en/font/fantasque-sans-mono From owner-svn-ports-branches@freebsd.org Sat Jan 23 15:58:32 2016 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 72AF0A8EEE0; Sat, 23 Jan 2016 15:58:32 +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 250E91A71; Sat, 23 Jan 2016 15:58:32 +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 u0NFwVXZ065616; Sat, 23 Jan 2016 15:58:31 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NFwVnw065615; Sat, 23 Jan 2016 15:58:31 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231558.u0NFwVnw065615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 15:58:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407038 - branches/2016Q1/devel/gitinspector/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: Sat, 23 Jan 2016 15:58:32 -0000 Author: feld Date: Sat Jan 23 15:58:30 2016 New Revision: 407038 URL: https://svnweb.freebsd.org/changeset/ports/407038 Log: MFH: r406986 devel/gitinspector: support build with LANG=C (fix from upstream) Gitinspect is now 4 releases behind. The problem where gitinspector will not build when LANG is set to "C" in the environment has been fixed for 14 months already. Apply the patch from the git repository upstream to fix (due to luck in name, it applies before patch-aa which affects the same localization file). I recommend that this port be upgraded to a new release though. Approved by: just fix it Approved by: ports-secteam (with hat) Added: branches/2016Q1/devel/gitinspector/files/patch-8755fb33dcb1 - copied unchanged from r406986, head/devel/gitinspector/files/patch-8755fb33dcb1 Modified: Directory Properties: branches/2016Q1/ (props changed) Copied: branches/2016Q1/devel/gitinspector/files/patch-8755fb33dcb1 (from r406986, head/devel/gitinspector/files/patch-8755fb33dcb1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q1/devel/gitinspector/files/patch-8755fb33dcb1 Sat Jan 23 15:58:30 2016 (r407038, copy of r406986, head/devel/gitinspector/files/patch-8755fb33dcb1) @@ -0,0 +1,30 @@ +From 8755fb33dcb1e4398bec3e4931f04525b9a463e6 Mon Sep 17 00:00:00 2001 +From: Adam Waldenberg +Date: Mon, 24 Nov 2014 09:36:11 +0100 +Subject: [PATCH] Doesn't start when using "C" locale (Fixes issue 29). + +--- + gitinspector/localization.py | 11 +++++++---- + 1 file changed, 7 insertions(+), 4 deletions(-) + +--- gitinspector/localization.py ++++ gitinspector/localization.py +@@ -51,11 +51,14 @@ def init(): + lang = locale.getdefaultlocale() + os.environ['LANG'] = lang[0] + +- filename = basedir.get_basedir() + "/translations/messages_%s.mo" % lang[0][0:2] ++ if lang[0] is not None: ++ filename = basedir.get_basedir() + "/translations/messages_%s.mo" % lang[0][0:2] + +- try: +- __translation__ = gettext.GNUTranslations(open(filename, "rb")) +- except IOError: ++ try: ++ __translation__ = gettext.GNUTranslations(open(filename, "rb")) ++ except IOError: ++ __translation__ = gettext.NullTranslations() ++ else: + __translation__ = gettext.NullTranslations() + + __enabled__ = True From owner-svn-ports-branches@freebsd.org Sat Jan 23 16:01:53 2016 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 00827A8D0DA; Sat, 23 Jan 2016 16:01:53 +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 C5E151D5F; Sat, 23 Jan 2016 16:01:52 +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 u0NG1pwV066568; Sat, 23 Jan 2016 16:01:51 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NG1pVZ066566; Sat, 23 Jan 2016 16:01:51 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231601.u0NG1pVZ066566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 16:01:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407039 - branches/2016Q1/devel/glib20 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, 23 Jan 2016 16:01:53 -0000 Author: feld Date: Sat Jan 23 16:01:51 2016 New Revision: 407039 URL: https://svnweb.freebsd.org/changeset/ports/407039 Log: MFH: r407000 Switch to rm because unlink doesn't accept flags. Pointyhat to: kwm@ for not reading the rm/unlink man page good enough. Approved by: ports-secteam (with hat) Modified: branches/2016Q1/devel/glib20/Makefile branches/2016Q1/devel/glib20/pkg-plist Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/devel/glib20/Makefile ============================================================================== --- branches/2016Q1/devel/glib20/Makefile Sat Jan 23 15:58:30 2016 (r407038) +++ branches/2016Q1/devel/glib20/Makefile Sat Jan 23 16:01:51 2016 (r407039) @@ -3,7 +3,7 @@ PORTNAME= glib PORTVERSION= 2.44.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Modified: branches/2016Q1/devel/glib20/pkg-plist ============================================================================== --- branches/2016Q1/devel/glib20/pkg-plist Sat Jan 23 15:58:30 2016 (r407038) +++ branches/2016Q1/devel/glib20/pkg-plist Sat Jan 23 16:01:51 2016 (r407039) @@ -448,5 +448,5 @@ share/locale/zh_TW/LC_MESSAGES/glib20.mo @dir lib/gio/modules @dir share/GConf/gsettings @postexec %D/bin/glib-compile-schemas %D/share/glib-2.0/schemas 2>/dev/null || /usr/bin/true -@postunexec /bin/unlink %D/share/glib-2.0/schemas/gschemas.compiled || /usr/bin/true +@postunexec /bin/rm -f %D/share/glib-2.0/schemas/gschemas.compiled || /usr/bin/true @postexec %D/bin/gio-querymodules %D/lib/gio/modules 2>/dev/null || /usr/bin/true From owner-svn-ports-branches@freebsd.org Sat Jan 23 16:02:32 2016 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 B3348A8D118; Sat, 23 Jan 2016 16:02:32 +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 846241E8A; Sat, 23 Jan 2016 16:02:32 +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 u0NG2V8O068669; Sat, 23 Jan 2016 16:02:31 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NG2V9p068668; Sat, 23 Jan 2016 16:02:31 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231602.u0NG2V9p068668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 16:02:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407040 - branches/2016Q1/math/p5-Math-Random-ISAAC-XS 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, 23 Jan 2016 16:02:32 -0000 Author: feld Date: Sat Jan 23 16:02:31 2016 New Revision: 407040 URL: https://svnweb.freebsd.org/changeset/ports/407040 Log: MFH: r407015 - Strip shared library - Bump PORTREVISION for package change Approved by: ports-secteam (with hat) Modified: branches/2016Q1/math/p5-Math-Random-ISAAC-XS/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/math/p5-Math-Random-ISAAC-XS/Makefile ============================================================================== --- branches/2016Q1/math/p5-Math-Random-ISAAC-XS/Makefile Sat Jan 23 16:01:51 2016 (r407039) +++ branches/2016Q1/math/p5-Math-Random-ISAAC-XS/Makefile Sat Jan 23 16:02:31 2016 (r407040) @@ -3,7 +3,7 @@ PORTNAME= Math-Random-ISAAC-XS PORTVERSION= 1.004 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JAWNSY @@ -17,4 +17,7 @@ TEST_DEPENDS= p5-Test-NoWarnings>0:${POR USES= perl5 USE_PERL5= modbuild +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Math/Random/ISAAC/XS/XS.so + .include From owner-svn-ports-branches@freebsd.org Sat Jan 23 16:03:33 2016 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 55EABA8D248; Sat, 23 Jan 2016 16:03:33 +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 29300112E; Sat, 23 Jan 2016 16:03:33 +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 u0NG3W6T068884; Sat, 23 Jan 2016 16:03:32 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0NG3WnW068883; Sat, 23 Jan 2016 16:03:32 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201601231603.u0NG3WnW068883@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 23 Jan 2016 16:03:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r407041 - branches/2016Q1/vietnamese/urwvn 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, 23 Jan 2016 16:03:33 -0000 Author: feld Date: Sat Jan 23 16:03:32 2016 New Revision: 407041 URL: https://svnweb.freebsd.org/changeset/ports/407041 Log: MFH: r407033 vietname/urvwn: Remove unnecessary
/ inclusions
  
  By using ${.CURDIR} to include a makefile fragment, we can remove the
  bsd.port.pre.mk and bsd.port.post.mk, and correct the OPTIONS definitions
  at the same time.
  
  Approved by:	ports-secteam (with hat)

Modified:
  branches/2016Q1/vietnamese/urwvn/Makefile
Directory Properties:
  branches/2016Q1/   (props changed)

Modified: branches/2016Q1/vietnamese/urwvn/Makefile
==============================================================================
--- branches/2016Q1/vietnamese/urwvn/Makefile	Sat Jan 23 16:02:31 2016	(r407040)
+++ branches/2016Q1/vietnamese/urwvn/Makefile	Sat Jan 23 16:03:32 2016	(r407041)
@@ -39,6 +39,5 @@ ttf-gen:	extract
 		${SORT} | ${TR} '\n' ' '
 	@${ECHO} ""
 
-.include 
-.include "${PORTSDIR}/chinese/ttfm/Makefile.ttf"
-.include 
+.include "${.CURDIR}/../../chinese/ttfm/Makefile.ttf"
+.include