From owner-svn-ports-branches@freebsd.org Sun Jul 2 03:17:16 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABDA9D9B3F1; Sun, 2 Jul 2017 03:17:16 +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 7A7E87D194; Sun, 2 Jul 2017 03:17:16 +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 v623HFnA066798; Sun, 2 Jul 2017 03:17:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v623HFh3066796; Sun, 2 Jul 2017 03:17:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707020317.v623HFh3066796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 2 Jul 2017 03:17:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444863 - in branches/2017Q2/devel/glib20: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q2/devel/glib20: . files X-SVN-Commit-Revision: 444863 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 02 Jul 2017 03:17:16 -0000 Author: jbeich Date: Sun Jul 2 03:17:15 2017 New Revision: 444863 URL: https://svnweb.freebsd.org/changeset/ports/444863 Log: MFH: r444811 devel/glib20: fix symlink writing $ gio save testfile < /etc/shells $ ln -s testfile testlink $ gio save testlink < /etc/shells gio: file:///path/to/testlink: Error opening file '/path/to/testlink': Too many links PR: 212572 Reported by: Yuri Victorovich Submitted by: Ting-Wei Lan Approved by: maintainer timeout (3 weeks) Approved by: ports-secteam (feld) Added: branches/2017Q2/devel/glib20/files/patch-gio_glocalfileoutputstream.c - copied unchanged from r444811, head/devel/glib20/files/patch-gio_glocalfileoutputstream.c Modified: branches/2017Q2/devel/glib20/Makefile Directory Properties: branches/2017Q2/ (props changed) Modified: branches/2017Q2/devel/glib20/Makefile ============================================================================== --- branches/2017Q2/devel/glib20/Makefile Sun Jul 2 02:49:24 2017 (r444862) +++ branches/2017Q2/devel/glib20/Makefile Sun Jul 2 03:17:15 2017 (r444863) @@ -3,7 +3,7 @@ PORTNAME= glib PORTVERSION= 2.46.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Copied: branches/2017Q2/devel/glib20/files/patch-gio_glocalfileoutputstream.c (from r444811, head/devel/glib20/files/patch-gio_glocalfileoutputstream.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q2/devel/glib20/files/patch-gio_glocalfileoutputstream.c Sun Jul 2 03:17:15 2017 (r444863, copy of r444811, head/devel/glib20/files/patch-gio_glocalfileoutputstream.c) @@ -0,0 +1,38 @@ +From 45d4b59e3f7ef7b41db08f0c11ee5000126cfedb Mon Sep 17 00:00:00 2001 +From: Ting-Wei Lan +Date: Sun, 4 Dec 2016 15:02:54 +0800 +Subject: [PATCH] glocalfileoutputstream: Fix symlink writing on FreeBSD and + NetBSD + +FreeBSD, DragonflyBSD and NetBSD support O_NOFOLLOW, but they use error +numbers that are different from what POSIX standard specifies. They are +not going to change the behavior, and existing programs on these systems +already take advantage of this difference. To support them, we have to +add a check in GIO to use different error numbers on these systems. + +https://bugzilla.gnome.org/show_bug.cgi?id=775593 +--- + gio/glocalfileoutputstream.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git a/gio/glocalfileoutputstream.c b/gio/glocalfileoutputstream.c +index 81184a671..4b3733cce 100644 +--- gio/glocalfileoutputstream.c ++++ gio/glocalfileoutputstream.c +@@ -763,7 +763,13 @@ handle_overwrite_open (const char *filename, + #ifdef O_NOFOLLOW + is_symlink = FALSE; + fd = g_open (filename, open_flags | O_NOFOLLOW, mode); ++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) ++ if (fd == -1 && errno == EMLINK) ++#elif defined(__NetBSD__) ++ if (fd == -1 && errno == EFTYPE) ++#else + if (fd == -1 && errno == ELOOP) ++#endif + { + /* Could be a symlink, or it could be a regular ELOOP error, + * but then the next open will fail too. */ +-- +2.13.0 + From owner-svn-ports-branches@freebsd.org Sun Jul 2 03:29:06 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B644BD9B700; Sun, 2 Jul 2017 03:29:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8150C7D57B; Sun, 2 Jul 2017 03:29:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v623T5Dc070912; Sun, 2 Jul 2017 03:29:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v623T5LC070910; Sun, 2 Jul 2017 03:29:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707020329.v623T5LC070910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 2 Jul 2017 03:29:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444864 - branches/2017Q3/multimedia/mpc-qt X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/multimedia/mpc-qt X-SVN-Commit-Revision: 444864 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 02 Jul 2017 03:29:06 -0000 Author: jbeich Date: Sun Jul 2 03:29:05 2017 New Revision: 444864 URL: https://svnweb.freebsd.org/changeset/ports/444864 Log: MFH: r444829 multimedia/mpc-qt: switch to a nearby tag The new versioning scheme is based on "git describe --tags". Changes: https://github.com/cmdrkotori/mpc-qt/compare/8835b7f...v17.07 Approved by: ports-secteam (feld) Modified: branches/2017Q3/multimedia/mpc-qt/Makefile branches/2017Q3/multimedia/mpc-qt/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/multimedia/mpc-qt/Makefile ============================================================================== --- branches/2017Q3/multimedia/mpc-qt/Makefile Sun Jul 2 03:17:15 2017 (r444863) +++ branches/2017Q3/multimedia/mpc-qt/Makefile Sun Jul 2 03:29:05 2017 (r444864) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= mpc-qt -DISTVERSION= 0.0.0.s20170630 +DISTVERSIONPREFIX= v +DISTVERSION= 17.07 CATEGORIES= multimedia audio MASTER_SITES= https://aur.archlinux.org/cgit/aur.git/plain/${PORTNAME}.desktop?h=${PORTNAME}-git&id=b1a6b91&dummy=/:desktop DISTFILES= ${PORTNAME}.desktop:desktop @@ -16,7 +17,6 @@ LIB_DEPENDS= libmpv.so:multimedia/mpv USE_GITHUB= yes GH_ACCOUNT= cmdrkotori -GH_TAGNAME= 8835b7f USES= compiler:c++11-lib desktop-file-utils pkgconfig qmake USE_QT5= qmake_build buildtools_build linguisttools_build \ Modified: branches/2017Q3/multimedia/mpc-qt/distinfo ============================================================================== --- branches/2017Q3/multimedia/mpc-qt/distinfo Sun Jul 2 03:17:15 2017 (r444863) +++ branches/2017Q3/multimedia/mpc-qt/distinfo Sun Jul 2 03:29:05 2017 (r444864) @@ -1,5 +1,5 @@ -TIMESTAMP = 1498827920 +TIMESTAMP = 1498905276 SHA256 (mpc-qt.desktop) = 7694745aac0e52c050a6bc069a0686b025e509136919d985d3c4495eec0f1c9d SIZE (mpc-qt.desktop) = 1270 -SHA256 (cmdrkotori-mpc-qt-0.0.0.s20170630-8835b7f_GH0.tar.gz) = 42884c58ad3062498d11a976f6b8332cfafefe6e2a808609651680e416708333 -SIZE (cmdrkotori-mpc-qt-0.0.0.s20170630-8835b7f_GH0.tar.gz) = 156577 +SHA256 (cmdrkotori-mpc-qt-v17.07_GH0.tar.gz) = dd3515ecafa72b0722fe416963d84ce77e146ac67333948864e72b183af3ddae +SIZE (cmdrkotori-mpc-qt-v17.07_GH0.tar.gz) = 156689 From owner-svn-ports-branches@freebsd.org Sun Jul 2 22:32:10 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F26C9B0BDF; Sun, 2 Jul 2017 22:32:10 +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 6B59B7907A; Sun, 2 Jul 2017 22:32:10 +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 v62MW9XQ043294; Sun, 2 Jul 2017 22:32:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v62MW9Pn043291; Sun, 2 Jul 2017 22:32:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707022232.v62MW9Pn043291@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 2 Jul 2017 22:32:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444903 - in branches/2017Q3/devel/android-tools-adb-devel: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3/devel/android-tools-adb-devel: . files X-SVN-Commit-Revision: 444903 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 02 Jul 2017 22:32:10 -0000 Author: jbeich Date: Sun Jul 2 22:32:09 2017 New Revision: 444903 URL: https://svnweb.freebsd.org/changeset/ports/444903 Log: MFH: r444902 devel/android-tools-adb-devel: unbreak TEST=on [ RUN ] logging.DCHECK adb/../base/logging_test.cpp:89: Failure Death test: {SuppressAbortUI(); if (::android::base::kEnableDChecks) (__builtin_expect( ((false)) != 0, true )) || (false) || ::android::base::LogMessage( "adb/../base/logging_test.cpp", 89, ::android::base::DEFAULT, ::android::base::FATAL, -1).stream() << "Check failed: " "false" << " ";} Result: died but not with expected error. Expected: DCheck failed: false Actual msg: [ DEATH ] adb_test F 07-02 17:11:02 69537 100707 logging_test.cpp:89] Check failed: false [ DEATH ] [ FAILED ] logging.DCHECK (1 ms) [ RUN ] file.ReadFileToString_WriteStringToFile_symlink adb/../base/file_test.cpp:55: Failure Expected: 62 To be equal to: (* __error()) Which is: 31 [ FAILED ] file.ReadFileToString_WriteStringToFile_symlink (0 ms) [ RUN ] file.Readlink adb/../base/file_test.cpp:148: Failure Expected: 0 To be equal to: symlink(max.c_str(), max_path.c_str()) Which is: -1 [ FAILED ] file.Readlink (0 ms) Approved by: ports-secteam blanket Added: branches/2017Q3/devel/android-tools-adb-devel/files/patch-base_file__test.cpp - copied unchanged from r444902, head/devel/android-tools-adb-devel/files/patch-base_file__test.cpp Modified: branches/2017Q3/devel/android-tools-adb-devel/Makefile branches/2017Q3/devel/android-tools-adb-devel/files/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/android-tools-adb-devel/Makefile ============================================================================== --- branches/2017Q3/devel/android-tools-adb-devel/Makefile Sun Jul 2 22:29:33 2017 (r444902) +++ branches/2017Q3/devel/android-tools-adb-devel/Makefile Sun Jul 2 22:32:09 2017 (r444903) @@ -17,15 +17,13 @@ GH_MYTAG= ${DISTVERSIONPREFIX}${DISTVERSION:C/-[0-9]*$ USES= compiler:c++14-lang -OPTIONS_DEFAULT=MDNSRESPONDER OPTIONS_DEFINE= MDNSRESPONDER TEST_PYTHON +OPTIONS_DEFAULT=MDNSRESPONDER MDNSRESPONDER_LIB_DEPENDS= libdns_sd.so:net/mDNSResponder MDNSRESPONDER_USES= localbase:ldflags MDNSRESPONDER_LDFLAGS= -ldns_sd MDNSRESPONDER_MAKE_ENV_OFF= MDNSEXT=_unsupported - -TEST_BROKEN= logging.* tests always fail after 4e5fd111d84d TEST_PYTHON_DESC= ${TEST_DESC:S/tests/python &/} TEST_PYTHON_GH_PROJECT= platform_development:development Modified: branches/2017Q3/devel/android-tools-adb-devel/files/Makefile ============================================================================== --- branches/2017Q3/devel/android-tools-adb-devel/files/Makefile Sun Jul 2 22:29:33 2017 (r444902) +++ branches/2017Q3/devel/android-tools-adb-devel/files/Makefile Sun Jul 2 22:32:09 2017 (r444903) @@ -68,6 +68,7 @@ TEST_SRCS+= stringprintf_test.cpp TEST_SRCS+= strings_test.cpp TEST_SRCS+= test_main.cpp TEST_SRCS+= test_utils.cpp +CPPFLAGS.logging_test.cpp+= -DNDEBUG # XXX DCHECK vs. timestamps .PATH: ${.CURDIR}/../libcrypto_utils SRCS+= android_pubkey.c Copied: branches/2017Q3/devel/android-tools-adb-devel/files/patch-base_file__test.cpp (from r444902, head/devel/android-tools-adb-devel/files/patch-base_file__test.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/devel/android-tools-adb-devel/files/patch-base_file__test.cpp Sun Jul 2 22:32:09 2017 (r444903, copy of r444902, head/devel/android-tools-adb-devel/files/patch-base_file__test.cpp) @@ -0,0 +1,42 @@ +--- base/file_test.cpp.orig 2017-06-20 10:50:27 UTC ++++ base/file_test.cpp +@@ -52,12 +52,20 @@ TEST(file, ReadFileToString_WriteStringToFile_symlink) + ASSERT_EQ(0, unlink(link.path)); + ASSERT_EQ(0, symlink(target.path, link.path)); + ASSERT_FALSE(android::base::WriteStringToFile("foo", link.path, false)); ++#ifdef __linux__ + ASSERT_EQ(ELOOP, errno); ++#else ++ ASSERT_EQ(EMLINK, errno); ++#endif + ASSERT_TRUE(android::base::WriteStringToFile("foo", link.path, true)); + + std::string s; + ASSERT_FALSE(android::base::ReadFileToString(link.path, &s)); ++#ifdef __linux__ + ASSERT_EQ(ELOOP, errno); ++#else ++ ASSERT_EQ(EMLINK, errno); ++#endif + ASSERT_TRUE(android::base::ReadFileToString(link.path, &s, true)); + ASSERT_EQ("foo", s); + } +@@ -131,6 +139,7 @@ TEST(file, RemoveFileIfExist) { + + TEST(file, Readlink) { + #if !defined(_WIN32) ++#ifdef __linux__ + // Linux doesn't allow empty symbolic links. + std::string min("x"); + // ext2 and ext4 both have PAGE_SIZE limits. +@@ -139,6 +148,10 @@ TEST(file, Readlink) { + // in current kernels (and marlin/sailfish where we're seeing this + // failure are still on 3.18, far from current). http://b/33306057. + std::string max(static_cast(4096 - 2 - 1 - 1), 'x'); ++#else ++ std::string min(""); ++ std::string max(static_cast(1024 - 1), 'x'); ++#endif + + TemporaryDir td; + std::string min_path{std::string(td.path) + "/" + "min"}; From owner-svn-ports-branches@freebsd.org Sun Jul 2 23:05:40 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D273D9B147A; Sun, 2 Jul 2017 23:05:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E9F079BA2; Sun, 2 Jul 2017 23:05:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v62N5dh1055903; Sun, 2 Jul 2017 23:05:39 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v62N5dNi055901; Sun, 2 Jul 2017 23:05:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707022305.v62N5dNi055901@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 2 Jul 2017 23:05:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444905 - branches/2017Q3/devel/android-tools-adb-devel/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/devel/android-tools-adb-devel/files X-SVN-Commit-Revision: 444905 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 02 Jul 2017 23:05:40 -0000 Author: jbeich Date: Sun Jul 2 23:05:39 2017 New Revision: 444905 URL: https://svnweb.freebsd.org/changeset/ports/444905 Log: MFH: r444904 devel/android-tools-adb-devel: oops, don't turn off assert() in logging_test.cpp Approved by: ports-secteam blanket Added: branches/2017Q3/devel/android-tools-adb-devel/files/patch-base_include_android-base_logging.h - copied unchanged from r444904, head/devel/android-tools-adb-devel/files/patch-base_include_android-base_logging.h Modified: branches/2017Q3/devel/android-tools-adb-devel/files/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/android-tools-adb-devel/files/Makefile ============================================================================== --- branches/2017Q3/devel/android-tools-adb-devel/files/Makefile Sun Jul 2 23:03:52 2017 (r444904) +++ branches/2017Q3/devel/android-tools-adb-devel/files/Makefile Sun Jul 2 23:05:39 2017 (r444905) @@ -68,7 +68,6 @@ TEST_SRCS+= stringprintf_test.cpp TEST_SRCS+= strings_test.cpp TEST_SRCS+= test_main.cpp TEST_SRCS+= test_utils.cpp -CPPFLAGS.logging_test.cpp+= -DNDEBUG # XXX DCHECK vs. timestamps .PATH: ${.CURDIR}/../libcrypto_utils SRCS+= android_pubkey.c Copied: branches/2017Q3/devel/android-tools-adb-devel/files/patch-base_include_android-base_logging.h (from r444904, head/devel/android-tools-adb-devel/files/patch-base_include_android-base_logging.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/devel/android-tools-adb-devel/files/patch-base_include_android-base_logging.h Sun Jul 2 23:05:39 2017 (r444905, copy of r444904, head/devel/android-tools-adb-devel/files/patch-base_include_android-base_logging.h) @@ -0,0 +1,11 @@ +--- base/include/android-base/logging.h.orig 2017-07-02 22:55:50 UTC ++++ base/include/android-base/logging.h +@@ -321,7 +321,7 @@ struct LogAbortAfterFullExpr { + // DCHECKs are debug variants of CHECKs only enabled in debug builds. Generally + // CHECK should be used unless profiling identifies a CHECK as being in + // performance critical code. +-#if defined(NDEBUG) && !defined(__clang_analyzer__) ++#if defined(NDEBUG) && !defined(__clang_analyzer__) || !defined(__ANDROID__) + static constexpr bool kEnableDChecks = false; + #else + static constexpr bool kEnableDChecks = true; From owner-svn-ports-branches@freebsd.org Sun Jul 2 23:26:20 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0CA89B19BA; Sun, 2 Jul 2017 23:26:20 +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 71BD17A3C0; Sun, 2 Jul 2017 23:26:20 +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 v62NQJOk064551; Sun, 2 Jul 2017 23:26:19 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v62NQJn9064550; Sun, 2 Jul 2017 23:26:19 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707022326.v62NQJn9064550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 2 Jul 2017 23:26:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444908 - branches/2017Q3/devel/android-tools-fastboot-devel/files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/devel/android-tools-fastboot-devel/files X-SVN-Commit-Revision: 444908 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 02 Jul 2017 23:26:20 -0000 Author: jbeich Date: Sun Jul 2 23:26:19 2017 New Revision: 444908 URL: https://svnweb.freebsd.org/changeset/ports/444908 Log: MFH: r444907 devel/android-tools-fastboot-devel: drop unused file after r422901 Approved by: ports-secteam blanket Deleted: branches/2017Q3/devel/android-tools-fastboot-devel/files/util_freebsd.cpp Modified: branches/2017Q3/devel/android-tools-fastboot-devel/files/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/android-tools-fastboot-devel/files/Makefile ============================================================================== --- branches/2017Q3/devel/android-tools-fastboot-devel/files/Makefile Sun Jul 2 23:22:56 2017 (r444907) +++ branches/2017Q3/devel/android-tools-fastboot-devel/files/Makefile Sun Jul 2 23:26:19 2017 (r444908) @@ -18,7 +18,6 @@ SRCS+= util.cpp .PATH: ${EXTRADIR} SRCS+= usb_freebsd.cpp -SRCS+= util_freebsd.cpp # required by fastboot .PATH: ${.CURDIR}/../adb From owner-svn-ports-branches@freebsd.org Mon Jul 3 05:38:47 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CA979DE85C; Mon, 3 Jul 2017 05:38:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DD3C883111; Mon, 3 Jul 2017 05:38:46 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v635ckDq016152; Mon, 3 Jul 2017 05:38:46 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v635ckmb016151; Mon, 3 Jul 2017 05:38:46 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201707030538.v635ckmb016151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 3 Jul 2017 05:38:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444911 - branches/2017Q3/www/speedtest-mini X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/www/speedtest-mini X-SVN-Commit-Revision: 444911 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 03 Jul 2017 05:38:47 -0000 Author: koobs Date: Mon Jul 3 05:38:45 2017 New Revision: 444911 URL: https://svnweb.freebsd.org/changeset/ports/444911 Log: MFH: r444910 www/speedtest-mini: Set DEPRECATED (2017-06-30, Discontinued) Upstream has announced [1] the discontinuation of speedtest-mini: As of June 30, 2017 Speedtest Mini will no longer be available, and all current licenses will expire. We encourage you to upgrade to Speedtest Custom for free at your earliest convenience. Accordingly, set DEPRECATED and mark port EXPIRATION_DATE 2 months from discontinuation date (30th August, 2017). [1] http://www.speedtest.net/mini.php PR: 220029 Submitted by: Koichiro IWAO (maintainer) Approved by: ports-secteam (blanket) Modified: branches/2017Q3/www/speedtest-mini/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/speedtest-mini/Makefile ============================================================================== --- branches/2017Q3/www/speedtest-mini/Makefile Mon Jul 3 05:36:17 2017 (r444910) +++ branches/2017Q3/www/speedtest-mini/Makefile Mon Jul 3 05:38:45 2017 (r444911) @@ -11,6 +11,9 @@ DISTNAME= mini MAINTAINER= meta+ports@vmeta.jp COMMENT= Mini bandwidth speed test on your own server +DEPRECATED= Discontinued upstream (on June 30, 2017) +EXPIRATION_DATE=2017-08-30 + NO_BUILD= yes PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" SUB_FILES= pkg-message From owner-svn-ports-branches@freebsd.org Mon Jul 3 05:50:41 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 498D19DEB2A; Mon, 3 Jul 2017 05:50:41 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1471D837A6; Mon, 3 Jul 2017 05:50:41 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v635oeMv023719; Mon, 3 Jul 2017 05:50:40 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v635oeC2023718; Mon, 3 Jul 2017 05:50:40 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201707030550.v635oeC2023718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 3 Jul 2017 05:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444913 - branches/2017Q3/security/zeronet X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/security/zeronet X-SVN-Commit-Revision: 444913 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 03 Jul 2017 05:50:41 -0000 Author: koobs Date: Mon Jul 3 05:50:39 2017 New Revision: 444913 URL: https://svnweb.freebsd.org/changeset/ports/444913 Log: MFH: r444912 security/zeronet: Limit to Python 2.7 Zeronet doesn't support Python 3 [1]. Limit to compatible version(s) (2.7) accordingly. [1] https://github.com/HelloZeroNet/ZeroNet/issues/149 PR: 220302 Reported by: Peter Zuidema Submitted by: Yuri Victorovich (maintainer) Approved by: ports-secteam (blanket) Modified: branches/2017Q3/security/zeronet/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/zeronet/Makefile ============================================================================== --- branches/2017Q3/security/zeronet/Makefile Mon Jul 3 05:48:40 2017 (r444912) +++ branches/2017Q3/security/zeronet/Makefile Mon Jul 3 05:50:39 2017 (r444913) @@ -27,7 +27,9 @@ SUB_FILES= zeronet-service zeronet-cmd pkg-message SUB_LIST= LOCALBASE=${LOCALBASE} USER=${USER} GROUP=${GROUP} PLIST_SUB= USER=${USER} GROUP=${GROUP} -USES= python +# ZeroNet hasn't been ported to Python 3 yet +# https://github.com/HelloZeroNet/ZeroNet/issues/149 +USES= python:2.7 NO_ARCH= yes OPTIONS_DEFINE= TOR DEBUG From owner-svn-ports-branches@freebsd.org Mon Jul 3 11:26:16 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 346279E475D; Mon, 3 Jul 2017 11:26:16 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 105B768628; Mon, 3 Jul 2017 11:26:15 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v63BQFBl061252; Mon, 3 Jul 2017 11:26:15 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v63BQFvI061249; Mon, 3 Jul 2017 11:26:15 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201707031126.v63BQFvI061249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 3 Jul 2017 11:26:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444938 - in branches/2017Q3/net/py-rainbowstream: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in branches/2017Q3/net/py-rainbowstream: . files X-SVN-Commit-Revision: 444938 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 03 Jul 2017 11:26:16 -0000 Author: koobs Date: Mon Jul 3 11:26:14 2017 New Revision: 444938 URL: https://svnweb.freebsd.org/changeset/ports/444938 Log: MFH: r444937 net/py-rainbowstream: Make pocket (really) optional rainbowstream has configurable Pocket support (via settings) but declares the dependency in install_requires, making it a compulsory run-time dependency checked/varified by setuptools. When first committed, given the pocket Python package had not yet been ported, it was (obviously) not included in RUN_DEPENDS, but it was not removed from setup.py:install_requires, resulting in the following runtime error: pkg_resources.DistributionNotFound: The 'pocket' distribution was not found and is required by rainbowstream This could be rectified by the user by installing the package from pip, which is convenient, but which we explicitly recommend against [1]. This commit patches setup.py moving pocket to setup.py:extras_require and the main module to conditionally import pocket, instead of failing as follows: from pocket import Pocket ImportError: No module named pocket While I'm here: - Remove upper bound/limit on 3.x version support [1] See devel/py-pip/pkg-message PR: 220312 Reported by: Petr Fischer Approved by: ports-secteam (blanket) Added: branches/2017Q3/net/py-rainbowstream/files/patch-rainbowstream_rainbow.py - copied unchanged from r444937, head/net/py-rainbowstream/files/patch-rainbowstream_rainbow.py Modified: branches/2017Q3/net/py-rainbowstream/Makefile branches/2017Q3/net/py-rainbowstream/files/patch-setup.py Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/py-rainbowstream/Makefile ============================================================================== --- branches/2017Q3/net/py-rainbowstream/Makefile Mon Jul 3 11:22:52 2017 (r444937) +++ branches/2017Q3/net/py-rainbowstream/Makefile Mon Jul 3 11:26:14 2017 (r444938) @@ -3,6 +3,7 @@ PORTNAME= rainbowstream PORTVERSION= 1.3.5 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,8 +22,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/p ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}pysocks>0:net/py-pysocks -# Actually 2.7,3.2-3.4 -USES= python:2.7-3.4 +# Actually 2.7,3.2- +USES= python:2.7- USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Copied: branches/2017Q3/net/py-rainbowstream/files/patch-rainbowstream_rainbow.py (from r444937, head/net/py-rainbowstream/files/patch-rainbowstream_rainbow.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/net/py-rainbowstream/files/patch-rainbowstream_rainbow.py Mon Jul 3 11:26:14 2017 (r444938, copy of r444937, head/net/py-rainbowstream/files/patch-rainbowstream_rainbow.py) @@ -0,0 +1,17 @@ +# Make pocket actually optional +# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220312 + +--- rainbowstream/rainbow.py.orig 2017-07-03 10:00:26 UTC ++++ rainbowstream/rainbow.py +@@ -20,7 +20,10 @@ from twitter.oauth import OAuth, read_to + from twitter.oauth_dance import oauth_dance + from twitter.util import printNicely + +-from pocket import Pocket ++try: ++ from pocket import Pocket ++except ImportError: ++ pckt = None + + from .draw import * + from .colors import * Modified: branches/2017Q3/net/py-rainbowstream/files/patch-setup.py ============================================================================== --- branches/2017Q3/net/py-rainbowstream/files/patch-setup.py Mon Jul 3 11:22:52 2017 (r444937) +++ branches/2017Q3/net/py-rainbowstream/files/patch-setup.py Mon Jul 3 11:26:14 2017 (r444938) @@ -1,6 +1,9 @@ ---- setup.py.orig 2016-08-04 08:41:32 UTC +# Make pocket actually optional +# https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220312 + +--- setup.py.orig 2016-08-16 14:49:45 UTC +++ setup.py -@@ -9,7 +9,7 @@ version = '1.3.3' +@@ -15,14 +15,17 @@ version = '1.3.5' install_requires = [ "python-dateutil", "arrow", @@ -9,3 +12,22 @@ "pyfiglet", "twitter", "Pillow", + "PySocks", +- "pocket" + ] + ++extras_require = { ++ 'pocket': ["pocket"], ++} ++ + # Default user (considers non virtualenv method) + user = os.environ.get('SUDO_USER', os.environ['USER']) + +@@ -65,6 +68,7 @@ setup(name='rainbowstream', + include_package_data=True, + zip_safe=True, + install_requires=install_requires, ++ extras_require=extras_require, + entry_points=""" + # -*- Entry points: -*- + [console_scripts] From owner-svn-ports-branches@freebsd.org Mon Jul 3 14:58:36 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A1CF9E8447; Mon, 3 Jul 2017 14:58:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 363F073413; Mon, 3 Jul 2017 14:58:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v63EwZ8b049480; Mon, 3 Jul 2017 14:58:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v63EwZFt049478; Mon, 3 Jul 2017 14:58:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201707031458.v63EwZFt049478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 3 Jul 2017 14:58:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444960 - in branches/2017Q3/ports-mgmt/fbsdmon: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in branches/2017Q3/ports-mgmt/fbsdmon: . files X-SVN-Commit-Revision: 444960 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 03 Jul 2017 14:58:36 -0000 Author: amdmi3 Date: Mon Jul 3 14:58:35 2017 New Revision: 444960 URL: https://svnweb.freebsd.org/changeset/ports/444960 Log: MFH: r444956 Commit the patch forgotten in the previous commit: "- Modify the port to never send data to fbsdmon.org, bump PORTREVISION" PR: 217099 Submitted by: asomers Approved by: ports-secteam (with hat) Added: branches/2017Q3/ports-mgmt/fbsdmon/files/patch-src_io.c - copied unchanged from r444956, head/ports-mgmt/fbsdmon/files/patch-src_io.c Modified: branches/2017Q3/ports-mgmt/fbsdmon/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/ports-mgmt/fbsdmon/Makefile ============================================================================== --- branches/2017Q3/ports-mgmt/fbsdmon/Makefile Mon Jul 3 14:57:59 2017 (r444959) +++ branches/2017Q3/ports-mgmt/fbsdmon/Makefile Mon Jul 3 14:58:35 2017 (r444960) @@ -3,7 +3,7 @@ PORTNAME= fbsdmon PORTVERSION= 1.01 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ports-mgmt sysutils MASTER_SITES= LOCAL/gblach/ Copied: branches/2017Q3/ports-mgmt/fbsdmon/files/patch-src_io.c (from r444956, head/ports-mgmt/fbsdmon/files/patch-src_io.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/ports-mgmt/fbsdmon/files/patch-src_io.c Mon Jul 3 14:58:35 2017 (r444960, copy of r444956, head/ports-mgmt/fbsdmon/files/patch-src_io.c) @@ -0,0 +1,18 @@ +--- src/io.c.orig 2014-09-06 23:04:23 UTC ++++ src/io.c +@@ -16,6 +16,15 @@ extern char *fbsdmon_url(char *path) + if(NULL != prefix) prefix = strdup(prefix); + else prefix = strdup("http://fbsdmon.org/"); + ++ if (strstr(prefix, "fbsdmon.org") != NULL) { ++ fprintf(stderr, "fbsdmon is no longer supported, and the " ++ "web site it sends data to (http://fbsdmon.org/), " ++ "has been taken over by cybersquatters. Refusing " ++ "to send system info to an unknown party. Please " ++ "deinstall fbsdmon package.\n\n"); ++ exit(1); ++ } ++ + char *url = malloc(strlen(prefix) + strlen(path) + 1); + bzero(url, 1); + strcat(url, prefix); From owner-svn-ports-branches@freebsd.org Mon Jul 3 17:33:34 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D4C49EB9DA; Mon, 3 Jul 2017 17:33:34 +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 EFBA378B89; Mon, 3 Jul 2017 17:33:33 +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 v63HXXCQ016000; Mon, 3 Jul 2017 17:33:33 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v63HXXAr015998; Mon, 3 Jul 2017 17:33:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707031733.v63HXXAr015998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 3 Jul 2017 17:33:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444970 - branches/2017Q3/graphics/mesa-dri X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2017Q3/graphics/mesa-dri X-SVN-Commit-Revision: 444970 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 03 Jul 2017 17:33:34 -0000 Author: jbeich Date: Mon Jul 3 17:33:32 2017 New Revision: 444970 URL: https://svnweb.freebsd.org/changeset/ports/444970 Log: MFH: r444827 graphics/mesa-{libs,dri}: update to 17.1.4 Changes: https://lists.freedesktop.org/archives/mesa-announce/2017-June/000337.html Changes: https://lists.freedesktop.org/archives/mesa-announce/2017-June/000339.html Approved by: ports-secteam (feld) Modified: branches/2017Q3/graphics/mesa-dri/Makefile.common branches/2017Q3/graphics/mesa-dri/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/graphics/mesa-dri/Makefile.common ============================================================================== --- branches/2017Q3/graphics/mesa-dri/Makefile.common Mon Jul 3 17:31:02 2017 (r444969) +++ branches/2017Q3/graphics/mesa-dri/Makefile.common Mon Jul 3 17:33:32 2017 (r444970) @@ -14,7 +14,7 @@ MESAVERSION= ${MESABASEVERSION}${MESASUBVERSION:C/^(.)/.\1/} MESADISTVERSION=${MESABASEVERSION}${MESASUBVERSION:C/^(.)/-\1/} -MESABASEVERSION= 17.1.2 +MESABASEVERSION= 17.1.4 # if there is a subversion, don't include the '-' between 7.11-rc2. MESASUBVERSION= Modified: branches/2017Q3/graphics/mesa-dri/distinfo ============================================================================== --- branches/2017Q3/graphics/mesa-dri/distinfo Mon Jul 3 17:31:02 2017 (r444969) +++ branches/2017Q3/graphics/mesa-dri/distinfo Mon Jul 3 17:33:32 2017 (r444970) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496724371 -SHA256 (mesa-17.1.2.tar.xz) = 0937804f43746339b1f9540d8f9c8b4a1bb3d3eec0e4020eac283b8799798239 -SIZE (mesa-17.1.2.tar.xz) = 9837516 +TIMESTAMP = 1498843561 +SHA256 (mesa-17.1.4.tar.xz) = 06f3b0e6a28f0d20b7f3391cf67fe89ae98ecd0a686cd545da76557b6cec9cad +SIZE (mesa-17.1.4.tar.xz) = 9899196 From owner-svn-ports-branches@freebsd.org Mon Jul 3 23:28:13 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19F5D9F1963; Mon, 3 Jul 2017 23:28:13 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB26C3BB; Mon, 3 Jul 2017 23:28:12 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v63NSC55066491; Mon, 3 Jul 2017 23:28:12 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v63NSBnm066489; Mon, 3 Jul 2017 23:28:11 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201707032328.v63NSBnm066489@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Mon, 3 Jul 2017 23:28:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r444993 - branches/2017Q3/sysutils/syslog-ng310 X-SVN-Group: ports-branches X-SVN-Commit-Author: cy X-SVN-Commit-Paths: branches/2017Q3/sysutils/syslog-ng310 X-SVN-Commit-Revision: 444993 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 03 Jul 2017 23:28:13 -0000 Author: cy Date: Mon Jul 3 23:28:11 2017 New Revision: 444993 URL: https://svnweb.freebsd.org/changeset/ports/444993 Log: MFH: r444977 Fix broken plist. PR: 220446 Submitted by: i.dani@outlook.com Reviewed by: cy Differential Revision: D11456 Approved by: portmgr (adamw) Modified: branches/2017Q3/sysutils/syslog-ng310/Makefile branches/2017Q3/sysutils/syslog-ng310/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/sysutils/syslog-ng310/Makefile ============================================================================== --- branches/2017Q3/sysutils/syslog-ng310/Makefile Mon Jul 3 23:27:34 2017 (r444992) +++ branches/2017Q3/sysutils/syslog-ng310/Makefile Mon Jul 3 23:28:11 2017 (r444993) @@ -135,6 +135,7 @@ PYTHON_PLIST_FILES= lib/syslog-ng/libmod-python.so CURL_CONFIGURE_OFF= --with-libcurl=off CURL_LIB_DEPENDS= libcurl.so:ftp/curl +CURL_PLIST_FILES= lib/syslog-ng/libhttp.so .include Modified: branches/2017Q3/sysutils/syslog-ng310/pkg-plist ============================================================================== --- branches/2017Q3/sysutils/syslog-ng310/pkg-plist Mon Jul 3 23:27:34 2017 (r444992) +++ branches/2017Q3/sysutils/syslog-ng310/pkg-plist Mon Jul 3 23:28:11 2017 (r444993) @@ -251,7 +251,6 @@ lib/syslog-ng/libdbparser.so lib/syslog-ng/libafstomp.so lib/syslog-ng/libpseudofile.so lib/syslog-ng/libgraphite.so -lib/syslog-ng/libhttp.so lib/syslog-ng/libkvformat.so lib/syslog-ng/libmap-value-pairs.so lib/syslog-ng/libsnmptrapd-parser.so From owner-svn-ports-branches@freebsd.org Wed Jul 5 11:04:49 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C677FDA8564; Wed, 5 Jul 2017 11:04:49 +0000 (UTC) (envelope-from cpm@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 928787C7E3; Wed, 5 Jul 2017 11:04:49 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v65B4m2A056981; Wed, 5 Jul 2017 11:04:48 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v65B4m89056979; Wed, 5 Jul 2017 11:04:48 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201707051104.v65B4m89056979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 5 Jul 2017 11:04:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445072 - branches/2017Q3/devel/codesearch-py X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: branches/2017Q3/devel/codesearch-py X-SVN-Commit-Revision: 445072 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 05 Jul 2017 11:04:49 -0000 Author: cpm Date: Wed Jul 5 11:04:48 2017 New Revision: 445072 URL: https://svnweb.freebsd.org/changeset/ports/445072 Log: MFH: r445060 devel/codesearch-py: fix AssertionError in test_file_cache.py - Update to latest commit - Bump PORTREVISION Approved by: ports-secteam (blanket) Modified: branches/2017Q3/devel/codesearch-py/Makefile branches/2017Q3/devel/codesearch-py/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/codesearch-py/Makefile ============================================================================== --- branches/2017Q3/devel/codesearch-py/Makefile Wed Jul 5 10:45:42 2017 (r445071) +++ branches/2017Q3/devel/codesearch-py/Makefile Wed Jul 5 11:04:48 2017 (r445072) @@ -3,6 +3,7 @@ PORTNAME= codesearch-py PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +18,7 @@ USE_PYTHON= autoplist concurrent distutils USE_GITHUB= yes GH_ACCOUNT= chromium -GH_TAGNAME= ec3ad68 +GH_TAGNAME= 86cf193 NO_ARCH= yes Modified: branches/2017Q3/devel/codesearch-py/distinfo ============================================================================== --- branches/2017Q3/devel/codesearch-py/distinfo Wed Jul 5 10:45:42 2017 (r445071) +++ branches/2017Q3/devel/codesearch-py/distinfo Wed Jul 5 11:04:48 2017 (r445072) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498485588 -SHA256 (chromium-codesearch-py-0.1-ec3ad68_GH0.tar.gz) = 93c5c3476fafcec52d0bc1f732b31d9ddc700882e5f6755b36da7740f747ef24 -SIZE (chromium-codesearch-py-0.1-ec3ad68_GH0.tar.gz) = 335302 +TIMESTAMP = 1499190870 +SHA256 (chromium-codesearch-py-0.1-86cf193_GH0.tar.gz) = fe0c58fa6e4f2c10e731e7fc96da9c87f2e2448818f626567557de608379230d +SIZE (chromium-codesearch-py-0.1-86cf193_GH0.tar.gz) = 344158 From owner-svn-ports-branches@freebsd.org Thu Jul 6 01:43:38 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48E9DD98CE8; Thu, 6 Jul 2017 01:43:38 +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 24FA679DF5; Thu, 6 Jul 2017 01:43:38 +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 v661hbsj022007; Thu, 6 Jul 2017 01:43:37 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v661haHj022003; Thu, 6 Jul 2017 01:43:36 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707060143.v661haHj022003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 6 Jul 2017 01:43:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445119 - in branches/2017Q3/sysutils/xosview: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: in branches/2017Q3/sysutils/xosview: . files X-SVN-Commit-Revision: 445119 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 01:43:38 -0000 Author: junovitch Date: Thu Jul 6 01:43:36 2017 New Revision: 445119 URL: https://svnweb.freebsd.org/changeset/ports/445119 Log: MFH: r444892 Update to 1.19, Fix build error on FreeBSD 12 PR: 220426 Submitted by: otacilio.neto@bsd.com.br (maintainer) Approved by: ports-secteam (with hat) Added: branches/2017Q3/sysutils/xosview/files/patch-bsd_kernel.cc - copied unchanged from r444892, head/sysutils/xosview/files/patch-bsd_kernel.cc Deleted: branches/2017Q3/sysutils/xosview/files/patch-bsd-kernel.cc Modified: branches/2017Q3/sysutils/xosview/Makefile branches/2017Q3/sysutils/xosview/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/sysutils/xosview/Makefile ============================================================================== --- branches/2017Q3/sysutils/xosview/Makefile Thu Jul 6 01:43:07 2017 (r445118) +++ branches/2017Q3/sysutils/xosview/Makefile Thu Jul 6 01:43:36 2017 (r445119) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xosview -PORTVERSION= 1.17 -PORTREVISION= 1 +PORTVERSION= 1.19 CATEGORIES= sysutils MAINTAINER= otacilio.neto@bsd.com.br Modified: branches/2017Q3/sysutils/xosview/distinfo ============================================================================== --- branches/2017Q3/sysutils/xosview/distinfo Thu Jul 6 01:43:07 2017 (r445118) +++ branches/2017Q3/sysutils/xosview/distinfo Thu Jul 6 01:43:36 2017 (r445119) @@ -1,2 +1,3 @@ -SHA256 (hills-xosview-1.17_GH0.tar.gz) = a5a84cbcee21805922781d3532cf5c4436331f031fa39e741a699f83ad5ddda9 -SIZE (hills-xosview-1.17_GH0.tar.gz) = 144327 +TIMESTAMP = 1498958595 +SHA256 (hills-xosview-1.19_GH0.tar.gz) = 4bf31738c49f950b1f8b9574e9c850b3cb7448c5d600b560bd24a55ae4497a16 +SIZE (hills-xosview-1.19_GH0.tar.gz) = 144229 Copied: branches/2017Q3/sysutils/xosview/files/patch-bsd_kernel.cc (from r444892, head/sysutils/xosview/files/patch-bsd_kernel.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/sysutils/xosview/files/patch-bsd_kernel.cc Thu Jul 6 01:43:36 2017 (r445119, copy of r444892, head/sysutils/xosview/files/patch-bsd_kernel.cc) @@ -0,0 +1,32 @@ +--- bsd/kernel.cc.orig 2017-07-02 01:38:15 UTC ++++ bsd/kernel.cc +@@ -93,6 +93,9 @@ static int mib_uvm[2] = { CTL_VM, VM_UVMEXP2 }; + static int mib_uvm[2] = { CTL_VM, VM_UVMEXP }; + #endif + #else ++#if defined(XOSVIEW_FREEBSD) ++#define _WANT_VMMETER ++#endif + #include + #endif + +@@ -328,7 +331,9 @@ BSDGetPageStats(uint64_t *meminfo, uint64_t *pageinfo) + GET_VM_STATS(v_active_count); + GET_VM_STATS(v_inactive_count); + GET_VM_STATS(v_wire_count); ++#if __FreeBSD_version < 1200017 + GET_VM_STATS(v_cache_count); ++#endif + GET_VM_STATS(v_free_count); + GET_VM_STATS(v_page_size); + GET_VM_STATS(v_vnodepgsin); +@@ -350,7 +355,9 @@ BSDGetPageStats(uint64_t *meminfo, uint64_t *pageinfo) + meminfo[0] = (uint64_t)vm.v_active_count * vm.v_page_size; + meminfo[1] = (uint64_t)vm.v_inactive_count * vm.v_page_size; + meminfo[2] = (uint64_t)vm.v_wire_count * vm.v_page_size; ++#if __FreeBSD_version < 1200017 + meminfo[3] = (uint64_t)vm.v_cache_count * vm.v_page_size; ++#endif + meminfo[4] = (uint64_t)vm.v_free_count * vm.v_page_size; + #else /* XOSVIEW_DFBSD */ + meminfo[0] = (uint64_t)vms.v_active_count * vms.v_page_size; From owner-svn-ports-branches@freebsd.org Thu Jul 6 01:47:52 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 996B3D98FAC; Thu, 6 Jul 2017 01:47:52 +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 65E3479FEA; Thu, 6 Jul 2017 01:47:52 +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 v661lpRQ022497; Thu, 6 Jul 2017 01:47:51 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v661lpDb022496; Thu, 6 Jul 2017 01:47:51 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707060147.v661lpDb022496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 6 Jul 2017 01:47:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445120 - in branches/2017Q3/games/flightgear: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: in branches/2017Q3/games/flightgear: . files X-SVN-Commit-Revision: 445120 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 01:47:52 -0000 Author: junovitch Date: Thu Jul 6 01:47:51 2017 New Revision: 445120 URL: https://svnweb.freebsd.org/changeset/ports/445120 Log: MFH: r444932 Add missing dependency to libudev Reported by: Markus Barenhoff Approved by: ports-secteam (with hat) Added: branches/2017Q3/games/flightgear/files/patch-INPUT-CMakeLists.txt - copied unchanged from r444932, head/games/flightgear/files/patch-INPUT-CMakeLists.txt Modified: branches/2017Q3/games/flightgear/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/games/flightgear/Makefile ============================================================================== --- branches/2017Q3/games/flightgear/Makefile Thu Jul 6 01:43:36 2017 (r445119) +++ branches/2017Q3/games/flightgear/Makefile Thu Jul 6 01:47:51 2017 (r445120) @@ -3,7 +3,7 @@ PORTNAME= flightgear PORTVERSION= 2017.1.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} @@ -19,7 +19,8 @@ LIB_DEPENDS= libpng.so:graphics/png \ libosg.so:graphics/osg \ libspeex.so:audio/speex \ libspeexdsp.so:audio/speexdsp \ - libcurl.so:ftp/curl + libcurl.so:ftp/curl \ + libudev.so:devel/libudev-devd BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ ${LOCALBASE}/lib/libSimGearCore.a:devel/simgear RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ Copied: branches/2017Q3/games/flightgear/files/patch-INPUT-CMakeLists.txt (from r444932, head/games/flightgear/files/patch-INPUT-CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/games/flightgear/files/patch-INPUT-CMakeLists.txt Thu Jul 6 01:47:51 2017 (r445120, copy of r444932, head/games/flightgear/files/patch-INPUT-CMakeLists.txt) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2017-06-30 11:44:05.757902000 +0200 ++++ CMakeLists.txt 2017-06-30 11:49:07.188128000 +0200 +@@ -226,7 +226,7 @@ + if(EVENT_INPUT) + if(APPLE) + add_definitions(-DWITH_EVENTINPUT) +- elseif(CMAKE_SYSTEM_NAME MATCHES "Linux") ++ elseif(CMAKE_SYSTEM_NAME MATCHES "Linux|FreeBSD") + if(NOT UDEV_FOUND) + message(WARNING "UDev not found, event input is disabled!") + set(EVENT_INPUT 0) From owner-svn-ports-branches@freebsd.org Thu Jul 6 01:51:34 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C619D99375; Thu, 6 Jul 2017 01:51:34 +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 EF0397A288; Thu, 6 Jul 2017 01:51:33 +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 v661pX3w023621; Thu, 6 Jul 2017 01:51:33 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v661pXUF023620; Thu, 6 Jul 2017 01:51:33 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707060151.v661pXUF023620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 6 Jul 2017 01:51:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445121 - branches/2017Q3/emulators/rpcs3 X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: branches/2017Q3/emulators/rpcs3 X-SVN-Commit-Revision: 445121 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 01:51:34 -0000 Author: junovitch Date: Thu Jul 6 01:51:32 2017 New Revision: 445121 URL: https://svnweb.freebsd.org/changeset/ports/445121 Log: MFH: r444979 emulators/rpcs3: update to 0.0.2.395 Changes: https://github.com/RPCS3/rpcs3/compare/253e7a90...37898d38 Approved by: ports-secteam (with hat) Modified: branches/2017Q3/emulators/rpcs3/Makefile branches/2017Q3/emulators/rpcs3/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/emulators/rpcs3/Makefile ============================================================================== --- branches/2017Q3/emulators/rpcs3/Makefile Thu Jul 6 01:47:51 2017 (r445120) +++ branches/2017Q3/emulators/rpcs3/Makefile Thu Jul 6 01:51:32 2017 (r445121) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.2-391 -DISTVERSIONSUFFIX= -g253e7a90 +DISTVERSION= 0.0.2-395 +DISTVERSIONSUFFIX= -g37898d38 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org @@ -55,7 +55,6 @@ LLVM_LIB_DEPENDS= libLLVM-4.0.so:devel/llvm40 LLVM_CMAKE_BOOL_OFF= WITHOUT_LLVM post-patch: - @${REINPLACE_CMD} -e 's/5\.8/5\.7/' ${WRKSRC}/${PORTNAME}/CMakeLists.txt @${REINPLACE_CMD} -e 's/"unknown"/"${GH_TAGNAME}"/' \ ${WRKSRC}/${PORTNAME}/git-version.cmake Modified: branches/2017Q3/emulators/rpcs3/distinfo ============================================================================== --- branches/2017Q3/emulators/rpcs3/distinfo Thu Jul 6 01:47:51 2017 (r445120) +++ branches/2017Q3/emulators/rpcs3/distinfo Thu Jul 6 01:51:32 2017 (r445121) @@ -1,6 +1,6 @@ -TIMESTAMP = 1498837240 -SHA256 (RPCS3-rpcs3-v0.0.2-391-g253e7a90_GH0.tar.gz) = 119872a72f376ae65302b9496ed74ed81c7a4da5032feb43065ce4168be4df60 -SIZE (RPCS3-rpcs3-v0.0.2-391-g253e7a90_GH0.tar.gz) = 11194982 +TIMESTAMP = 1499100699 +SHA256 (RPCS3-rpcs3-v0.0.2-395-g37898d38_GH0.tar.gz) = 56ee3728c8b648ae7e33e7a4557a712dfd552163eab8f9d1b037e5aa2aad0bb9 +SIZE (RPCS3-rpcs3-v0.0.2-395-g37898d38_GH0.tar.gz) = 11193935 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-branches@freebsd.org Thu Jul 6 01:53:12 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9386D994BE; Thu, 6 Jul 2017 01:53:12 +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 C545C7A584; Thu, 6 Jul 2017 01:53:12 +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 v661rBY0027106; Thu, 6 Jul 2017 01:53:11 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v661rBA7027105; Thu, 6 Jul 2017 01:53:11 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707060153.v661rBA7027105@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 6 Jul 2017 01:53:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445122 - branches/2017Q3/security/dropbear X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: branches/2017Q3/security/dropbear X-SVN-Commit-Revision: 445122 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 01:53:13 -0000 Author: junovitch Date: Thu Jul 6 01:53:11 2017 New Revision: 445122 URL: https://svnweb.freebsd.org/changeset/ports/445122 Log: MFH: r444987 Updated to 2017.75 Changelog: https://matt.ucc.asn.au/dropbear/CHANGES PR: 220158 Submitted by: Piotr Kubaj (maintainer) Reviewed by: lifanov (mentor) Approved by: ports-secteam (with hat), lifanov (mentor) Security: http://www.vuxml.org/freebsd/60931f98-55a7-11e7-8514-589cfc0654e1.html Differential Revision: https://reviews.freebsd.org/D11400 Modified: branches/2017Q3/security/dropbear/Makefile branches/2017Q3/security/dropbear/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/dropbear/Makefile ============================================================================== --- branches/2017Q3/security/dropbear/Makefile Thu Jul 6 01:51:32 2017 (r445121) +++ branches/2017Q3/security/dropbear/Makefile Thu Jul 6 01:53:11 2017 (r445122) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dropbear -PORTVERSION= 2016.74 +PORTVERSION= 2017.75 CATEGORIES= security ipv6 MASTER_SITES= http://matt.ucc.asn.au/dropbear/releases/ @@ -19,8 +19,39 @@ CPE_PRODUCT= dropbear_ssh_server USE_RC_SUBR= ${PORTNAME} -OPTIONS_DEFINE= STATIC +OPTIONS_DEFINE= DH_GROUP1 SMALL_CODE STATIC +OPTIONS_DEFAULT= AES128 AES256 CTR RSA SHA2_256 SHA2_512 SMALL_CODE TWOFISH128 TWOFISH256 +OPTIONS_MULTI= ENC KEY MAC MODE +OPTIONS_MULTI_ENC= AES128 3DES AES256 BLOWFISH TWOFISH256 TWOFISH128 +OPTIONS_MULTI_MODE= CBC CTR +OPTIONS_MULTI_KEY= ECDSA DSA RSA +OPTIONS_MULTI_MAC= MD5 SHA1 SHA1_96 SHA2_256 SHA2_512 +3DES_DESC= Enable 3DES-based encryption +3DES_IMPLIES= CTR +AES128_DESC= Enable AES128-based encryption +AES256_DESC= Enable AES256-based encryption +TWOFISH128_DESC= Enable Twofish128-based encryption +TWOFISH256_DESC= Enable Twofish256-based encryption +BLOWFISH_DESC= Enable Blowfish-based encryption + +DH_GROUP1_DESC= Enable Group1 Diffie-Hellman (less secure) + +CBC_DESC= Use CBC mode for ciphers (less secure) +CTR_DESC= Use CTR mode for ciphers (more secure) + +ECDSA_DESC= Enable ECDSA public key support +DSA_DESC= Enable DSA public key support +RSA_DESC= Enable RSA public key support + +MD5_DESC= Enable MD5 MAC (broken) +SHA1_DESC= Enable SHA1 MAC (less secure) +SHA1_96_DESC= Enable SHA1_96 MAC (less secure) +SHA2_256_DESC= Enable SHA2_256 MAC +SHA2_512_DESC= Enable SHA2_512 MAC + +SMALL_CODE_DESC= Make binary smaller in exchange for 50% performance hit + STATIC_LDFLAGS= -static post-patch: @@ -29,6 +60,78 @@ post-patch: @${REINPLACE_CMD} -e "s,sys/dir.h,dirent.h," ${WRKSRC}/*.[ch] @${REINPLACE_CMD} -e "s,make clean,\$${MAKE} clean," \ ${WRKSRC}/libtomcrypt/Makefile.in + +post-patch-SMALL_CODE-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_SMALL_CODE/d" \ + ${WRKSRC}/options.h + +post-patch-3DES-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_3DES/d" \ + ${WRKSRC}/options.h + +post-patch-AES128-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_AES128/d" \ + ${WRKSRC}/options.h + +post-patch-AES256-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_AES256/d" \ + ${WRKSRC}/options.h + +post-patch-TWOFISH256-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_TWOFISH256/d" \ + ${WRKSRC}/options.h + +post-patch-TWOFISH128-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_TWOFISH128/d" \ + ${WRKSRC}/options.h + +post-patch-BLOWFISH-on: + @${REINPLACE_CMD} -e "s,/\*#define DROPBEAR_BLOWFISH\*/,#define DROPBEAR_BLOWFISH,g" \ + ${WRKSRC}/options.h + +post-patch-CBC-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_ENABLE_CBC_MODE/d" \ + ${WRKSRC}/options.h + +post-patch-CTR-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_ENABLE_CTR_MODE/d" \ + ${WRKSRC}/options.h + +post-patch-DH_GROUP1-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_DH_GROUP1 1/d" \ + ${WRKSRC}/options.h + +post-patch-DSA-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_DSS/d" \ + ${WRKSRC}/options.h + +post-patch-RSA-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_RSA/d" \ + ${WRKSRC}/options.h + +post-patch-ECDSA-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_ECDSA/d" \ + ${WRKSRC}/options.h + +post-patch-MD5-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_MD5_HMAC/d" \ + ${WRKSRC}/options.h + +post-patch-SHA1-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_SHA1_HMAC/d" \ + ${WRKSRC}/options.h + +post-patch-SHA1_96-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_SHA1_96_HMAC/d" \ + ${WRKSRC}/options.h + +post-patch-SHA2_256-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_SHA2_256_HMAC/d" \ + ${WRKSRC}/options.h + +post-patch-SHA2_512-off: + @${REINPLACE_CMD} -e "/#define DROPBEAR_SHA2_512_HMAC/d" \ + ${WRKSRC}/options.h do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/dropbear Modified: branches/2017Q3/security/dropbear/distinfo ============================================================================== --- branches/2017Q3/security/dropbear/distinfo Thu Jul 6 01:51:32 2017 (r445121) +++ branches/2017Q3/security/dropbear/distinfo Thu Jul 6 01:53:11 2017 (r445122) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469201269 -SHA256 (dropbear-2016.74.tar.bz2) = 2720ea54ed009af812701bcc290a2a601d5c107d12993e5d92c0f5f81f718891 -SIZE (dropbear-2016.74.tar.bz2) = 1622234 +TIMESTAMP = 1497947793 +SHA256 (dropbear-2017.75.tar.bz2) = 6cbc1dcb1c9709d226dff669e5604172a18cf5dbf9a201474d5618ae4465098c +SIZE (dropbear-2017.75.tar.bz2) = 1623392 From owner-svn-ports-branches@freebsd.org Thu Jul 6 03:01:07 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F14F5D9BC29; Thu, 6 Jul 2017 03:01:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A21427C7DA; Thu, 6 Jul 2017 03:01:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v66315oX053499; Thu, 6 Jul 2017 03:01:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v66315wh053497; Thu, 6 Jul 2017 03:01:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707060301.v66315wh053497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 6 Jul 2017 03:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445124 - in branches/2017Q3/x11/libxshmfence: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q3/x11/libxshmfence: . files X-SVN-Commit-Revision: 445124 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 03:01:08 -0000 Author: jbeich Date: Thu Jul 6 03:01:05 2017 New Revision: 445124 URL: https://svnweb.freebsd.org/changeset/ports/445124 Log: MFH: r445016 x11/libxshmfence: don't leak /tmp/shmfd* files with O_CLOEXEC - Both mkostemp() and mkstemp() need explicit call to unlink() - Unobfuscate fallback if both O_TMPFILE and mksotemp() are N/A - O_TMPFILE (Linux-only) appeared after O_CLOEXEC, no need to check PR: 217676 (for tracking) Approved by: ports-secteam (junovitch) Modified: branches/2017Q3/x11/libxshmfence/Makefile branches/2017Q3/x11/libxshmfence/files/patch-src__xshmfence_alloc.c Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/x11/libxshmfence/Makefile ============================================================================== --- branches/2017Q3/x11/libxshmfence/Makefile Thu Jul 6 02:21:23 2017 (r445123) +++ branches/2017Q3/x11/libxshmfence/Makefile Thu Jul 6 03:01:05 2017 (r445124) @@ -2,7 +2,7 @@ PORTNAME= libxshmfence PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Modified: branches/2017Q3/x11/libxshmfence/files/patch-src__xshmfence_alloc.c ============================================================================== --- branches/2017Q3/x11/libxshmfence/files/patch-src__xshmfence_alloc.c Thu Jul 6 02:21:23 2017 (r445123) +++ branches/2017Q3/x11/libxshmfence/files/patch-src__xshmfence_alloc.c Thu Jul 6 03:01:05 2017 (r445124) @@ -1,24 +1,14 @@ --- src/xshmfence_alloc.c.orig 2015-03-04 15:28:23 UTC +++ src/xshmfence_alloc.c -@@ -67,15 +67,19 @@ int - xshmfence_alloc_shm(void) - { - char template[] = SHMDIR "/shmfd-XXXXXX"; -- int fd; -+ int fd = -1; - - #if HAVE_MEMFD_CREATE - fd = memfd_create("xshmfence", MFD_CLOEXEC|MFD_ALLOW_SEALING); - if (fd < 0) - #endif - { --#ifdef O_TMPFILE -+#if defined(O_CLOEXEC) -+#if defined(HAVE_MKOSTEMP) -+ fd = mkostemp(template, O_CLOEXEC); -+#elif defined(O_TMPFILE) - fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666); -+#endif +@@ -79,7 +79,11 @@ xshmfence_alloc_shm(void) if (fd < 0) #endif { ++#ifdef HAVE_MKOSTEMP ++ fd = mkostemp(template, O_CLOEXEC); ++#else + fd = mkstemp(template); ++#endif + if (fd < 0) + return fd; + unlink(template); From owner-svn-ports-branches@freebsd.org Thu Jul 6 03:03:00 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8EE6ED9BF0F; Thu, 6 Jul 2017 03:03:00 +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 5A9EB7CDFF; Thu, 6 Jul 2017 03:03:00 +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 v6632xjL056765; Thu, 6 Jul 2017 03:02:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6632xK2056763; Thu, 6 Jul 2017 03:02:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707060302.v6632xK2056763@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 6 Jul 2017 03:02:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445125 - in branches/2017Q2/x11/libxshmfence: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2017Q2/x11/libxshmfence: . files X-SVN-Commit-Revision: 445125 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 03:03:00 -0000 Author: jbeich Date: Thu Jul 6 03:02:59 2017 New Revision: 445125 URL: https://svnweb.freebsd.org/changeset/ports/445125 Log: MFH: r445016 x11/libxshmfence: don't leak /tmp/shmfd* files with O_CLOEXEC - Both mkostemp() and mkstemp() need explicit call to unlink() - Unobfuscate fallback if both O_TMPFILE and mksotemp() are N/A - O_TMPFILE (Linux-only) appeared after O_CLOEXEC, no need to check PR: 217676 (for tracking) Approved by: ports-secteam (junovitch) Modified: branches/2017Q2/x11/libxshmfence/Makefile branches/2017Q2/x11/libxshmfence/files/patch-src__xshmfence_alloc.c Directory Properties: branches/2017Q2/ (props changed) Modified: branches/2017Q2/x11/libxshmfence/Makefile ============================================================================== --- branches/2017Q2/x11/libxshmfence/Makefile Thu Jul 6 03:01:05 2017 (r445124) +++ branches/2017Q2/x11/libxshmfence/Makefile Thu Jul 6 03:02:59 2017 (r445125) @@ -2,7 +2,7 @@ PORTNAME= libxshmfence PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Modified: branches/2017Q2/x11/libxshmfence/files/patch-src__xshmfence_alloc.c ============================================================================== --- branches/2017Q2/x11/libxshmfence/files/patch-src__xshmfence_alloc.c Thu Jul 6 03:01:05 2017 (r445124) +++ branches/2017Q2/x11/libxshmfence/files/patch-src__xshmfence_alloc.c Thu Jul 6 03:02:59 2017 (r445125) @@ -1,24 +1,14 @@ --- src/xshmfence_alloc.c.orig 2015-03-04 15:28:23 UTC +++ src/xshmfence_alloc.c -@@ -67,15 +67,19 @@ int - xshmfence_alloc_shm(void) - { - char template[] = SHMDIR "/shmfd-XXXXXX"; -- int fd; -+ int fd = -1; - - #if HAVE_MEMFD_CREATE - fd = memfd_create("xshmfence", MFD_CLOEXEC|MFD_ALLOW_SEALING); - if (fd < 0) - #endif - { --#ifdef O_TMPFILE -+#if defined(O_CLOEXEC) -+#if defined(HAVE_MKOSTEMP) -+ fd = mkostemp(template, O_CLOEXEC); -+#elif defined(O_TMPFILE) - fd = open(SHMDIR, O_TMPFILE|O_RDWR|O_CLOEXEC|O_EXCL, 0666); -+#endif +@@ -79,7 +79,11 @@ xshmfence_alloc_shm(void) if (fd < 0) #endif { ++#ifdef HAVE_MKOSTEMP ++ fd = mkostemp(template, O_CLOEXEC); ++#else + fd = mkstemp(template); ++#endif + if (fd < 0) + return fd; + unlink(template); From owner-svn-ports-branches@freebsd.org Thu Jul 6 05:34:15 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57FDFDA10CF; Thu, 6 Jul 2017 05:34:15 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26A8881B11; Thu, 6 Jul 2017 05:34:15 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v665YEMA018598; Thu, 6 Jul 2017 05:34:14 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v665YEiY018597; Thu, 6 Jul 2017 05:34:14 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201707060534.v665YEiY018597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 6 Jul 2017 05:34:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445128 - branches/2017Q3/security/testssl.sh X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2017Q3/security/testssl.sh X-SVN-Commit-Revision: 445128 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 05:34:15 -0000 Author: tobik Date: Thu Jul 6 05:34:14 2017 New Revision: 445128 URL: https://svnweb.freebsd.org/changeset/ports/445128 Log: MFH: r445053 Only use enable-ec_nistp_64_gcc_128 on amd64 since it requires a 64-bit little-endian architecture and fix the build on !amd64 ecp_nistp224.c:43:9: error: unknown type name '__uint128_t' typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit ^ PR: 220403 Reported by: dewayne@heuristicsystems.com.au Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11436 Approved by: ports-secteam (blanket) Modified: branches/2017Q3/security/testssl.sh/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/testssl.sh/Makefile ============================================================================== --- branches/2017Q3/security/testssl.sh/Makefile Thu Jul 6 05:03:56 2017 (r445127) +++ branches/2017Q3/security/testssl.sh/Makefile Thu Jul 6 05:34:14 2017 (r445128) @@ -2,6 +2,7 @@ PORTNAME= testssl.sh PORTVERSION= 2.8 +PORTREVISION= 1 CATEGORIES= security MAINTAINER= tobik@FreeBSD.org @@ -44,7 +45,6 @@ CONFIGURE_ARGS= --openssldir=${OPENSSLDIR} \ enable-camellia \ enable-idea \ enable-rfc3779 \ - enable-ec_nistp_64_gcc_128 \ experimental-jpake \ -DOPENSSL_USE_IPV6 CONFIGURE_ENV= PERL="${PERL}" @@ -57,6 +57,14 @@ CONFIGURE_WRKSRC= ${WRKSRC_openssl} # unknown reasons. MAKE_JOBS_UNSAFE= yes +.include + +.if ${ARCH} == "amd64" +CONFIGURE_ARGS+= enable-ec_nistp_64_gcc_128 +.else +CONFIGURE_ARGS+= no-ec_nistp_64_gcc_128 +.endif + post-patch: @${REINPLACE_CMD} -e '/elif test_openssl_suffix/d' \ -e 's@: \# 5. we tried.*$$@else OPENSSL="${PREFIX}/libexec/openssl.testssl.sh"@' \ @@ -71,4 +79,4 @@ do-install: @cd ${WRKSRC}/etc && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/etc @cd ${WRKSRC}/utils && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils -.include +.include From owner-svn-ports-branches@freebsd.org Thu Jul 6 10:13:16 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE03FDA9AEC; Thu, 6 Jul 2017 10:13:16 +0000 (UTC) (envelope-from tz@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 8D7076535A; Thu, 6 Jul 2017 10:13:16 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v66ADFYh033680; Thu, 6 Jul 2017 10:13:15 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v66ADFC4033678; Thu, 6 Jul 2017 10:13:15 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707061013.v66ADFC4033678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 6 Jul 2017 10:13:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445134 - in branches/2017Q3/www/gitlab: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/www/gitlab: . files X-SVN-Commit-Revision: 445134 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 10:13:16 -0000 Author: tz Date: Thu Jul 6 10:13:15 2017 New Revision: 445134 URL: https://svnweb.freebsd.org/changeset/ports/445134 Log: MFH: r445057 www/gitlab: Unbreak GitLab after Rails-Update GitLab currently does not start after an update of Rails to 4.2.9. Patch this, since its working fine with the new version. Submitted by: Matthias Fechner Approved by: ports-secteam (junovitch) Modified: branches/2017Q3/www/gitlab/Makefile branches/2017Q3/www/gitlab/files/patch-Gemfile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/gitlab/Makefile ============================================================================== --- branches/2017Q3/www/gitlab/Makefile Thu Jul 6 10:10:08 2017 (r445133) +++ branches/2017Q3/www/gitlab/Makefile Thu Jul 6 10:13:15 2017 (r445134) @@ -4,7 +4,7 @@ PORTNAME= gitlab PORTVERSION= 9.0.10 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org Modified: branches/2017Q3/www/gitlab/files/patch-Gemfile ============================================================================== --- branches/2017Q3/www/gitlab/files/patch-Gemfile Thu Jul 6 10:10:08 2017 (r445133) +++ branches/2017Q3/www/gitlab/files/patch-Gemfile Thu Jul 6 10:13:15 2017 (r445134) @@ -1,6 +1,12 @@ --- Gemfile.orig 2017-06-07 20:58:14 UTC +++ Gemfile -@@ -6,41 +6,36 @@ gem 'rails-deprecated_sanitizer', '~> 1. +@@ -1,46 +1,41 @@ + source 'https://rubygems.org' + +-gem 'rails', '4.2.8' ++gem 'rails', '>= 4.2.8' + gem 'rails-deprecated_sanitizer', '~> 1.0.3' + # Responders respond_to and respond_with gem 'responders', '~> 2.0' From owner-svn-ports-branches@freebsd.org Thu Jul 6 10:22:06 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0A68DA9D61; Thu, 6 Jul 2017 10:22:06 +0000 (UTC) (envelope-from cpm@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 B2E39656DC; Thu, 6 Jul 2017 10:22:06 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v66AM5gk037030; Thu, 6 Jul 2017 10:22:05 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v66AM52f037027; Thu, 6 Jul 2017 10:22:05 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201707061022.v66AM52f037027@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 6 Jul 2017 10:22:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445135 - branches/2017Q3/security/libgcrypt X-SVN-Group: ports-branches X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: branches/2017Q3/security/libgcrypt X-SVN-Commit-Revision: 445135 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 10:22:07 -0000 Author: cpm Date: Thu Jul 6 10:22:05 2017 New Revision: 445135 URL: https://svnweb.freebsd.org/changeset/ports/445135 Log: MFH: r445028 security/libgcrypt: update to 1.7.8 - Update libgcrypt to 1.7.8 - Bump library version in pkg-plist Noteworthy changes in version 1.7.8 * Bug fixes: - Mitigate a flush+reload side-channel attack on RSA secret keys dubbed "Sliding right into disaster". For details see . [CVE-2017-7526] Changes: https://lists.gnupg.org/pipermail/gnupg-announce/2017q2/000408.html Binary compatibility report: https://abi-laboratory.pro/tracker/compat_report/libgcrypt/1.7.7/1.7.8/95cc7/abi_compat_report.html PR: 220382 Exp-run by: antoine Security: https://www.vuxml.org/freebsd/ed3bf433-5d92-11e7-aa14-e8e0b747a45a.html Approved by: ports-secteam (junovitch) Modified: branches/2017Q3/security/libgcrypt/Makefile branches/2017Q3/security/libgcrypt/distinfo branches/2017Q3/security/libgcrypt/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/libgcrypt/Makefile ============================================================================== --- branches/2017Q3/security/libgcrypt/Makefile Thu Jul 6 10:13:15 2017 (r445134) +++ branches/2017Q3/security/libgcrypt/Makefile Thu Jul 6 10:22:05 2017 (r445135) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libgcrypt -PORTVERSION= 1.7.7 +PORTVERSION= 1.7.8 CATEGORIES= security MASTER_SITES= GNUPG Modified: branches/2017Q3/security/libgcrypt/distinfo ============================================================================== --- branches/2017Q3/security/libgcrypt/distinfo Thu Jul 6 10:13:15 2017 (r445134) +++ branches/2017Q3/security/libgcrypt/distinfo Thu Jul 6 10:22:05 2017 (r445135) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496487630 -SHA256 (libgcrypt-1.7.7.tar.bz2) = b9b85eba0793ea3e6e66b896eb031fa05e1a4517277cc9ab10816b359254cd9a -SIZE (libgcrypt-1.7.7.tar.bz2) = 2861190 +TIMESTAMP = 1498827790 +SHA256 (libgcrypt-1.7.8.tar.bz2) = 948276ea47e6ba0244f36a17b51dcdd52cfd1e664b0a1ac3bc82134fb6cec199 +SIZE (libgcrypt-1.7.8.tar.bz2) = 2897853 Modified: branches/2017Q3/security/libgcrypt/pkg-plist ============================================================================== --- branches/2017Q3/security/libgcrypt/pkg-plist Thu Jul 6 10:13:15 2017 (r445134) +++ branches/2017Q3/security/libgcrypt/pkg-plist Thu Jul 6 10:22:05 2017 (r445135) @@ -6,6 +6,6 @@ include/gcrypt.h lib/libgcrypt.a lib/libgcrypt.so lib/libgcrypt.so.20 -lib/libgcrypt.so.20.1.7 +lib/libgcrypt.so.20.1.8 man/man1/hmac256.1.gz share/aclocal/libgcrypt.m4 From owner-svn-ports-branches@freebsd.org Thu Jul 6 12:34:25 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25A93DAC8F8; Thu, 6 Jul 2017 12:34:25 +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 EE4B56A6A2; Thu, 6 Jul 2017 12:34:24 +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 v66CYOnI092043; Thu, 6 Jul 2017 12:34:24 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v66CYNbD092038; Thu, 6 Jul 2017 12:34:23 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201707061234.v66CYNbD092038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 6 Jul 2017 12:34:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445142 - in branches/2017Q3/security: py-yara yara X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in branches/2017Q3/security: py-yara yara X-SVN-Commit-Revision: 445142 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 06 Jul 2017 12:34:25 -0000 Author: antoine Date: Thu Jul 6 12:34:23 2017 New Revision: 445142 URL: https://svnweb.freebsd.org/changeset/ports/445142 Log: MFH: r445141 Update to 3.6.3 Modified: branches/2017Q3/security/py-yara/Makefile branches/2017Q3/security/py-yara/distinfo branches/2017Q3/security/yara/Makefile branches/2017Q3/security/yara/distinfo branches/2017Q3/security/yara/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/security/py-yara/Makefile ============================================================================== --- branches/2017Q3/security/py-yara/Makefile Thu Jul 6 12:29:28 2017 (r445141) +++ branches/2017Q3/security/py-yara/Makefile Thu Jul 6 12:34:23 2017 (r445142) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yara -PORTVERSION= 3.6.2 +PORTVERSION= 3.6.3 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2017Q3/security/py-yara/distinfo ============================================================================== --- branches/2017Q3/security/py-yara/distinfo Thu Jul 6 12:29:28 2017 (r445141) +++ branches/2017Q3/security/py-yara/distinfo Thu Jul 6 12:34:23 2017 (r445142) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498592979 -SHA256 (yara-python-3.6.2.tar.gz) = 10537b99b62a6cf8c3d917040e2e541c95f113496dcbdfeec5855b29dffdc617 -SIZE (yara-python-3.6.2.tar.gz) = 300175 +TIMESTAMP = 1499319091 +SHA256 (yara-python-3.6.3.tar.gz) = 614252c90a3e03f309c91460efd2a50dd4dce4b6306eccef268d146a9c59fba2 +SIZE (yara-python-3.6.3.tar.gz) = 301219 Modified: branches/2017Q3/security/yara/Makefile ============================================================================== --- branches/2017Q3/security/yara/Makefile Thu Jul 6 12:29:28 2017 (r445141) +++ branches/2017Q3/security/yara/Makefile Thu Jul 6 12:34:23 2017 (r445142) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yara -PORTVERSION= 3.6.2 +PORTVERSION= 3.6.3 DISTVERSIONPREFIX= v CATEGORIES= security Modified: branches/2017Q3/security/yara/distinfo ============================================================================== --- branches/2017Q3/security/yara/distinfo Thu Jul 6 12:29:28 2017 (r445141) +++ branches/2017Q3/security/yara/distinfo Thu Jul 6 12:34:23 2017 (r445142) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498744095 -SHA256 (VirusTotal-yara-v3.6.2_GH0.tar.gz) = 413b530b69dd3fb7bcef439bf44be262f051e55f7aa129f1efada193b15903a6 -SIZE (VirusTotal-yara-v3.6.2_GH0.tar.gz) = 505455 +TIMESTAMP = 1499319072 +SHA256 (VirusTotal-yara-v3.6.3_GH0.tar.gz) = ad2c0e788b4d8b2f3e9078f448754313249a302b749b9a24e932bfc5e141a5e8 +SIZE (VirusTotal-yara-v3.6.3_GH0.tar.gz) = 505556 Modified: branches/2017Q3/security/yara/pkg-plist ============================================================================== --- branches/2017Q3/security/yara/pkg-plist Thu Jul 6 12:29:28 2017 (r445141) +++ branches/2017Q3/security/yara/pkg-plist Thu Jul 6 12:34:23 2017 (r445142) @@ -26,7 +26,7 @@ include/yara/utils.h lib/libyara.a lib/libyara.so lib/libyara.so.3 -lib/libyara.so.3.6.2 +lib/libyara.so.3.6.3 libdata/pkgconfig/yara.pc man/man1/yara.1.gz man/man1/yarac.1.gz From owner-svn-ports-branches@freebsd.org Fri Jul 7 02:09:31 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B7A2D97225; Fri, 7 Jul 2017 02:09:31 +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 B29942E2B; Fri, 7 Jul 2017 02:09:30 +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 v6729U3G031234; Fri, 7 Jul 2017 02:09:30 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6729TMi031231; Fri, 7 Jul 2017 02:09:29 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707070209.v6729TMi031231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 7 Jul 2017 02:09:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445196 - branches/2017Q3/www/drupal8 X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: branches/2017Q3/www/drupal8 X-SVN-Commit-Revision: 445196 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 02:09:31 -0000 Author: junovitch Date: Fri Jul 7 02:09:29 2017 New Revision: 445196 URL: https://svnweb.freebsd.org/changeset/ports/445196 Log: MFH: r445160 - Update to 8.3.5 Security: CVE-2017-6920 Security: CVE-2017-6921 Security: CVE-2017-6922 Security: https://vuxml.FreeBSD.org/freebsd/4fc2df49-6279-11e7-be0f-6cf0497db129.html Approved by: ports-secteam (with hat) Modified: branches/2017Q3/www/drupal8/Makefile branches/2017Q3/www/drupal8/distinfo branches/2017Q3/www/drupal8/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/drupal8/Makefile ============================================================================== --- branches/2017Q3/www/drupal8/Makefile Fri Jul 7 02:07:32 2017 (r445195) +++ branches/2017Q3/www/drupal8/Makefile Fri Jul 7 02:09:29 2017 (r445196) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drupal8 -PORTVERSION= 8.3.2 +PORTVERSION= 8.3.5 CATEGORIES= www MASTER_SITES= http://ftp.drupal.org/files/projects/ DISTNAME= drupal-${PORTVERSION} Modified: branches/2017Q3/www/drupal8/distinfo ============================================================================== --- branches/2017Q3/www/drupal8/distinfo Fri Jul 7 02:07:32 2017 (r445195) +++ branches/2017Q3/www/drupal8/distinfo Fri Jul 7 02:09:29 2017 (r445196) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494517164 -SHA256 (drupal/drupal-8.3.2.tar.gz) = 5afab2a639d8651cb009835a390e0e7d1322d39989dfe20f6be5a79a0b946b1e -SIZE (drupal/drupal-8.3.2.tar.gz) = 12698347 +TIMESTAMP = 1499365444 +SHA256 (drupal/drupal-8.3.5.tar.gz) = 8cbee23bf66c2b700ff9de3c1e859e7592b231318e255b5ce15ca941086f7980 +SIZE (drupal/drupal-8.3.5.tar.gz) = 12734016 Modified: branches/2017Q3/www/drupal8/pkg-plist ============================================================================== --- branches/2017Q3/www/drupal8/pkg-plist Fri Jul 7 02:07:32 2017 (r445195) +++ branches/2017Q3/www/drupal8/pkg-plist Fri Jul 7 02:09:29 2017 (r445196) @@ -1645,6 +1645,7 @@ %%WWWDIR%%/core/lib/Drupal/Core/Field/Annotation/FieldType.php %%WWWDIR%%/core/lib/Drupal/Core/Field/Annotation/FieldWidget.php %%WWWDIR%%/core/lib/Drupal/Core/Field/BaseFieldDefinition.php +%%WWWDIR%%/core/lib/Drupal/Core/Field/BaseFieldOverrideAccessControlHandler.php %%WWWDIR%%/core/lib/Drupal/Core/Field/BaseFieldOverrideStorage.php %%WWWDIR%%/core/lib/Drupal/Core/Field/ChangedFieldItemList.php %%WWWDIR%%/core/lib/Drupal/Core/Field/Entity/BaseFieldOverride.php @@ -2241,6 +2242,7 @@ %%WWWDIR%%/core/lib/Drupal/Core/Test/AssertMailTrait.php %%WWWDIR%%/core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php %%WWWDIR%%/core/lib/Drupal/Core/Test/HttpClientMiddleware/TestHttpClientMiddleware.php +%%WWWDIR%%/core/lib/Drupal/Core/Test/ObjectSerialization.php %%WWWDIR%%/core/lib/Drupal/Core/Test/TestDatabase.php %%WWWDIR%%/core/lib/Drupal/Core/Test/TestKernel.php %%WWWDIR%%/core/lib/Drupal/Core/Test/TestRunnerKernel.php @@ -2595,16 +2597,8 @@ %%WWWDIR%%/core/modules/aggregator/src/Plugin/views/argument/Fid.php %%WWWDIR%%/core/modules/aggregator/src/Plugin/views/argument/Iid.php %%WWWDIR%%/core/modules/aggregator/src/Plugin/views/row/Rss.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/AddFeedTest.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/AggregatorAdminTest.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/AggregatorCronTest.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/AggregatorRenderingTest.php %%WWWDIR%%/core/modules/aggregator/src/Tests/AggregatorTestBase.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/FeedAdminDisplayTest.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/FeedLanguageTest.php %%WWWDIR%%/core/modules/aggregator/src/Tests/Update/AggregatorUpdateTest.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/UpdateFeedItemTest.php -%%WWWDIR%%/core/modules/aggregator/src/Tests/UpdateFeedTest.php %%WWWDIR%%/core/modules/aggregator/templates/aggregator-feed.html.twig %%WWWDIR%%/core/modules/aggregator/templates/aggregator-item.html.twig %%WWWDIR%%/core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.info.yml @@ -2620,15 +2614,23 @@ %%WWWDIR%%/core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/processor/TestProcessor.php %%WWWDIR%%/core/modules/aggregator/tests/modules/aggregator_test_views/aggregator_test_views.info.yml %%WWWDIR%%/core/modules/aggregator/tests/modules/aggregator_test_views/test_views/views.view.test_aggregator_items.yml +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/AddFeedTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/AggregatorAdminTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/AggregatorCronTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/AggregatorRenderingTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/DeleteFeedItemTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/DeleteFeedTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/FeedAdminDisplayTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/FeedCacheTagsTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/FeedFetcherPluginTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/FeedLanguageTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/FeedParserTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/FeedProcessorPluginTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/ImportOpmlTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/UpdateFeedItemTest.php +%%WWWDIR%%/core/modules/aggregator/tests/src/Functional/UpdateFeedTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Kernel/AggregatorTitleTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Kernel/FeedValidationTest.php %%WWWDIR%%/core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php @@ -2869,20 +2871,10 @@ %%WWWDIR%%/core/modules/block_content/src/Plugin/migrate/source/d6/Box.php %%WWWDIR%%/core/modules/block_content/src/Plugin/migrate/source/d7/BlockCustom.php %%WWWDIR%%/core/modules/block_content/src/Plugin/views/area/ListingEmpty.php -%%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentCreationTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentListTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentListViewsTest.php %%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentTestBase.php -%%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentTranslationUITest.php %%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentTypeTest.php %%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentUpdateTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/BlockContentValidationTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/Views/BlockContentFieldFilterTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/Views/BlockContentIntegrationTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/Views/BlockContentRedirectTest.php %%WWWDIR%%/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php -%%WWWDIR%%/core/modules/block_content/src/Tests/Views/FieldTypeTest.php -%%WWWDIR%%/core/modules/block_content/src/Tests/Views/RevisionRelationshipsTest.php %%WWWDIR%%/core/modules/block_content/templates/block-content-add-list.html.twig %%WWWDIR%%/core/modules/block_content/tests/modules/block_content_test/block_content_test.info.yml %%WWWDIR%%/core/modules/block_content/tests/modules/block_content_test/block_content_test.module @@ -2896,11 +2888,22 @@ %%WWWDIR%%/core/modules/block_content/tests/modules/block_content_test_views/test_views/views.view.test_field_filters.yml %%WWWDIR%%/core/modules/block_content/tests/modules/block_content_test_views/test_views/views.view.test_field_type.yml %%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentCacheTagsTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentListTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentPageViewTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentRevisionsTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentTestBase.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/BlockContentValidationTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Functional/PageEditTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/Views/BlockContentIntegrationTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/Views/FieldTypeTest.php +%%WWWDIR%%/core/modules/block_content/tests/src/Functional/Views/RevisionRelationshipsTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Kernel/BlockContentDeletionTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentBodyFieldTest.php %%WWWDIR%%/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityDisplayTest.php @@ -2966,7 +2969,6 @@ %%WWWDIR%%/core/modules/book/src/Plugin/migrate/source/d6/Book.php %%WWWDIR%%/core/modules/book/src/Plugin/views/argument_default/TopLevelBook.php %%WWWDIR%%/core/modules/book/src/ProxyClass/BookUninstallValidator.php -%%WWWDIR%%/core/modules/book/src/Tests/Views/BookRelationshipTest.php %%WWWDIR%%/core/modules/book/templates/book-all-books-block.html.twig %%WWWDIR%%/core/modules/book/templates/book-export-html.html.twig %%WWWDIR%%/core/modules/book/templates/book-navigation.html.twig @@ -2983,6 +2985,7 @@ %%WWWDIR%%/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php %%WWWDIR%%/core/modules/book/tests/src/Functional/BookInstallTest.php %%WWWDIR%%/core/modules/book/tests/src/Functional/BookTest.php +%%WWWDIR%%/core/modules/book/tests/src/Functional/Views/BookRelationshipTest.php %%WWWDIR%%/core/modules/book/tests/src/FunctionalJavascript/BookJavascriptTest.php %%WWWDIR%%/core/modules/book/tests/src/Kernel/BookUninstallTest.php %%WWWDIR%%/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php @@ -3496,11 +3499,8 @@ %%WWWDIR%%/core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php %%WWWDIR%%/core/modules/config_translation/src/Plugin/migrate/source/d6/I18nProfileField.php %%WWWDIR%%/core/modules/config_translation/src/Routing/RouteSubscriber.php -%%WWWDIR%%/core/modules/config_translation/src/Tests/ConfigTranslationFormTest.php %%WWWDIR%%/core/modules/config_translation/src/Tests/ConfigTranslationInstallTest.php -%%WWWDIR%%/core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php %%WWWDIR%%/core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php -%%WWWDIR%%/core/modules/config_translation/src/Tests/ConfigTranslationUiThemeTest.php %%WWWDIR%%/core/modules/config_translation/templates/config_translation_manage_form_element.html.twig %%WWWDIR%%/core/modules/config_translation/tests/modules/config_translation_test/config/install/config_translation_test.content.yml %%WWWDIR%%/core/modules/config_translation/tests/modules/config_translation_test/config/schema/config_translation_test.schema.yml @@ -3509,7 +3509,10 @@ %%WWWDIR%%/core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.links.task.yml %%WWWDIR%%/core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.module %%WWWDIR%%/core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php +%%WWWDIR%%/core/modules/config_translation/tests/src/Functional/ConfigTranslationFormTest.php %%WWWDIR%%/core/modules/config_translation/tests/src/Functional/ConfigTranslationListUiTest.php +%%WWWDIR%%/core/modules/config_translation/tests/src/Functional/ConfigTranslationOverviewTest.php +%%WWWDIR%%/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php %%WWWDIR%%/core/modules/config_translation/tests/src/Functional/ConfigTranslationViewListUiTest.php %%WWWDIR%%/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateI18nSystemMaintenanceTest.php %%WWWDIR%%/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateI18nSystemSiteTest.php @@ -3558,8 +3561,6 @@ %%WWWDIR%%/core/modules/contact/src/Plugin/migrate/source/ContactSettings.php %%WWWDIR%%/core/modules/contact/src/Plugin/views/field/ContactLink.php %%WWWDIR%%/core/modules/contact/src/Tests/Update/ContactUpdateTest.php -%%WWWDIR%%/core/modules/contact/src/Tests/Views/ContactFieldsTest.php -%%WWWDIR%%/core/modules/contact/src/Tests/Views/ContactLinkTest.php %%WWWDIR%%/core/modules/contact/tests/drupal-7.contact.database.php %%WWWDIR%%/core/modules/contact/tests/modules/contact_storage_test/config/schema/contact_storage_test.schema.yml %%WWWDIR%%/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.info.yml @@ -3574,6 +3575,8 @@ %%WWWDIR%%/core/modules/contact/tests/src/Functional/ContactPersonalTest.php %%WWWDIR%%/core/modules/contact/tests/src/Functional/ContactSitewideTest.php %%WWWDIR%%/core/modules/contact/tests/src/Functional/ContactStorageTest.php +%%WWWDIR%%/core/modules/contact/tests/src/Functional/Views/ContactFieldsTest.php +%%WWWDIR%%/core/modules/contact/tests/src/Functional/Views/ContactLinkTest.php %%WWWDIR%%/core/modules/contact/tests/src/Kernel/MessageEntityTest.php %%WWWDIR%%/core/modules/contact/tests/src/Kernel/Migrate/MigrateContactCategoryTest.php %%WWWDIR%%/core/modules/contact/tests/src/Kernel/Migrate/d6/MigrateContactSettingsTest.php @@ -3590,9 +3593,11 @@ %%WWWDIR%%/core/modules/content_moderation/content_moderation.permissions.yml %%WWWDIR%%/core/modules/content_moderation/content_moderation.services.yml %%WWWDIR%%/core/modules/content_moderation/content_moderation.views.inc -%%WWWDIR%%/core/modules/content_moderation/css/entity-moderation-form.css +%%WWWDIR%%/core/modules/content_moderation/css/content_moderation.module.css +%%WWWDIR%%/core/modules/content_moderation/css/content_moderation.theme.css %%WWWDIR%%/core/modules/content_moderation/src/Access/LatestRevisionCheck.php %%WWWDIR%%/core/modules/content_moderation/src/ContentModerationState.php +%%WWWDIR%%/core/modules/content_moderation/src/ContentModerationStateAccessControlHandler.php %%WWWDIR%%/core/modules/content_moderation/src/ContentModerationStateInterface.php %%WWWDIR%%/core/modules/content_moderation/src/ContentModerationStateStorageSchema.php %%WWWDIR%%/core/modules/content_moderation/src/ContentPreprocess.php @@ -3625,11 +3630,6 @@ %%WWWDIR%%/core/modules/content_moderation/src/Routing/EntityTypeModerationRouteProvider.php %%WWWDIR%%/core/modules/content_moderation/src/StateTransitionValidation.php %%WWWDIR%%/core/modules/content_moderation/src/StateTransitionValidationInterface.php -%%WWWDIR%%/core/modules/content_moderation/src/Tests/ModerationFormTest.php -%%WWWDIR%%/core/modules/content_moderation/src/Tests/ModerationStateBlockTest.php -%%WWWDIR%%/core/modules/content_moderation/src/Tests/ModerationStateNodeTest.php -%%WWWDIR%%/core/modules/content_moderation/src/Tests/ModerationStateNodeTypeTest.php -%%WWWDIR%%/core/modules/content_moderation/src/Tests/ModerationStateTestBase.php %%WWWDIR%%/core/modules/content_moderation/src/ViewsData.php %%WWWDIR%%/core/modules/content_moderation/templates/entity-moderation-form.html.twig %%WWWDIR%%/core/modules/content_moderation/tests/modules/content_moderation_test_local_task/content_moderation_test_local_task.info.yml @@ -3644,11 +3644,18 @@ %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ContentModerationWorkflowTypeTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/LatestRevisionViewsFilterTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationActionsTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationFormTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationLocaleTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationRevisionRevertTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationStateAccessTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationStateBlockTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationStateNodeTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationStateNodeTypeTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/ModerationStateTestBase.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Functional/NodeAccessTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ContentModerationPermissionsTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateAccessControlHandlerTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateStorageSchemaTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowTypeApiTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/DefaultRevisionStateTest.php @@ -3656,6 +3663,7 @@ %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/EntityRevisionConverterTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/EntityTypeInfoTest.php +%%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/StateFormatterTest.php %%WWWDIR%%/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php @@ -3694,32 +3702,32 @@ %%WWWDIR%%/core/modules/content_translation/src/Plugin/Derivative/ContentTranslationLocalTasks.php %%WWWDIR%%/core/modules/content_translation/src/Plugin/views/field/TranslationLink.php %%WWWDIR%%/core/modules/content_translation/src/Routing/ContentTranslationRouteSubscriber.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTestTranslationUITest.php %%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationContextualLinksTest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationDisableSettingTest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationEnableTest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationLanguageChangeTest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationSyncImageTest.php %%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationTestBase.php %%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php %%WWWDIR%%/core/modules/content_translation/src/Tests/ContentTranslationWorkflowsTest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/Views/ContentTranslationViewsUITest.php -%%WWWDIR%%/core/modules/content_translation/src/Tests/Views/TranslationLinkTest.php %%WWWDIR%%/core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.info.yml %%WWWDIR%%/core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.module %%WWWDIR%%/core/modules/content_translation/tests/modules/content_translation_test/src/Entity/EntityTestTranslatableNoUISkip.php %%WWWDIR%%/core/modules/content_translation/tests/modules/content_translation_test/src/Entity/EntityTestTranslatableUISkip.php %%WWWDIR%%/core/modules/content_translation/tests/modules/content_translation_test_views/content_translation_test_views.info.yml %%WWWDIR%%/core/modules/content_translation/tests/modules/content_translation_test_views/test_views/views.view.test_entity_translations_link.yml +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTestTranslationUITest.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationDisableSettingTest.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationEnableTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationLinkTagTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationMetadataFieldsTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationOperationsTest.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationSettingsTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationUISkipTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php +%%WWWDIR%%/core/modules/content_translation/tests/src/Functional/Views/TranslationLinkTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Kernel/ContentTranslationConfigImportTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Kernel/ContentTranslationSettingsApiTest.php %%WWWDIR%%/core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php @@ -3943,6 +3951,7 @@ %%WWWDIR%%/core/modules/field/src/FieldConfigAccessControlHandler.php %%WWWDIR%%/core/modules/field/src/FieldConfigInterface.php %%WWWDIR%%/core/modules/field/src/FieldConfigStorage.php +%%WWWDIR%%/core/modules/field/src/FieldStorageConfigAccessControlHandler.php %%WWWDIR%%/core/modules/field/src/FieldStorageConfigInterface.php %%WWWDIR%%/core/modules/field/src/FieldStorageConfigStorage.php %%WWWDIR%%/core/modules/field/src/FieldStorageConfigUpdateForbiddenException.php @@ -4110,7 +4119,9 @@ %%WWWDIR%%/core/modules/field/tests/src/Kernel/TranslationTest.php %%WWWDIR%%/core/modules/field/tests/src/Kernel/Uri/UriItemTest.php %%WWWDIR%%/core/modules/field/tests/src/Kernel/WidgetPluginManagerTest.php +%%WWWDIR%%/core/modules/field/tests/src/Unit/FieldConfigAccessControlHandlerTest.php %%WWWDIR%%/core/modules/field/tests/src/Unit/FieldConfigEntityUnitTest.php +%%WWWDIR%%/core/modules/field/tests/src/Unit/FieldStorageConfigAccessControlHandlerTest.php %%WWWDIR%%/core/modules/field/tests/src/Unit/FieldStorageConfigEntityUnitTest.php %%WWWDIR%%/core/modules/field/tests/src/Unit/FieldUninstallValidatorTest.php %%WWWDIR%%/core/modules/field/tests/src/Unit/Plugin/migrate/process/d6/FieldSettingsTest.php @@ -4191,6 +4202,7 @@ %%WWWDIR%%/core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php %%WWWDIR%%/core/modules/field_ui/tests/src/Functional/FieldUIIndentationTest.php %%WWWDIR%%/core/modules/field_ui/tests/src/Functional/FieldUIRouteTest.php +%%WWWDIR%%/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php %%WWWDIR%%/core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php %%WWWDIR%%/core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php %%WWWDIR%%/core/modules/field_ui/tests/src/Kernel/EntityFormDisplayTest.php @@ -4217,6 +4229,7 @@ %%WWWDIR%%/core/modules/file/migration_templates/d6_upload_field.yml %%WWWDIR%%/core/modules/file/migration_templates/d6_upload_field_instance.yml %%WWWDIR%%/core/modules/file/migration_templates/d7_file.yml +%%WWWDIR%%/core/modules/file/migration_templates/d7_file_private.yml %%WWWDIR%%/core/modules/file/migration_templates/file_settings.yml %%WWWDIR%%/core/modules/file/src/Controller/FileWidgetAjaxController.php %%WWWDIR%%/core/modules/file/src/Element/ManagedFile.php @@ -4325,6 +4338,7 @@ %%WWWDIR%%/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php %%WWWDIR%%/core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileConfigsTest.php %%WWWDIR%%/core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileTest.php +%%WWWDIR%%/core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php %%WWWDIR%%/core/modules/file/tests/src/Kernel/Migrate/process/d6/CckFileTest.php %%WWWDIR%%/core/modules/file/tests/src/Kernel/MoveTest.php %%WWWDIR%%/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/FileTest.php @@ -4436,10 +4450,12 @@ %%WWWDIR%%/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/FilterKernelTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/FilterSettingsTest.php +%%WWWDIR%%/core/modules/filter/tests/src/Kernel/Migrate/d6/FilterFormatPermissionTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/Migrate/d6/MigrateFilterFormatTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterFormatTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterSettingsTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterIdTest.php +%%WWWDIR%%/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterSettingsTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d6/FilterFormatTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d7/FilterFormatTest.php %%WWWDIR%%/core/modules/filter/tests/src/Kernel/TextFormatElementFormTest.php @@ -4501,7 +4517,6 @@ %%WWWDIR%%/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraint.php %%WWWDIR%%/core/modules/forum/src/Plugin/Validation/Constraint/ForumLeafConstraintValidator.php %%WWWDIR%%/core/modules/forum/src/ProxyClass/ForumUninstallValidator.php -%%WWWDIR%%/core/modules/forum/src/Tests/Views/ForumIntegrationTest.php %%WWWDIR%%/core/modules/forum/templates/forum-icon.html.twig %%WWWDIR%%/core/modules/forum/templates/forum-list.html.twig %%WWWDIR%%/core/modules/forum/templates/forum-submitted.html.twig @@ -4513,6 +4528,7 @@ %%WWWDIR%%/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php %%WWWDIR%%/core/modules/forum/tests/src/Functional/ForumTest.php %%WWWDIR%%/core/modules/forum/tests/src/Functional/ForumUninstallTest.php +%%WWWDIR%%/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php %%WWWDIR%%/core/modules/forum/tests/src/Kernel/ForumValidationTest.php %%WWWDIR%%/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php %%WWWDIR%%/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php @@ -4551,6 +4567,9 @@ %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Action/ActionHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Action/ActionHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Action/ActionHalJsonCookieTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideHalJsonAnonTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideHalJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideHalJsonCookieTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Block/BlockHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Block/BlockHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Block/BlockHalJsonCookieTest.php @@ -4573,6 +4592,9 @@ %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsHalJsonCookieTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Editor/EditorHalJsonAnonTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Editor/EditorHalJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Editor/EditorHalJsonCookieTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/EntityTest/EntityTestHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/EntityTest/EntityTestHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/EntityTest/EntityTestHalJsonCookieTest.php @@ -4586,6 +4608,9 @@ %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FieldConfig/FieldConfigHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FieldConfig/FieldConfigHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FieldConfig/FieldConfigHalJsonCookieTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigHalJsonAnonTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigHalJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigHalJsonCookieTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FilterFormat/FilterFormatHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FilterFormat/FilterFormatHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/FilterFormat/FilterFormatHalJsonCookieTest.php @@ -4606,6 +4631,9 @@ %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/NodeType/NodeTypeHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/NodeType/NodeTypeHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/NodeType/NodeTypeHalJsonCookieTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/RdfMapping/RdfMappingHalJsonAnonTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/RdfMapping/RdfMappingHalJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/RdfMapping/RdfMappingHalJsonCookieTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigHalJsonCookieTest.php @@ -4618,6 +4646,9 @@ %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Shortcut/ShortcutHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Shortcut/ShortcutHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Shortcut/ShortcutHalJsonCookieTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetHalJsonAnonTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetHalJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetHalJsonCookieTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Term/TermHalJsonAnonTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Term/TermHalJsonBasicAuthTest.php %%WWWDIR%%/core/modules/hal/tests/src/Functional/EntityResource/Term/TermHalJsonCookieTest.php @@ -4955,7 +4986,6 @@ %%WWWDIR%%/core/modules/language/tests/src/Kernel/LanguageDependencyInjectionTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/LanguageFallbackTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/LanguageTestBase.php -%%WWWDIR%%/core/modules/language/tests/src/Kernel/Migrate/MigrateDefaultLanguageTrait.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateDefaultLanguageTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentSettingsTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageNegotiationSettingsTest.php @@ -4963,6 +4993,8 @@ %%WWWDIR%%/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageNegotiationSettingsTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php +%%WWWDIR%%/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php +%%WWWDIR%%/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Views/ArgumentLanguageTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Views/FieldLanguageTest.php %%WWWDIR%%/core/modules/language/tests/src/Kernel/Views/FilterLanguageTest.php @@ -5081,21 +5113,6 @@ %%WWWDIR%%/core/modules/locale/src/StringInterface.php %%WWWDIR%%/core/modules/locale/src/StringStorageException.php %%WWWDIR%%/core/modules/locale/src/StringStorageInterface.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleConfigTranslationImportTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleConfigTranslationTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleExportTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleFileSystemFormTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleImportFunctionalTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleJavascriptTranslationTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleLibraryAlterTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocalePluralFormatTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleTranslationUiTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleUpdateBase.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleUpdateCronTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleUpdateDevelopmentReleaseTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleUpdateInterfaceTest.php -%%WWWDIR%%/core/modules/locale/src/Tests/LocaleUpdateTest.php %%WWWDIR%%/core/modules/locale/src/TranslationString.php %%WWWDIR%%/core/modules/locale/templates/locale-translation-last-check.html.twig %%WWWDIR%%/core/modules/locale/templates/locale-translation-update-info.html.twig @@ -5118,11 +5135,26 @@ %%WWWDIR%%/core/modules/locale/tests/modules/locale_test_translate/config/schema/locale_test_translate.schema.yml %%WWWDIR%%/core/modules/locale/tests/modules/locale_test_translate/locale_test_translate.info.yml %%WWWDIR%%/core/modules/locale/tests/modules/locale_test_translate/locale_test_translate.module +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleConfigTranslationImportTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php %%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleContentTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleExportTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleJavascriptTranslationTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleLibraryAlterTest.php %%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleLocaleLookupTest.php %%WWWDIR%%/core/modules/locale/tests/src/Functional/LocalePathTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php %%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleStringTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleTranslateStringTourTest.php %%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleTranslatedSchemaDefinitionTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleTranslationUiTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleUpdateCronTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleUpdateDevelopmentReleaseTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php +%%WWWDIR%%/core/modules/locale/tests/src/Functional/LocaleUpdateTest.php %%WWWDIR%%/core/modules/locale/tests/src/Kernel/LocaleConfigManagerTest.php %%WWWDIR%%/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php %%WWWDIR%%/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php @@ -5159,15 +5191,15 @@ %%WWWDIR%%/core/modules/menu_link_content/src/Plugin/migrate/process/d6/LinkUri.php %%WWWDIR%%/core/modules/menu_link_content/src/Plugin/migrate/process/d7/InternalUri.php %%WWWDIR%%/core/modules/menu_link_content/src/Plugin/migrate/source/MenuLink.php -%%WWWDIR%%/core/modules/menu_link_content/src/Tests/MenuLinkContentDeleteFormTest.php -%%WWWDIR%%/core/modules/menu_link_content/src/Tests/MenuLinkContentFormTest.php -%%WWWDIR%%/core/modules/menu_link_content/src/Tests/MenuLinkContentTranslationUITest.php %%WWWDIR%%/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/menu_link_content_dynamic_route.info.yml %%WWWDIR%%/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/menu_link_content_dynamic_route.routing.yml %%WWWDIR%%/core/modules/menu_link_content/tests/menu_link_content_dynamic_route/src/Routes.php %%WWWDIR%%/core/modules/menu_link_content/tests/outbound_processing_test/outbound_processing_test.info.yml %%WWWDIR%%/core/modules/menu_link_content/tests/outbound_processing_test/outbound_processing_test.routing.yml %%WWWDIR%%/core/modules/menu_link_content/tests/src/Functional/LinksTest.php +%%WWWDIR%%/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentDeleteFormTest.php +%%WWWDIR%%/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php +%%WWWDIR%%/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentTranslationUITest.php %%WWWDIR%%/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentCacheabilityBubblingTest.php %%WWWDIR%%/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeriverTest.php %%WWWDIR%%/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkContentStubTest.php @@ -5286,6 +5318,7 @@ %%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/FormatDate.php %%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/Get.php %%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/Iterator.php +%%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/Log.php %%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/MachineName.php %%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/MakeUniqueBase.php %%WWWDIR%%/core/modules/migrate/src/Plugin/migrate/process/MakeUniqueEntityField.php @@ -5343,6 +5376,7 @@ %%WWWDIR%%/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php %%WWWDIR%%/core/modules/migrate/tests/src/Kernel/MigrationTest.php %%WWWDIR%%/core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php +%%WWWDIR%%/core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php %%WWWDIR%%/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginConfigurationTest.php %%WWWDIR%%/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php %%WWWDIR%%/core/modules/migrate/tests/src/Kernel/Plugin/MigrationTest.php @@ -5414,6 +5448,8 @@ %%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/cckfield/CckFieldPluginBase.php %%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/destination/EntityFieldStorageConfig.php %%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/field/FieldPluginBase.php +%%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/field/NodeReference.php +%%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/field/UserReference.php %%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/source/DrupalSqlBase.php %%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php %%WWWDIR%%/core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php @@ -5461,19 +5497,21 @@ %%WWWDIR%%/core/modules/migrate_drupal_ui/src/Controller/MigrateController.php %%WWWDIR%%/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php %%WWWDIR%%/core/modules/migrate_drupal_ui/src/MigrateAccessCheck.php -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/MigrateAccessTest.php %%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/MigrateUpgrade6Test.php -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/core/modules/simpletest/files/html-1.txt -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/core/modules/simpletest/files/image-1.png -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/core/modules/simpletest/files/image-2.jpg -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/core/modules/simpletest/files/image-test.gif -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/core/modules/simpletest/files/image-test.jpg -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/core/modules/simpletest/files/image-test.png -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d6/files/tmp/some-temp-file.jpg -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d7/MigrateUpgrade7Test.php -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d7/files/sites/default/files/cube.jpeg -%%WWWDIR%%/core/modules/migrate_drupal_ui/src/Tests/d7/files/sites/default/files/ds9.txt +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateAccessTest.php +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/core/modules/simpletest/files/html-1.txt +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/core/modules/simpletest/files/image-1.png +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/core/modules/simpletest/files/image-2.jpg +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/core/modules/simpletest/files/image-test.gif +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/core/modules/simpletest/files/image-test.jpg +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/core/modules/simpletest/files/image-test.png +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d6/files/tmp/some-temp-file.jpg +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d7/files/sites/default/files/cube.jpeg +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d7/files/sites/default/files/ds9.txt +%%WWWDIR%%/core/modules/migrate_drupal_ui/tests/src/Functional/d7/files/sites/default/private/Babylon5.txt %%WWWDIR%%/core/modules/node/config/install/core.entity_view_mode.node.full.yml %%WWWDIR%%/core/modules/node/config/install/core.entity_view_mode.node.rss.yml %%WWWDIR%%/core/modules/node/config/install/core.entity_view_mode.node.search_index.yml @@ -5622,46 +5660,13 @@ %%WWWDIR%%/core/modules/node/src/ProxyClass/ParamConverter/NodePreviewConverter.php %%WWWDIR%%/core/modules/node/src/Routing/RouteSubscriber.php %%WWWDIR%%/core/modules/node/src/Tests/AssertButtonsTrait.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeAccessAutoBubblingTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeAccessBaseTableTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeAccessPagerTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeAccessRebuildNodeGrantsTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeAdminTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeBlockFunctionalTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeEditFormTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeFieldMultilingualTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeFormButtonsTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeQueryAlterTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeRevisionPermissionsTest.php %%WWWDIR%%/core/modules/node/src/Tests/NodeRevisionsTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeSyndicateBlockTest.php %%WWWDIR%%/core/modules/node/src/Tests/NodeTestBase.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeTitleTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeTitleXSSTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeTranslationUITest.php %%WWWDIR%%/core/modules/node/src/Tests/NodeTypeTest.php -%%WWWDIR%%/core/modules/node/src/Tests/NodeViewTest.php %%WWWDIR%%/core/modules/node/src/Tests/PagePreviewTest.php -%%WWWDIR%%/core/modules/node/src/Tests/SummaryLengthTest.php %%WWWDIR%%/core/modules/node/src/Tests/Update/NodeUpdateTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/BulkFormAccessTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/BulkFormTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/FilterNodeAccessTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/FilterUidRevisionTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/FrontPageTest.php %%WWWDIR%%/core/modules/node/src/Tests/Views/NodeContextualLinksTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/NodeFieldFilterTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/NodeFieldTokensTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/NodeIntegrationTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/NodeLanguageTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/NodeRevisionWizardTest.php %%WWWDIR%%/core/modules/node/src/Tests/Views/NodeTestBase.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/PathPluginTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/RevisionLinkTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/RevisionRelationshipsTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/RowPluginTest.php -%%WWWDIR%%/core/modules/node/src/Tests/Views/StatusExtraTest.php %%WWWDIR%%/core/modules/node/templates/field--node--created.html.twig %%WWWDIR%%/core/modules/node/templates/field--node--title.html.twig %%WWWDIR%%/core/modules/node/templates/field--node--uid.html.twig @@ -5704,35 +5709,68 @@ %%WWWDIR%%/core/modules/node/tests/node_access_test_auto_bubbling/node_access_test_auto_bubbling.info.yml %%WWWDIR%%/core/modules/node/tests/node_access_test_auto_bubbling/node_access_test_auto_bubbling.routing.yml %%WWWDIR%%/core/modules/node/tests/node_access_test_auto_bubbling/src/Controller/NodeAccessTestAutoBubblingController.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/AssertButtonsTrait.php %%WWWDIR%%/core/modules/node/tests/src/Functional/Migrate/d6/MigrateNodeRevisionTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/Migrate/d7/NodeMigrateDeriverTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/MultiStepNodeFormBasicOptionsTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessAutoBubblingTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessBaseTableTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessFieldTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareCombinationTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessLanguageTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessMenuLinkTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessRebuildNodeGrantsTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAccessRecordsTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeActionsConfigurationTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeAdminTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeBlockFunctionalTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeCacheTagsTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeCreationTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeEditFormTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeEntityViewModeAlterTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeFieldMultilingualTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeFormButtonsTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeFormSaveChangedTimeTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeHelpTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeLinksTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeLoadMultipleTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodePostSettingsTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeRSSContentTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeRevisionPermissionsTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeRevisionsAllTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeRevisionsUiBypassAccessTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeRevisionsUiTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeSaveTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeSyndicateBlockTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTemplateSuggestionsTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTestBase.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTitleTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTitleXSSTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTranslationUITest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTypeInitialLanguageTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeTypeTranslationTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/NodeViewLanguageTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/NodeViewTest.php %%WWWDIR%%/core/modules/node/tests/src/Functional/PageViewTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/BulkFormTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/FilterNodeAccessTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/FilterUidRevisionTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/FrontPageTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/NodeFieldFilterTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/NodeFieldTokensTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/NodeIntegrationTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/NodeLanguageTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/NodeRevisionWizardTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/NodeTestBase.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/PathPluginTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/RevisionLinkTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/RowPluginTest.php +%%WWWDIR%%/core/modules/node/tests/src/Functional/Views/StatusExtraTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Action/UnpublishByKeywordActionTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Config/NodeImportChangeTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Config/NodeImportCreateTest.php @@ -5771,10 +5809,12 @@ %%WWWDIR%%/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTranslationTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTypeTest.php +%%WWWDIR%%/core/modules/node/tests/src/Kernel/SummaryLengthTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php %%WWWDIR%%/core/modules/node/tests/src/Kernel/Views/RevisionCreateTimestampTest.php +%%WWWDIR%%/core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php %%WWWDIR%%/core/modules/node/tests/src/Unit/PageCache/DenyNodePreviewTest.php %%WWWDIR%%/core/modules/node/tests/src/Unit/Plugin/views/field/NodeBulkFormTest.php %%WWWDIR%%/core/modules/options/config/schema/options.schema.yml @@ -6123,6 +6163,10 @@ %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionJsonCookieTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Action/ActionResourceTestBase.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideJsonAnonTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideJsonCookieTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/BaseFieldOverride/BaseFieldOverrideResourceTestBase.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockJsonAnonTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Block/BlockJsonCookieTest.php @@ -6151,6 +6195,10 @@ %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsJsonCookieTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ContentLanguageSettings/ContentLanguageSettingsResourceTestBase.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorJsonAnonTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorJsonCookieTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Editor/EditorResourceTestBase.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/EntityTest/EntityTestJsonAnonTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/EntityTest/EntityTestJsonBasicAuthTest.php @@ -6168,6 +6216,10 @@ %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigJsonCookieTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldConfig/FieldConfigResourceTestBase.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigJsonAnonTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigJsonCookieTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FieldStorageConfig/FieldStorageConfigResourceTestBase.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatJsonAnonTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/FilterFormat/FilterFormatJsonCookieTest.php @@ -6192,6 +6244,10 @@ %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeJsonCookieTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/NodeType/NodeTypeResourceTestBase.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingJsonAnonTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingJsonCookieTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RdfMapping/RdfMappingResourceTestBase.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigJsonAnonTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/RestResourceConfig/RestResourceConfigJsonCookieTest.php @@ -6208,6 +6264,10 @@ %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutJsonCookieTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Shortcut/ShortcutResourceTestBase.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetJsonAnonTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetJsonBasicAuthTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetJsonCookieTest.php +%%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/ShortcutSet/ShortcutSetResourceTestBase.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Term/TermJsonAnonTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Term/TermJsonBasicAuthTest.php %%WWWDIR%%/core/modules/rest/tests/src/Functional/EntityResource/Term/TermJsonCookieTest.php @@ -6763,7 +6823,6 @@ %%WWWDIR%%/core/modules/system/src/SystemManager.php %%WWWDIR%%/core/modules/system/src/SystemRequirements.php %%WWWDIR%%/core/modules/system/src/Tests/Ajax/AjaxFormCacheTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Ajax/AjaxFormPageCacheTest.php %%WWWDIR%%/core/modules/system/src/Tests/Ajax/AjaxInGroupTest.php %%WWWDIR%%/core/modules/system/src/Tests/Ajax/AjaxTestBase.php %%WWWDIR%%/core/modules/system/src/Tests/Ajax/CommandsTest.php @@ -6772,8 +6831,6 @@ %%WWWDIR%%/core/modules/system/src/Tests/Ajax/FormValuesTest.php %%WWWDIR%%/core/modules/system/src/Tests/Ajax/FrameworkTest.php %%WWWDIR%%/core/modules/system/src/Tests/Ajax/MultiFormTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Batch/PageTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Batch/ProcessingTest.php %%WWWDIR%%/core/modules/system/src/Tests/Bootstrap/ErrorContainer.php %%WWWDIR%%/core/modules/system/src/Tests/Bootstrap/ExceptionContainer.php %%WWWDIR%%/core/modules/system/src/Tests/Cache/AssertPageCacheContextsAndTagsTrait.php @@ -6792,10 +6849,6 @@ %%WWWDIR%%/core/modules/system/src/Tests/Condition/ConditionFormTest.php %%WWWDIR%%/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php %%WWWDIR%%/core/modules/system/src/Tests/Database/FakeRecord.php -%%WWWDIR%%/core/modules/system/src/Tests/Database/SelectPagerDefaultTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Database/TemporaryQueryTest.php -%%WWWDIR%%/core/modules/system/src/Tests/DrupalKernel/ContainerRebuildWebTest.php %%WWWDIR%%/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php %%WWWDIR%%/core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php %%WWWDIR%%/core/modules/system/src/Tests/Entity/EntityFormTest.php @@ -6830,8 +6883,6 @@ %%WWWDIR%%/core/modules/system/src/Tests/Form/TriggeringElementTest.php %%WWWDIR%%/core/modules/system/src/Tests/Form/UrlTest.php %%WWWDIR%%/core/modules/system/src/Tests/Form/ValidationTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Image/ToolkitSetupFormTest.php -%%WWWDIR%%/core/modules/system/src/Tests/Image/ToolkitTest.php %%WWWDIR%%/core/modules/system/src/Tests/Image/ToolkitTestBase.php %%WWWDIR%%/core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php %%WWWDIR%%/core/modules/system/src/Tests/Installer/DistributionProfileExistingSettingsTest.php @@ -7248,7 +7299,6 @@ %%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php %%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestRev.php %%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestStringId.php -%%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestUpdate.php %%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestViewBuilder.php %%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestWithBundle.php %%WWWDIR%%/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestWithRevisionLog.php @@ -7681,12 +7731,20 @@ %%WWWDIR%%/core/modules/system/tests/modules/url_alter_test/url_alter_test.info.yml %%WWWDIR%%/core/modules/system/tests/modules/url_alter_test/url_alter_test.install %%WWWDIR%%/core/modules/system/tests/modules/url_alter_test/url_alter_test.services.yml +%%WWWDIR%%/core/modules/system/tests/src/Functional/Batch/PageTest.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Bootstrap/DrupalSetMessageTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Cache/CacheTestBase.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Cache/ClearTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Cache/PageCacheTagsTestBase.php %%WWWDIR%%/core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/Database/FakeRecord.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/Database/SelectPagerDefaultTest.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/Database/SelectTableSortDefaultTest.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/Database/TemporaryQueryTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php +%%WWWDIR%%/core/modules/system/tests/src/Functional/DrupalKernel/ContainerRebuildWebTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/DrupalKernel/ContentNegotiationTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php %%WWWDIR%%/core/modules/system/tests/src/Functional/Entity/EntityAddUITest.php @@ -7847,7 +7905,9 @@ %%WWWDIR%%/core/modules/taxonomy/config/schema/taxonomy.views.schema.yml %%WWWDIR%%/core/modules/taxonomy/css/taxonomy.theme.css %%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_taxonomy_term.yml +%%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_taxonomy_term_translation.yml %%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_taxonomy_vocabulary.yml +%%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_taxonomy_vocabulary_translation.yml %%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_term_node.yml %%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_term_node_revision.yml %%WWWDIR%%/core/modules/taxonomy/migration_templates/d6_vocabulary_entity_display.yml @@ -7875,6 +7935,7 @@ %%WWWDIR%%/core/modules/taxonomy/src/Plugin/migrate/source/d6/TermNodeRevision.php %%WWWDIR%%/core/modules/taxonomy/src/Plugin/migrate/source/d6/Vocabulary.php %%WWWDIR%%/core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyPerType.php +%%WWWDIR%%/core/modules/taxonomy/src/Plugin/migrate/source/d6/VocabularyTranslation.php %%WWWDIR%%/core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php %%WWWDIR%%/core/modules/taxonomy/src/Plugin/migrate/source/d7/Vocabulary.php %%WWWDIR%%/core/modules/taxonomy/src/Plugin/views/argument/IndexTid.php @@ -7903,36 +7964,13 @@ %%WWWDIR%%/core/modules/taxonomy/src/TermViewBuilder.php %%WWWDIR%%/core/modules/taxonomy/src/TermViewsData.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/RssTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyImageTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyQueryAlterTest.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyTermPagerTest.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyTestBase.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyTestTrait.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TermAutocompleteTest.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TermTest.php %%WWWDIR%%/core/modules/taxonomy/src/Tests/TermTranslationTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/TermTranslationUITest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/ThemeTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/ArgumentValidatorTermTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/RelationshipNodeTermDataTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/RelationshipRepresentativeNodeTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyDefaultArgumentTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldFilterTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldTidTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyIndexTidFilterTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyIndexTidUiTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyParentUITest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyRelationshipTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyTermArgumentDepthTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyTermFilterDepthTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyTestBase.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TaxonomyVocabularyArgumentTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/Views/TermNameFieldTest.php -%%WWWDIR%%/core/modules/taxonomy/src/Tests/VocabularyUiTest.php %%WWWDIR%%/core/modules/taxonomy/src/VocabularyForm.php %%WWWDIR%%/core/modules/taxonomy/src/VocabularyInterface.php %%WWWDIR%%/core/modules/taxonomy/src/VocabularyListBuilder.php @@ -7981,23 +8019,50 @@ %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/EfqTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/LegacyTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/LoadMultipleTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TaxonomyImageTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TaxonomyQueryAlterTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TaxonomyTermPagerTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TaxonomyTestBase.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TaxonomyTestTrait.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TermEntityReferenceTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TermTranslationFieldViewTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/ThemeTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/TokenReplaceTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/ArgumentValidatorTermTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/RelationshipNodeTermDataTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/RelationshipRepresentativeNodeTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyDefaultArgumentTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldAllTermsTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldTidTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidFilterTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyParentUITest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyRelationshipTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermArgumentDepthTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTestBase.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyVocabularyArgumentTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/Views/TermNameFieldTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/VocabularyCrudTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/VocabularyLanguageTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/VocabularyPermissionsTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/VocabularySerializationTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/VocabularyTranslationTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Functional/VocabularyUiTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/ForwardRevisionTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyConfigsTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyTermStubTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeRevisionTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php @@ -8010,7 +8075,9 @@ %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermNodeTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermSourceWithVocabularyFilterTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTranslationTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTest.php +%%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTranslationTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermSourceWithVocabularyFilterTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermTest.php %%WWWDIR%%/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/VocabularyTest.php @@ -8170,12 +8237,7 @@ %%WWWDIR%%/core/modules/update/src/Form/UpdateManagerInstall.php %%WWWDIR%%/core/modules/update/src/Form/UpdateManagerUpdate.php %%WWWDIR%%/core/modules/update/src/Form/UpdateReady.php -%%WWWDIR%%/core/modules/update/src/Tests/FileTransferAuthorizeFormTest.php -%%WWWDIR%%/core/modules/update/src/Tests/UpdateContribTest.php -%%WWWDIR%%/core/modules/update/src/Tests/UpdateCoreTest.php -%%WWWDIR%%/core/modules/update/src/Tests/UpdateDeleteFileIfStaleTest.php %%WWWDIR%%/core/modules/update/src/Tests/UpdateTestBase.php -%%WWWDIR%%/core/modules/update/src/Tests/UpdateUploadTest.php %%WWWDIR%%/core/modules/update/src/UpdateFetcher.php %%WWWDIR%%/core/modules/update/src/UpdateFetcherInterface.php %%WWWDIR%%/core/modules/update/src/UpdateManager.php @@ -8224,6 +8286,12 @@ %%WWWDIR%%/core/modules/update/tests/modules/update_test/update_test_basetheme.1_1-sec.xml %%WWWDIR%%/core/modules/update/tests/modules/update_test/update_test_new_module.1_1.xml %%WWWDIR%%/core/modules/update/tests/modules/update_test/update_test_subtheme.1_0.xml +%%WWWDIR%%/core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php +%%WWWDIR%%/core/modules/update/tests/src/Functional/UpdateContribTest.php +%%WWWDIR%%/core/modules/update/tests/src/Functional/UpdateCoreTest.php +%%WWWDIR%%/core/modules/update/tests/src/Functional/UpdateDeleteFileIfStaleTest.php +%%WWWDIR%%/core/modules/update/tests/src/Functional/UpdateTestBase.php +%%WWWDIR%%/core/modules/update/tests/src/Functional/UpdateUploadTest.php %%WWWDIR%%/core/modules/update/tests/src/Kernel/Migrate/d6/MigrateUpdateConfigsTest.php %%WWWDIR%%/core/modules/update/tests/src/Unit/Menu/UpdateLocalTasksTest.php %%WWWDIR%%/core/modules/update/tests/src/Unit/UpdateFetcherTest.php @@ -8396,7 +8464,6 @@ %%WWWDIR%%/core/modules/user/src/Tests/UserAdminSettingsFormTest.php %%WWWDIR%%/core/modules/user/src/Tests/UserAdminTest.php %%WWWDIR%%/core/modules/user/src/Tests/UserBlocksTest.php -%%WWWDIR%%/core/modules/user/src/Tests/UserCancelTest.php %%WWWDIR%%/core/modules/user/src/Tests/UserCreateTest.php %%WWWDIR%%/core/modules/user/src/Tests/UserEditTest.php %%WWWDIR%%/core/modules/user/src/Tests/UserLanguageCreationTest.php @@ -8410,7 +8477,6 @@ %%WWWDIR%%/core/modules/user/src/Tests/UserTranslationUITest.php %%WWWDIR%%/core/modules/user/src/Tests/Views/AccessPermissionTest.php %%WWWDIR%%/core/modules/user/src/Tests/Views/AccessRoleTest.php -%%WWWDIR%%/core/modules/user/src/Tests/Views/AccessRoleUITest.php %%WWWDIR%%/core/modules/user/src/Tests/Views/AccessTestBase.php %%WWWDIR%%/core/modules/user/src/Tests/Views/ArgumentDefaultTest.php %%WWWDIR%%/core/modules/user/src/Tests/Views/ArgumentValidateTest.php @@ -8473,7 +8539,9 @@ %%WWWDIR%%/core/modules/user/tests/modules/user_test_views/test_views/views.view.test_views_handler_field_role.yml %%WWWDIR%%/core/modules/user/tests/modules/user_test_views/test_views/views.view.test_views_handler_field_user_name.yml %%WWWDIR%%/core/modules/user/tests/modules/user_test_views/user_test_views.info.yml +%%WWWDIR%%/core/modules/user/tests/src/Functional/AccessRoleUITest.php %%WWWDIR%%/core/modules/user/tests/src/Functional/UserCacheTagsTest.php +%%WWWDIR%%/core/modules/user/tests/src/Functional/UserCancelTest.php %%WWWDIR%%/core/modules/user/tests/src/Functional/UserCreateFailMailTest.php %%WWWDIR%%/core/modules/user/tests/src/Functional/UserDeleteTest.php %%WWWDIR%%/core/modules/user/tests/src/Functional/UserEditedOwnAccountTest.php @@ -8820,59 +8888,13 @@ %%WWWDIR%%/core/modules/views/src/ResultRow.php %%WWWDIR%%/core/modules/views/src/Routing/ViewPageController.php %%WWWDIR%%/core/modules/views/src/Tests/AssertViewsCacheTagsTrait.php -%%WWWDIR%%/core/modules/views/src/Tests/DefaultViewsTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Entity/BaseFieldAccessTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Entity/FieldEntityTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Entity/FieldEntityTranslationTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Entity/FilterEntityBundleTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Entity/ViewNonTranslatableEntityTest.php %%WWWDIR%%/core/modules/views/src/Tests/FieldApiDataTest.php -%%WWWDIR%%/core/modules/views/src/Tests/GlossaryTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/AreaHTTPStatusCodeTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/AreaTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/AreaTitleWebTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/ArgumentStringTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/FieldDropButtonTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/FieldEntityOperationsTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/FieldGroupRowsTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/FieldGroupRowsWebTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/FieldWebTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/FilterDateTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/HandlerAllTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Handler/HandlerTest.php %%WWWDIR%%/core/modules/views/src/Tests/Handler/HandlerTestBase.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/AccessTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/CacheTagTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/CacheWebTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/ContextualFiltersBlockContextTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisabledDisplayTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisplayAttachmentTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisplayEntityReferenceTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisplayExtenderTest.php %%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisplayFeedTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisplayPageWebTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/DisplayTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/ExposedFormTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/FilterTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/MenuLinkTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/MiniPagerTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/NumericFormatPluralTest.php -%%WWWDIR%%/core/modules/views/src/Tests/Plugin/PagerTest.php %%WWWDIR%%/core/modules/views/src/Tests/Plugin/PluginKernelTestBase.php *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:09:36 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DE64D9D3AD; Fri, 7 Jul 2017 08:09:36 +0000 (UTC) (envelope-from tz@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 22261707F5; Fri, 7 Jul 2017 08:09:36 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6789ZPA081136; Fri, 7 Jul 2017 08:09:35 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6789Zf0081135; Fri, 7 Jul 2017 08:09:35 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070809.v6789Zf0081135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:09:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445213 - in branches/2017Q3/www/php71-opcache: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/www/php71-opcache: . files X-SVN-Commit-Revision: 445213 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:09:36 -0000 Author: tz Date: Fri Jul 7 08:09:35 2017 New Revision: 445213 URL: https://svnweb.freebsd.org/changeset/ports/445213 Log: MFH: r445145 www/php71-opcache: Fix 'Undefined symbol "zend_file_cache_script_load"' Add patch to fix PHP bug #74766: https://bugs.php.net/bug.php?id=74766 PR: 220430 Reported by: Bernard Spil Approved by: ports-secteam (junovitch) Added: branches/2017Q3/www/php71-opcache/files/ - copied from r445145, head/www/php71-opcache/files/ Modified: branches/2017Q3/www/php71-opcache/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/php71-opcache/Makefile ============================================================================== --- branches/2017Q3/www/php71-opcache/Makefile Fri Jul 7 07:59:54 2017 (r445212) +++ branches/2017Q3/www/php71-opcache/Makefile Fri Jul 7 08:09:35 2017 (r445213) @@ -1,6 +1,7 @@ # $FreeBSD$ CATEGORIES= www +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../../lang/php71 From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:12:23 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92F5FD9D594; Fri, 7 Jul 2017 08:12:23 +0000 (UTC) (envelope-from tz@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 5FBA070BF2; Fri, 7 Jul 2017 08:12:23 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678CMwo083009; Fri, 7 Jul 2017 08:12:22 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678CMBR083008; Fri, 7 Jul 2017 08:12:22 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070812.v678CMBR083008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:12:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445215 - in branches/2017Q3/net: . rubygem-grpc X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/net: . rubygem-grpc X-SVN-Commit-Revision: 445215 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:12:23 -0000 Author: tz Date: Fri Jul 7 08:12:22 2017 New Revision: 445215 URL: https://svnweb.freebsd.org/changeset/ports/445215 Log: MFH: r445147 New port: net/rubygem-grpc A Ruby implementation of gRPC. WWW: https://github.com/grpc/grpc/tree/master/src/ruby Special thanks to swill and vanilla for creating this port! Reviewed by: tz, Matthias Fechner Approved by: ports-secteam (junovitch) Added: branches/2017Q3/net/rubygem-grpc/ - copied from r445147, head/net/rubygem-grpc/ Modified: branches/2017Q3/net/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/Makefile ============================================================================== --- branches/2017Q3/net/Makefile Fri Jul 7 08:10:30 2017 (r445214) +++ branches/2017Q3/net/Makefile Fri Jul 7 08:12:22 2017 (r445215) @@ -1188,6 +1188,7 @@ SUBDIR += rubygem-gitaly SUBDIR += rubygem-gitlab_omniauth-ldap SUBDIR += rubygem-gitlab_omniauth-ldap1 + SUBDIR += rubygem-grpc SUBDIR += rubygem-http_parser.rb SUBDIR += rubygem-httpauth SUBDIR += rubygem-ipaddress From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:17:08 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E65B4D9D60A; Fri, 7 Jul 2017 08:17:08 +0000 (UTC) (envelope-from tz@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 A5A6070D20; Fri, 7 Jul 2017 08:17:08 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678H7Lx085701; Fri, 7 Jul 2017 08:17:07 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678H70k085700; Fri, 7 Jul 2017 08:17:07 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070817.v678H70k085700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:17:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445216 - in branches/2017Q3/textproc: . rubygem-citrus X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/textproc: . rubygem-citrus X-SVN-Commit-Revision: 445216 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:17:09 -0000 Author: tz Date: Fri Jul 7 08:17:07 2017 New Revision: 445216 URL: https://svnweb.freebsd.org/changeset/ports/445216 Log: MFH: r445148 New port: textproc/rubygem-citrus Parsing Expressions for Ruby WWW: http://mjackson.github.io/citrus Submitted by: Matthias Fechner Approved by: ports-secteam (junovitch) Added: branches/2017Q3/textproc/rubygem-citrus/ - copied from r445148, head/textproc/rubygem-citrus/ Modified: branches/2017Q3/textproc/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/textproc/Makefile ============================================================================== --- branches/2017Q3/textproc/Makefile Fri Jul 7 08:12:22 2017 (r445215) +++ branches/2017Q3/textproc/Makefile Fri Jul 7 08:17:07 2017 (r445216) @@ -1452,6 +1452,7 @@ SUBDIR += rubygem-babel-transpiler SUBDIR += rubygem-babosa SUBDIR += rubygem-charlock_holmes + SUBDIR += rubygem-citrus SUBDIR += rubygem-cld3 SUBDIR += rubygem-coderay SUBDIR += rubygem-colorator From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:18:33 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3D3CD9D653; Fri, 7 Jul 2017 08:18:33 +0000 (UTC) (envelope-from tz@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 8D5CA70E0F; Fri, 7 Jul 2017 08:18:33 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678IWC7085910; Fri, 7 Jul 2017 08:18:32 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678IWxC085909; Fri, 7 Jul 2017 08:18:32 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070818.v678IWxC085909@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:18:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445217 - in branches/2017Q3/www: . rubygem-toml-rb X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/www: . rubygem-toml-rb X-SVN-Commit-Revision: 445217 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:18:33 -0000 Author: tz Date: Fri Jul 7 08:18:32 2017 New Revision: 445217 URL: https://svnweb.freebsd.org/changeset/ports/445217 Log: MFH: r445149 New port: www/rubygem-toml-rb A TOML parser using Citrus parsing library. WWW: http://github.com/emancu/toml-rb Submitted by: Matthias Fechner Approved by: ports-secteam (junovitch) Added: branches/2017Q3/www/rubygem-toml-rb/ - copied from r445149, head/www/rubygem-toml-rb/ Modified: branches/2017Q3/www/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/Makefile ============================================================================== --- branches/2017Q3/www/Makefile Fri Jul 7 08:17:07 2017 (r445216) +++ branches/2017Q3/www/Makefile Fri Jul 7 08:18:32 2017 (r445217) @@ -2133,6 +2133,7 @@ SUBDIR += rubygem-thin SUBDIR += rubygem-tinyatom SUBDIR += rubygem-tinymce-rails + SUBDIR += rubygem-toml-rb SUBDIR += rubygem-totoridipjp SUBDIR += rubygem-tumblr_client SUBDIR += rubygem-turbolinks From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:22:00 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F20D0D9D7F2; Fri, 7 Jul 2017 08:21:59 +0000 (UTC) (envelope-from tz@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 B980670FE8; Fri, 7 Jul 2017 08:21:59 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678LwQ2089878; Fri, 7 Jul 2017 08:21:58 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678Lwmc089876; Fri, 7 Jul 2017 08:21:58 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070821.v678Lwmc089876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:21:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445218 - branches/2017Q3/devel/gitlab-shell X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2017Q3/devel/gitlab-shell X-SVN-Commit-Revision: 445218 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:22:00 -0000 Author: tz Date: Fri Jul 7 08:21:58 2017 New Revision: 445218 URL: https://svnweb.freebsd.org/changeset/ports/445218 Log: MFH: r445150 devel/gitlab-shell: Update from 5.0.0 to 5.0.2 Changelog: https://gitlab.com/gitlab-org/gitlab-shell/blob/v5.0.2/CHANGELOG Approved by: ports-secteam (junovitch) Modified: branches/2017Q3/devel/gitlab-shell/Makefile branches/2017Q3/devel/gitlab-shell/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/gitlab-shell/Makefile ============================================================================== --- branches/2017Q3/devel/gitlab-shell/Makefile Fri Jul 7 08:18:32 2017 (r445217) +++ branches/2017Q3/devel/gitlab-shell/Makefile Fri Jul 7 08:21:58 2017 (r445218) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-shell -PORTVERSION= 5.0.0 +PORTVERSION= 5.0.2 CATEGORIES= devel MASTER_SITES= https://gitlab.com/gitlab-org/${PORTNAME}/repository/archive.tar.gz?ref=v${PORTVERSION}&dummy=/ DISTNAME= ${PORTNAME}-v${PORTVERSION} Modified: branches/2017Q3/devel/gitlab-shell/distinfo ============================================================================== --- branches/2017Q3/devel/gitlab-shell/distinfo Fri Jul 7 08:18:32 2017 (r445217) +++ branches/2017Q3/devel/gitlab-shell/distinfo Fri Jul 7 08:21:58 2017 (r445218) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497355560 -SHA256 (gitlab-shell-v5.0.0.tar.gz) = 7611fdf0b64592365bdb6ba442a4263d129b05c280d5105ea641baec7a0b45ab -SIZE (gitlab-shell-v5.0.0.tar.gz) = 78585 +TIMESTAMP = 1498552520 +SHA256 (gitlab-shell-v5.0.2.tar.gz) = bb5125f12f2f3fbbb93aa78f6810cd62f97bda564d01112a831bf41d4e42ef34 +SIZE (gitlab-shell-v5.0.2.tar.gz) = 79009 From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:24:17 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40514D9D83D; Fri, 7 Jul 2017 08:24:17 +0000 (UTC) (envelope-from tz@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 0D17D71246; Fri, 7 Jul 2017 08:24:16 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678OGVF090176; Fri, 7 Jul 2017 08:24:16 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678OGC9090174; Fri, 7 Jul 2017 08:24:16 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070824.v678OGC9090174@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:24:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445219 - in branches/2017Q3/net/rubygem-gitaly: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/net/rubygem-gitaly: . files X-SVN-Commit-Revision: 445219 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:24:17 -0000 Author: tz Date: Fri Jul 7 08:24:15 2017 New Revision: 445219 URL: https://svnweb.freebsd.org/changeset/ports/445219 Log: MFH: r445151 net/rubygem-gitaly: Update from 0.2.1 to 0.5.0 Sadly no changelog available Also it is now fully functional and no longer a stub Approved by: ports-secteam (junovitch) Deleted: branches/2017Q3/net/rubygem-gitaly/files/ Modified: branches/2017Q3/net/rubygem-gitaly/Makefile branches/2017Q3/net/rubygem-gitaly/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/net/rubygem-gitaly/Makefile ============================================================================== --- branches/2017Q3/net/rubygem-gitaly/Makefile Fri Jul 7 08:21:58 2017 (r445218) +++ branches/2017Q3/net/rubygem-gitaly/Makefile Fri Jul 7 08:24:15 2017 (r445219) @@ -1,14 +1,15 @@ # $FreeBSD$ PORTNAME= gitaly -PORTVERSION= 0.2.1 +PORTVERSION= 0.5.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= tz@FreeBSD.org COMMENT= Auto-generated gRPC client for gitaly -RUN_DEPENDS= rubygem-google-protobuf>=3.1:devel/rubygem-google-protobuf +RUN_DEPENDS= rubygem-google-protobuf>=3.1:devel/rubygem-google-protobuf \ + rubygem-grpc>=1.4.0:net/rubygem-grpc NO_ARCH= yes USE_RUBY= yes Modified: branches/2017Q3/net/rubygem-gitaly/distinfo ============================================================================== --- branches/2017Q3/net/rubygem-gitaly/distinfo Fri Jul 7 08:21:58 2017 (r445218) +++ branches/2017Q3/net/rubygem-gitaly/distinfo Fri Jul 7 08:24:15 2017 (r445219) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497439474 -SHA256 (rubygem/gitaly-0.2.1.gem) = 5ce2a251265161e1e7b15220ead44e339ee3927d6326b80526998353b261d378 -SIZE (rubygem/gitaly-0.2.1.gem) = 6656 +TIMESTAMP = 1498991325 +SHA256 (rubygem/gitaly-0.5.0.gem) = b826f73ebdc3f8edd2e313ee39b7db916aad4688763d1ed27dd26b282f531bde +SIZE (rubygem/gitaly-0.5.0.gem) = 8192 From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:25:22 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A979D9D883; Fri, 7 Jul 2017 08:25:22 +0000 (UTC) (envelope-from tz@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 5966471331; Fri, 7 Jul 2017 08:25:22 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678PLRD090438; Fri, 7 Jul 2017 08:25:21 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678PL9M090436; Fri, 7 Jul 2017 08:25:21 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070825.v678PL9M090436@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445220 - branches/2017Q3/www/gitlab-workhorse X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: branches/2017Q3/www/gitlab-workhorse X-SVN-Commit-Revision: 445220 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:25:22 -0000 Author: tz Date: Fri Jul 7 08:25:21 2017 New Revision: 445220 URL: https://svnweb.freebsd.org/changeset/ports/445220 Log: MFH: r445152 www/gitlab-workhorse: Update from 1.4.2 to 1.4.3 Changelog: https://gitlab.com/gitlab-org/gitlab-workhorse/blob/v1.4.3/CHANGELOG Approved by: ports-secteam (junovitch) Modified: branches/2017Q3/www/gitlab-workhorse/Makefile branches/2017Q3/www/gitlab-workhorse/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/gitlab-workhorse/Makefile ============================================================================== --- branches/2017Q3/www/gitlab-workhorse/Makefile Fri Jul 7 08:24:15 2017 (r445219) +++ branches/2017Q3/www/gitlab-workhorse/Makefile Fri Jul 7 08:25:21 2017 (r445220) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-workhorse -PORTVERSION= 1.4.2 +PORTVERSION= 1.4.3 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= https://gitlab.com/gitlab-org/${PORTNAME}/repository/archive.tar.gz?ref=${DISTVERSIONPREFIX}${PORTVERSION}&dummy=/ Modified: branches/2017Q3/www/gitlab-workhorse/distinfo ============================================================================== --- branches/2017Q3/www/gitlab-workhorse/distinfo Fri Jul 7 08:24:15 2017 (r445219) +++ branches/2017Q3/www/gitlab-workhorse/distinfo Fri Jul 7 08:25:21 2017 (r445220) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497355589 -SHA256 (gitlab-workhorse-v1.4.2.tar.gz) = 8831fcb9f65fa2bd5e88752687f0fd796a55a441bb1246ce2c58ee282a22c73b -SIZE (gitlab-workhorse-v1.4.2.tar.gz) = 738326 +TIMESTAMP = 1498552589 +SHA256 (gitlab-workhorse-v1.4.3.tar.gz) = f7d87a38d5e3da1520e112f67c84ec9452943d2192e380dcd075509e7a986219 +SIZE (gitlab-workhorse-v1.4.3.tar.gz) = 760124 From owner-svn-ports-branches@freebsd.org Fri Jul 7 08:27:26 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DA61AD9D8D1; Fri, 7 Jul 2017 08:27:26 +0000 (UTC) (envelope-from tz@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 5E98D7141C; Fri, 7 Jul 2017 08:27:26 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v678RPHx090811; Fri, 7 Jul 2017 08:27:25 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v678ROJk090799; Fri, 7 Jul 2017 08:27:24 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201707070827.v678ROJk090799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 7 Jul 2017 08:27:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445221 - in branches/2017Q3/www/gitlab: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tz X-SVN-Commit-Paths: in branches/2017Q3/www/gitlab: . files X-SVN-Commit-Revision: 445221 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 07 Jul 2017 08:27:27 -0000 Author: tz Date: Fri Jul 7 08:27:24 2017 New Revision: 445221 URL: https://svnweb.freebsd.org/changeset/ports/445221 Log: MFH: r445153 www/gitlab: Update from 9.0.10 to 9.1.7 Changelog: https://github.com/gitlabhq/gitlabhq/blob/v9.1.7/CHANGELOG.md Reviewed by: Matthias Fechner Approved by: ports-secteam (junovitch) Deleted: branches/2017Q3/www/gitlab/files/patch-config_initializers_8__gitaly.rb branches/2017Q3/www/gitlab/files/patch-lib_tasks_gitlab_check.rake Modified: branches/2017Q3/www/gitlab/Makefile branches/2017Q3/www/gitlab/distinfo branches/2017Q3/www/gitlab/files/gitlab.in branches/2017Q3/www/gitlab/files/patch-Gemfile branches/2017Q3/www/gitlab/files/patch-config_gitlab.yml.example branches/2017Q3/www/gitlab/files/patch-config_initializers_1__settings.rb branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl branches/2017Q3/www/gitlab/pkg-message branches/2017Q3/www/gitlab/pkg-plist Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/gitlab/Makefile ============================================================================== --- branches/2017Q3/www/gitlab/Makefile Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/Makefile Fri Jul 7 08:27:24 2017 (r445221) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= gitlab -PORTVERSION= 9.0.10 +PORTVERSION= 9.1.7 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org @@ -26,8 +25,8 @@ BUILD_DEPENDS= gem:devel/ruby-gems # only rubygem-pg and rubygem-mysql are defined later as RUN_DEPENDS # for the options RUN_DEPENDS= git>=2.8.4:devel/git \ - gitlab-shell>=5.0.0:devel/gitlab-shell\ - gitlab-workhorse>=1.4.2:www/gitlab-workhorse \ + gitlab-shell>=5.0.2:devel/gitlab-shell\ + gitlab-workhorse>=1.4.3:www/gitlab-workhorse \ redis>=2.8.23:databases/redis \ npm>=4.3.0:www/npm \ yarn>=0.17.0:www/yarn \ @@ -36,7 +35,8 @@ RUN_DEPENDS= git>=2.8.4:devel/git \ rubygem-responders>=2.0:www/rubygem-responders \ rubygem-sprockets3>=3.7:devel/rubygem-sprockets3 \ rubygem-default_value_for>=3.0.1:devel/rubygem-default_value_for \ - rubygem-rugged>=0.24:devel/rubygem-rugged \ + rubygem-rugged>=0.25.1.1:devel/rubygem-rugged \ + rubygem-faraday>=0.11.0:www/rubygem-faraday \ rubygem-devise>=4.2:devel/rubygem-devise \ rubygem-doorkeeper>=4.2:security/rubygem-doorkeeper \ rubygem-doorkeeper-openid_connect>=1.1.0:security/rubygem-doorkeeper-openid_connect \ @@ -66,7 +66,7 @@ RUN_DEPENDS= git>=2.8.4:devel/git \ rubygem-browser>=2.2:www/rubygem-browser \ rubygem-gitlab_omniauth-ldap1>=1.2.1:net/rubygem-gitlab_omniauth-ldap1 \ rubygem-gollum-lib-gitlab>=4.2.0:www/rubygem-gollum-lib-gitlab \ - rubygem-gollum-rugged_adapter>=0.4.2:www/rubygem-gollum-rugged_adapter \ + rubygem-gollum-rugged_adapter>=0.4.4:www/rubygem-gollum-rugged_adapter \ rubygem-github-linguist>=4.7.0:textproc/rubygem-github-linguist \ rubygem-grape>=0.19.0:devel/rubygem-grape \ rubygem-grape-entity>=0.6.0:devel/rubygem-grape-entity \ @@ -108,6 +108,7 @@ RUN_DEPENDS= git>=2.8.4:devel/git \ rubygem-sidekiq-cron04>=0.4.4:devel/rubygem-sidekiq-cron04 \ rubygem-redis-namespace>=1.5.2:databases/rubygem-redis-namespace \ rubygem-sidekiq-limit_fetch>=3.4:devel/rubygem-sidekiq-limit_fetch \ + rubygem-rufus-scheduler>=3.1.10:devel/rubygem-rufus-scheduler \ rubygem-httparty>=0.13.3:www/rubygem-httparty \ rubygem-rainbow>=2.1.0:devel/rubygem-rainbow \ rubygem-settingslogic>=2.0.9:devel/rubygem-settingslogic \ @@ -120,7 +121,7 @@ RUN_DEPENDS= git>=2.8.4:devel/git \ rubygem-gitlab-flowdock-git-hook>=1.0.1:www/rubygem-gitlab-flowdock-git-hook \ rubygem-gemnasium-gitlab-service>=0.2:devel/rubygem-gemnasium-gitlab-service \ rubygem-slack-notifier1>=1.5.1:devel/rubygem-slack-notifier1 \ - rubygem-asana>=0.4.0:www/rubygem-asana \ + rubygem-asana>=0.6.0:www/rubygem-asana \ rubygem-ruby-fogbugz>=0.2.1:devel/rubygem-ruby-fogbugz \ rubygem-kubeclient>=2.2.0:www/rubygem-kubeclient \ rubygem-d3_rails-rails4>=3.5.0:www/rubygem-d3_rails-rails4 \ @@ -136,7 +137,7 @@ RUN_DEPENDS= git>=2.8.4:devel/git \ rubygem-oj2>=2.17.4:devel/rubygem-oj2 \ rubygem-chronic>=0.10.2:devel/rubygem-chronic \ rubygem-chronic_duration>=0.10.6:devel/rubygem-chronic_duration \ - rubygem-webpack-rails>=0.9.9:www/rubygem-webpack-rails \ + rubygem-webpack-rails>=0.9.10:www/rubygem-webpack-rails \ rubygem-rack-proxy>=0.6.0:www/rubygem-rack-proxy \ rubygem-sass-rails5>=5.0.6:textproc/rubygem-sass-rails5 \ rubygem-coffee-rails4>=4.1.0:devel/rubygem-coffee-rails4 \ @@ -153,19 +154,20 @@ RUN_DEPENDS= git>=2.8.4:devel/git \ rubygem-virtus>=1.0.1:devel/rubygem-virtus \ rubygem-net-ssh>=3.0.1:security/rubygem-net-ssh \ rubygem-base32>=0.3.2:converters/rubygem-base32 \ - rubygem-sentry-raven>=2.0.0:devel/rubygem-sentry-raven \ + rubygem-sentry-raven>=2.4.0:devel/rubygem-sentry-raven \ rubygem-premailer-rails>=1.9.0:mail/rubygem-premailer-rails \ rubygem-octokit>=4.6.2:net/rubygem-octokit \ rubygem-mail_room>=0.9.1:mail/rubygem-mail_room \ rubygem-email_reply_trimmer>=0.1:mail/rubygem-email_reply_trimmer \ rubygem-html2text>=0:textproc/rubygem-html2text \ rubygem-ruby-prof>=0.16.2:devel/rubygem-ruby-prof \ - rubygem-oauth212>=1.2.0:net/rubygem-oauth212 \ + rubygem-oauth2>=1.3.0:net/rubygem-oauth212 \ rubygem-paranoia>=2.2:databases/rubygem-paranoia \ rubygem-health_check>=2.6.0:devel/rubygem-health_check \ rubygem-vmstat>=2.3.0:sysutils/rubygem-vmstat \ rubygem-sys-filesystem>=1.1.6:sysutils/rubygem-sys-filesystem \ - rubygem-gitaly>=0.2.1:net/rubygem-gitaly \ + rubygem-gitaly>=0.5.0:net/rubygem-gitaly \ + rubygem-toml-rb>=0.3.15:www/rubygem-toml-rb \ rubygem-rinku>=1.7.3:www/rubygem-rinku PGSQL_RUN_DEPENDS= rubygem-pg>=0.18.2:databases/rubygem-pg Modified: branches/2017Q3/www/gitlab/distinfo ============================================================================== --- branches/2017Q3/www/gitlab/distinfo Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/distinfo Fri Jul 7 08:27:24 2017 (r445221) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497354650 -SHA256 (gitlabhq-gitlabhq-v9.0.10_GH0.tar.gz) = 99422056f86a8ada3177cfd4e06985ef7db51494940bebcc08886b61a5221e48 -SIZE (gitlabhq-gitlabhq-v9.0.10_GH0.tar.gz) = 26359584 +TIMESTAMP = 1498552753 +SHA256 (gitlabhq-gitlabhq-v9.1.7_GH0.tar.gz) = 195f39ea7e3c0714df13403b2cc6311fecc437bf28b9f9cc619dd5b3a49634b0 +SIZE (gitlabhq-gitlabhq-v9.1.7_GH0.tar.gz) = 30511727 Modified: branches/2017Q3/www/gitlab/files/gitlab.in ============================================================================== --- branches/2017Q3/www/gitlab/files/gitlab.in Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/files/gitlab.in Fri Jul 7 08:27:24 2017 (r445221) @@ -390,7 +390,7 @@ restart_gitlab(){ ### Finally the input handling. case "$1" in - start|quietstart) + start|quietstart|faststart) start_gitlab ;; stop|faststop) Modified: branches/2017Q3/www/gitlab/files/patch-Gemfile ============================================================================== --- branches/2017Q3/www/gitlab/files/patch-Gemfile Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/files/patch-Gemfile Fri Jul 7 08:27:24 2017 (r445221) @@ -1,6 +1,6 @@ ---- Gemfile.orig 2017-06-07 20:58:14 UTC +--- Gemfile.orig 2017-06-07 20:48:31 UTC +++ Gemfile -@@ -1,46 +1,41 @@ +@@ -1,48 +1,43 @@ source 'https://rubygems.org' -gem 'rails', '4.2.8' @@ -21,9 +21,11 @@ -gem 'pg', '~> 0.18.2', group: :postgres +gem 'default_value_for', '>= 3.0.0' --gem 'rugged', '~> 0.24.0' -+gem 'rugged', '>= 0.24.0' + gem 'rugged', '~> 0.25.1.1' +-gem 'faraday', '~> 0.11.0' ++gem 'faraday', '>= 0.11.0' + # Authentication libraries gem 'devise', '~> 4.2' gem 'doorkeeper', '~> 4.2.0' @@ -56,8 +58,8 @@ gem 'akismet', '~> 2.0' # Two-factor authentication -@@ -66,7 +61,7 @@ gem 'gollum-lib', '~> 4.2', require: fal - gem 'gollum-rugged_adapter', '~> 0.4.2', require: false +@@ -68,7 +63,7 @@ gem 'gollum-lib', '~> 4.2', require: fal + gem 'gollum-rugged_adapter', '~> 0.4.4', require: false # Language detection -gem 'github-linguist', '~> 4.7.0', require: 'linguist' @@ -65,7 +67,7 @@ # API gem 'grape', '~> 0.19.0' -@@ -77,13 +72,13 @@ gem 'rack-cors', '~> 0.4.0', require: 'r +@@ -79,13 +74,13 @@ gem 'rack-cors', '~> 0.4.0', require: 'r gem 'kaminari', '~> 0.17.0' # HAML @@ -82,7 +84,7 @@ # for backups gem 'fog-aws', '~> 0.9' -@@ -94,7 +89,7 @@ gem 'fog-openstack', '~> 0.1' +@@ -96,7 +91,7 @@ gem 'fog-openstack', '~> 0.1' gem 'fog-rackspace', '~> 0.1.1' # for Google storage @@ -91,7 +93,7 @@ # for aws storage gem 'unf', '~> 0.1.4' -@@ -104,34 +99,34 @@ gem 'seed-fu', '~> 2.3.5' +@@ -106,34 +101,34 @@ gem 'seed-fu', '~> 2.3.5' # Markdown and HTML processing gem 'html-pipeline', '~> 1.11.0' @@ -134,9 +136,13 @@ # Run events after state machine commits gem 'after_commit_queue', '~> 1.3.0' -@@ -145,17 +140,17 @@ gem 'redis-namespace', '~> 1.5.2' +@@ -147,20 +142,20 @@ gem 'redis-namespace', '~> 1.5.2' gem 'sidekiq-limit_fetch', '~> 3.4' + # Cron Parser +-gem 'rufus-scheduler', '~> 3.1.10' ++gem 'rufus-scheduler', '>= 3.1.10' + # HTTP requests -gem 'httparty', '~> 0.13.3' +gem 'httparty', '>= 0.13.3' @@ -155,7 +161,7 @@ # Cache gem 'redis-rails', '~> 5.0.1' -@@ -168,7 +163,7 @@ gem 'connection_pool', '~> 2.0' +@@ -173,7 +168,7 @@ gem 'connection_pool', '~> 2.0' gem 'hipchat', '~> 1.5.0' # JIRA integration @@ -164,14 +170,7 @@ # Flowdock integration gem 'gitlab-flowdock-git-hook', '~> 1.0.1' -@@ -180,13 +175,13 @@ gem 'gemnasium-gitlab-service', '~> 0.2' - gem 'slack-notifier', '~> 1.5.1' - - # Asana integration --gem 'asana', '~> 0.4.0' -+gem 'asana', '>= 0.4.0' - - # FogBugz integration +@@ -191,7 +186,7 @@ gem 'asana', '~> 0.6.0' gem 'ruby-fogbugz', '~> 0.2.1' # Kubernetes integration @@ -180,7 +179,7 @@ # d3 gem 'd3_rails', '~> 3.5.0' -@@ -195,7 +190,7 @@ gem 'd3_rails', '~> 3.5.0' +@@ -200,7 +195,7 @@ gem 'd3_rails', '~> 3.5.0' gem 'underscore-rails', '~> 1.8.0' # Sanitize user input @@ -189,7 +188,7 @@ gem 'babosa', '~> 1.0.2' # Sanitizes SVG input -@@ -205,7 +200,7 @@ gem 'loofah', '~> 2.0.3' +@@ -210,7 +205,7 @@ gem 'loofah', '~> 2.0.3' gem 'licensee', '~> 8.7.0' # Protect against bruteforcing @@ -198,10 +197,10 @@ # Ace editor gem 'ace-rails-ap', '~> 4.1.0' -@@ -224,122 +219,41 @@ gem 'chronic', '~> 0.10.2' +@@ -229,122 +224,41 @@ gem 'chronic', '~> 0.10.2' gem 'chronic_duration', '~> 0.10.6' - gem 'webpack-rails', '~> 0.9.9' + gem 'webpack-rails', '~> 0.9.10' -gem 'rack-proxy', '~> 0.6.0' +gem 'rack-proxy', '>= 0.6.0' @@ -228,8 +227,8 @@ gem 'base32', '~> 0.3.0' # Sentry integration --gem 'sentry-raven', '~> 2.0.0' -+gem 'sentry-raven', '>= 2.0.0' +-gem 'sentry-raven', '~> 2.4.0' ++gem 'sentry-raven', '>= 2.4.0' gem 'premailer-rails', '~> 1.9.0' @@ -242,15 +241,13 @@ - -group :development do - gem 'foreman', '~> 0.78.0' -- gem 'brakeman', '~> 3.4.0', require: false +- gem 'brakeman', '~> 3.6.0', require: false - - gem 'letter_opener_web', '~> 1.3.0' -- gem 'bullet', '~> 5.2.0', require: false - gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false -- gem 'web-console', '~> 2.0' - - # Better errors handler -- gem 'better_errors', '~> 1.0.1' +- gem 'better_errors', '~> 2.1.0' - gem 'binding_of_caller', '~> 0.7.2' - - # thin instead webrick @@ -258,6 +255,7 @@ -end - -group :development, :test do +- gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET'] - gem 'pry-byebug', '~> 3.4.1', platform: :mri - gem 'pry-rails', '~> 0.3.4' - @@ -282,16 +280,16 @@ - gem 'capybara-screenshot', '~> 1.0.0' - gem 'poltergeist', '~> 1.9.0' - -- gem 'spring', '~> 1.7.0' +- gem 'spring', '~> 2.0.0' - gem 'spring-commands-rspec', '~> 1.0.4' - gem 'spring-commands-spinach', '~> 1.1.0' - - gem 'rubocop', '~> 0.47.1', require: false -- gem 'rubocop-rspec', '~> 1.12.0', require: false +- gem 'rubocop-rspec', '~> 1.15.0', require: false - gem 'scss_lint', '~> 0.47.0', require: false - gem 'haml_lint', '~> 0.21.0', require: false -- gem 'simplecov', '0.12.0', require: false -- gem 'flay', '~> 2.6.1', require: false +- gem 'simplecov', '~> 0.14.0', require: false +- gem 'flay', '~> 2.8.0', require: false - gem 'bundler-audit', '~> 0.5.0', require: false - - gem 'benchmark-ips', '~> 2.3.0', require: false @@ -308,10 +306,11 @@ - gem 'shoulda-matchers', '~> 2.8.0', require: false - gem 'email_spec', '~> 1.6.0' - gem 'json-schema', '~> 2.6.2' -- gem 'webmock', '~> 1.21.0' +- gem 'webmock', '~> 1.24.0' - gem 'test_after_commit', '~> 1.1' - gem 'sham_rack', '~> 1.3.6' - gem 'timecop', '~> 0.8.0' +- gem 'concurrent-ruby', '~> 1.0.5' -end - -gem 'octokit', '~> 4.6.2' @@ -326,14 +325,16 @@ gem 'ruby-prof', '~> 0.16.2' # OAuth --gem 'oauth2', '~> 1.2.0' -+gem 'oauth2', '>= 1.2.0' +-gem 'oauth2', '~> 1.3.0' ++gem 'oauth2', '>= 1.3.0' # Soft deletion gem 'paranoia', '~> 2.2' -@@ -353,3 +267,5 @@ gem 'sys-filesystem', '~> 1.1.6' - +@@ -359,4 +273,6 @@ gem 'sys-filesystem', '~> 1.1.6' # Gitaly GRPC client - gem 'gitaly', '~> 0.2.1' + gem 'gitaly', '~> 0.5.0' + +-gem 'toml-rb', '~> 0.3.15', require: false ++gem 'toml-rb', '>= 0.3.15', require: false + +gem 'rinku' Modified: branches/2017Q3/www/gitlab/files/patch-config_gitlab.yml.example ============================================================================== --- branches/2017Q3/www/gitlab/files/patch-config_gitlab.yml.example Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/files/patch-config_gitlab.yml.example Fri Jul 7 08:27:24 2017 (r445221) @@ -1,15 +1,17 @@ ---- config/gitlab.yml.example.orig 2017-06-07 20:58:14 UTC +--- config/gitlab.yml.example.orig 2017-06-07 20:48:31 UTC +++ config/gitlab.yml.example -@@ -472,7 +472,7 @@ production: &base +@@ -463,8 +463,8 @@ production: &base # real path not the symlink. storages: # You must have at least a `default` storage path. default: - path: /home/git/repositories/ +- gitaly_address: unix:/home/git/gitlab/tmp/sockets/private/gitaly.socket # TCP connections are supported too (e.g. tcp://host:port) + path: /usr/home/git/repositories/ ++ gitaly_address: unix:/usr/home/git/gitlab/tmp/sockets/private/gitaly.socket # TCP connections are supported too (e.g. tcp://host:port) ## Backup settings backup: -@@ -499,12 +499,12 @@ production: &base +@@ -491,12 +491,12 @@ production: &base ## GitLab Shell settings gitlab_shell: @@ -25,7 +27,7 @@ # Git over HTTP upload_pack: true -@@ -517,7 +517,7 @@ production: &base +@@ -509,7 +509,7 @@ production: &base # CAUTION! # Use the default values unless you really know what you are doing git: Modified: branches/2017Q3/www/gitlab/files/patch-config_initializers_1__settings.rb ============================================================================== --- branches/2017Q3/www/gitlab/files/patch-config_initializers_1__settings.rb Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/files/patch-config_initializers_1__settings.rb Fri Jul 7 08:27:24 2017 (r445221) @@ -1,8 +1,8 @@ ---- config/initializers/1_settings.rb.orig 2017-06-07 20:58:14 UTC +--- config/initializers/1_settings.rb.orig 2017-06-07 20:48:31 UTC +++ config/initializers/1_settings.rb -@@ -203,12 +203,8 @@ Settings.gitlab['email_subject_suffix'] - Settings.gitlab['base_url'] ||= Settings.send(:build_base_gitlab_url) - Settings.gitlab['url'] ||= Settings.send(:build_gitlab_url) +@@ -215,12 +215,8 @@ Settings.gitlab['email_subject_suffix'] + Settings.gitlab['base_url'] ||= Settings.__send__(:build_base_gitlab_url) + Settings.gitlab['url'] ||= Settings.__send__(:build_gitlab_url) Settings.gitlab['user'] ||= 'git' -Settings.gitlab['user_home'] ||= begin - Etc.getpwnam(Settings.gitlab['user']).dir @@ -14,4 +14,4 @@ +Settings.gitlab['time_zone'] ||= nil Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil? Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil? - Settings.gitlab['restricted_visibility_levels'] = Settings.send(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], []) + Settings.gitlab['restricted_visibility_levels'] = Settings.__send__(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], []) Modified: branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab ============================================================================== --- branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab Fri Jul 7 08:27:24 2017 (r445221) @@ -1,4 +1,4 @@ ---- lib/support/nginx/gitlab.orig 2017-06-07 20:58:14 UTC +--- lib/support/nginx/gitlab.orig 2017-06-07 20:48:31 UTC +++ lib/support/nginx/gitlab @@ -17,7 +17,7 @@ ## See installation.md#using-https for additional HTTPS configuration details. @@ -9,7 +9,7 @@ } map $http_upgrade $connection_upgrade_gitlab { -@@ -70,7 +70,7 @@ server { +@@ -77,7 +77,7 @@ server { error_page 502 /502.html; error_page 503 /503.html; location ~ ^/(404|422|500|502|503)\.html$ { Modified: branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl ============================================================================== --- branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl Fri Jul 7 08:27:24 2017 (r445221) @@ -1,4 +1,4 @@ ---- lib/support/nginx/gitlab-ssl.orig 2017-06-07 20:58:14 UTC +--- lib/support/nginx/gitlab-ssl.orig 2017-06-07 20:48:31 UTC +++ lib/support/nginx/gitlab-ssl @@ -21,7 +21,7 @@ ## See installation.md#using-https for additional HTTPS configuration details. @@ -9,7 +9,7 @@ } map $http_upgrade $connection_upgrade_gitlab_ssl { -@@ -118,7 +118,7 @@ server { +@@ -125,7 +125,7 @@ server { error_page 502 /502.html; error_page 503 /503.html; location ~ ^/(404|422|500|502|503)\.html$ { Modified: branches/2017Q3/www/gitlab/pkg-message ============================================================================== --- branches/2017Q3/www/gitlab/pkg-message Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/pkg-message Fri Jul 7 08:27:24 2017 (r445221) @@ -3,7 +3,7 @@ Gitlab was installed successfully. You now need to set up the various components of Gitlab, so please follow the instructions in the guide at: -http://gitlab.toco-domains.de/FreeBSD/GitLab-docu/blob/master/install/9.0-freebsd.md +http://gitlab.toco-domains.de/FreeBSD/GitLab-docu/blob/master/install/9.1-freebsd.md If you just installed an minor upgrade of GitLab please follow the instructions in the guide at: @@ -11,6 +11,6 @@ the instructions in the guide at: http://gitlab.toco-domains.de/FreeBSD/GitLab-docu/blob/master/update/freebsd_patch_versions.md If you just installed an major upgrade of GitLab, for example you -switched from 8.17.x to 9.0.x, please follow the instructions in the guide at: +switched from 9.0.x to 9.1.x, please follow the instructions in the guide at: -http://gitlab.toco-domains.de/FreeBSD/GitLab-docu/blob/master/update/8.17-to-9.0-freebsd.md +http://gitlab.toco-domains.de/FreeBSD/GitLab-docu/blob/master/update/9.0-to-9.1-freebsd.md Modified: branches/2017Q3/www/gitlab/pkg-plist ============================================================================== --- branches/2017Q3/www/gitlab/pkg-plist Fri Jul 7 08:25:21 2017 (r445220) +++ branches/2017Q3/www/gitlab/pkg-plist Fri Jul 7 08:27:24 2017 (r445221) @@ -1,9 +1,9 @@ +%%WWWDIR%%/.babelrc %%WWWDIR%%/.csscomb.json %%WWWDIR%%/.eslintignore %%WWWDIR%%/.eslintrc %%WWWDIR%%/.flayignore %%WWWDIR%%/.foreman -%%WWWDIR%%/.gitattributes %%WWWDIR%%/.github/ISSUE_TEMPLATE.md %%WWWDIR%%/.github/PULL_REQUEST_TEMPLATE.md %%WWWDIR%%/.gitlab-ci.yml @@ -41,6 +41,16 @@ %%WWWDIR%%/app/assets/images/auth_buttons/gitlab_64.png %%WWWDIR%%/app/assets/images/auth_buttons/google_64.png %%WWWDIR%%/app/assets/images/auth_buttons/twitter_64.png +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_canceled.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_created.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_failed.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_manual.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_not_found.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_pending.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_running.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_skipped.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_success.ico +%%WWWDIR%%/app/assets/images/ci_favicons/favicon_status_warning.ico %%WWWDIR%%/app/assets/images/dark-scheme-preview.png %%WWWDIR%%/app/assets/images/emoji.png %%WWWDIR%%/app/assets/images/emoji/100.png @@ -1884,21 +1894,34 @@ %%WWWDIR%%/app/assets/javascripts/behaviors/gl_emoji.js %%WWWDIR%%/app/assets/javascripts/behaviors/gl_emoji/is_emoji_name_valid.js %%WWWDIR%%/app/assets/javascripts/behaviors/gl_emoji/is_emoji_unicode_supported.js -%%WWWDIR%%/app/assets/javascripts/behaviors/gl_emoji/spread_string.js %%WWWDIR%%/app/assets/javascripts/behaviors/gl_emoji/unicode_support_map.js +%%WWWDIR%%/app/assets/javascripts/behaviors/index.js %%WWWDIR%%/app/assets/javascripts/behaviors/quick_submit.js %%WWWDIR%%/app/assets/javascripts/behaviors/requires_input.js %%WWWDIR%%/app/assets/javascripts/behaviors/toggler_behavior.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_ci_yaml.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_dockerfile_selector.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_dockerfile_selectors.js +%%WWWDIR%%/app/assets/javascripts/blob/3d_viewer/index.js +%%WWWDIR%%/app/assets/javascripts/blob/3d_viewer/mesh_object.js %%WWWDIR%%/app/assets/javascripts/blob/blob_file_dropzone.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_gitignore_selector.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_gitignore_selectors.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_license_selector.js -%%WWWDIR%%/app/assets/javascripts/blob/blob_license_selectors.js +%%WWWDIR%%/app/assets/javascripts/blob/blob_fork_suggestion.js +%%WWWDIR%%/app/assets/javascripts/blob/blob_line_permalink_updater.js +%%WWWDIR%%/app/assets/javascripts/blob/create_branch_dropdown.js +%%WWWDIR%%/app/assets/javascripts/blob/file_template_mediator.js +%%WWWDIR%%/app/assets/javascripts/blob/file_template_selector.js +%%WWWDIR%%/app/assets/javascripts/blob/notebook/index.js +%%WWWDIR%%/app/assets/javascripts/blob/notebook_viewer.js +%%WWWDIR%%/app/assets/javascripts/blob/pdf/index.js +%%WWWDIR%%/app/assets/javascripts/blob/pdf_viewer.js +%%WWWDIR%%/app/assets/javascripts/blob/sketch/index.js +%%WWWDIR%%/app/assets/javascripts/blob/sketch_viewer.js +%%WWWDIR%%/app/assets/javascripts/blob/stl_viewer.js +%%WWWDIR%%/app/assets/javascripts/blob/target_branch_dropdown.js %%WWWDIR%%/app/assets/javascripts/blob/template_selector.js -%%WWWDIR%%/app/assets/javascripts/blob_edit/blob_edit_bundle.js +%%WWWDIR%%/app/assets/javascripts/blob/template_selectors/ci_yaml_selector.js +%%WWWDIR%%/app/assets/javascripts/blob/template_selectors/dockerfile_selector.js +%%WWWDIR%%/app/assets/javascripts/blob/template_selectors/gitignore_selector.js +%%WWWDIR%%/app/assets/javascripts/blob/template_selectors/license_selector.js +%%WWWDIR%%/app/assets/javascripts/blob/template_selectors/type_selector.js +%%WWWDIR%%/app/assets/javascripts/blob_edit/blob_bundle.js %%WWWDIR%%/app/assets/javascripts/blob_edit/edit_blob.js %%WWWDIR%%/app/assets/javascripts/boards/boards_bundle.js %%WWWDIR%%/app/assets/javascripts/boards/components/board.js @@ -1911,9 +1934,6 @@ %%WWWDIR%%/app/assets/javascripts/boards/components/issue_card_inner.js %%WWWDIR%%/app/assets/javascripts/boards/components/modal/empty_state.js %%WWWDIR%%/app/assets/javascripts/boards/components/modal/filters.js -%%WWWDIR%%/app/assets/javascripts/boards/components/modal/filters/label.js -%%WWWDIR%%/app/assets/javascripts/boards/components/modal/filters/milestone.js -%%WWWDIR%%/app/assets/javascripts/boards/components/modal/filters/user.js %%WWWDIR%%/app/assets/javascripts/boards/components/modal/footer.js %%WWWDIR%%/app/assets/javascripts/boards/components/modal/header.js %%WWWDIR%%/app/assets/javascripts/boards/components/modal/index.js @@ -1922,6 +1942,8 @@ %%WWWDIR%%/app/assets/javascripts/boards/components/modal/tabs.js %%WWWDIR%%/app/assets/javascripts/boards/components/new_list_dropdown.js %%WWWDIR%%/app/assets/javascripts/boards/components/sidebar/remove_issue.js +%%WWWDIR%%/app/assets/javascripts/boards/eventhub.js +%%WWWDIR%%/app/assets/javascripts/boards/filtered_search_boards.js %%WWWDIR%%/app/assets/javascripts/boards/filters/due_date_filters.js %%WWWDIR%%/app/assets/javascripts/boards/mixins/modal_mixins.js %%WWWDIR%%/app/assets/javascripts/boards/mixins/sortable_default_options.js @@ -1933,29 +1955,34 @@ %%WWWDIR%%/app/assets/javascripts/boards/services/board_service.js %%WWWDIR%%/app/assets/javascripts/boards/stores/boards_store.js %%WWWDIR%%/app/assets/javascripts/boards/stores/modal_store.js +%%WWWDIR%%/app/assets/javascripts/boards/utils/query_data.js %%WWWDIR%%/app/assets/javascripts/breakpoints.js %%WWWDIR%%/app/assets/javascripts/broadcast_message.js %%WWWDIR%%/app/assets/javascripts/build.js %%WWWDIR%%/app/assets/javascripts/build_artifacts.js %%WWWDIR%%/app/assets/javascripts/build_variables.js %%WWWDIR%%/app/assets/javascripts/ci_lint_editor.js +%%WWWDIR%%/app/assets/javascripts/ci_status_icons.js +%%WWWDIR%%/app/assets/javascripts/comment_type_toggle.js %%WWWDIR%%/app/assets/javascripts/commit.js %%WWWDIR%%/app/assets/javascripts/commit/file.js %%WWWDIR%%/app/assets/javascripts/commit/image_file.js %%WWWDIR%%/app/assets/javascripts/commit/pipelines/pipelines_bundle.js -%%WWWDIR%%/app/assets/javascripts/commit/pipelines/pipelines_service.js -%%WWWDIR%%/app/assets/javascripts/commit/pipelines/pipelines_store.js %%WWWDIR%%/app/assets/javascripts/commit/pipelines/pipelines_table.js %%WWWDIR%%/app/assets/javascripts/commits.js %%WWWDIR%%/app/assets/javascripts/commons/bootstrap.js %%WWWDIR%%/app/assets/javascripts/commons/index.js %%WWWDIR%%/app/assets/javascripts/commons/jquery.js +%%WWWDIR%%/app/assets/javascripts/commons/polyfills.js +%%WWWDIR%%/app/assets/javascripts/commons/polyfills/custom_event.js +%%WWWDIR%%/app/assets/javascripts/commons/polyfills/element.js %%WWWDIR%%/app/assets/javascripts/compare.js %%WWWDIR%%/app/assets/javascripts/compare_autocomplete.js %%WWWDIR%%/app/assets/javascripts/confirm_danger_modal.js %%WWWDIR%%/app/assets/javascripts/copy_as_gfm.js %%WWWDIR%%/app/assets/javascripts/copy_to_clipboard.js %%WWWDIR%%/app/assets/javascripts/create_label.js +%%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/limit_warning_component.js %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_code_component.js %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_issue_component.js %%WWWDIR%%/app/assets/javascripts/cycle_analytics/components/stage_plan_component.js @@ -1975,6 +2002,7 @@ %%WWWDIR%%/app/assets/javascripts/diff_notes/components/comment_resolve_btn.js %%WWWDIR%%/app/assets/javascripts/diff_notes/components/diff_note_avatars.js %%WWWDIR%%/app/assets/javascripts/diff_notes/components/jump_to_discussion.js +%%WWWDIR%%/app/assets/javascripts/diff_notes/components/new_issue_for_discussion.js %%WWWDIR%%/app/assets/javascripts/diff_notes/components/resolve_btn.js %%WWWDIR%%/app/assets/javascripts/diff_notes/components/resolve_count.js %%WWWDIR%%/app/assets/javascripts/diff_notes/components/resolve_discussion_btn.js @@ -1986,37 +2014,45 @@ %%WWWDIR%%/app/assets/javascripts/diff_notes/services/resolve.js %%WWWDIR%%/app/assets/javascripts/diff_notes/stores/comments.js %%WWWDIR%%/app/assets/javascripts/dispatcher.js -%%WWWDIR%%/app/assets/javascripts/droplab/droplab.js -%%WWWDIR%%/app/assets/javascripts/droplab/droplab_ajax.js -%%WWWDIR%%/app/assets/javascripts/droplab/droplab_ajax_filter.js -%%WWWDIR%%/app/assets/javascripts/droplab/droplab_filter.js +%%WWWDIR%%/app/assets/javascripts/droplab/constants.js +%%WWWDIR%%/app/assets/javascripts/droplab/drop_down.js +%%WWWDIR%%/app/assets/javascripts/droplab/drop_lab.js +%%WWWDIR%%/app/assets/javascripts/droplab/hook.js +%%WWWDIR%%/app/assets/javascripts/droplab/hook_button.js +%%WWWDIR%%/app/assets/javascripts/droplab/hook_input.js +%%WWWDIR%%/app/assets/javascripts/droplab/keyboard.js +%%WWWDIR%%/app/assets/javascripts/droplab/plugins/ajax.js +%%WWWDIR%%/app/assets/javascripts/droplab/plugins/ajax_filter.js +%%WWWDIR%%/app/assets/javascripts/droplab/plugins/filter.js +%%WWWDIR%%/app/assets/javascripts/droplab/plugins/input_setter.js +%%WWWDIR%%/app/assets/javascripts/droplab/utils.js %%WWWDIR%%/app/assets/javascripts/dropzone_input.js %%WWWDIR%%/app/assets/javascripts/due_date_select.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment_actions.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment_external_url.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment_item.js +%%WWWDIR%%/app/assets/javascripts/environments/components/environment_monitoring.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment_rollback.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment_stop.js %%WWWDIR%%/app/assets/javascripts/environments/components/environment_terminal_button.js %%WWWDIR%%/app/assets/javascripts/environments/components/environments_table.js %%WWWDIR%%/app/assets/javascripts/environments/environments_bundle.js +%%WWWDIR%%/app/assets/javascripts/environments/event_hub.js %%WWWDIR%%/app/assets/javascripts/environments/folder/environments_folder_bundle.js %%WWWDIR%%/app/assets/javascripts/environments/folder/environments_folder_view.js %%WWWDIR%%/app/assets/javascripts/environments/services/environments_service.js %%WWWDIR%%/app/assets/javascripts/environments/stores/environments_store.js %%WWWDIR%%/app/assets/javascripts/extensions/array.js -%%WWWDIR%%/app/assets/javascripts/extensions/custom_event.js -%%WWWDIR%%/app/assets/javascripts/extensions/element.js -%%WWWDIR%%/app/assets/javascripts/extensions/jquery.js -%%WWWDIR%%/app/assets/javascripts/extensions/object.js -%%WWWDIR%%/app/assets/javascripts/extensions/string.js %%WWWDIR%%/app/assets/javascripts/files_comment_button.js %%WWWDIR%%/app/assets/javascripts/filterable_list.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/components/recent_searches_dropdown_content.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/container.js %%WWWDIR%%/app/assets/javascripts/filtered_search/dropdown_hint.js %%WWWDIR%%/app/assets/javascripts/filtered_search/dropdown_non_user.js %%WWWDIR%%/app/assets/javascripts/filtered_search/dropdown_user.js %%WWWDIR%%/app/assets/javascripts/filtered_search/dropdown_utils.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/event_hub.js %%WWWDIR%%/app/assets/javascripts/filtered_search/filtered_search_bundle.js %%WWWDIR%%/app/assets/javascripts/filtered_search/filtered_search_dropdown.js %%WWWDIR%%/app/assets/javascripts/filtered_search/filtered_search_dropdown_manager.js @@ -2024,6 +2060,10 @@ %%WWWDIR%%/app/assets/javascripts/filtered_search/filtered_search_token_keys.js %%WWWDIR%%/app/assets/javascripts/filtered_search/filtered_search_tokenizer.js %%WWWDIR%%/app/assets/javascripts/filtered_search/filtered_search_visual_tokens.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/recent_searches_root.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/services/recent_searches_service.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/services/recent_searches_service_error.js +%%WWWDIR%%/app/assets/javascripts/filtered_search/stores/recent_searches_store.js %%WWWDIR%%/app/assets/javascripts/flash.js %%WWWDIR%%/app/assets/javascripts/gfm_auto_complete.js %%WWWDIR%%/app/assets/javascripts/gl_dropdown.js @@ -2034,13 +2074,16 @@ %%WWWDIR%%/app/assets/javascripts/graphs/stat_graph_contributors.js %%WWWDIR%%/app/assets/javascripts/graphs/stat_graph_contributors_graph.js %%WWWDIR%%/app/assets/javascripts/graphs/stat_graph_contributors_util.js +%%WWWDIR%%/app/assets/javascripts/group.js %%WWWDIR%%/app/assets/javascripts/group_avatar.js %%WWWDIR%%/app/assets/javascripts/group_label_subscription.js +%%WWWDIR%%/app/assets/javascripts/group_name.js %%WWWDIR%%/app/assets/javascripts/groups_list.js %%WWWDIR%%/app/assets/javascripts/groups_select.js %%WWWDIR%%/app/assets/javascripts/header.js %%WWWDIR%%/app/assets/javascripts/importer_status.js %%WWWDIR%%/app/assets/javascripts/issuable.js +%%WWWDIR%%/app/assets/javascripts/issuable/auto_width_dropdown_select.js %%WWWDIR%%/app/assets/javascripts/issuable/issuable_bundle.js %%WWWDIR%%/app/assets/javascripts/issuable/time_tracking/components/collapsed_state.js %%WWWDIR%%/app/assets/javascripts/issuable/time_tracking/components/comparison_pane.js @@ -2053,6 +2096,9 @@ %%WWWDIR%%/app/assets/javascripts/issuable_context.js %%WWWDIR%%/app/assets/javascripts/issuable_form.js %%WWWDIR%%/app/assets/javascripts/issue.js +%%WWWDIR%%/app/assets/javascripts/issue_show/index.js +%%WWWDIR%%/app/assets/javascripts/issue_show/issue_title.js +%%WWWDIR%%/app/assets/javascripts/issue_show/services/index.js %%WWWDIR%%/app/assets/javascripts/issue_status_select.js %%WWWDIR%%/app/assets/javascripts/issues_bulk_assignment.js %%WWWDIR%%/app/assets/javascripts/label_manager.js @@ -2061,12 +2107,16 @@ %%WWWDIR%%/app/assets/javascripts/layout_nav.js %%WWWDIR%%/app/assets/javascripts/lib/ace.js %%WWWDIR%%/app/assets/javascripts/lib/ace/ace_config_paths.js.erb +%%WWWDIR%%/app/assets/javascripts/lib/utils/accessor.js %%WWWDIR%%/app/assets/javascripts/lib/utils/animate.js %%WWWDIR%%/app/assets/javascripts/lib/utils/bootstrap_linked_tabs.js %%WWWDIR%%/app/assets/javascripts/lib/utils/common_utils.js +%%WWWDIR%%/app/assets/javascripts/lib/utils/constants.js %%WWWDIR%%/app/assets/javascripts/lib/utils/datetime_utility.js %%WWWDIR%%/app/assets/javascripts/lib/utils/http_status.js %%WWWDIR%%/app/assets/javascripts/lib/utils/notify.js +%%WWWDIR%%/app/assets/javascripts/lib/utils/number_utils.js +%%WWWDIR%%/app/assets/javascripts/lib/utils/poll.js %%WWWDIR%%/app/assets/javascripts/lib/utils/pretty_time.js %%WWWDIR%%/app/assets/javascripts/lib/utils/text_utility.js %%WWWDIR%%/app/assets/javascripts/lib/utils/type_utility.js @@ -2127,6 +2177,12 @@ %%WWWDIR%%/app/assets/javascripts/protected_branches/protected_branch_edit.js %%WWWDIR%%/app/assets/javascripts/protected_branches/protected_branch_edit_list.js %%WWWDIR%%/app/assets/javascripts/protected_branches/protected_branches_bundle.js +%%WWWDIR%%/app/assets/javascripts/protected_tags/index.js +%%WWWDIR%%/app/assets/javascripts/protected_tags/protected_tag_access_dropdown.js +%%WWWDIR%%/app/assets/javascripts/protected_tags/protected_tag_create.js +%%WWWDIR%%/app/assets/javascripts/protected_tags/protected_tag_dropdown.js +%%WWWDIR%%/app/assets/javascripts/protected_tags/protected_tag_edit.js +%%WWWDIR%%/app/assets/javascripts/protected_tags/protected_tag_edit_list.js %%WWWDIR%%/app/assets/javascripts/render_gfm.js %%WWWDIR%%/app/assets/javascripts/render_math.js %%WWWDIR%%/app/assets/javascripts/right_sidebar.js @@ -2154,6 +2210,7 @@ %%WWWDIR%%/app/assets/javascripts/templates/issuable_template_selectors.js %%WWWDIR%%/app/assets/javascripts/terminal/terminal.js %%WWWDIR%%/app/assets/javascripts/terminal/terminal_bundle.js +%%WWWDIR%%/app/assets/javascripts/test_utils/index.js %%WWWDIR%%/app/assets/javascripts/test_utils/simulate_drag.js %%WWWDIR%%/app/assets/javascripts/todos.js %%WWWDIR%%/app/assets/javascripts/tree.js @@ -2161,6 +2218,7 @@ %%WWWDIR%%/app/assets/javascripts/u2f/error.js %%WWWDIR%%/app/assets/javascripts/u2f/register.js %%WWWDIR%%/app/assets/javascripts/u2f/util.js +%%WWWDIR%%/app/assets/javascripts/usage_ping.js %%WWWDIR%%/app/assets/javascripts/user.js %%WWWDIR%%/app/assets/javascripts/user_callout.js %%WWWDIR%%/app/assets/javascripts/user_tabs.js @@ -2170,15 +2228,24 @@ %%WWWDIR%%/app/assets/javascripts/users_select.js %%WWWDIR%%/app/assets/javascripts/version_check_image.js %%WWWDIR%%/app/assets/javascripts/visibility_select.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/async_button.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/empty_state.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/error_state.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/nav_controls.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/navigation_tabs.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/pipeline_url.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/pipelines_actions.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/pipelines_artifacts.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/stage.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/status.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/components/time_ago.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/event_hub.js %%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/index.js -%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/pipeline_actions.js -%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/pipeline_url.js %%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/pipelines.js -%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/stage.js -%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/status.js -%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/store.js -%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/time_ago.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/services/pipelines_service.js +%%WWWDIR%%/app/assets/javascripts/vue_pipelines_index/stores/pipelines_store.js %%WWWDIR%%/app/assets/javascripts/vue_realtime_listener/index.js +%%WWWDIR%%/app/assets/javascripts/vue_shared/common_vue.js %%WWWDIR%%/app/assets/javascripts/vue_shared/components/commit.js %%WWWDIR%%/app/assets/javascripts/vue_shared/components/pipelines_table.js %%WWWDIR%%/app/assets/javascripts/vue_shared/components/pipelines_table_row.js @@ -2250,6 +2317,7 @@ %%WWWDIR%%/app/assets/stylesheets/pages/builds.scss %%WWWDIR%%/app/assets/stylesheets/pages/ci_projects.scss %%WWWDIR%%/app/assets/stylesheets/pages/commits.scss +%%WWWDIR%%/app/assets/stylesheets/pages/container_registry.scss %%WWWDIR%%/app/assets/stylesheets/pages/cycle_analytics.scss %%WWWDIR%%/app/assets/stylesheets/pages/deploy_keys.scss %%WWWDIR%%/app/assets/stylesheets/pages/detail_page.scss @@ -2299,6 +2367,7 @@ %%WWWDIR%%/app/controllers/admin/background_jobs_controller.rb %%WWWDIR%%/app/controllers/admin/broadcast_messages_controller.rb %%WWWDIR%%/app/controllers/admin/builds_controller.rb +%%WWWDIR%%/app/controllers/admin/cohorts_controller.rb %%WWWDIR%%/app/controllers/admin/dashboard_controller.rb %%WWWDIR%%/app/controllers/admin/deploy_keys_controller.rb %%WWWDIR%%/app/controllers/admin/groups_controller.rb @@ -2326,7 +2395,7 @@ %%WWWDIR%%/app/controllers/concerns/creates_commit.rb %%WWWDIR%%/app/controllers/concerns/cycle_analytics_params.rb %%WWWDIR%%/app/controllers/concerns/diff_for_path.rb -%%WWWDIR%%/app/controllers/concerns/filter_projects.rb +%%WWWDIR%%/app/controllers/concerns/enforces_two_factor_authentication.rb %%WWWDIR%%/app/controllers/concerns/issuable_actions.rb %%WWWDIR%%/app/controllers/concerns/issuable_collections.rb %%WWWDIR%%/app/controllers/concerns/issues_action.rb @@ -2334,7 +2403,10 @@ %%WWWDIR%%/app/controllers/concerns/membership_actions.rb %%WWWDIR%%/app/controllers/concerns/merge_requests_action.rb %%WWWDIR%%/app/controllers/concerns/oauth_applications.rb +%%WWWDIR%%/app/controllers/concerns/params_backward_compatibility.rb +%%WWWDIR%%/app/controllers/concerns/renders_notes.rb %%WWWDIR%%/app/controllers/concerns/repository_settings_redirect.rb +%%WWWDIR%%/app/controllers/concerns/requires_health_token.rb %%WWWDIR%%/app/controllers/concerns/service_params.rb %%WWWDIR%%/app/controllers/concerns/snippets_actions.rb %%WWWDIR%%/app/controllers/concerns/spammable_actions.rb @@ -2361,6 +2433,7 @@ %%WWWDIR%%/app/controllers/groups/milestones_controller.rb %%WWWDIR%%/app/controllers/groups_controller.rb %%WWWDIR%%/app/controllers/health_check_controller.rb +%%WWWDIR%%/app/controllers/health_controller.rb %%WWWDIR%%/app/controllers/help_controller.rb %%WWWDIR%%/app/controllers/import/base_controller.rb %%WWWDIR%%/app/controllers/import/bitbucket_controller.rb @@ -2408,7 +2481,6 @@ %%WWWDIR%%/app/controllers/projects/commit_controller.rb %%WWWDIR%%/app/controllers/projects/commits_controller.rb %%WWWDIR%%/app/controllers/projects/compare_controller.rb -%%WWWDIR%%/app/controllers/projects/container_registry_controller.rb %%WWWDIR%%/app/controllers/projects/cycle_analytics/events_controller.rb %%WWWDIR%%/app/controllers/projects/cycle_analytics_controller.rb %%WWWDIR%%/app/controllers/projects/deploy_keys_controller.rb @@ -2437,8 +2509,13 @@ %%WWWDIR%%/app/controllers/projects/pipelines_settings_controller.rb %%WWWDIR%%/app/controllers/projects/project_members_controller.rb %%WWWDIR%%/app/controllers/projects/protected_branches_controller.rb +%%WWWDIR%%/app/controllers/projects/protected_refs_controller.rb +%%WWWDIR%%/app/controllers/projects/protected_tags_controller.rb %%WWWDIR%%/app/controllers/projects/raw_controller.rb %%WWWDIR%%/app/controllers/projects/refs_controller.rb +%%WWWDIR%%/app/controllers/projects/registry/application_controller.rb +%%WWWDIR%%/app/controllers/projects/registry/repositories_controller.rb +%%WWWDIR%%/app/controllers/projects/registry/tags_controller.rb %%WWWDIR%%/app/controllers/projects/releases_controller.rb %%WWWDIR%%/app/controllers/projects/repositories_controller.rb %%WWWDIR%%/app/controllers/projects/runner_projects_controller.rb @@ -2558,6 +2635,7 @@ %%WWWDIR%%/app/helpers/sorting_helper.rb %%WWWDIR%%/app/helpers/storage_helper.rb %%WWWDIR%%/app/helpers/submodule_helper.rb +%%WWWDIR%%/app/helpers/system_note_helper.rb %%WWWDIR%%/app/helpers/tab_helper.rb %%WWWDIR%%/app/helpers/tags_helper.rb %%WWWDIR%%/app/helpers/time_helper.rb @@ -2565,6 +2643,7 @@ %%WWWDIR%%/app/helpers/tree_helper.rb %%WWWDIR%%/app/helpers/triggers_helper.rb %%WWWDIR%%/app/helpers/u2f_helper.rb +%%WWWDIR%%/app/helpers/users_helper.rb %%WWWDIR%%/app/helpers/version_check_helper.rb %%WWWDIR%%/app/helpers/visibility_level_helper.rb %%WWWDIR%%/app/helpers/wiki_helper.rb @@ -2595,12 +2674,12 @@ %%WWWDIR%%/app/models/chat_team.rb %%WWWDIR%%/app/models/ci/build.rb %%WWWDIR%%/app/models/ci/pipeline.rb -%%WWWDIR%%/app/models/ci/pipeline_status.rb %%WWWDIR%%/app/models/ci/runner.rb %%WWWDIR%%/app/models/ci/runner_project.rb %%WWWDIR%%/app/models/ci/stage.rb %%WWWDIR%%/app/models/ci/trigger.rb %%WWWDIR%%/app/models/ci/trigger_request.rb +%%WWWDIR%%/app/models/ci/trigger_schedule.rb %%WWWDIR%%/app/models/ci/variable.rb %%WWWDIR%%/app/models/commit.rb %%WWWDIR%%/app/models/commit_range.rb @@ -2610,23 +2689,33 @@ %%WWWDIR%%/app/models/concerns/awardable.rb %%WWWDIR%%/app/models/concerns/cache_markdown_field.rb %%WWWDIR%%/app/models/concerns/case_sensitivity.rb +%%WWWDIR%%/app/models/concerns/discussion_on_diff.rb %%WWWDIR%%/app/models/concerns/expirable.rb %%WWWDIR%%/app/models/concerns/faster_cache_keys.rb +%%WWWDIR%%/app/models/concerns/ghost_user.rb %%WWWDIR%%/app/models/concerns/has_status.rb +%%WWWDIR%%/app/models/concerns/ignorable_column.rb %%WWWDIR%%/app/models/concerns/importable.rb %%WWWDIR%%/app/models/concerns/internal_id.rb %%WWWDIR%%/app/models/concerns/issuable.rb %%WWWDIR%%/app/models/concerns/mentionable.rb %%WWWDIR%%/app/models/concerns/milestoneish.rb %%WWWDIR%%/app/models/concerns/note_on_diff.rb +%%WWWDIR%%/app/models/concerns/noteable.rb %%WWWDIR%%/app/models/concerns/participable.rb %%WWWDIR%%/app/models/concerns/presentable.rb %%WWWDIR%%/app/models/concerns/project_features_compatibility.rb %%WWWDIR%%/app/models/concerns/protected_branch_access.rb +%%WWWDIR%%/app/models/concerns/protected_ref.rb +%%WWWDIR%%/app/models/concerns/protected_ref_access.rb +%%WWWDIR%%/app/models/concerns/protected_tag_access.rb %%WWWDIR%%/app/models/concerns/reactive_caching.rb %%WWWDIR%%/app/models/concerns/reactive_service.rb %%WWWDIR%%/app/models/concerns/referable.rb %%WWWDIR%%/app/models/concerns/relative_positioning.rb +%%WWWDIR%%/app/models/concerns/repository_mirroring.rb +%%WWWDIR%%/app/models/concerns/resolvable_discussion.rb +%%WWWDIR%%/app/models/concerns/resolvable_note.rb %%WWWDIR%%/app/models/concerns/routable.rb %%WWWDIR%%/app/models/concerns/select_for_project_authorization.rb %%WWWDIR%%/app/models/concerns/sortable.rb @@ -2638,15 +2727,18 @@ %%WWWDIR%%/app/models/concerns/token_authenticatable.rb %%WWWDIR%%/app/models/concerns/uniquify.rb %%WWWDIR%%/app/models/concerns/valid_attribute.rb +%%WWWDIR%%/app/models/container_repository.rb %%WWWDIR%%/app/models/cycle_analytics.rb %%WWWDIR%%/app/models/cycle_analytics/summary.rb %%WWWDIR%%/app/models/dashboard_milestone.rb %%WWWDIR%%/app/models/deploy_key.rb %%WWWDIR%%/app/models/deploy_keys_project.rb %%WWWDIR%%/app/models/deployment.rb +%%WWWDIR%%/app/models/diff_discussion.rb %%WWWDIR%%/app/models/diff_note.rb %%WWWDIR%%/app/models/directly_addressed_user.rb %%WWWDIR%%/app/models/discussion.rb +%%WWWDIR%%/app/models/discussion_note.rb %%WWWDIR%%/app/models/email.rb %%WWWDIR%%/app/models/environment.rb %%WWWDIR%%/app/models/event.rb @@ -2664,6 +2756,7 @@ %%WWWDIR%%/app/models/hooks/system_hook.rb %%WWWDIR%%/app/models/hooks/web_hook.rb %%WWWDIR%%/app/models/identity.rb +%%WWWDIR%%/app/models/individual_note_discussion.rb %%WWWDIR%%/app/models/issue.rb %%WWWDIR%%/app/models/issue/metrics.rb %%WWWDIR%%/app/models/issue_collection.rb @@ -2671,6 +2764,7 @@ %%WWWDIR%%/app/models/label.rb %%WWWDIR%%/app/models/label_link.rb %%WWWDIR%%/app/models/label_priority.rb +%%WWWDIR%%/app/models/legacy_diff_discussion.rb %%WWWDIR%%/app/models/legacy_diff_note.rb %%WWWDIR%%/app/models/lfs_object.rb %%WWWDIR%%/app/models/lfs_objects_project.rb @@ -2690,6 +2784,7 @@ %%WWWDIR%%/app/models/notification_setting.rb %%WWWDIR%%/app/models/oauth_access_grant.rb %%WWWDIR%%/app/models/oauth_access_token.rb +%%WWWDIR%%/app/models/out_of_context_discussion.rb %%WWWDIR%%/app/models/pages_domain.rb %%WWWDIR%%/app/models/personal_access_token.rb %%WWWDIR%%/app/models/personal_snippet.rb @@ -2731,7 +2826,10 @@ %%WWWDIR%%/app/models/project_services/kubernetes_service.rb %%WWWDIR%%/app/models/project_services/mattermost_service.rb %%WWWDIR%%/app/models/project_services/mattermost_slash_commands_service.rb +%%WWWDIR%%/app/models/project_services/microsoft_teams_service.rb %%WWWDIR%%/app/models/project_services/mock_ci_service.rb +%%WWWDIR%%/app/models/project_services/mock_deployment_service.rb +%%WWWDIR%%/app/models/project_services/mock_monitoring_service.rb %%WWWDIR%%/app/models/project_services/monitoring_service.rb %%WWWDIR%%/app/models/project_services/pipelines_email_service.rb %%WWWDIR%%/app/models/project_services/pivotaltracker_service.rb @@ -2745,9 +2843,13 @@ %%WWWDIR%%/app/models/project_statistics.rb %%WWWDIR%%/app/models/project_team.rb %%WWWDIR%%/app/models/project_wiki.rb +%%WWWDIR%%/app/models/protectable_dropdown.rb %%WWWDIR%%/app/models/protected_branch.rb %%WWWDIR%%/app/models/protected_branch/merge_access_level.rb %%WWWDIR%%/app/models/protected_branch/push_access_level.rb +%%WWWDIR%%/app/models/protected_ref_matcher.rb +%%WWWDIR%%/app/models/protected_tag.rb +%%WWWDIR%%/app/models/protected_tag/create_access_level.rb %%WWWDIR%%/app/models/release.rb %%WWWDIR%%/app/models/repository.rb %%WWWDIR%%/app/models/route.rb @@ -2757,6 +2859,7 @@ %%WWWDIR%%/app/models/snippet.rb %%WWWDIR%%/app/models/spam_log.rb %%WWWDIR%%/app/models/subscription.rb +%%WWWDIR%%/app/models/system_note_metadata.rb %%WWWDIR%%/app/models/timelog.rb %%WWWDIR%%/app/models/todo.rb %%WWWDIR%%/app/models/tree.rb @@ -2794,6 +2897,7 @@ %%WWWDIR%%/app/policies/user_policy.rb %%WWWDIR%%/app/presenters/README.md %%WWWDIR%%/app/presenters/ci/build_presenter.rb +%%WWWDIR%%/app/presenters/ci/pipeline_presenter.rb %%WWWDIR%%/app/presenters/projects/settings/deploy_keys_presenter.rb %%WWWDIR%%/app/serializers/analytics_build_entity.rb %%WWWDIR%%/app/serializers/analytics_build_serializer.rb @@ -2812,6 +2916,11 @@ %%WWWDIR%%/app/serializers/build_action_entity.rb %%WWWDIR%%/app/serializers/build_artifact_entity.rb %%WWWDIR%%/app/serializers/build_entity.rb +%%WWWDIR%%/app/serializers/build_serializer.rb +%%WWWDIR%%/app/serializers/cohort_activity_month_entity.rb +%%WWWDIR%%/app/serializers/cohort_entity.rb +%%WWWDIR%%/app/serializers/cohorts_entity.rb +%%WWWDIR%%/app/serializers/cohorts_serializer.rb %%WWWDIR%%/app/serializers/commit_entity.rb %%WWWDIR%%/app/serializers/deployment_entity.rb %%WWWDIR%%/app/serializers/entity_date_helper.rb @@ -2860,10 +2969,12 @@ %%WWWDIR%%/app/services/ci/stop_environments_service.rb %%WWWDIR%%/app/services/ci/update_build_queue_service.rb %%WWWDIR%%/app/services/ci/update_runner_service.rb +%%WWWDIR%%/app/services/cohorts_service.rb %%WWWDIR%%/app/services/commits/change_service.rb %%WWWDIR%%/app/services/commits/cherry_pick_service.rb %%WWWDIR%%/app/services/commits/revert_service.rb %%WWWDIR%%/app/services/compare_service.rb +%%WWWDIR%%/app/services/concerns/issues/resolve_discussions.rb %%WWWDIR%%/app/services/create_branch_service.rb %%WWWDIR%%/app/services/create_deployment_service.rb %%WWWDIR%%/app/services/create_release_service.rb @@ -2899,9 +3010,12 @@ %%WWWDIR%%/app/services/issues/move_service.rb %%WWWDIR%%/app/services/issues/reopen_service.rb %%WWWDIR%%/app/services/issues/update_service.rb +%%WWWDIR%%/app/services/labels/base_service.rb +%%WWWDIR%%/app/services/labels/create_service.rb *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Sat Jul 8 02:25:54 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4734CDB18F4; Sat, 8 Jul 2017 02:25:54 +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 14B136FC16; Sat, 8 Jul 2017 02:25:54 +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 v682PqZe039782; Sat, 8 Jul 2017 02:25:52 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v682PqQJ039779; Sat, 8 Jul 2017 02:25:52 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707080225.v682PqQJ039779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 8 Jul 2017 02:25:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445293 - in branches/2017Q3: devel/php56-readline lang/php56 X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: in branches/2017Q3: devel/php56-readline lang/php56 X-SVN-Commit-Revision: 445293 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 08 Jul 2017 02:25:54 -0000 Author: junovitch Date: Sat Jul 8 02:25:52 2017 New Revision: 445293 URL: https://svnweb.freebsd.org/changeset/ports/445293 Log: MFH: r445214 Update to 5.6.31 release. PR: 220529 Submitted by: Fabiano Sidler Approved by: ports-secteam (with hat) Modified: branches/2017Q3/devel/php56-readline/Makefile branches/2017Q3/lang/php56/Makefile branches/2017Q3/lang/php56/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/php56-readline/Makefile ============================================================================== --- branches/2017Q3/devel/php56-readline/Makefile Sat Jul 8 02:20:26 2017 (r445292) +++ branches/2017Q3/devel/php56-readline/Makefile Sat Jul 8 02:25:52 2017 (r445293) @@ -1,7 +1,6 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= devel MASTERDIR= ${.CURDIR}/../../lang/php56 Modified: branches/2017Q3/lang/php56/Makefile ============================================================================== --- branches/2017Q3/lang/php56/Makefile Sat Jul 8 02:20:26 2017 (r445292) +++ branches/2017Q3/lang/php56/Makefile Sat Jul 8 02:25:52 2017 (r445293) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php56 -PORTVERSION= 5.6.30 +PORTVERSION= 5.6.31 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: branches/2017Q3/lang/php56/distinfo ============================================================================== --- branches/2017Q3/lang/php56/distinfo Sat Jul 8 02:20:26 2017 (r445292) +++ branches/2017Q3/lang/php56/distinfo Sat Jul 8 02:25:52 2017 (r445293) @@ -1,5 +1,5 @@ -TIMESTAMP = 1484817530 -SHA256 (php-5.6.30.tar.xz) = a363185c786432f75e3c7ff956b49c3369c3f6906a6b10459f8d1ddc22f70805 -SIZE (php-5.6.30.tar.xz) = 12449696 +TIMESTAMP = 1499414495 +SHA256 (php-5.6.31.tar.xz) = c464af61240a9b7729fabe0314cdbdd5a000a4f0c9bd201f89f8628732fe4ae4 +SIZE (php-5.6.31.tar.xz) = 12461268 SHA256 (php-5.5.x-mail-header.patch) = f510672c4bf2c228e4d8c7837e16a82169de82139dcf33fafce51e9e55a1b9ed SIZE (php-5.5.x-mail-header.patch) = 4426 From owner-svn-ports-branches@freebsd.org Sat Jul 8 13:10:43 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A13D8D9A0A3; Sat, 8 Jul 2017 13:10:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6EB2C8017A; Sat, 8 Jul 2017 13:10:43 +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 v68DAgH4004443; Sat, 8 Jul 2017 13:10:42 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v68DAgVd004442; Sat, 8 Jul 2017 13:10:42 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201707081310.v68DAgVd004442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 8 Jul 2017 13:10:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445325 - branches/2017Q3/lang/mlton X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2017Q3/lang/mlton X-SVN-Commit-Revision: 445325 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 08 Jul 2017 13:10:43 -0000 Author: antoine Date: Sat Jul 8 13:10:42 2017 New Revision: 445325 URL: https://svnweb.freebsd.org/changeset/ports/445325 Log: MFH: r445324 Forbid on i386 With hat: portmgr Modified: branches/2017Q3/lang/mlton/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/lang/mlton/Makefile ============================================================================== --- branches/2017Q3/lang/mlton/Makefile Sat Jul 8 13:09:49 2017 (r445324) +++ branches/2017Q3/lang/mlton/Makefile Sat Jul 8 13:10:42 2017 (r445325) @@ -37,6 +37,10 @@ USE_GCC= any .include +.if ${ARCH} == i386 +FORBIDDEN= mlton-compile loops infinitely and is unkillable +.endif + .if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= gsed:textproc/gsed \ htmldoc:textproc/htmldoc From owner-svn-ports-branches@freebsd.org Sat Jul 8 14:09:53 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E0DAD9AEE6; Sat, 8 Jul 2017 14:09: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 4B1CE81EFA; Sat, 8 Jul 2017 14:09: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 v68E9qq6029812; Sat, 8 Jul 2017 14:09:52 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v68E9qmw029810; Sat, 8 Jul 2017 14:09:52 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201707081409.v68E9qmw029810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 8 Jul 2017 14:09:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445338 - branches/2017Q3/irc/irssi X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2017Q3/irc/irssi X-SVN-Commit-Revision: 445338 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 08 Jul 2017 14:09:53 -0000 Author: feld Date: Sat Jul 8 14:09:52 2017 New Revision: 445338 URL: https://svnweb.freebsd.org/changeset/ports/445338 Log: MFH: r445337 irc/irssi: Update to 1.0.4 - Fixes two CVEs PR: 220544 Security: CVE-2017-10965 Security: CVE-2017-10966 Approved by: ports-secteam (with hat) Modified: branches/2017Q3/irc/irssi/Makefile branches/2017Q3/irc/irssi/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/irc/irssi/Makefile ============================================================================== --- branches/2017Q3/irc/irssi/Makefile Sat Jul 8 14:09:13 2017 (r445337) +++ branches/2017Q3/irc/irssi/Makefile Sat Jul 8 14:09:52 2017 (r445338) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= irssi -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 PORTEPOCH= 1 CATEGORIES?= irc MASTER_SITES= https://github.com/irssi/irssi/releases/download/${PORTVERSION}/ Modified: branches/2017Q3/irc/irssi/distinfo ============================================================================== --- branches/2017Q3/irc/irssi/distinfo Sat Jul 8 14:09:13 2017 (r445337) +++ branches/2017Q3/irc/irssi/distinfo Sat Jul 8 14:09:52 2017 (r445338) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496881515 -SHA256 (irssi-1.0.3.tar.xz) = 838220297dcbe7c8c42d01005059779a82f5b7b7e7043db37ad13f5966aff581 -SIZE (irssi-1.0.3.tar.xz) = 1029980 +TIMESTAMP = 1499522690 +SHA256 (irssi-1.0.4.tar.xz) = b85c07dbafe178213eccdc69f5f8f0ac024dea01c67244668f91ec1c06b986ca +SIZE (irssi-1.0.4.tar.xz) = 1030956 From owner-svn-ports-branches@freebsd.org Sat Jul 8 23:45:30 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AD54DA4CEE; Sat, 8 Jul 2017 23:45:30 +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 042286FEC2; Sat, 8 Jul 2017 23:45:29 +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 v68NjTEc068212; Sat, 8 Jul 2017 23:45:29 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v68NjSw0068210; Sat, 8 Jul 2017 23:45:28 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707082345.v68NjSw0068210@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 8 Jul 2017 23:45:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445356 - branches/2017Q3/www/codeigniter X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: branches/2017Q3/www/codeigniter X-SVN-Commit-Revision: 445356 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 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, 08 Jul 2017 23:45:30 -0000 Author: junovitch Date: Sat Jul 8 23:45:28 2017 New Revision: 445356 URL: https://svnweb.freebsd.org/changeset/ports/445356 Log: MFH: r445355 www/codeigniter: update 3.1.4 -> 3.1.5 Security: https://vuxml.FreeBSD.org/freebsd/aaedf196-6436-11e7-8b49-002590263bf5.html Approved by: ports-secteam (with hat) Modified: branches/2017Q3/www/codeigniter/Makefile branches/2017Q3/www/codeigniter/distinfo Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/www/codeigniter/Makefile ============================================================================== --- branches/2017Q3/www/codeigniter/Makefile Sat Jul 8 23:44:57 2017 (r445355) +++ branches/2017Q3/www/codeigniter/Makefile Sat Jul 8 23:45:28 2017 (r445356) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= codeigniter -PORTVERSION= 3.1.4 +PORTVERSION= 3.1.5 CATEGORIES= www MAINTAINER= junovitch@FreeBSD.org Modified: branches/2017Q3/www/codeigniter/distinfo ============================================================================== --- branches/2017Q3/www/codeigniter/distinfo Sat Jul 8 23:44:57 2017 (r445355) +++ branches/2017Q3/www/codeigniter/distinfo Sat Jul 8 23:45:28 2017 (r445356) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493087521 -SHA256 (bcit-ci-CodeIgniter-3.1.4_GH0.tar.gz) = 778ca029620c9b9beb3ddb45f278b743745ecc63b8ec718c08fe35da3ab7cc19 -SIZE (bcit-ci-CodeIgniter-3.1.4_GH0.tar.gz) = 2083938 +TIMESTAMP = 1499306965 +SHA256 (bcit-ci-CodeIgniter-3.1.5_GH0.tar.gz) = 78e533db3e33449aec2e00c2f67ed66637e31a70a84c74c62a58ad152e78fe92 +SIZE (bcit-ci-CodeIgniter-3.1.5_GH0.tar.gz) = 2088684