From owner-svn-ports-branches@freebsd.org Sun Jun 12 13:21:22 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 0CE80AF1095; Sun, 12 Jun 2016 13:21:22 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4DFB2949; Sun, 12 Jun 2016 13:21:21 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5CDLLok084091; Sun, 12 Jun 2016 13:21:21 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5CDLKC9084089; Sun, 12 Jun 2016 13:21:20 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201606121321.u5CDLKC9084089@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Sun, 12 Jun 2016 13:21:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416802 - in branches/2016Q2/security/sudo: . 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.22 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, 12 Jun 2016 13:21:22 -0000 Author: garga Date: Sun Jun 12 13:21:20 2016 New Revision: 416802 URL: https://svnweb.freebsd.org/changeset/ports/416802 Log: MFH: r416751 Add a patch to fix sudo bug #743 that causes a bug where it dereference a NULL pointer when it looks up a negative cached entry which is stored as a NULL passwd or group struct pointer PR: 208198 Submitted by: Fredrik Eriksson Obtained from: https://www.sudo.ws/repos/sudo/rev/1d13341d53ec Sponsored by: Rubicon Communications (Netgate) Approved by: ports-secteam (feld) Added: branches/2016Q2/security/sudo/files/patch-fix_bz208198 - copied unchanged from r416751, head/security/sudo/files/patch-fix_bz208198 Modified: branches/2016Q2/security/sudo/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/security/sudo/Makefile ============================================================================== --- branches/2016Q2/security/sudo/Makefile Sun Jun 12 13:19:55 2016 (r416801) +++ branches/2016Q2/security/sudo/Makefile Sun Jun 12 13:21:20 2016 (r416802) @@ -3,6 +3,7 @@ PORTNAME= sudo PORTVERSION= 1.8.16 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SUDO Copied: branches/2016Q2/security/sudo/files/patch-fix_bz208198 (from r416751, head/security/sudo/files/patch-fix_bz208198) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/security/sudo/files/patch-fix_bz208198 Sun Jun 12 13:21:20 2016 (r416802, copy of r416751, head/security/sudo/files/patch-fix_bz208198) @@ -0,0 +1,35 @@ +--- plugins/sudoers/pwutil.c Thu Apr 28 15:27:53 2016 -0600 ++++ plugins/sudoers/pwutil.c Wed May 04 08:55:21 2016 -0600 +@@ -139,8 +139,8 @@ + item = node->data; + sudo_debug_printf(SUDO_DEBUG_DEBUG, + "%s: uid %u [%s] -> user %s [%s] (cache hit)", __func__, +- (unsigned int)uid, key.registry, item->d.pw->pw_name, +- item->registry); ++ (unsigned int)uid, key.registry, ++ item->d.pw ? item->d.pw->pw_name : "unknown", item->registry); + goto done; + } + /* +@@ -202,8 +202,8 @@ + if ((node = rbfind(pwcache_byname, &key)) != NULL) { + item = node->data; + sudo_debug_printf(SUDO_DEBUG_DEBUG, +- "%s: user %s [%s] -> uid %u [%s] (cache hit)", __func__, name, +- key.registry, (unsigned int)item->d.pw->pw_uid, item->registry); ++ "%s: user %s [%s] -> uid %d [%s] (cache hit)", __func__, name, ++ key.registry, item->d.pw ? (int)item->d.pw->pw_uid : -1, item->registry); + goto done; + } + /* +@@ -461,8 +461,8 @@ + item = node->data; + sudo_debug_printf(SUDO_DEBUG_DEBUG, + "%s: gid %u [%s] -> group %s [%s] (cache hit)", __func__, +- (unsigned int)gid, key.registry, item->d.gr->gr_name, +- item->registry); ++ (unsigned int)gid, key.registry, ++ item->d.gr ? item->d.gr->gr_name : "unknown", item->registry); + goto done; + } + /* From owner-svn-ports-branches@freebsd.org Mon Jun 13 15:43: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 C4DECAF06C1; Mon, 13 Jun 2016 15:43:54 +0000 (UTC) (envelope-from jgh@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 923D724A5; Mon, 13 Jun 2016 15:43:54 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5DFhrOM067031; Mon, 13 Jun 2016 15:43:53 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5DFhrh7067030; Mon, 13 Jun 2016 15:43:53 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201606131543.u5DFhrh7067030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Mon, 13 Jun 2016 15:43:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416847 - branches/2016Q2/x11/xlockmore 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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2016 15:43:54 -0000 Author: jgh Date: Mon Jun 13 15:43:53 2016 New Revision: 416847 URL: https://svnweb.freebsd.org/changeset/ports/416847 Log: MFH: r416638 r416686 - add/enable xinerama support (default) - fix for MESAGL /usr/local/include/FTGL/ftgl.h:32:10: fatal error: 'ft2build.h' file not found Reported by: dhw Approved by: ports-secteam (with hat) Modified: branches/2016Q2/x11/xlockmore/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/x11/xlockmore/Makefile ============================================================================== --- branches/2016Q2/x11/xlockmore/Makefile Mon Jun 13 15:22:32 2016 (r416846) +++ branches/2016Q2/x11/xlockmore/Makefile Mon Jun 13 15:43:53 2016 (r416847) @@ -3,6 +3,7 @@ PORTNAME= xlockmore PORTVERSION= 5.46 +PORTREVISION= 1 CATEGORIES?= x11 MASTER_SITES= http://www.tux.org/~bagleyd/xlock/ \ LOCAL/jgh/x11/${PORTNAME}/ @@ -22,7 +23,9 @@ USE_XORG= x11 xaw ice LIB_DEPENDS+= libfreetype.so:print/freetype2 OPTIONS_DEFINE= MESAGL MB SYSLOG DISABLE_ALLOW_ROOT NICE_ONLY BLANK_ONLY \ - KERBEROS4 BAD_PAM GTK2 TIME_BOMB CUSTOMIZATION MAGICK JP + KERBEROS4 BAD_PAM GTK2 TIME_BOMB CUSTOMIZATION MAGICK JP \ + XINERAMA +OPTIONS_DEFAULT= XINERAMA OPTIONS_SUB= yes MESAGL_DESC= Mesa 3D (for GL modes) @@ -64,7 +67,7 @@ KRB5LIB= -L${KRB5_HOME}/lib CONFIGURE_ARGS+= --with-mesa MESALIB= -lpthread USE_GL= yes -CFLAGS+= -I${LOCALBASE}/include/FTGL +CFLAGS+= -I${LOCALBASE}/include/FTGL -I${LOCALBASE}/include/freetype2 .else CONFIGURE_ARGS+= --without-mesa --without-opengl .endif @@ -140,6 +143,10 @@ CONFIGURE_ENV+= XLOCKLIBS="${KRB5LIB} $ CONFIGURE_ARGS+= --disable-allow-root .endif +.if ${PORT_OPTIONS:MXINERAMA} +CONFIGURE_ARGS+= --with-xinerama +.endif + .if ${PORT_OPTIONS:MPAM} && empty(PORT_OPTIONS:MBAD_PAM) pre-extract: @${ECHO} From owner-svn-ports-branches@freebsd.org Mon Jun 13 19:24: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 65520AF2DDF; Mon, 13 Jun 2016 19:24:28 +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 114AE2FCA; Mon, 13 Jun 2016 19:24:27 +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 u5DJOR4p048909; Mon, 13 Jun 2016 19:24:27 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5DJOREL048907; Mon, 13 Jun 2016 19:24:27 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606131924.u5DJOREL048907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 13 Jun 2016 19:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416862 - in branches/2016Q2/security/openssl: . 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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2016 19:24:28 -0000 Author: feld Date: Mon Jun 13 19:24:26 2016 New Revision: 416862 URL: https://svnweb.freebsd.org/changeset/ports/416862 Log: MFH: r416823 - Fix DSA, preserve BN_FLG_CONSTTIME Security: CVE-2016-2178 Approved by: ports-secteam (with hat) Added: branches/2016Q2/security/openssl/files/patch-dsa_ossl.c - copied unchanged from r416823, head/security/openssl/files/patch-dsa_ossl.c Modified: branches/2016Q2/security/openssl/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/security/openssl/Makefile ============================================================================== --- branches/2016Q2/security/openssl/Makefile Mon Jun 13 19:21:32 2016 (r416861) +++ branches/2016Q2/security/openssl/Makefile Mon Jun 13 19:24:26 2016 (r416862) @@ -4,7 +4,7 @@ PORTNAME= openssl PORTVERSION= 1.0.2 DISTVERSIONSUFFIX= h -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/source/ \ ftp://ftp.openssl.org/source/ \ Copied: branches/2016Q2/security/openssl/files/patch-dsa_ossl.c (from r416823, head/security/openssl/files/patch-dsa_ossl.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/security/openssl/files/patch-dsa_ossl.c Mon Jun 13 19:24:26 2016 (r416862, copy of r416823, head/security/openssl/files/patch-dsa_ossl.c) @@ -0,0 +1,35 @@ + +Fix DSA, preserve BN_FLG_CONSTTIME + +Operations in the DSA signing algorithm should run in constant time in +order to avoid side channel attacks. A flaw in the OpenSSL DSA +implementation means that a non-constant time codepath is followed for +certain operations. This has been demonstrated through a cache-timing +attack to be sufficient for an attacker to recover the private DSA key. + +CVE-2016-2178 + +--- crypto/dsa/dsa_ossl.c.orig 2016-05-03 15:44:42.000000000 +0200 ++++ crypto/dsa/dsa_ossl.c 2016-06-12 22:57:49.000000000 +0200 +@@ -248,9 +248,6 @@ + if (!BN_rand_range(&k, dsa->q)) + goto err; + while (BN_is_zero(&k)) ; +- if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0) { +- BN_set_flags(&k, BN_FLG_CONSTTIME); +- } + + if (dsa->flags & DSA_FLAG_CACHE_MONT_P) { + if (!BN_MONT_CTX_set_locked(&dsa->method_mont_p, +@@ -282,6 +279,11 @@ + } else { + K = &k; + } ++ ++ if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0) { ++ BN_set_flags(&k, BN_FLG_CONSTTIME); ++ } ++ + DSA_BN_MOD_EXP(goto err, dsa, r, dsa->g, K, dsa->p, ctx, + dsa->method_mont_p); + if (!BN_mod(r, r, dsa->q, ctx)) From owner-svn-ports-branches@freebsd.org Tue Jun 14 01:50: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 1DEC3AF2224; Tue, 14 Jun 2016 01:50:35 +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 CB1AC2A41; Tue, 14 Jun 2016 01:50:34 +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 u5E1oYlZ089473; Tue, 14 Jun 2016 01:50:34 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5E1oXKj089471; Tue, 14 Jun 2016 01:50:33 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201606140150.u5E1oXKj089471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 14 Jun 2016 01:50:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416874 - branches/2016Q2/security/botan110 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.22 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, 14 Jun 2016 01:50:35 -0000 Author: junovitch Date: Tue Jun 14 01:50:33 2016 New Revision: 416874 URL: https://svnweb.freebsd.org/changeset/ports/416874 Log: MFH: r416873 security/botan110: update 1.10.12 -> 1.10.13 PR: 209594 Reported by: Sevan Janiyan Submitted by: Lapo Luchini (maintainer) Approved by: ports-secteam (with hat) Security: CVE-2015-7827 Security: CVE-2016-2849 Security: https://vuxml.FreeBSD.org/freebsd/ac0900df-31d0-11e6-8e82-002590263bf5.html Modified: branches/2016Q2/security/botan110/Makefile branches/2016Q2/security/botan110/distinfo Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/security/botan110/Makefile ============================================================================== --- branches/2016Q2/security/botan110/Makefile Tue Jun 14 01:49:12 2016 (r416873) +++ branches/2016Q2/security/botan110/Makefile Tue Jun 14 01:50:33 2016 (r416874) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= botan -PORTVERSION= 1.10.12 +PORTVERSION= 1.10.13 CATEGORIES= security MASTER_SITES= http://botan.randombit.net/releases/ PKGNAMESUFFIX= 110 @@ -25,7 +25,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --wit MAKE_ARGS= CXX="${CXX}" LIB_OPT="${CXXFLAGS}" USE_LDCONFIG= yes PLIST_FILES= bin/botan-config-1.10 lib/libbotan-1.10.a lib/libbotan-1.10.so lib/libbotan-1.10.so.1 \ - lib/libbotan-1.10.so.1.12 libdata/pkgconfig/botan-1.10.pc + lib/libbotan-1.10.so.1.13 libdata/pkgconfig/botan-1.10.pc DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= * Modified: branches/2016Q2/security/botan110/distinfo ============================================================================== --- branches/2016Q2/security/botan110/distinfo Tue Jun 14 01:49:12 2016 (r416873) +++ branches/2016Q2/security/botan110/distinfo Tue Jun 14 01:50:33 2016 (r416874) @@ -1,2 +1,3 @@ -SHA256 (Botan-1.10.12.tgz) = affc3a79919577943f896e64d3e4a4dcc4970c5bf80cc98c7f3a3144745eac27 -SIZE (Botan-1.10.12.tgz) = 2707397 +TIMESTAMP = 1465867941 +SHA256 (Botan-1.10.13.tgz) = 23ec973d4b4a4fe04f490d409e08ac5638afe3aa09acd7f520daaff38ba19b90 +SIZE (Botan-1.10.13.tgz) = 2710181 From owner-svn-ports-branches@freebsd.org Tue Jun 14 23:07: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 DB506AF038D; Tue, 14 Jun 2016 23:07:35 +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 B1B412039; Tue, 14 Jun 2016 23:07:35 +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 u5EN7Y85060475; Tue, 14 Jun 2016 23:07:34 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5EN7Y8F060471; Tue, 14 Jun 2016 23:07:34 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201606142307.u5EN7Y8F060471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 14 Jun 2016 23:07:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416912 - in branches/2016Q2/dns: bind910 bind99 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.22 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, 14 Jun 2016 23:07:36 -0000 Author: mat Date: Tue Jun 14 23:07:34 2016 New Revision: 416912 URL: https://svnweb.freebsd.org/changeset/ports/416912 Log: MFH: r412619 r412619 r415831 r415882 Mainly: update to 9.9.9-P1 and 9.10.4-P1. There are bug fixes and small security issues that need addressing. Sponsored by: Absolight Modified: branches/2016Q2/dns/bind910/Makefile branches/2016Q2/dns/bind910/distinfo branches/2016Q2/dns/bind99/Makefile branches/2016Q2/dns/bind99/distinfo Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/dns/bind910/Makefile ============================================================================== --- branches/2016Q2/dns/bind910/Makefile Tue Jun 14 21:19:10 2016 (r416911) +++ branches/2016Q2/dns/bind910/Makefile Tue Jun 14 23:07:34 2016 (r416912) @@ -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-P4 +ISCVERSION= 9.10.4-P1 MAKE_JOBS_UNSAFE= yes @@ -49,6 +49,7 @@ CONFIGURE_ARGS+= --localstatedir=/var -- --with-randomdev=/dev/random \ --with-libxml2=${LOCALBASE} \ --with-readline=-ledit \ + --with-dlopen=yes \ --sysconfdir=${ETCDIR} .if defined(BIND_TOOLS_SLAVE) CONFIGURE_ARGS+= --disable-shared @@ -69,7 +70,7 @@ OPTIONS_RADIO_CRYPTO= SSL NATIVE_PKCS11 OPTIONS_RADIO_GOSTDEF= GOST GOST_ASN1 .if !defined(BIND_TOOLS_SLAVE) -OPTIONS_DEFAULT+= RRL +OPTIONS_DEFAULT+= RRL DLZ_FILESYSTEM OPTIONS_DEFINE+= LINKS RPZ_NSIP RPZ_NSDNAME RRL DOCS NEWSTATS GEOIP \ MINCACHE PORTREVISION FETCHLIMIT QUERYTRACE OPTIONS_GROUP= DLZ @@ -219,15 +220,9 @@ SUB_LIST+= NOBASE="" BASE="@comment " USE_RC_SUBR+= named SUB_FILES+= named.conf .endif # !defined(BIND_TOOLS_SLAVE) -.if ${PORT_OPTIONS:MGOST} || ${PORT_OPTIONS:MGOST_ASN1} -WITH_OPENSSL_PORT=yes -.endif .else PLIST_SUB+= NOBASE="@comment " BASE="" SUB_LIST+= NOBASE="@comment " BASE="" -.if ${PORT_OPTIONS:MSSL} -WITH_OPENSSL_PORT= yes -.endif .endif PKGDEINSTALL= ${PKGINSTALL} @@ -235,6 +230,14 @@ PKGDEINSTALL= ${PKGINSTALL} PORTDOCS= * +.include + +.if ( ${PORT_OPTIONS:MGOST} || ${PORT_OPTIONS:MGOST_ASN1} ) && defined(WITH_OPENSSL_BASE) +BROKEN= OpenSSL from the base system does not support GOST, add \ + WITH_OPENSSL_PORT=yes to your /etc/make.conf and rebuild everything \ + that needs SSL. +.endif + post-patch: @${REINPLACE_CMD} -e 's|readline/readline.h|editline/readline.h|; \ s|readline/history.h|histedit.h|' \ @@ -293,4 +296,4 @@ post-install: .endif # BIND_TOOLS_SLAVE -.include +.include Modified: branches/2016Q2/dns/bind910/distinfo ============================================================================== --- branches/2016Q2/dns/bind910/distinfo Tue Jun 14 21:19:10 2016 (r416911) +++ branches/2016Q2/dns/bind910/distinfo Tue Jun 14 23:07:34 2016 (r416912) @@ -1,2 +1,3 @@ -SHA256 (bind-9.10.3-P4.tar.gz) = 2ac044b5fbdf45fb45107af0df961b3b7cb5262a3bf1948ed3fe7a170dd13e3e -SIZE (bind-9.10.3-P4.tar.gz) = 8529535 +TIMESTAMP = 1464252479 +SHA256 (bind-9.10.4-P1.tar.gz) = 7c3b7d1afe48a6bbead8f11f6971fb09eb57fa257dc32a088fcc20a0218131a2 +SIZE (bind-9.10.4-P1.tar.gz) = 9293605 Modified: branches/2016Q2/dns/bind99/Makefile ============================================================================== --- branches/2016Q2/dns/bind99/Makefile Tue Jun 14 21:19:10 2016 (r416911) +++ branches/2016Q2/dns/bind99/Makefile Tue Jun 14 23:07:34 2016 (r416912) @@ -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-P4 +ISCVERSION= 9.9.9-P1 MAKE_JOBS_UNSAFE= yes @@ -35,6 +35,7 @@ CONFIGURE_ARGS= --localstatedir=/var --d --with-randomdev=/dev/random \ --with-libxml2=${LOCALBASE} \ --with-readline=-ledit \ + --with-dlopen=yes \ --sysconfdir=${ETCDIR} ETCDIR= ${PREFIX}/etc/namedb @@ -42,7 +43,7 @@ CONFLICTS= bind9*-9.[45678].* bind9*-sdb SUB_FILES= pkg-message -OPTIONS_DEFAULT= IPV6 SSL THREADS SIGCHASE IDN GSSAPI_NONE RRL +OPTIONS_DEFAULT= SSL THREADS SIGCHASE IDN GSSAPI_NONE RRL DLZ_FILESYSTEM OPTIONS_DEFINE= SSL IDN REPLACE_BASE LARGE_FILE FIXED_RRSET SIGCHASE \ IPV6 THREADS FILTER_AAAA GOST PYTHON START_LATE MINCACHE \ LINKS RPZ_NSIP RPZ_NSDNAME RRL DOCS RPZ_PATCH NEWSTATS \ @@ -179,21 +180,23 @@ PLIST_SUB+= NOBASE="" BASE="@comment " SUB_LIST+= NOBASE="" BASE="@comment " USE_RC_SUBR+= named SUB_FILES+= named.conf -.if ${PORT_OPTIONS:MGOST} -WITH_OPENSSL_PORT=yes -.endif .else PLIST_SUB+= NOBASE="@comment " BASE="" SUB_LIST+= NOBASE="@comment " BASE="" -.if ${PORT_OPTIONS:MSSL} -WITH_OPENSSL_PORT= yes -.endif .endif PKGDEINSTALL= ${PKGINSTALL} PORTDOCS= * +.include + +.if ( ${PORT_OPTIONS:MGOST} ) && defined(WITH_OPENSSL_BASE) +BROKEN= OpenSSL from the base system does not support GOST, add \ + WITH_OPENSSL_PORT=yes to your /etc/make.conf and rebuild everything \ + that needs SSL. +.endif + post-patch: @${REINPLACE_CMD} -e 's|readline/readline.h|editline/readline.h|; \ s|readline/history.h|histedit.h|' \ @@ -241,4 +244,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/bin/rndc/rndc.conf \ ${STAGEDIR}${ETCDIR}/rndc.conf.sample -.include +.include Modified: branches/2016Q2/dns/bind99/distinfo ============================================================================== --- branches/2016Q2/dns/bind99/distinfo Tue Jun 14 21:19:10 2016 (r416911) +++ branches/2016Q2/dns/bind99/distinfo Tue Jun 14 23:07:34 2016 (r416912) @@ -1,4 +1,5 @@ -SHA256 (bind-9.9.8-P4.tar.gz) = 5ed0b852e4d1dc90e10751c7fa70a9ee29a619bad61d97250eac8161009d89f2 -SIZE (bind-9.9.8-P4.tar.gz) = 7999697 -SHA256 (9.9.8-P4-rpz2+rl.14038.05.patch.xz) = 5415559171c03a9a02e31284552a4888911eeb692d57def8d631b7d0564dc5f0 -SIZE (9.9.8-P4-rpz2+rl.14038.05.patch.xz) = 39240 +TIMESTAMP = 1464252734 +SHA256 (bind-9.9.9-P1.tar.gz) = 9bcc76b8cbee2e64210e80fc6b57a8e8ff07780f994f87d5a2aa312cdfa24aa4 +SIZE (bind-9.9.9-P1.tar.gz) = 8758793 +SHA256 (9.9.9-P1-rpz2+rl.14038.05.patch.xz) = 230ab0dbf30e8cf956ea6557d00046618abe158cb2fc3c2204c021ace58e5588 +SIZE (9.9.9-P1-rpz2+rl.14038.05.patch.xz) = 39284 From owner-svn-ports-branches@freebsd.org Wed Jun 15 11:08: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 998F8A31239; Wed, 15 Jun 2016 11:08:51 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 640E91ABD; Wed, 15 Jun 2016 11:08:51 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5FB8oec026345; Wed, 15 Jun 2016 11:08:50 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5FB8o39026343; Wed, 15 Jun 2016 11:08:50 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201606151108.u5FB8o39026343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 15 Jun 2016 11:08:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416923 - branches/2016Q2/security/libressl 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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2016 11:08:51 -0000 Author: brnrd Date: Wed Jun 15 11:08:50 2016 New Revision: 416923 URL: https://svnweb.freebsd.org/changeset/ports/416923 Log: security/libressl: Update to 2.2.9 Submitted by: Piotr Kubaj Reviewed by: brnrd Approved by: ports-secteam (feld) Security: 6f0529e2-2e82-11e6-b2ec-b499baebfeaf Security: CVE-2016-2178 Modified: branches/2016Q2/security/libressl/Makefile branches/2016Q2/security/libressl/distinfo Modified: branches/2016Q2/security/libressl/Makefile ============================================================================== --- branches/2016Q2/security/libressl/Makefile Wed Jun 15 10:14:15 2016 (r416922) +++ branches/2016Q2/security/libressl/Makefile Wed Jun 15 11:08:50 2016 (r416923) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libressl -PORTVERSION= 2.2.7 +PORTVERSION= 2.2.9 CATEGORIES= security devel MASTER_SITES= OPENBSD/LibreSSL Modified: branches/2016Q2/security/libressl/distinfo ============================================================================== --- branches/2016Q2/security/libressl/distinfo Wed Jun 15 10:14:15 2016 (r416922) +++ branches/2016Q2/security/libressl/distinfo Wed Jun 15 11:08:50 2016 (r416923) @@ -1,2 +1,2 @@ -SHA256 (libressl-2.2.7.tar.gz) = 7e2c68b383bba8efb7dce5ea1eccfda77048547d1d2a7355c072efd7ccd893cd -SIZE (libressl-2.2.7.tar.gz) = 2958862 +SHA256 (libressl-2.2.9.tar.gz) = 710ff377ea83637239d5010f4d261f5f91c7fdce91a38974149acd03e45c4c44 +SIZE (libressl-2.2.9.tar.gz) = 2959045 From owner-svn-ports-branches@freebsd.org Wed Jun 15 11:10:25 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 7FB71A31380; Wed, 15 Jun 2016 11:10:25 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 513461BFC; Wed, 15 Jun 2016 11:10:25 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5FBAO7O026522; Wed, 15 Jun 2016 11:10:24 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5FBAOvr026520; Wed, 15 Jun 2016 11:10:24 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201606151110.u5FBAOvr026520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 15 Jun 2016 11:10:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416924 - branches/2016Q2/security/libressl-devel 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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jun 2016 11:10:25 -0000 Author: brnrd Date: Wed Jun 15 11:10:24 2016 New Revision: 416924 URL: https://svnweb.freebsd.org/changeset/ports/416924 Log: security/libressl-devel: Update to 2.3.6 Approved by: ports-secteam (feld) Security: 6f0529e2-2e82-11e6-b2ec-b499baebfeaf Security: 01d729ca-1143-11e6-b55e-b499baebfeaf Modified: branches/2016Q2/security/libressl-devel/Makefile branches/2016Q2/security/libressl-devel/distinfo Modified: branches/2016Q2/security/libressl-devel/Makefile ============================================================================== --- branches/2016Q2/security/libressl-devel/Makefile Wed Jun 15 11:08:50 2016 (r416923) +++ branches/2016Q2/security/libressl-devel/Makefile Wed Jun 15 11:10:24 2016 (r416924) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libressl -PORTVERSION= 2.3.3 +PORTVERSION= 2.3.6 CATEGORIES= security devel MASTER_SITES= OPENBSD/LibreSSL PKGNAMESUFFIX= -devel Modified: branches/2016Q2/security/libressl-devel/distinfo ============================================================================== --- branches/2016Q2/security/libressl-devel/distinfo Wed Jun 15 11:08:50 2016 (r416923) +++ branches/2016Q2/security/libressl-devel/distinfo Wed Jun 15 11:10:24 2016 (r416924) @@ -1,2 +1,2 @@ -SHA256 (libressl-2.3.3.tar.gz) = 76733166187cc8587e0ebe1e83965ef257262a1a676a36806edd3b6d51b50aa9 -SIZE (libressl-2.3.3.tar.gz) = 3019069 +SHA256 (libressl-2.3.6.tar.gz) = 358a4779e6813bd06f07db0cf0f0fe531401ed0c6ed958973d404416c3d537fa +SIZE (libressl-2.3.6.tar.gz) = 3013459 From owner-svn-ports-branches@freebsd.org Fri Jun 17 01:33:16 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 25DA3A47077; Fri, 17 Jun 2016 01:33:16 +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 DC775167C; Fri, 17 Jun 2016 01:33:15 +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 u5H1XFkW047915; Fri, 17 Jun 2016 01:33:15 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5H1XEiY047912; Fri, 17 Jun 2016 01:33:14 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201606170133.u5H1XEiY047912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 17 Jun 2016 01:33:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r416990 - branches/2016Q2/www/drupal7 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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jun 2016 01:33:16 -0000 Author: junovitch Date: Fri Jun 17 01:33:14 2016 New Revision: 416990 URL: https://svnweb.freebsd.org/changeset/ports/416990 Log: MFH: r416328 r416557 (partial, leave out USES=mysql conversion) r416989 www/drupal7: update 7.43 -> 7.44 [1] - Reset maintainer by his own request [2] - Fix license - Pet portlint PR: 210317 [1] PR: 209998 [2] Approved by: ports-secteam (with hat) Submitted by: Vladimir Krstulja [1] Submitted by: simon.wright@gmx.net (maintainer) [2] Security: https://vuxml.FreeBSD.org/freebsd/7932548e-3427-11e6-8e82-002590263bf5.html Modified: branches/2016Q2/www/drupal7/Makefile branches/2016Q2/www/drupal7/distinfo branches/2016Q2/www/drupal7/pkg-plist Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/www/drupal7/Makefile ============================================================================== --- branches/2016Q2/www/drupal7/Makefile Fri Jun 17 01:12:39 2016 (r416989) +++ branches/2016Q2/www/drupal7/Makefile Fri Jun 17 01:33:14 2016 (r416990) @@ -2,17 +2,16 @@ # $FreeBSD$ PORTNAME= drupal7 -PORTVERSION= 7.43 +PORTVERSION= 7.44 CATEGORIES= www MASTER_SITES= http://ftp.drupal.org/files/projects/ DISTNAME= drupal-${PORTVERSION} DIST_SUBDIR= drupal -MAINTAINER= simon.wright@gmx.net +MAINTAINER= ports@FreeBSD.org COMMENT= Database driven web content management system (CMS) -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual +LICENSE= GPLv2+ USES= drupal:7 shebangfix SHEBANG_FILES= scripts/password-hash.sh @@ -20,15 +19,15 @@ SHEBANG_FILES= scripts/password-hash.sh USE_PHP= dom filter gd hash json mbstring pcre pdo session simplexml xml WANT_PHP_WEB= yes -OPTIONS_DEFINE= MYSQL SQLITE3 PGSQL DOCS -OPTIONS_DEFAULT= MYSQL - NO_ARCH= yes NO_BUILD= yes DOCS= CHANGELOG.txt INSTALL.mysql.txt INSTALL.sqlite.txt \ LICENSE.txt README.txt COPYRIGHT.txt INSTALL.pgsql.txt \ INSTALL.txt MAINTAINERS.txt UPGRADE.txt +OPTIONS_DEFINE= MYSQL SQLITE3 PGSQL DOCS +OPTIONS_DEFAULT= MYSQL + SUB_FILES+= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message @@ -46,7 +45,7 @@ USE_PHP+= pdo_mysql .endif do-install: - ${MKDIR} ${STAGEDIR}${DRUPAL_DIR} + @${MKDIR} ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/.htaccess ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/cron.php ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/authorize.php ${STAGEDIR}${DRUPAL_DIR} @@ -58,20 +57,20 @@ do-install: ${CP} -R ${WRKSRC}/profiles ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/robots.txt ${STAGEDIR}${DRUPAL_DIR} ${CP} -R ${WRKSRC}/scripts ${STAGEDIR}${DRUPAL_DIR} - ${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/all - ${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/all/libraries + @${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/all + @${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/all/libraries ${CP} ${WRKSRC}/sites/example.sites.php ${STAGEDIR}${DRUPAL_DIR}/sites/ ${CP} -R ${WRKSRC}/sites/all ${STAGEDIR}${DRUPAL_DIR}/sites/ - ${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/default - ${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/default/files + @${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/default + @${MKDIR} ${STAGEDIR}${DRUPAL_DIR}/sites/default/files ${CP} ${WRKSRC}/sites/default/default.settings.php ${STAGEDIR}${DRUPAL_DIR}/sites/default/default.settings.php.sample ${CP} -R ${WRKSRC}/themes ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/update.php ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/web.config ${STAGEDIR}${DRUPAL_DIR} ${CP} ${WRKSRC}/xmlrpc.php ${STAGEDIR}${DRUPAL_DIR} -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${CP} ${DOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} -.endif + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Modified: branches/2016Q2/www/drupal7/distinfo ============================================================================== --- branches/2016Q2/www/drupal7/distinfo Fri Jun 17 01:12:39 2016 (r416989) +++ branches/2016Q2/www/drupal7/distinfo Fri Jun 17 01:33:14 2016 (r416990) @@ -1,2 +1,3 @@ -SHA256 (drupal/drupal-7.43.tar.gz) = 468c1e5864ad6a86e760108f0cb0eac6bf004a198c49e77117b99af31e31b16a -SIZE (drupal/drupal-7.43.tar.gz) = 3265824 +TIMESTAMP = 1466072639 +SHA256 (drupal/drupal-7.44.tar.gz) = a62971d20edd4ffd4c6dd03eb5fe3d213777d3807f48b7399bb73688dfd4bc5a +SIZE (drupal/drupal-7.44.tar.gz) = 3265819 Modified: branches/2016Q2/www/drupal7/pkg-plist ============================================================================== --- branches/2016Q2/www/drupal7/pkg-plist Fri Jun 17 01:12:39 2016 (r416989) +++ branches/2016Q2/www/drupal7/pkg-plist Fri Jun 17 01:33:14 2016 (r416990) @@ -1101,5 +1101,5 @@ @dir %%DRUPAL_BASE%%/sites/all/libraries @dir %%DRUPAL_BASE%%/sites/default/files @unexec rm -f %%DRUPAL_BASE%%/files/.htaccess 2> /dev/null || true -@owner root -@group wheel +@owner +@group From owner-svn-ports-branches@freebsd.org Sat Jun 18 05:00: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 71A7FA795ED; Sat, 18 Jun 2016 05:00: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 3EE0211BE; Sat, 18 Jun 2016 05:00: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 u5I50nuK069767; Sat, 18 Jun 2016 05:00:49 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5I50ngB069766; Sat, 18 Jun 2016 05:00:49 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201606180500.u5I50ngB069766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 18 Jun 2016 05:00:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r417046 - branches/2016Q2/deskutils/charmap 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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jun 2016 05:00:50 -0000 Author: riggs Date: Sat Jun 18 05:00:49 2016 New Revision: 417046 URL: https://svnweb.freebsd.org/changeset/ports/417046 Log: MFH: r417045 Unbreak build, distfile is available at different location PR: 210034 Submitted by: lightside@gmx.com Approved by: ports-secteam (build fix blanket) Modified: branches/2016Q2/deskutils/charmap/Makefile Directory Properties: branches/2016Q2/ (props changed) Modified: branches/2016Q2/deskutils/charmap/Makefile ============================================================================== --- branches/2016Q2/deskutils/charmap/Makefile Sat Jun 18 04:52:26 2016 (r417045) +++ branches/2016Q2/deskutils/charmap/Makefile Sat Jun 18 05:00:49 2016 (r417046) @@ -5,18 +5,15 @@ PORTNAME= charmap PORTVERSION= 0.2 PORTREVISION= 5 CATEGORIES= deskutils gnustep -MASTER_SITES= SAVANNAH +MASTER_SITES= http://www.sourcefiles.org/Utilities/GUI/ MAINTAINER= ports@FreeBSD.org COMMENT= Character map for GNUstep -BROKEN= unfetchable - LICENSE= GPLv2 -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= gnustep -USE_GNUSTEP= back build +USE_GNUSTEP= back base build gui post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Charmap.app/Charmap From owner-svn-ports-branches@freebsd.org Sat Jun 18 14:39: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 8C9FDA78C37; Sat, 18 Jun 2016 14:39:51 +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 4832F1871; Sat, 18 Jun 2016 14:39:51 +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 u5IEdoEp084584; Sat, 18 Jun 2016 14:39:50 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5IEdo24084583; Sat, 18 Jun 2016 14:39:50 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201606181439.u5IEdo24084583@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 18 Jun 2016 14:39:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r417065 - branches/2016Q2/math/blitz++/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.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Jun 2016 14:39:51 -0000 Author: jbeich Date: Sat Jun 18 14:39:50 2016 New Revision: 417065 URL: https://svnweb.freebsd.org/changeset/ports/417065 Log: MFH: r416999 math/blitz++: unbreak build on 11.0 and dragonfly ./arrays-expr.texi:718: unknown command `erf' PR: 199527 Reported by: pkg-fallout Approved by: maintainer timeout (1 year) Approved by: ports-secteam (feld) Added: branches/2016Q2/math/blitz++/files/patch-doc-arrays-expr.texi - copied unchanged from r416999, head/math/blitz++/files/patch-doc-arrays-expr.texi Modified: Directory Properties: branches/2016Q2/ (props changed) Copied: branches/2016Q2/math/blitz++/files/patch-doc-arrays-expr.texi (from r416999, head/math/blitz++/files/patch-doc-arrays-expr.texi) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q2/math/blitz++/files/patch-doc-arrays-expr.texi Sat Jun 18 14:39:50 2016 (r417065, copy of r416999, head/math/blitz++/files/patch-doc-arrays-expr.texi) @@ -0,0 +1,16 @@ +--- doc/arrays-expr.texi.orig 2003-01-21 11:01:03 UTC ++++ doc/arrays-expr.texi +@@ -714,13 +714,8 @@ Computes the error function: + @tex + $$ {\rm erf}(x) = {2\over\sqrt\pi}\int_{0}^{x} e^{-t^2} dt $$ + @end tex +-@html +-@erf(x) = 2/sqrt(Pi) * integral(exp(-t^2), t=0..x) +-@end html + @ifnottex +-@ifnothtml + @math{@r{erf}(x) = 2/@r{sqrt}(Pi) * @r{integral}(@r{exp}(-t^2), t=0..x)} +-@end ifnothtml + @end ifnottex + + Note that for large values of the parameter, calculating can result in