From owner-svn-ports-branches@freebsd.org Sun Dec 6 19:42:53 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1A7A54A90EF; Sun, 6 Dec 2020 19:42:53 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CpxgK0DdTz4l5B; Sun, 6 Dec 2020 19:42:53 +0000 (UTC) (envelope-from pkubaj@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E451C153E7; Sun, 6 Dec 2020 19:42:52 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B6Jgq1d019479; Sun, 6 Dec 2020 19:42:52 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B6JgqxH019477; Sun, 6 Dec 2020 19:42:52 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202012061942.0B6JgqxH019477@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sun, 6 Dec 2020 19:42:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557166 - branches/2020Q4/databases/mariadb105-server/files X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: branches/2020Q4/databases/mariadb105-server/files X-SVN-Commit-Revision: 557166 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.34 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, 06 Dec 2020 19:42:53 -0000 Author: pkubaj Date: Sun Dec 6 19:42:52 2020 New Revision: 557166 URL: https://svnweb.freebsd.org/changeset/ports/557166 Log: MFH: r557165 databases/mariadb105-server: fix build on powerpc64 Add powerpc64 as an alternative to ppc64. Fix crc32c the same way it was fixed already for databases/rocksdb. Approved by: tier 2 blanket Added: branches/2020Q4/databases/mariadb105-server/files/patch-mysys_CMakeLists.txt - copied unchanged from r557165, head/databases/mariadb105-server/files/patch-mysys_CMakeLists.txt branches/2020Q4/databases/mariadb105-server/files/patch-mysys_crc32_crc32c.cc - copied unchanged from r557165, head/databases/mariadb105-server/files/patch-mysys_crc32_crc32c.cc Modified: Directory Properties: branches/2020Q4/ (props changed) Copied: branches/2020Q4/databases/mariadb105-server/files/patch-mysys_CMakeLists.txt (from r557165, head/databases/mariadb105-server/files/patch-mysys_CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/databases/mariadb105-server/files/patch-mysys_CMakeLists.txt Sun Dec 6 19:42:52 2020 (r557166, copy of r557165, head/databases/mariadb105-server/files/patch-mysys_CMakeLists.txt) @@ -0,0 +1,11 @@ +--- mysys/CMakeLists.txt.orig 2020-12-06 15:42:44 UTC ++++ mysys/CMakeLists.txt +@@ -115,7 +115,7 @@ ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64 + COMPILE_FLAGS "-march=armv8-a+crc+crypto") + ENDIF() + ENDIF() +-ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64") ++ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^(ppc64|powerpc64)") + SET(MYSYS_SOURCES ${MYSYS_SOURCES} crc32/crc32_ppc64.c crc32/crc32c_ppc.c) + SET_SOURCE_FILES_PROPERTIES(crc32/crc32_ppc64.c crc32/crc32c_ppc.c PROPERTIES + COMPILE_FLAGS "${COMPILE_FLAGS} -maltivec -mvsx -mpower8-vector -mcrypto -mpower8-vector") Copied: branches/2020Q4/databases/mariadb105-server/files/patch-mysys_crc32_crc32c.cc (from r557165, head/databases/mariadb105-server/files/patch-mysys_crc32_crc32c.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/databases/mariadb105-server/files/patch-mysys_crc32_crc32c.cc Sun Dec 6 19:42:52 2020 (r557166, copy of r557165, head/databases/mariadb105-server/files/patch-mysys_crc32_crc32c.cc) @@ -0,0 +1,24 @@ +--- mysys/crc32/crc32c.cc.orig 2020-12-06 15:58:40 UTC ++++ mysys/crc32/crc32c.cc +@@ -475,6 +475,21 @@ static int arch_ppc_probe(void) { + + return arch_ppc_crc32; + } ++#elif __FreeBSD__ ++#include ++#include ++#include ++static int arch_ppc_probe(void) { ++ unsigned long cpufeatures; ++ arch_ppc_crc32 = 0; ++ ++#if defined(__powerpc64__) ++ elf_aux_info(AT_HWCAP2, &cpufeatures, sizeof(cpufeatures)); ++ if (cpufeatures & PPC_FEATURE2_HAS_VEC_CRYPTO) arch_ppc_crc32 = 1; ++#endif /* __powerpc64__ */ ++ ++ return arch_ppc_crc32; ++} + #endif // __linux__ + + static bool isAltiVec() { From owner-svn-ports-branches@freebsd.org Sun Dec 6 21:36:34 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BB5184ACBBC; Sun, 6 Dec 2020 21:36:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cq0BV50yhz4tK4; Sun, 6 Dec 2020 21:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E949171BB; Sun, 6 Dec 2020 21:36:34 +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 0B6LaYee088335; Sun, 6 Dec 2020 21:36:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B6LaYot088333; Sun, 6 Dec 2020 21:36:34 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202012062136.0B6LaYot088333@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 6 Dec 2020 21:36:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557177 - branches/2020Q4/www/youtube_dl X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q4/www/youtube_dl X-SVN-Commit-Revision: 557177 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.34 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, 06 Dec 2020 21:36:34 -0000 Author: jbeich Date: Sun Dec 6 21:36:33 2020 New Revision: 557177 URL: https://svnweb.freebsd.org/changeset/ports/557177 Log: MFH: r557176 www/youtube_dl: update to 2020.12.07 Changes: https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.07 Reported by: GitHub (watch releases) Modified: branches/2020Q4/www/youtube_dl/Makefile branches/2020Q4/www/youtube_dl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/youtube_dl/Makefile ============================================================================== --- branches/2020Q4/www/youtube_dl/Makefile Sun Dec 6 21:36:01 2020 (r557176) +++ branches/2020Q4/www/youtube_dl/Makefile Sun Dec 6 21:36:33 2020 (r557177) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2020.12.05 +PORTVERSION= 2020.12.07 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} Modified: branches/2020Q4/www/youtube_dl/distinfo ============================================================================== --- branches/2020Q4/www/youtube_dl/distinfo Sun Dec 6 21:36:01 2020 (r557176) +++ branches/2020Q4/www/youtube_dl/distinfo Sun Dec 6 21:36:33 2020 (r557177) @@ -1,3 +1,3 @@ -TIMESTAMP = 1606848046 -SHA256 (youtube-dl-2020.12.05.tar.gz) = 15abf087a14c4b0c21336c27d9f8fd8798841f107225ded5a4fc7c8c6821ba18 -SIZE (youtube-dl-2020.12.05.tar.gz) = 3228845 +TIMESTAMP = 1607281396 +SHA256 (youtube-dl-2020.12.07.tar.gz) = 51672c19864d4e2e593e55a6aec32cb348cd5c915ce0121e53eb0296a6e27969 +SIZE (youtube-dl-2020.12.07.tar.gz) = 3230051 From owner-svn-ports-branches@freebsd.org Sun Dec 6 22:05:48 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 78E4E4AE99F; Sun, 6 Dec 2020 22:05:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cq0rD2xzsz3CsX; Sun, 6 Dec 2020 22:05:48 +0000 (UTC) (envelope-from swills@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5831717801; Sun, 6 Dec 2020 22:05:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B6M5msC007697; Sun, 6 Dec 2020 22:05:48 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B6M5l8w007695; Sun, 6 Dec 2020 22:05:47 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202012062205.0B6M5l8w007695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 6 Dec 2020 22:05:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557182 - in branches/2020Q4/sysutils/consul: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2020Q4/sysutils/consul: . files X-SVN-Commit-Revision: 557182 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.34 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, 06 Dec 2020 22:05:48 -0000 Author: swills Date: Sun Dec 6 22:05:47 2020 New Revision: 557182 URL: https://svnweb.freebsd.org/changeset/ports/557182 Log: MFH: r554001 r557179 sysutils/consul: update to 1.8.5 sysutils/consul: update to 1.9.0 PR: 251418 Submitted by: brd Security: 8d17229f-3054-11eb-a455-ac1f6b16e566 Approved by: ports-secteam (implicit) Added: branches/2020Q4/sysutils/consul/pkg-message - copied unchanged from r557179, head/sysutils/consul/pkg-message Deleted: branches/2020Q4/sysutils/consul/files/patch-gopsutil_aarch64 Modified: branches/2020Q4/sysutils/consul/Makefile branches/2020Q4/sysutils/consul/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/consul/Makefile ============================================================================== --- branches/2020Q4/sysutils/consul/Makefile Sun Dec 6 22:04:32 2020 (r557181) +++ branches/2020Q4/sysutils/consul/Makefile Sun Dec 6 22:05:47 2020 (r557182) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= consul -PORTVERSION= 1.8.4 +PORTVERSION= 1.9.0 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: branches/2020Q4/sysutils/consul/distinfo ============================================================================== --- branches/2020Q4/sysutils/consul/distinfo Sun Dec 6 22:04:32 2020 (r557181) +++ branches/2020Q4/sysutils/consul/distinfo Sun Dec 6 22:05:47 2020 (r557182) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600091767 -SHA256 (hashicorp-consul-v1.8.4_GH0.tar.gz) = 77d1dfa93da66ccb222049bd892e46f8ddb11516589311fbdc24bd658d64b372 -SIZE (hashicorp-consul-v1.8.4_GH0.tar.gz) = 28576916 +TIMESTAMP = 1606441416 +SHA256 (hashicorp-consul-v1.9.0_GH0.tar.gz) = 62268e6e6ff3381aca0711d29f462e7a787cb333992c1ecbe0e95f15f66f28e1 +SIZE (hashicorp-consul-v1.9.0_GH0.tar.gz) = 31222935 Copied: branches/2020Q4/sysutils/consul/pkg-message (from r557179, head/sysutils/consul/pkg-message) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/sysutils/consul/pkg-message Sun Dec 6 22:05:47 2020 (r557182, copy of r557179, head/sysutils/consul/pkg-message) @@ -0,0 +1,5 @@ +Warning! Version 1.9.0 of consul contains breaking changes. See: + +https://github.com/hashicorp/consul/blob/master/CHANGELOG.md + +for details. From owner-svn-ports-branches@freebsd.org Mon Dec 7 00:22:18 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1688D471932; Mon, 7 Dec 2020 00:22:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cq3sk087Cz3Lbf; Mon, 7 Dec 2020 00:22:18 +0000 (UTC) (envelope-from swills@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EBE801911D; Mon, 7 Dec 2020 00:22:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B70MHgg094824; Mon, 7 Dec 2020 00:22:17 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B70MHLG094822; Mon, 7 Dec 2020 00:22:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202012070022.0B70MHLG094822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 7 Dec 2020 00:22:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557190 - branches/2020Q4/sysutils/consul X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: branches/2020Q4/sysutils/consul X-SVN-Commit-Revision: 557190 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.34 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, 07 Dec 2020 00:22:18 -0000 Author: swills Date: Mon Dec 7 00:22:17 2020 New Revision: 557190 URL: https://svnweb.freebsd.org/changeset/ports/557190 Log: MFH: r557189 sysutils/consul: fix pkg-message Approved by: ports-secteam (implicit) Modified: branches/2020Q4/sysutils/consul/Makefile branches/2020Q4/sysutils/consul/pkg-message Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/consul/Makefile ============================================================================== --- branches/2020Q4/sysutils/consul/Makefile Mon Dec 7 00:21:34 2020 (r557189) +++ branches/2020Q4/sysutils/consul/Makefile Mon Dec 7 00:22:17 2020 (r557190) @@ -2,6 +2,7 @@ PORTNAME= consul PORTVERSION= 1.9.0 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: branches/2020Q4/sysutils/consul/pkg-message ============================================================================== --- branches/2020Q4/sysutils/consul/pkg-message Mon Dec 7 00:21:34 2020 (r557189) +++ branches/2020Q4/sysutils/consul/pkg-message Mon Dec 7 00:22:17 2020 (r557190) @@ -1,5 +1,12 @@ +[ +{ + message: < Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5BEF84B7296 for ; Mon, 7 Dec 2020 21:05:18 +0000 (UTC) (envelope-from 3SpfOXwsJErcmXZhXo.hXkbdjXfi.Zljpsk-mloqp-YoXkZebpcobbYpa.lod@trix.bounces.google.com) Received: from mail-vk1-xa47.google.com (mail-vk1-xa47.google.com [IPv6:2607:f8b0:4864:20::a47]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CqbRx4WmJz3rPD for ; Mon, 7 Dec 2020 21:05:17 +0000 (UTC) (envelope-from 3SpfOXwsJErcmXZhXo.hXkbdjXfi.Zljpsk-mloqp-YoXkZebpcobbYpa.lod@trix.bounces.google.com) Received: by mail-vk1-xa47.google.com with SMTP id x134so6736921vkd.17 for ; Mon, 07 Dec 2020 13:05:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:reply-to:message-id:date:subject:from:to; bh=0FnkvvqhFFJTGSEETxlRM9Ji5LfmLXYRc73kPjh64as=; b=KVdNl7zqOTbooDh0gfZffgf5jTQ9wOCN7hdIJwMnI0NXsIF+oQlKjfwhdSF+txvSSP XcOmb9biFl85yApL2p+n70TW1eYVaHBTMhUGuOQ1mpJdzkSKXxJPGdavL6ndbIEXLejB yGXa1VsUgXnWANqdRFyCl0B/KmXLn1dJ9Tmk2B2h/TgXSMLUyeKgw1dyxjjNfyKkPUJP palKVm573HWtNfkfXeMmQ1fkXg/GInIQUbLwierTBQX6kuKozxSh4lhz+wGZz1hhcFNz wwZpiSa5wQZrK9+MNnF9Tm1NiOwjEKaCEaEkkwTYHG/Ad28w3KyxB4o3a8Ldu96fETgn wpFw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:reply-to:message-id:date:subject :from:to; bh=0FnkvvqhFFJTGSEETxlRM9Ji5LfmLXYRc73kPjh64as=; b=Y7hCEneX1uqBjLm6PBcYbgD3iBJX6UXI2R0Hxu64MTURtuKPmWuVwDmqzxtt7qT8NR oDgRwlfPzON9Ekm5hCu6kl7gra0KTRfYxqURt4FthRyMDGUBim97cjTg3kBYDlms5H1D x9DWAppEZ46BPP3RZz7t/BA4kJJXQ0plZpvp7p30f/zOrmHt8G+BTR6co41L6yYeJYFM fFwp7Hz/kFKFLZNQI/+SwDdj1aOcYkBmK+2FtY89r8IJuxhWPhPi8wjmHwBjcfz98ibx 4AFoF2IUC1jl904d3sczuNNopy75n8uIfOzrayNkhaCKg04vzINl/g8qWj3vjIKZcoDU rRtw== X-Gm-Message-State: AOAM530HlVHj97gcG+/qvlRvRpZKbiI2VEne9EgZUczf+msUoyU1rzgd uP5HG+rl5nJbtK0swp+j+mLkbXCyv7RWoNch9k11 MIME-Version: 1.0 X-Received: by 2002:a67:ee42:: with SMTP id g2mt14484347vsp.24.1607374666198; Mon, 07 Dec 2020 12:57:46 -0800 (PST) Reply-To: packar.kane@gmail.com X-No-Auto-Attachment: 1 Message-ID: <0000000000000014c905b5e6143d@google.com> Date: Mon, 07 Dec 2020 21:05:17 +0000 Subject: You get my email From: packar.kane@gmail.com To: svn-ports-branches@freebsd.org X-Rspamd-Queue-Id: 4CqbRx4WmJz3rPD X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=KVdNl7zq; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of 3SpfOXwsJErcmXZhXo.hXkbdjXfi.Zljpsk-mloqp-YoXkZebpcobbYpa.lod@trix.bounces.google.com designates 2607:f8b0:4864:20::a47 as permitted sender) smtp.mailfrom=3SpfOXwsJErcmXZhXo.hXkbdjXfi.Zljpsk-mloqp-YoXkZebpcobbYpa.lod@trix.bounces.google.com X-Spamd-Result: default: False [-3.70 / 15.00]; HAS_REPLYTO(0.00)[packar.kane@gmail.com]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36:c]; FREEMAIL_FROM(0.00)[gmail.com]; TO_DN_NONE(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; NEURAL_HAM_SHORT(-1.00)[-1.000]; FORGED_SENDER(0.30)[packarkane@gmail.com,3SpfOXwsJErcmXZhXo.hXkbdjXfi.Zljpsk-mloqp-YoXkZebpcobbYpa.lod@trix.bounces.google.com]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RBL_DBL_DONT_QUERY_IPS(0.00)[2607:f8b0:4864:20::a47:from]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; TAGGED_FROM(0.00)[]; FROM_NEQ_ENVFROM(0.00)[packarkane@gmail.com,3SpfOXwsJErcmXZhXo.hXkbdjXfi.Zljpsk-mloqp-YoXkZebpcobbYpa.lod@trix.bounces.google.com]; DWL_DNSWL_NONE(0.00)[gmail.com:dkim]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; REPLYTO_EQ_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; FREEMAIL_REPLYTO(0.00)[gmail.com]; PREVIOUSLY_DELIVERED(0.00)[svn-ports-branches@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; SPAMHAUS_ZRD(0.00)[2607:f8b0:4864:20::a47:from:127.0.2.255]; FROM_NO_DN(0.00)[]; RCVD_IN_DNSWL_NONE(0.00)[2607:f8b0:4864:20::a47:from]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MAILMAN_DEST(0.00)[svn-ports-branches] Content-Type: text/plain; charset="UTF-8"; format=flowed; delsp=yes X-Content-Filtered-By: Mailman/MimeDel 2.1.34 X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 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, 07 Dec 2020 21:05:18 -0000 I've invited you to fill out the following form: Untitled form To fill it out, visit: https://docs.google.com/forms/d/e/1FAIpQLSfnEHD2_CNTJYIVH7sDpLJ-xXgrkXb-MenDNrMni0actgeXhQ/viewform?vc=0&c=0&w=1&flr=0&usp=mail_form_link Hello, I contacted you because I want to invest in your country,if you confirm your interest that you can handle the fund in a good investment. reply on this email only: reem.alhashimi@kakao.com Regards, Ms. Reem Al-hashimi Google Forms: Create and analyze surveys. From owner-svn-ports-branches@freebsd.org Wed Dec 9 01:54:16 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B5C8C4B2AA4; Wed, 9 Dec 2020 01:54:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CrKpw4Qx5z3jSc; Wed, 9 Dec 2020 01:54: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B30F1E378; Wed, 9 Dec 2020 01:54: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 0B91sGb0092470; Wed, 9 Dec 2020 01:54:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B91sG6H092469; Wed, 9 Dec 2020 01:54:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202012090154.0B91sG6H092469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 9 Dec 2020 01:54:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557329 - branches/2020Q4/www/youtube_dl X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q4/www/youtube_dl X-SVN-Commit-Revision: 557329 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.34 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, 09 Dec 2020 01:54:16 -0000 Author: jbeich Date: Wed Dec 9 01:54:15 2020 New Revision: 557329 URL: https://svnweb.freebsd.org/changeset/ports/557329 Log: MFH: r557328 www/youtube_dl: update to 2020.12.09 Changes: https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.09 Reported by: GitHub (watch releases) Modified: branches/2020Q4/www/youtube_dl/Makefile branches/2020Q4/www/youtube_dl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/youtube_dl/Makefile ============================================================================== --- branches/2020Q4/www/youtube_dl/Makefile Wed Dec 9 01:53:33 2020 (r557328) +++ branches/2020Q4/www/youtube_dl/Makefile Wed Dec 9 01:54:15 2020 (r557329) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2020.12.07 +PORTVERSION= 2020.12.09 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} Modified: branches/2020Q4/www/youtube_dl/distinfo ============================================================================== --- branches/2020Q4/www/youtube_dl/distinfo Wed Dec 9 01:53:33 2020 (r557328) +++ branches/2020Q4/www/youtube_dl/distinfo Wed Dec 9 01:54:15 2020 (r557329) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607281396 -SHA256 (youtube-dl-2020.12.07.tar.gz) = 51672c19864d4e2e593e55a6aec32cb348cd5c915ce0121e53eb0296a6e27969 -SIZE (youtube-dl-2020.12.07.tar.gz) = 3230051 +TIMESTAMP = 1607462698 +SHA256 (youtube-dl-2020.12.09.tar.gz) = 0ac76347bf455b4e80a026638f9406aa28df3d2b6e445c705ad43809808eb961 +SIZE (youtube-dl-2020.12.09.tar.gz) = 3235695 From owner-svn-ports-branches@freebsd.org Wed Dec 9 10:40:48 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 900A2477590; Wed, 9 Dec 2020 10:40:48 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CrYVS3l4Xz4jrl; Wed, 9 Dec 2020 10:40:48 +0000 (UTC) (envelope-from krion@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 733DF24E90; Wed, 9 Dec 2020 10:40:48 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B9AemBp019395; Wed, 9 Dec 2020 10:40:48 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B9AemUa019393; Wed, 9 Dec 2020 10:40:48 GMT (envelope-from krion@FreeBSD.org) Message-Id: <202012091040.0B9AemUa019393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Wed, 9 Dec 2020 10:40:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557363 - branches/2020Q4/benchmarks/fio X-SVN-Group: ports-branches X-SVN-Commit-Author: krion X-SVN-Commit-Paths: branches/2020Q4/benchmarks/fio X-SVN-Commit-Revision: 557363 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.34 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, 09 Dec 2020 10:40:48 -0000 Author: krion Date: Wed Dec 9 10:40:47 2020 New Revision: 557363 URL: https://svnweb.freebsd.org/changeset/ports/557363 Log: MFH: r557362 Update to 3.25 Modified: branches/2020Q4/benchmarks/fio/Makefile branches/2020Q4/benchmarks/fio/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/benchmarks/fio/Makefile ============================================================================== --- branches/2020Q4/benchmarks/fio/Makefile Wed Dec 9 10:40:05 2020 (r557362) +++ branches/2020Q4/benchmarks/fio/Makefile Wed Dec 9 10:40:47 2020 (r557363) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fio -PORTVERSION= 3.24 +PORTVERSION= 3.25 CATEGORIES= benchmarks MASTER_SITES= http://brick.kernel.dk/snaps/ Modified: branches/2020Q4/benchmarks/fio/distinfo ============================================================================== --- branches/2020Q4/benchmarks/fio/distinfo Wed Dec 9 10:40:05 2020 (r557362) +++ branches/2020Q4/benchmarks/fio/distinfo Wed Dec 9 10:40:47 2020 (r557363) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605345920 -SHA256 (fio-3.24.tar.bz2) = b66fe29ad0047c347e9c21090ff1b37a882fa1041bcc3a6f8501d47db15f5063 -SIZE (fio-3.24.tar.bz2) = 919633 +TIMESTAMP = 1607510307 +SHA256 (fio-3.25.tar.bz2) = 6693e14bbd5d618ec25e98503adbf77ac46404ebd0cbd155f82c15621519279b +SIZE (fio-3.25.tar.bz2) = 919389 From owner-svn-ports-branches@freebsd.org Wed Dec 9 13:45:00 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1AE6B47D5D3; Wed, 9 Dec 2020 13:45:00 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Crdb00FZlz4vpv; Wed, 9 Dec 2020 13:45:00 +0000 (UTC) (envelope-from jwb@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EF9F827480; Wed, 9 Dec 2020 13:44:59 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B9DixfL038165; Wed, 9 Dec 2020 13:44:59 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B9DixIb038164; Wed, 9 Dec 2020 13:44:59 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <202012091344.0B9DixIb038164@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Wed, 9 Dec 2020 13:44:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557373 - in branches/2020Q4/sysutils/slurm-wlm: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in branches/2020Q4/sysutils/slurm-wlm: . files X-SVN-Commit-Revision: 557373 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.34 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, 09 Dec 2020 13:45:00 -0000 Author: jwb Date: Wed Dec 9 13:44:59 2020 New Revision: 557373 URL: https://svnweb.freebsd.org/changeset/ports/557373 Log: MFH: r556796 r557295 sysutils/slurm-wlm: Patch in lua 5.4 support PR opened upstream Make sure patch files have meaningful names PR: 251471 Reported by: greg@unrelenting.technology sysutils/slurm-wlm: Back out -fno-common patches, add -fcommon flag Fixes runtime regression caused by r546150 Reported by: jrm Approved by: blanket bug fix Added: branches/2020Q4/sysutils/slurm-wlm/files/patch-configure - copied unchanged from r556796, head/sysutils/slurm-wlm/files/patch-configure Deleted: branches/2020Q4/sysutils/slurm-wlm/files/patch-c8be6ceb.c branches/2020Q4/sysutils/slurm-wlm/files/patch-src_plugins_select_cons__tres_job__test.c Modified: branches/2020Q4/sysutils/slurm-wlm/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/slurm-wlm/Makefile ============================================================================== --- branches/2020Q4/sysutils/slurm-wlm/Makefile Wed Dec 9 13:42:25 2020 (r557372) +++ branches/2020Q4/sysutils/slurm-wlm/Makefile Wed Dec 9 13:44:59 2020 (r557373) @@ -2,7 +2,7 @@ PORTNAME= slurm DISTVERSION= 20.02.1 -PORTREVISION= 2 +PORTREVISION= 4 CATEGORIES= sysutils python MASTER_SITES= https://download.schedmd.com/slurm/ PKGNAMESUFFIX= -wlm @@ -82,8 +82,8 @@ RRD_CONFIGURE_WITH= rrdtool CONFIGURE_ARGS= --without-ofed DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${DISTVERSION} -CFLAGS+= -I${WRKSRC}/slurm -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lsysinfo -lprocstat +CFLAGS+= -I${WRKSRC}/slurm -I${LOCALBASE}/include -fcommon +LDFLAGS+= -L${LOCALBASE}/lib -lsysinfo -lprocstat -fcommon # Hack around nonfunctional --disable-gtktest flag pre-configure-GUI-off: Copied: branches/2020Q4/sysutils/slurm-wlm/files/patch-configure (from r556796, head/sysutils/slurm-wlm/files/patch-configure) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/sysutils/slurm-wlm/files/patch-configure Wed Dec 9 13:44:59 2020 (r557373, copy of r556796, head/sysutils/slurm-wlm/files/patch-configure) @@ -0,0 +1,38 @@ +--- configure.orig 2020-11-30 15:56:36 UTC ++++ configure +@@ -24075,8 +24075,24 @@ fi + + + x_ac_lua_pkg_name="lua" +- #check for 5.3 then 5.2 then 5.1 +- if test -n "$PKG_CONFIG" && \ ++ #check for 5.4 then 5.3 then 5.2 then 5.1 ++if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua5.4\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "lua5.4") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ x_ac_lua_pkg_name=lua5.4 ++else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua-5.4\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "lua-5.4") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ x_ac_lua_pkg_name=lua-5.4 ++else ++ if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"lua5.3\""; } >&5 + ($PKG_CONFIG --exists --print-errors "lua5.3") 2>&5 + ac_status=$? +@@ -24125,6 +24141,8 @@ else + x_ac_lua_pkg_name=lua-5.1 + else + x_ac_lua_pkg_name="lua >= 5.1" ++fi ++fi + fi + fi + fi From owner-svn-ports-branches@freebsd.org Thu Dec 10 01:22:33 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 89310470551; Thu, 10 Dec 2020 01:22:33 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Crx3s3X5kz4jj3; Thu, 10 Dec 2020 01:22:33 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C1B210714; Thu, 10 Dec 2020 01:22:33 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BA1MXTH082700; Thu, 10 Dec 2020 01:22:33 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BA1MWMC082696; Thu, 10 Dec 2020 01:22:32 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <202012100122.0BA1MWMC082696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 10 Dec 2020 01:22:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557407 - in branches/2020Q4/www: flashplayer linux-flashplayer X-SVN-Group: ports-branches X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: in branches/2020Q4/www: flashplayer linux-flashplayer X-SVN-Commit-Revision: 557407 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.34 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, 10 Dec 2020 01:22:33 -0000 Author: jkim Date: Thu Dec 10 01:22:32 2020 New Revision: 557407 URL: https://svnweb.freebsd.org/changeset/ports/557407 Log: MFH: r557406 Update to 32.0.0.465. https://helpx.adobe.com/flash-player/release-note/fp_32_air_32_release_notes.html#main-pars_text Modified: branches/2020Q4/www/flashplayer/Makefile branches/2020Q4/www/linux-flashplayer/Makefile branches/2020Q4/www/linux-flashplayer/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/flashplayer/Makefile ============================================================================== --- branches/2020Q4/www/flashplayer/Makefile Thu Dec 10 01:20:28 2020 (r557406) +++ branches/2020Q4/www/flashplayer/Makefile Thu Dec 10 01:22:32 2020 (r557407) @@ -2,7 +2,7 @@ PORTNAME= flashplayer PORTVERSION= 32.0 -PORTREVISION= 23 +PORTREVISION= 24 CATEGORIES= www multimedia DISTFILES= Modified: branches/2020Q4/www/linux-flashplayer/Makefile ============================================================================== --- branches/2020Q4/www/linux-flashplayer/Makefile Thu Dec 10 01:20:28 2020 (r557406) +++ branches/2020Q4/www/linux-flashplayer/Makefile Thu Dec 10 01:22:32 2020 (r557407) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 32.0.0.453 +PORTVERSION= 32.0.0.465 CATEGORIES= www multimedia linux MASTER_SITES= https://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION}/ PKGNAMEPREFIX= linux- Modified: branches/2020Q4/www/linux-flashplayer/distinfo ============================================================================== --- branches/2020Q4/www/linux-flashplayer/distinfo Thu Dec 10 01:20:28 2020 (r557406) +++ branches/2020Q4/www/linux-flashplayer/distinfo Thu Dec 10 01:22:32 2020 (r557407) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605025339 -SHA256 (flashplayer/32.0.0.453/flash_player_npapi_linux.i386.tar.gz) = 4151cdbba10488978aa2baae19ec147012e17d79c59a6bb40453e35435571df8 -SIZE (flashplayer/32.0.0.453/flash_player_npapi_linux.i386.tar.gz) = 8548784 +TIMESTAMP = 1607563014 +SHA256 (flashplayer/32.0.0.465/flash_player_npapi_linux.i386.tar.gz) = 27b7210d09514d661c34752d29cbc0b6c09968b8d197d21fedc14fd3c49a0bd6 +SIZE (flashplayer/32.0.0.465/flash_player_npapi_linux.i386.tar.gz) = 8548148 From owner-svn-ports-branches@freebsd.org Thu Dec 10 14:16:13 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 072864AB4A2; Thu, 10 Dec 2020 14:16:13 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CsGDX6Rxlz4Tsx; Thu, 10 Dec 2020 14:16:12 +0000 (UTC) (envelope-from fernape@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CFD8C19E5E; Thu, 10 Dec 2020 14:16:12 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BAEGCks064053; Thu, 10 Dec 2020 14:16:12 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BAEGCpH064052; Thu, 10 Dec 2020 14:16:12 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <202012101416.0BAEGCpH064052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Thu, 10 Dec 2020 14:16:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557433 - branches/2020Q4/devel/gh X-SVN-Group: ports-branches X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: branches/2020Q4/devel/gh X-SVN-Commit-Revision: 557433 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.34 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, 10 Dec 2020 14:16:13 -0000 Author: fernape Date: Thu Dec 10 14:16:12 2020 New Revision: 557433 URL: https://svnweb.freebsd.org/changeset/ports/557433 Log: MFH: r557432 devel/gh: Update to 1.3.1 ChangeLog: https://github.com/cli/cli/releases/v1.3.1 PR: 251700 Submitted by: vulcan@wired.sh (maintainer) Approved by: implicit Modified: branches/2020Q4/devel/gh/Makefile branches/2020Q4/devel/gh/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/devel/gh/Makefile ============================================================================== --- branches/2020Q4/devel/gh/Makefile Thu Dec 10 14:13:49 2020 (r557432) +++ branches/2020Q4/devel/gh/Makefile Thu Dec 10 14:16:12 2020 (r557433) @@ -2,7 +2,7 @@ PORTNAME= gh DISTVERSIONPREFIX= v -DISTVERSION= 1.3.0 +DISTVERSION= 1.3.1 CATEGORIES= devel MAINTAINER= vulcan@wired.sh @@ -17,7 +17,7 @@ USES= go:modules USE_GITHUB= yes GH_ACCOUNT= cli GH_PROJECT= ${GH_ACCOUNT} -GH_TUPLE= AlecAivazis:survey:v2.1.1:alecaivazis_survey_v2/vendor/github.com/AlecAivazis/survey/v2 \ +GH_TUPLE= AlecAivazis:survey:v2.2.3:alecaivazis_survey_v2/vendor/github.com/AlecAivazis/survey/v2 \ MakeNowJust:heredoc:v1.0.0:makenowjust_heredoc/vendor/github.com/MakeNowJust/heredoc \ alecthomas:chroma:v0.7.3:alecthomas_chroma/vendor/github.com/alecthomas/chroma \ briandowns:spinner:v1.11.1:briandowns_spinner/vendor/github.com/briandowns/spinner \ Modified: branches/2020Q4/devel/gh/distinfo ============================================================================== --- branches/2020Q4/devel/gh/distinfo Thu Dec 10 14:13:49 2020 (r557432) +++ branches/2020Q4/devel/gh/distinfo Thu Dec 10 14:16:12 2020 (r557433) @@ -1,8 +1,8 @@ -TIMESTAMP = 1606576040 -SHA256 (cli-cli-v1.3.0_GH0.tar.gz) = ffbf27c3945833dcf57f1cb16c6e8cb3de52a3a6c74c7e9539512e9a7e12b168 -SIZE (cli-cli-v1.3.0_GH0.tar.gz) = 368747 -SHA256 (AlecAivazis-survey-v2.1.1_GH0.tar.gz) = e60d2836f8e34c9fbc7addf0c304b662ce26ab5b67f7dc7bca5fbb9ca0e80055 -SIZE (AlecAivazis-survey-v2.1.1_GH0.tar.gz) = 1564121 +TIMESTAMP = 1607518844 +SHA256 (cli-cli-v1.3.1_GH0.tar.gz) = 5e5dca830aa5012fa1851513c10c0a5de4d3f38c16a172928b1d8e9dd9c75957 +SIZE (cli-cli-v1.3.1_GH0.tar.gz) = 370524 +SHA256 (AlecAivazis-survey-v2.2.3_GH0.tar.gz) = 33c18030b24f7b5dd067ae3aaea76cb3af1f63556226965c89b3821da04edf2d +SIZE (AlecAivazis-survey-v2.2.3_GH0.tar.gz) = 1566443 SHA256 (MakeNowJust-heredoc-v1.0.0_GH0.tar.gz) = 3703d1c9e659c274c5e2d712e4d66f60620e03513fc380b1d3acafb3ca037400 SIZE (MakeNowJust-heredoc-v1.0.0_GH0.tar.gz) = 3497 SHA256 (alecthomas-chroma-v0.7.3_GH0.tar.gz) = 1007e82cc44cea04542c282b19bab25a59cb1e53149aaa7f0e2d9ce72ba80114 From owner-svn-ports-branches@freebsd.org Thu Dec 10 20:22:24 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 20FE04B5907; Thu, 10 Dec 2020 20:22:24 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CsQM40T4kz3CMV; Thu, 10 Dec 2020 20:22:24 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 032ED1ED3D; Thu, 10 Dec 2020 20:22:24 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BAKMNK0098664; Thu, 10 Dec 2020 20:22:23 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BAKMN1V098662; Thu, 10 Dec 2020 20:22:23 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <202012102022.0BAKMN1V098662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Thu, 10 Dec 2020 20:22:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557457 - branches/2020Q4/security/openssl X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: branches/2020Q4/security/openssl X-SVN-Commit-Revision: 557457 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.34 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, 10 Dec 2020 20:22:24 -0000 Author: brnrd Date: Thu Dec 10 20:22:23 2020 New Revision: 557457 URL: https://svnweb.freebsd.org/changeset/ports/557457 Log: MFH: r557297 security/vuxml: Security update to 1.1.1i Security: 1d56cfc5-3970-11eb-929d-d4c9ef517024 Approved by: ports-secteam (implicit) Modified: branches/2020Q4/security/openssl/Makefile branches/2020Q4/security/openssl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/security/openssl/Makefile ============================================================================== --- branches/2020Q4/security/openssl/Makefile Thu Dec 10 19:50:56 2020 (r557456) +++ branches/2020Q4/security/openssl/Makefile Thu Dec 10 20:22:23 2020 (r557457) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openssl -PORTVERSION= 1.1.1h +PORTVERSION= 1.1.1i PORTEPOCH= 1 CATEGORIES= security devel MASTER_SITES= https://www.openssl.org/source/ \ Modified: branches/2020Q4/security/openssl/distinfo ============================================================================== --- branches/2020Q4/security/openssl/distinfo Thu Dec 10 19:50:56 2020 (r557456) +++ branches/2020Q4/security/openssl/distinfo Thu Dec 10 20:22:23 2020 (r557457) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600888212 -SHA256 (openssl-1.1.1h.tar.gz) = 5c9ca8774bd7b03e5784f26ae9e9e6d749c9da2438545077e6b3d755a06595d9 -SIZE (openssl-1.1.1h.tar.gz) = 9810045 +TIMESTAMP = 1607442426 +SHA256 (openssl-1.1.1i.tar.gz) = e8be6a35fe41d10603c3cc635e93289ed00bf34b79671a3a4de64fcee00d5242 +SIZE (openssl-1.1.1i.tar.gz) = 9808346 From owner-svn-ports-branches@freebsd.org Fri Dec 11 08:55:19 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D67A74A904B; Fri, 11 Dec 2020 08:55:19 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Csl3q5jXJz3HfP; Fri, 11 Dec 2020 08:55:19 +0000 (UTC) (envelope-from fluffy@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B6FFA15B; Fri, 11 Dec 2020 08:55:19 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BB8tJt2096943; Fri, 11 Dec 2020 08:55:19 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BB8tJkm096942; Fri, 11 Dec 2020 08:55:19 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <202012110855.0BB8tJkm096942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Fri, 11 Dec 2020 08:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557707 - branches/2020Q4/editors/libreoffice X-SVN-Group: ports-branches X-SVN-Commit-Author: fluffy X-SVN-Commit-Paths: branches/2020Q4/editors/libreoffice X-SVN-Commit-Revision: 557707 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.34 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, 11 Dec 2020 08:55:19 -0000 Author: fluffy Date: Fri Dec 11 08:55:19 2020 New Revision: 557707 URL: https://svnweb.freebsd.org/changeset/ports/557707 Log: MFH: r557706 editors/lireoffice: unbreak build with TEST=on Modified: branches/2020Q4/editors/libreoffice/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/editors/libreoffice/Makefile ============================================================================== --- branches/2020Q4/editors/libreoffice/Makefile Fri Dec 11 08:53:48 2020 (r557706) +++ branches/2020Q4/editors/libreoffice/Makefile Fri Dec 11 08:55:19 2020 (r557707) @@ -220,6 +220,7 @@ SDK_CONFIGURE_OFF= --without-doxygen SDK_CONFIGURE_ON= --with-doxygen=${LOCALBASE}/bin/doxygen SDK_DISTFILES= 185d60944ea767075d27247c3162b3bc-unowinreg.dll:ext +TEST_ALL_TARGET= build TEST_ALL_TARGET_OFF= build-nocheck TEST_CONFIGURE_ENABLE= cve-tests From owner-svn-ports-branches@freebsd.org Fri Dec 11 09:18:41 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 532014A9760; Fri, 11 Dec 2020 09:18:41 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CslZn1r7Cz3Jcn; Fri, 11 Dec 2020 09:18:41 +0000 (UTC) (envelope-from mikael@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 267797A9; Fri, 11 Dec 2020 09:18:41 +0000 (UTC) (envelope-from mikael@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BB9IfxK009661; Fri, 11 Dec 2020 09:18:41 GMT (envelope-from mikael@FreeBSD.org) Received: (from mikael@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BB9IeHX009659; Fri, 11 Dec 2020 09:18:40 GMT (envelope-from mikael@FreeBSD.org) Message-Id: <202012110918.0BB9IeHX009659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mikael set sender to mikael@FreeBSD.org using -f From: Mikael Urankar Date: Fri, 11 Dec 2020 09:18:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557708 - branches/2020Q4/www/glpi X-SVN-Group: ports-branches X-SVN-Commit-Author: mikael X-SVN-Commit-Paths: branches/2020Q4/www/glpi X-SVN-Commit-Revision: 557708 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.34 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, 11 Dec 2020 09:18:41 -0000 Author: mikael Date: Fri Dec 11 09:18:40 2020 New Revision: 557708 URL: https://svnweb.freebsd.org/changeset/ports/557708 Log: MFH: r557702 www/glpi: Update to 9.5.3 ChangeLogs - 9.5.3: https://github.com/glpi-project/glpi/milestone/44?closed=1 - 9.5.2: https://github.com/glpi-project/glpi/milestone/43?closed=1 - 9.5.1: https://github.com/glpi-project/glpi/milestone/42?closed=1 - 9.5.0: https://github.com/glpi-project/glpi/milestone/42?closed=1 - 9.4.6: https://github.com/glpi-project/glpi/milestone/39?closed=1 - 9.4.5: https://github.com/glpi-project/glpi/milestone/38?closed=1 PR: 251680, 251744 Submitted by: Mathias Monnerville (maintainer) Modified: branches/2020Q4/www/glpi/Makefile branches/2020Q4/www/glpi/distinfo branches/2020Q4/www/glpi/pkg-plist Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/glpi/Makefile ============================================================================== --- branches/2020Q4/www/glpi/Makefile Fri Dec 11 08:55:19 2020 (r557707) +++ branches/2020Q4/www/glpi/Makefile Fri Dec 11 09:18:40 2020 (r557708) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= glpi -PORTVERSION= 9.4.5 +PORTVERSION= 9.5.3 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= https://github.com/glpi-project/glpi/releases/download/${PORTVERSION}/ @@ -12,12 +12,10 @@ COMMENT= Free IT and asset management software LICENSE= GPLv2 -IGNORE_WITH_PHP= 74 - USES= cpe gettext php tar:tgz CPE_VENDOR= glpi-project -USE_PHP= ctype curl dom fileinfo filter gd json mbstring mysqli \ - pcre session simplexml wddx xml xmlrpc zlib +USE_PHP= bz2 ctype curl exif fileinfo gd iconv intl json mbstring \ + mysqli opcache openssl session simplexml sodium xml xmlrpc zip zlib WRKSRC= ${WRKDIR}/${PORTNAME} NO_ARCH= yes Modified: branches/2020Q4/www/glpi/distinfo ============================================================================== --- branches/2020Q4/www/glpi/distinfo Fri Dec 11 08:55:19 2020 (r557707) +++ branches/2020Q4/www/glpi/distinfo Fri Dec 11 09:18:40 2020 (r557708) @@ -1,3 +1,3 @@ -TIMESTAMP = 1584874060 -SHA256 (glpi-9.4.5.tgz) = aee7079e8c27a4c062939332f6a176e9a8f20b6a89f1dd19ad6cd816a2f5c45a -SIZE (glpi-9.4.5.tgz) = 35073134 +TIMESTAMP = 1607464472 +SHA256 (glpi-9.5.3.tgz) = fe82e09fb8432557b5b9cba5b90ebaae2cc07842045ef154eebcb0383892d8f6 +SIZE (glpi-9.5.3.tgz) = 43754801 Modified: branches/2020Q4/www/glpi/pkg-plist ============================================================================== --- branches/2020Q4/www/glpi/pkg-plist Fri Dec 11 08:55:19 2020 (r557707) +++ branches/2020Q4/www/glpi/pkg-plist Fri Dec 11 09:18:40 2020 (r557708) @@ -4,6 +4,7 @@ %%WWWDIR%%/CHANGELOG.md %%WWWDIR%%/CONTRIBUTING.md %%WWWDIR%%/COPYING.txt +%%WWWDIR%%/INSTALL.md %%WWWDIR%%/README.md %%WWWDIR%%/SECURITY.md %%WWWDIR%%/SUPPORT.md @@ -11,6 +12,7 @@ %%WWWDIR%%/ajax/comments.php %%WWWDIR%%/ajax/common.tabs.php %%WWWDIR%%/ajax/compareKbRevisions.php +%%WWWDIR%%/ajax/dashboard.php %%WWWDIR%%/ajax/dcroom_size.php %%WWWDIR%%/ajax/displayMessageAfterRedirect.php %%WWWDIR%%/ajax/dropdownAllItems.php @@ -40,6 +42,7 @@ %%WWWDIR%%/ajax/dropdownUnicityFields.php %%WWWDIR%%/ajax/dropdownValidator.php %%WWWDIR%%/ajax/dropdownValuesBlacklist.php +%%WWWDIR%%/ajax/entityCustomCssCode.php %%WWWDIR%%/ajax/entitytree.php %%WWWDIR%%/ajax/entitytreesearch.php %%WWWDIR%%/ajax/entitytreesons.php @@ -57,16 +60,21 @@ %%WWWDIR%%/ajax/getKbRevision.php %%WWWDIR%%/ajax/getKnowbaseItemAnswer.php %%WWWDIR%%/ajax/getMapPoint.php +%%WWWDIR%%/ajax/getUserPicture.php %%WWWDIR%%/ajax/helpdesk_observer.php +%%WWWDIR%%/ajax/impact.php %%WWWDIR%%/ajax/index.php %%WWWDIR%%/ajax/inputtext.php %%WWWDIR%%/ajax/itemTicket.php %%WWWDIR%%/ajax/item_rack.php +%%WWWDIR%%/ajax/itilfollowup.php +%%WWWDIR%%/ajax/kanban.php %%WWWDIR%%/ajax/kblink.php %%WWWDIR%%/ajax/knowbase.php %%WWWDIR%%/ajax/ldapdaterestriction.php %%WWWDIR%%/ajax/mailcollector.php %%WWWDIR%%/ajax/map.php +%%WWWDIR%%/ajax/marketplace.php %%WWWDIR%%/ajax/massiveaction.php %%WWWDIR%%/ajax/notifications_ajax.php %%WWWDIR%%/ajax/planning.php @@ -108,20 +116,31 @@ %%WWWDIR%%/apirest.php %%WWWDIR%%/apixmlrpc.php %%WWWDIR%%/bin/console +%%WWWDIR%%/caldav.php %%WWWDIR%%/config/.htaccess %%WWWDIR%%/css/_highcontrast.scss +%%WWWDIR%%/css/chartist/_generate.scss +%%WWWDIR%%/css/chartist/palette_cb_seq_blue_9.scss +%%WWWDIR%%/css/chartist/palette_cb_seq_red_9.scss +%%WWWDIR%%/css/chartist/palette_d3_cat_10.scss +%%WWWDIR%%/css/chartist/palette_d3_cat_20.scss +%%WWWDIR%%/css/chartist/palette_d3_tab_10.scss %%WWWDIR%%/css/chartists-glpi.css %%WWWDIR%%/css/chartists-glpi.min.css +%%WWWDIR%%/css/dashboard.scss +%%WWWDIR%%/css/impact.scss %%WWWDIR%%/css/jquery-glpi.css %%WWWDIR%%/css/jquery-glpi.min.css %%WWWDIR%%/css/jstree-glpi.css %%WWWDIR%%/css/jstree-glpi.min.css +%%WWWDIR%%/css/marketplace.scss %%WWWDIR%%/css/palettes/_aerialgreen.scss %%WWWDIR%%/css/palettes/_auror.scss %%WWWDIR%%/css/palettes/_automn.scss %%WWWDIR%%/css/palettes/_classic.scss %%WWWDIR%%/css/palettes/_clockworkorange.scss %%WWWDIR%%/css/palettes/_dark.scss +%%WWWDIR%%/css/palettes/_darker.scss %%WWWDIR%%/css/palettes/_flood.scss %%WWWDIR%%/css/palettes/_greenflat.scss %%WWWDIR%%/css/palettes/_hipster.scss @@ -137,6 +156,7 @@ %%WWWDIR%%/css/palettes/previews/classic.png %%WWWDIR%%/css/palettes/previews/clockworkorange.png %%WWWDIR%%/css/palettes/previews/dark.png +%%WWWDIR%%/css/palettes/previews/darker.png %%WWWDIR%%/css/palettes/previews/flood.png %%WWWDIR%%/css/palettes/previews/greenflat.png %%WWWDIR%%/css/palettes/previews/hipster.png @@ -153,6 +173,8 @@ %%WWWDIR%%/css/styles.scss %%WWWDIR%%/css/tab-scroller-menu.css %%WWWDIR%%/css/tab-scroller-menu.min.css +%%WWWDIR%%/css/tiny_mce/dark_content.css +%%WWWDIR%%/css/tiny_mce/dark_content.min.css %%WWWDIR%%/css/tiny_mce/skins/light/content.inline.min.css %%WWWDIR%%/css/tiny_mce/skins/light/content.min.css %%WWWDIR%%/css/tiny_mce/skins/light/fonts/tinymce-small.eot @@ -168,12 +190,42 @@ %%WWWDIR%%/css/tiny_mce/skins/light/img/object.gif %%WWWDIR%%/css/tiny_mce/skins/light/img/trans.gif %%WWWDIR%%/css/tiny_mce/skins/light/skin.min.css +%%WWWDIR%%/css/tiny_mce_custom.css +%%WWWDIR%%/css/tiny_mce_custom.min.css %%WWWDIR%%/css/win_png.htc +%%WWWDIR%%/css_compiled/css_chartist_generate.min.css +%%WWWDIR%%/css_compiled/css_chartist_palette_cb_seq_blue_9.min.css +%%WWWDIR%%/css_compiled/css_chartist_palette_cb_seq_red_9.min.css +%%WWWDIR%%/css_compiled/css_chartist_palette_d3_cat_10.min.css +%%WWWDIR%%/css_compiled/css_chartist_palette_d3_cat_20.min.css +%%WWWDIR%%/css_compiled/css_chartist_palette_d3_tab_10.min.css +%%WWWDIR%%/css_compiled/css_dashboard.min.css +%%WWWDIR%%/css_compiled/css_highcontrast.min.css +%%WWWDIR%%/css_compiled/css_impact.min.css +%%WWWDIR%%/css_compiled/css_marketplace.min.css +%%WWWDIR%%/css_compiled/css_palettes_aerialgreen.min.css +%%WWWDIR%%/css_compiled/css_palettes_auror.min.css +%%WWWDIR%%/css_compiled/css_palettes_automn.min.css +%%WWWDIR%%/css_compiled/css_palettes_classic.min.css +%%WWWDIR%%/css_compiled/css_palettes_clockworkorange.min.css +%%WWWDIR%%/css_compiled/css_palettes_dark.min.css +%%WWWDIR%%/css_compiled/css_palettes_darker.min.css +%%WWWDIR%%/css_compiled/css_palettes_flood.min.css +%%WWWDIR%%/css_compiled/css_palettes_greenflat.min.css +%%WWWDIR%%/css_compiled/css_palettes_hipster.min.css +%%WWWDIR%%/css_compiled/css_palettes_icecream.min.css +%%WWWDIR%%/css_compiled/css_palettes_lightblue.min.css +%%WWWDIR%%/css_compiled/css_palettes_premiumred.min.css +%%WWWDIR%%/css_compiled/css_palettes_purplehaze.min.css +%%WWWDIR%%/css_compiled/css_palettes_teclib.min.css +%%WWWDIR%%/css_compiled/css_palettes_vintage.min.css +%%WWWDIR%%/css_compiled/css_styles.min.css %%WWWDIR%%/files/.htaccess %%WWWDIR%%/files/_cache/remove.txt %%WWWDIR%%/files/_cron/remove.txt %%WWWDIR%%/files/_dumps/remove.txt %%WWWDIR%%/files/_graphs/remove.txt +%%WWWDIR%%/files/_locales/remove.txt %%WWWDIR%%/files/_lock/remove.txt %%WWWDIR%%/files/_log/remove.txt %%WWWDIR%%/files/_pictures/remove.txt @@ -184,6 +236,14 @@ %%WWWDIR%%/files/_uploads/remove.txt %%WWWDIR%%/front/allassets.php %%WWWDIR%%/front/apiclient.form.php +%%WWWDIR%%/front/appliance.form.php +%%WWWDIR%%/front/appliance.php +%%WWWDIR%%/front/appliance_item.form.php +%%WWWDIR%%/front/appliance_item_relation.form.php +%%WWWDIR%%/front/applianceenvironment.form.php +%%WWWDIR%%/front/applianceenvironment.php +%%WWWDIR%%/front/appliancetype.form.php +%%WWWDIR%%/front/appliancetype.php %%WWWDIR%%/front/auth.others.php %%WWWDIR%%/front/auth.settings.php %%WWWDIR%%/front/authldap.form.php @@ -192,7 +252,6 @@ %%WWWDIR%%/front/authmail.php %%WWWDIR%%/front/autoupdatesystem.form.php %%WWWDIR%%/front/autoupdatesystem.php -%%WWWDIR%%/front/backup.php %%WWWDIR%%/front/blacklist.form.php %%WWWDIR%%/front/blacklist.php %%WWWDIR%%/front/blacklistedmailcontent.form.php @@ -229,15 +288,22 @@ %%WWWDIR%%/front/change_user.form.php %%WWWDIR%%/front/changecost.form.php %%WWWDIR%%/front/changetask.form.php +%%WWWDIR%%/front/changetemplate.form.php +%%WWWDIR%%/front/changetemplate.php +%%WWWDIR%%/front/changetemplatehiddenfield.form.php +%%WWWDIR%%/front/changetemplatemandatoryfield.form.php +%%WWWDIR%%/front/changetemplatepredefinedfield.form.php %%WWWDIR%%/front/changevalidation.form.php +%%WWWDIR%%/front/cluster.form.php +%%WWWDIR%%/front/cluster.php +%%WWWDIR%%/front/clustertype.form.php +%%WWWDIR%%/front/clustertype.php %%WWWDIR%%/front/commonitilcost.form.php %%WWWDIR%%/front/commonitiltask.form.php %%WWWDIR%%/front/commonitilvalidation.form.php %%WWWDIR%%/front/computer.form.php %%WWWDIR%%/front/computer.php %%WWWDIR%%/front/computer_item.form.php -%%WWWDIR%%/front/computer_softwarelicense.form.php -%%WWWDIR%%/front/computer_softwareversion.form.php %%WWWDIR%%/front/computerantivirus.form.php %%WWWDIR%%/front/computermodel.form.php %%WWWDIR%%/front/computermodel.php @@ -266,6 +332,8 @@ %%WWWDIR%%/front/crontask.form.php %%WWWDIR%%/front/crontask.php %%WWWDIR%%/front/css.php +%%WWWDIR%%/front/dashboard_assets.php +%%WWWDIR%%/front/dashboard_helpdesk.php %%WWWDIR%%/front/datacenter.form.php %%WWWDIR%%/front/datacenter.php %%WWWDIR%%/front/dcroom.form.php @@ -291,6 +359,14 @@ %%WWWDIR%%/front/documenttype.php %%WWWDIR%%/front/domain.form.php %%WWWDIR%%/front/domain.php +%%WWWDIR%%/front/domainrecord.form.php +%%WWWDIR%%/front/domainrecord.php +%%WWWDIR%%/front/domainrecordtype.form.php +%%WWWDIR%%/front/domainrecordtype.php +%%WWWDIR%%/front/domainrelation.form.php +%%WWWDIR%%/front/domainrelation.php +%%WWWDIR%%/front/domaintype.form.php +%%WWWDIR%%/front/domaintype.php %%WWWDIR%%/front/dropdown.common.form.php %%WWWDIR%%/front/dropdown.common.php %%WWWDIR%%/front/dropdown.php @@ -323,6 +399,8 @@ %%WWWDIR%%/front/helpdesk.public.php %%WWWDIR%%/front/holiday.form.php %%WWWDIR%%/front/holiday.php +%%WWWDIR%%/front/impactcsv.php +%%WWWDIR%%/front/impactitem.form.php %%WWWDIR%%/front/index.php %%WWWDIR%%/front/infocom.form.php %%WWWDIR%%/front/interfacetype.form.php @@ -330,6 +408,7 @@ %%WWWDIR%%/front/ipnetwork.form.php %%WWWDIR%%/front/ipnetwork.php %%WWWDIR%%/front/ipnetwork_vlan.form.php +%%WWWDIR%%/front/item_cluster.form.php %%WWWDIR%%/front/item_device.common.form.php %%WWWDIR%%/front/item_device.php %%WWWDIR%%/front/item_devicebattery.form.php @@ -356,12 +435,17 @@ %%WWWDIR%%/front/item_problem.form.php %%WWWDIR%%/front/item_project.form.php %%WWWDIR%%/front/item_rack.form.php +%%WWWDIR%%/front/item_softwarelicense.form.php +%%WWWDIR%%/front/item_softwareversion.form.php %%WWWDIR%%/front/item_ticket.form.php %%WWWDIR%%/front/itil_project.form.php %%WWWDIR%%/front/itilcategory.form.php %%WWWDIR%%/front/itilcategory.php %%WWWDIR%%/front/itilfollowup.form.php +%%WWWDIR%%/front/itilfollowuptemplate.form.php +%%WWWDIR%%/front/itilfollowuptemplate.php %%WWWDIR%%/front/itilsolution.form.php +%%WWWDIR%%/front/itiltemplatefield.form.php %%WWWDIR%%/front/knowbaseitem.form.php %%WWWDIR%%/front/knowbaseitem.php %%WWWDIR%%/front/knowbaseitem_comment.form.php @@ -383,6 +467,7 @@ %%WWWDIR%%/front/link.php %%WWWDIR%%/front/link.send.php %%WWWDIR%%/front/link_itemtype.form.php +%%WWWDIR%%/front/locale.php %%WWWDIR%%/front/location.form.php %%WWWDIR%%/front/location.php %%WWWDIR%%/front/lock.form.php @@ -393,6 +478,8 @@ %%WWWDIR%%/front/mailcollector.php %%WWWDIR%%/front/manufacturer.form.php %%WWWDIR%%/front/manufacturer.php +%%WWWDIR%%/front/marketplace.download.php +%%WWWDIR%%/front/marketplace.php %%WWWDIR%%/front/massiveaction.php %%WWWDIR%%/front/migrationcleaner.php %%WWWDIR%%/front/monitor.form.php @@ -452,6 +539,12 @@ %%WWWDIR%%/front/operatingsystemservicepack.php %%WWWDIR%%/front/operatingsystemversion.form.php %%WWWDIR%%/front/operatingsystemversion.php +%%WWWDIR%%/front/passivedcequipment.form.php +%%WWWDIR%%/front/passivedcequipment.php +%%WWWDIR%%/front/passivedcequipmentmodel.form.php +%%WWWDIR%%/front/passivedcequipmentmodel.php +%%WWWDIR%%/front/passivedcequipmenttype.form.php +%%WWWDIR%%/front/passivedcequipmenttype.php %%WWWDIR%%/front/pdu.form.php %%WWWDIR%%/front/pdu.php %%WWWDIR%%/front/pdu_plug.form.php @@ -476,6 +569,13 @@ %%WWWDIR%%/front/phonetype.php %%WWWDIR%%/front/planning.form.php %%WWWDIR%%/front/planning.php +%%WWWDIR%%/front/planningcsv.php +%%WWWDIR%%/front/planningeventcategory.form.php +%%WWWDIR%%/front/planningeventcategory.php +%%WWWDIR%%/front/planningexternalevent.form.php +%%WWWDIR%%/front/planningexternalevent.php +%%WWWDIR%%/front/planningexternaleventtemplate.form.php +%%WWWDIR%%/front/planningexternaleventtemplate.php %%WWWDIR%%/front/planningrecall.form.php %%WWWDIR%%/front/plug.form.php %%WWWDIR%%/front/plug.php @@ -496,6 +596,11 @@ %%WWWDIR%%/front/problem_user.form.php %%WWWDIR%%/front/problemcost.form.php %%WWWDIR%%/front/problemtask.form.php +%%WWWDIR%%/front/problemtemplate.form.php +%%WWWDIR%%/front/problemtemplate.php +%%WWWDIR%%/front/problemtemplatehiddenfield.form.php +%%WWWDIR%%/front/problemtemplatemandatoryfield.form.php +%%WWWDIR%%/front/problemtemplatepredefinedfield.form.php %%WWWDIR%%/front/profile.form.php %%WWWDIR%%/front/profile.php %%WWWDIR%%/front/profile_user.form.php @@ -525,6 +630,7 @@ %%WWWDIR%%/front/racktype.php %%WWWDIR%%/front/reminder.form.php %%WWWDIR%%/front/reminder.php +%%WWWDIR%%/front/remindertranslation.form.php %%WWWDIR%%/front/report.contract.list.php %%WWWDIR%%/front/report.contract.php %%WWWDIR%%/front/report.default.php @@ -677,6 +783,7 @@ %%WWWDIR%%/front/transfer.action.php %%WWWDIR%%/front/transfer.form.php %%WWWDIR%%/front/transfer.php +%%WWWDIR%%/front/updatepassword.php %%WWWDIR%%/front/user.form.php %%WWWDIR%%/front/user.php %%WWWDIR%%/front/usercategory.form.php @@ -696,17 +803,27 @@ %%WWWDIR%%/inc/abstractquery.class.php %%WWWDIR%%/inc/ajax.class.php %%WWWDIR%%/inc/alert.class.php -%%WWWDIR%%/inc/api.class.php +%%WWWDIR%%/inc/api/api.class.php +%%WWWDIR%%/inc/api/apirest.class.php +%%WWWDIR%%/inc/api/apixmlrpc.class.php +%%WWWDIR%%/inc/api/deprecated/commondeprecatedtrait.class.php +%%WWWDIR%%/inc/api/deprecated/computer_softwarelicense.class.php +%%WWWDIR%%/inc/api/deprecated/computer_softwareversion.class.php +%%WWWDIR%%/inc/api/deprecated/deprecatedinterface.class.php +%%WWWDIR%%/inc/api/deprecated/ticketfollowup.class.php %%WWWDIR%%/inc/apiclient.class.php -%%WWWDIR%%/inc/apirest.class.php -%%WWWDIR%%/inc/apixmlrpc.class.php +%%WWWDIR%%/inc/appliance.class.php +%%WWWDIR%%/inc/appliance_item.class.php +%%WWWDIR%%/inc/appliance_item_relation.class.php +%%WWWDIR%%/inc/applianceenvironment.class.php +%%WWWDIR%%/inc/appliancetype.class.php +%%WWWDIR%%/inc/application/errorhandler.class.php %%WWWDIR%%/inc/auth.class.php %%WWWDIR%%/inc/authldap.class.php %%WWWDIR%%/inc/authldapreplicate.class.php %%WWWDIR%%/inc/authmail.class.php %%WWWDIR%%/inc/autoload.function.php %%WWWDIR%%/inc/autoupdatesystem.class.php -%%WWWDIR%%/inc/backup.class.php %%WWWDIR%%/inc/based_config.php %%WWWDIR%%/inc/blacklist.class.php %%WWWDIR%%/inc/blacklistedmailcontent.class.php @@ -714,6 +831,19 @@ %%WWWDIR%%/inc/budgettype.class.php %%WWWDIR%%/inc/businesscriticity.class.php %%WWWDIR%%/inc/cache/simplecache.class.php +%%WWWDIR%%/inc/caldav/backend/auth.class.php +%%WWWDIR%%/inc/caldav/backend/calendar.class.php +%%WWWDIR%%/inc/caldav/backend/principal.class.php +%%WWWDIR%%/inc/caldav/contracts/caldavcompatibleiteminterface.class.php +%%WWWDIR%%/inc/caldav/node/calendarroot.class.php +%%WWWDIR%%/inc/caldav/node/property.class.php +%%WWWDIR%%/inc/caldav/plugin/acl.class.php +%%WWWDIR%%/inc/caldav/plugin/browser.class.php +%%WWWDIR%%/inc/caldav/plugin/caldav.class.php +%%WWWDIR%%/inc/caldav/server.class.php +%%WWWDIR%%/inc/caldav/traits/caldavprincipalstrait.class.php +%%WWWDIR%%/inc/caldav/traits/caldavuriutiltrait.class.php +%%WWWDIR%%/inc/caldav/traits/vobjectconvertertrait.class.php %%WWWDIR%%/inc/calendar.class.php %%WWWDIR%%/inc/calendar_holiday.class.php %%WWWDIR%%/inc/calendarsegment.class.php @@ -734,8 +864,13 @@ %%WWWDIR%%/inc/change_user.class.php %%WWWDIR%%/inc/changecost.class.php %%WWWDIR%%/inc/changetask.class.php +%%WWWDIR%%/inc/changetemplate.class.php +%%WWWDIR%%/inc/changetemplatehiddenfield.class.php +%%WWWDIR%%/inc/changetemplatemandatoryfield.class.php +%%WWWDIR%%/inc/changetemplatepredefinedfield.class.php %%WWWDIR%%/inc/changevalidation.class.php -%%WWWDIR%%/inc/climigration.class.php +%%WWWDIR%%/inc/cluster.class.php +%%WWWDIR%%/inc/clustertype.class.php %%WWWDIR%%/inc/commondbchild.class.php %%WWWDIR%%/inc/commondbconnexity.class.php %%WWWDIR%%/inc/commondbrelation.class.php @@ -751,6 +886,7 @@ %%WWWDIR%%/inc/commonitilactor.class.php %%WWWDIR%%/inc/commonitilcost.class.php %%WWWDIR%%/inc/commonitilobject.class.php +%%WWWDIR%%/inc/commonitilobject_item.class.php %%WWWDIR%%/inc/commonitiltask.class.php %%WWWDIR%%/inc/commonitilvalidation.class.php %%WWWDIR%%/inc/commontreedropdown.class.php @@ -767,13 +903,33 @@ %%WWWDIR%%/inc/console/abstractcommand.class.php %%WWWDIR%%/inc/console/application.class.php %%WWWDIR%%/inc/console/command/forcenopluginsoptioncommandinterface.class.php +%%WWWDIR%%/inc/console/command/glpicommandinterface.class.php %%WWWDIR%%/inc/console/commandloader.class.php +%%WWWDIR%%/inc/console/config/setcommand.class.php +%%WWWDIR%%/inc/console/database/abstractconfigurecommand.class.php %%WWWDIR%%/inc/console/database/checkcommand.class.php +%%WWWDIR%%/inc/console/database/configurecommand.class.php %%WWWDIR%%/inc/console/database/installcommand.class.php %%WWWDIR%%/inc/console/database/updatecommand.class.php %%WWWDIR%%/inc/console/ldap/synchronizeuserscommand.class.php +%%WWWDIR%%/inc/console/maintenance/disablemaintenancemodecommand.class.php +%%WWWDIR%%/inc/console/maintenance/enablemaintenancemodecommand.class.php +%%WWWDIR%%/inc/console/migration/appliancesplugintocorecommand.class.php %%WWWDIR%%/inc/console/migration/buildmissingtimestampscommand.class.php +%%WWWDIR%%/inc/console/migration/domainsplugintocorecommand.class.php %%WWWDIR%%/inc/console/migration/myisamtoinnodbcommand.class.php +%%WWWDIR%%/inc/console/migration/racksplugintocorecommand.class.php +%%WWWDIR%%/inc/console/migration/timestampscommand.class.php +%%WWWDIR%%/inc/console/plugin/abstractplugincommand.class.php +%%WWWDIR%%/inc/console/plugin/activatecommand.class.php +%%WWWDIR%%/inc/console/plugin/deactivatecommand.class.php +%%WWWDIR%%/inc/console/plugin/installcommand.class.php +%%WWWDIR%%/inc/console/rules/processsoftwarecategoryrulescommand.class.php +%%WWWDIR%%/inc/console/rules/replaydictionnaryrulescommand.class.php +%%WWWDIR%%/inc/console/security/changekeycommand.class.php +%%WWWDIR%%/inc/console/system/checkrequirementscommand.class.php +%%WWWDIR%%/inc/console/system/checkstatuscommand.class.php +%%WWWDIR%%/inc/console/system/clearcachecommand.class.php %%WWWDIR%%/inc/console/task/unlockcommand.class.php %%WWWDIR%%/inc/consumable.class.php %%WWWDIR%%/inc/consumableitem.class.php @@ -788,13 +944,19 @@ %%WWWDIR%%/inc/contracttype.class.php %%WWWDIR%%/inc/crontask.class.php %%WWWDIR%%/inc/crontasklog.class.php +%%WWWDIR%%/inc/dashboard/dashboard.class.php +%%WWWDIR%%/inc/dashboard/filter.class.php +%%WWWDIR%%/inc/dashboard/grid.class.php +%%WWWDIR%%/inc/dashboard/item.class.php +%%WWWDIR%%/inc/dashboard/provider.class.php +%%WWWDIR%%/inc/dashboard/right.class.php +%%WWWDIR%%/inc/dashboard/widget.class.php %%WWWDIR%%/inc/datacenter.class.php %%WWWDIR%%/inc/db.function.php %%WWWDIR%%/inc/dbconnection.class.php %%WWWDIR%%/inc/dbmysql.class.php %%WWWDIR%%/inc/dbmysqliterator.class.php %%WWWDIR%%/inc/dbutils.class.php -%%WWWDIR%%/inc/dcbreadcrumb.class.php %%WWWDIR%%/inc/dcroom.class.php %%WWWDIR%%/inc/define.php %%WWWDIR%%/inc/devicebattery.class.php @@ -843,6 +1005,11 @@ %%WWWDIR%%/inc/documentcategory.class.php %%WWWDIR%%/inc/documenttype.class.php %%WWWDIR%%/inc/domain.class.php +%%WWWDIR%%/inc/domain_item.class.php +%%WWWDIR%%/inc/domainrecord.class.php +%%WWWDIR%%/inc/domainrecordtype.class.php +%%WWWDIR%%/inc/domainrelation.class.php +%%WWWDIR%%/inc/domaintype.class.php %%WWWDIR%%/inc/dropdown.class.php %%WWWDIR%%/inc/dropdowntranslation.class.php %%WWWDIR%%/inc/enclosure.class.php @@ -854,12 +1021,18 @@ %%WWWDIR%%/inc/event.class.php %%WWWDIR%%/inc/exception/forgetpasswordexception.class.php %%WWWDIR%%/inc/exception/passwordtooweakexception.class.php +%%WWWDIR%%/inc/extravisibilitycriteria.class.php +%%WWWDIR%%/inc/features/clonable.class.php +%%WWWDIR%%/inc/features/dcbreadcrumb.class.php +%%WWWDIR%%/inc/features/kanban.class.php +%%WWWDIR%%/inc/features/planningevent.class.php %%WWWDIR%%/inc/fieldblacklist.class.php %%WWWDIR%%/inc/fieldunicity.class.php %%WWWDIR%%/inc/filesystem.class.php %%WWWDIR%%/inc/fqdn.class.php %%WWWDIR%%/inc/fqdnlabel.class.php %%WWWDIR%%/inc/glpi.class.php +%%WWWDIR%%/inc/glpikey.class.php %%WWWDIR%%/inc/glpimailer.class.php %%WWWDIR%%/inc/glpinetwork.class.php %%WWWDIR%%/inc/glpipdf.class.php @@ -882,6 +1055,11 @@ %%WWWDIR%%/inc/htmltablerow.class.php %%WWWDIR%%/inc/htmltablesubheader.class.php %%WWWDIR%%/inc/htmltablesuperheader.class.php +%%WWWDIR%%/inc/impact.class.php +%%WWWDIR%%/inc/impactcompound.class.php +%%WWWDIR%%/inc/impactcontext.class.php +%%WWWDIR%%/inc/impactitem.class.php +%%WWWDIR%%/inc/impactrelation.class.php %%WWWDIR%%/inc/includes.php %%WWWDIR%%/inc/index.php %%WWWDIR%%/inc/infocom.class.php @@ -891,6 +1069,7 @@ %%WWWDIR%%/inc/ipnetmask.class.php %%WWWDIR%%/inc/ipnetwork.class.php %%WWWDIR%%/inc/ipnetwork_vlan.class.php +%%WWWDIR%%/inc/item_cluster.class.php %%WWWDIR%%/inc/item_devicebattery.class.php %%WWWDIR%%/inc/item_devicecase.class.php %%WWWDIR%%/inc/item_devicecontrol.class.php @@ -911,15 +1090,24 @@ %%WWWDIR%%/inc/item_devicesoundcard.class.php %%WWWDIR%%/inc/item_disk.class.php %%WWWDIR%%/inc/item_enclosure.class.php +%%WWWDIR%%/inc/item_kanban.class.php %%WWWDIR%%/inc/item_operatingsystem.class.php %%WWWDIR%%/inc/item_problem.class.php %%WWWDIR%%/inc/item_project.class.php %%WWWDIR%%/inc/item_rack.class.php +%%WWWDIR%%/inc/item_softwarelicense.class.php +%%WWWDIR%%/inc/item_softwareversion.class.php %%WWWDIR%%/inc/item_ticket.class.php %%WWWDIR%%/inc/itil_project.class.php %%WWWDIR%%/inc/itilcategory.class.php %%WWWDIR%%/inc/itilfollowup.class.php +%%WWWDIR%%/inc/itilfollowuptemplate.class.php %%WWWDIR%%/inc/itilsolution.class.php +%%WWWDIR%%/inc/itiltemplate.class.php +%%WWWDIR%%/inc/itiltemplatefield.class.php +%%WWWDIR%%/inc/itiltemplatehiddenfield.class.php +%%WWWDIR%%/inc/itiltemplatemandatoryfield.class.php +%%WWWDIR%%/inc/itiltemplatepredefinedfield.class.php %%WWWDIR%%/inc/knowbase.class.php %%WWWDIR%%/inc/knowbaseitem.class.php %%WWWDIR%%/inc/knowbaseitem_comment.class.php @@ -939,8 +1127,14 @@ %%WWWDIR%%/inc/location.class.php %%WWWDIR%%/inc/lock.class.php %%WWWDIR%%/inc/log.class.php +%%WWWDIR%%/inc/mail/protocol/protocolinterface.class.php %%WWWDIR%%/inc/mailcollector.class.php %%WWWDIR%%/inc/manufacturer.class.php +%%WWWDIR%%/inc/mapgeolocation.class.php +%%WWWDIR%%/inc/marketplace/api/plugins.class.php +%%WWWDIR%%/inc/marketplace/controller.class.php +%%WWWDIR%%/inc/marketplace/notificationtargetcontroller.class.php +%%WWWDIR%%/inc/marketplace/view.class.php %%WWWDIR%%/inc/massiveaction.class.php %%WWWDIR%%/inc/migration.class.php %%WWWDIR%%/inc/migrationcleaner.class.php @@ -991,6 +1185,7 @@ %%WWWDIR%%/inc/notificationtargetcontract.class.php %%WWWDIR%%/inc/notificationtargetcrontask.class.php %%WWWDIR%%/inc/notificationtargetdbconnection.class.php +%%WWWDIR%%/inc/notificationtargetdomain.class.php %%WWWDIR%%/inc/notificationtargetfieldunicity.class.php %%WWWDIR%%/inc/notificationtargetinfocom.class.php %%WWWDIR%%/inc/notificationtargetmailcollector.class.php @@ -1020,6 +1215,9 @@ %%WWWDIR%%/inc/operatingsystemkernelversion.class.php %%WWWDIR%%/inc/operatingsystemservicepack.class.php %%WWWDIR%%/inc/operatingsystemversion.class.php +%%WWWDIR%%/inc/passivedcequipment.class.php +%%WWWDIR%%/inc/passivedcequipmentmodel.class.php +%%WWWDIR%%/inc/passivedcequipmenttype.class.php %%WWWDIR%%/inc/pdu.class.php %%WWWDIR%%/inc/pdu_plug.class.php %%WWWDIR%%/inc/pdu_rack.class.php @@ -1033,6 +1231,10 @@ %%WWWDIR%%/inc/phonepowersupply.class.php %%WWWDIR%%/inc/phonetype.class.php %%WWWDIR%%/inc/planning.class.php +%%WWWDIR%%/inc/planningcsv.class.php +%%WWWDIR%%/inc/planningeventcategory.class.php +%%WWWDIR%%/inc/planningexternalevent.class.php +%%WWWDIR%%/inc/planningexternaleventtemplate.class.php %%WWWDIR%%/inc/planningrecall.class.php %%WWWDIR%%/inc/plug.class.php %%WWWDIR%%/inc/plugin.class.php @@ -1046,6 +1248,10 @@ %%WWWDIR%%/inc/problem_user.class.php %%WWWDIR%%/inc/problemcost.class.php %%WWWDIR%%/inc/problemtask.class.php +%%WWWDIR%%/inc/problemtemplate.class.php +%%WWWDIR%%/inc/problemtemplatehiddenfield.class.php +%%WWWDIR%%/inc/problemtemplatemandatoryfield.class.php +%%WWWDIR%%/inc/problemtemplatepredefinedfield.class.php %%WWWDIR%%/inc/profile.class.php %%WWWDIR%%/inc/profile_reminder.class.php %%WWWDIR%%/inc/profile_rssfeed.class.php @@ -1074,6 +1280,7 @@ %%WWWDIR%%/inc/relation.constant.php %%WWWDIR%%/inc/reminder.class.php %%WWWDIR%%/inc/reminder_user.class.php +%%WWWDIR%%/inc/remindertranslation.class.php %%WWWDIR%%/inc/report.class.php %%WWWDIR%%/inc/requesttype.class.php %%WWWDIR%%/inc/reservation.class.php @@ -1164,6 +1371,24 @@ %%WWWDIR%%/inc/supplier.class.php %%WWWDIR%%/inc/supplier_ticket.class.php %%WWWDIR%%/inc/suppliertype.class.php +%%WWWDIR%%/inc/system/requirement/abstractrequirement.class.php +%%WWWDIR%%/inc/system/requirement/dbengine.class.php +%%WWWDIR%%/inc/system/requirement/dbtimezones.class.php +%%WWWDIR%%/inc/system/requirement/directorywriteaccess.class.php +%%WWWDIR%%/inc/system/requirement/extension.class.php +%%WWWDIR%%/inc/system/requirement/extensionclass.class.php +%%WWWDIR%%/inc/system/requirement/extensionfunction.class.php +%%WWWDIR%%/inc/system/requirement/logswriteaccess.class.php +%%WWWDIR%%/inc/system/requirement/memorylimit.class.php +%%WWWDIR%%/inc/system/requirement/mysqlimysqlnd.class.php +%%WWWDIR%%/inc/system/requirement/phpversion.class.php +%%WWWDIR%%/inc/system/requirement/protectedwebaccess.class.php +%%WWWDIR%%/inc/system/requirement/requirementinterface.class.php +%%WWWDIR%%/inc/system/requirement/selinux.class.php +%%WWWDIR%%/inc/system/requirement/sessionsconfiguration.class.php +%%WWWDIR%%/inc/system/requirementslist.class.php +%%WWWDIR%%/inc/system/requirementsmanager.class.php +%%WWWDIR%%/inc/system/status/statuschecker.class.php %%WWWDIR%%/inc/taskcategory.class.php %%WWWDIR%%/inc/tasktemplate.class.php %%WWWDIR%%/inc/telemetry.class.php @@ -1171,7 +1396,6 @@ %%WWWDIR%%/inc/ticket_ticket.class.php %%WWWDIR%%/inc/ticket_user.class.php %%WWWDIR%%/inc/ticketcost.class.php -%%WWWDIR%%/inc/ticketfollowup.class.php %%WWWDIR%%/inc/ticketrecurrent.class.php %%WWWDIR%%/inc/ticketsatisfaction.class.php %%WWWDIR%%/inc/tickettask.class.php @@ -1192,10 +1416,12 @@ %%WWWDIR%%/inc/virtualmachinesystem.class.php %%WWWDIR%%/inc/virtualmachinetype.class.php %%WWWDIR%%/inc/vlan.class.php +%%WWWDIR%%/inc/vobject.class.php %%WWWDIR%%/inc/wifinetwork.class.php %%WWWDIR%%/inc/xhprof.class.php %%WWWDIR%%/inc/xml.class.php %%WWWDIR%%/index.php +%%WWWDIR%%/install/empty_data.php %%WWWDIR%%/install/index.php %%WWWDIR%%/install/install.php %%WWWDIR%%/install/mysql/.htaccess @@ -1253,6 +1479,13 @@ %%WWWDIR%%/install/update_941_942.php %%WWWDIR%%/install/update_942_943.php %%WWWDIR%%/install/update_943_945.php +%%WWWDIR%%/install/update_945_946.php +%%WWWDIR%%/install/update_946_947.php +%%WWWDIR%%/install/update_94_95.php +%%WWWDIR%%/install/update_94_95/appliances.php +%%WWWDIR%%/install/update_94_95/dashboards.php +%%WWWDIR%%/install/update_951_952.php +%%WWWDIR%%/install/update_952_953.php %%WWWDIR%%/install/update_content.php %%WWWDIR%%/install/update_to_031.php %%WWWDIR%%/install/update_xx_xy.tpl.php @@ -1260,600 +1493,109 @@ %%WWWDIR%%/js/clipboard.min.js %%WWWDIR%%/js/common.js %%WWWDIR%%/js/common.min.js +%%WWWDIR%%/js/dashboard.js +%%WWWDIR%%/js/dashboard.min.js %%WWWDIR%%/js/fileupload.js %%WWWDIR%%/js/fileupload.min.js %%WWWDIR%%/js/fuzzysearch.js %%WWWDIR%%/js/fuzzysearch.min.js +%%WWWDIR%%/js/impact.js +%%WWWDIR%%/js/impact.min.js +%%WWWDIR%%/js/kanban.js +%%WWWDIR%%/js/kanban.min.js %%WWWDIR%%/js/log_filters.js %%WWWDIR%%/js/log_filters.min.js +%%WWWDIR%%/js/main.js +%%WWWDIR%%/js/main.min.js +%%WWWDIR%%/js/marketplace.js +%%WWWDIR%%/js/marketplace.min.js %%WWWDIR%%/js/notifications_ajax.js %%WWWDIR%%/js/notifications_ajax.min.js +%%WWWDIR%%/js/planning.js +%%WWWDIR%%/js/planning.min.js %%WWWDIR%%/js/rack.js %%WWWDIR%%/js/rack.min.js %%WWWDIR%%/lib/FreeSans.ttf -%%WWWDIR%%/lib/chartist-js-0.10.1/LICENSE-MIT -%%WWWDIR%%/lib/chartist-js-0.10.1/chartist.css -%%WWWDIR%%/lib/chartist-js-0.10.1/chartist.js -%%WWWDIR%%/lib/chartist-js-0.10.1/chartist.min.css -%%WWWDIR%%/lib/chartist-js-0.10.1/chartist.min.js -%%WWWDIR%%/lib/chartist-plugin-legend-0.6.0/LICENSE -%%WWWDIR%%/lib/chartist-plugin-legend-0.6.0/chartist-plugin-legend.js -%%WWWDIR%%/lib/chartist-plugin-tooltip-0.0.17/LICENSE -%%WWWDIR%%/lib/chartist-plugin-tooltip-0.0.17/chartist-plugin-tooltip.css -%%WWWDIR%%/lib/chartist-plugin-tooltip-0.0.17/chartist-plugin-tooltip.js -%%WWWDIR%%/lib/chartist-plugin-tooltip-0.0.17/chartist-plugin-tooltip.min.js -%%WWWDIR%%/lib/file-type.js -%%WWWDIR%%/lib/font-awesome/LICENSE.txt -%%WWWDIR%%/lib/font-awesome/css/all.css -%%WWWDIR%%/lib/font-awesome/css/all.min.css -%%WWWDIR%%/lib/font-awesome/webfonts/fa-brands-400.eot -%%WWWDIR%%/lib/font-awesome/webfonts/fa-brands-400.svg -%%WWWDIR%%/lib/font-awesome/webfonts/fa-brands-400.ttf -%%WWWDIR%%/lib/font-awesome/webfonts/fa-brands-400.woff -%%WWWDIR%%/lib/font-awesome/webfonts/fa-brands-400.woff2 -%%WWWDIR%%/lib/font-awesome/webfonts/fa-regular-400.eot -%%WWWDIR%%/lib/font-awesome/webfonts/fa-regular-400.svg -%%WWWDIR%%/lib/font-awesome/webfonts/fa-regular-400.ttf -%%WWWDIR%%/lib/font-awesome/webfonts/fa-regular-400.woff -%%WWWDIR%%/lib/font-awesome/webfonts/fa-regular-400.woff2 -%%WWWDIR%%/lib/font-awesome/webfonts/fa-solid-900.eot -%%WWWDIR%%/lib/font-awesome/webfonts/fa-solid-900.svg -%%WWWDIR%%/lib/font-awesome/webfonts/fa-solid-900.ttf -%%WWWDIR%%/lib/font-awesome/webfonts/fa-solid-900.woff -%%WWWDIR%%/lib/font-awesome/webfonts/fa-solid-900.woff2 -%%WWWDIR%%/lib/fuzzy/LICENSE-MIT -%%WWWDIR%%/lib/fuzzy/fuzzy-min.js -%%WWWDIR%%/lib/gridstack/LICENSE -%%WWWDIR%%/lib/gridstack/src/gridstack-extra.css -%%WWWDIR%%/lib/gridstack/src/gridstack-extra.min.css -%%WWWDIR%%/lib/gridstack/src/gridstack.css -%%WWWDIR%%/lib/gridstack/src/gridstack.jQueryUI.js -%%WWWDIR%%/lib/gridstack/src/gridstack.jQueryUI.min.js -%%WWWDIR%%/lib/gridstack/src/gridstack.js -%%WWWDIR%%/lib/gridstack/src/gridstack.min.css -%%WWWDIR%%/lib/gridstack/src/gridstack.min.js -%%WWWDIR%%/lib/htmlawed/htmLawed.php +%%WWWDIR%%/lib/bundles/base.js +%%WWWDIR%%/lib/bundles/base.min.js +%%WWWDIR%%/lib/bundles/chartist.js +%%WWWDIR%%/lib/bundles/chartist.min.js +%%WWWDIR%%/lib/bundles/codemirror.js +%%WWWDIR%%/lib/bundles/codemirror.min.js +%%WWWDIR%%/lib/bundles/cytoscape.js +%%WWWDIR%%/lib/bundles/cytoscape.min.js +%%WWWDIR%%/lib/bundles/file-type.js +%%WWWDIR%%/lib/bundles/file-type.min.js +%%WWWDIR%%/lib/bundles/flatpickr.js +%%WWWDIR%%/lib/bundles/flatpickr.min.js +%%WWWDIR%%/lib/bundles/fullcalendar.js +%%WWWDIR%%/lib/bundles/fullcalendar.min.js +%%WWWDIR%%/lib/bundles/fuzzy.js +%%WWWDIR%%/lib/bundles/fuzzy.min.js +%%WWWDIR%%/lib/bundles/gridstack.js +%%WWWDIR%%/lib/bundles/gridstack.min.js +%%WWWDIR%%/lib/bundles/jquery-file-upload.js +%%WWWDIR%%/lib/bundles/jquery-file-upload.min.js +%%WWWDIR%%/lib/bundles/jquery-gantt.js +%%WWWDIR%%/lib/bundles/jquery-gantt.min.js +%%WWWDIR%%/lib/bundles/jquery-prettytextdiff.js +%%WWWDIR%%/lib/bundles/jquery-prettytextdiff.min.js +%%WWWDIR%%/lib/bundles/jquery.rateit.js +%%WWWDIR%%/lib/bundles/jquery.rateit.min.js +%%WWWDIR%%/lib/bundles/jstree.js +%%WWWDIR%%/lib/bundles/jstree.min.js +%%WWWDIR%%/lib/bundles/leaflet.js +%%WWWDIR%%/lib/bundles/leaflet.min.js +%%WWWDIR%%/lib/bundles/photoswipe.js +%%WWWDIR%%/lib/bundles/photoswipe.min.js +%%WWWDIR%%/lib/bundles/prismjs.js +%%WWWDIR%%/lib/bundles/prismjs.min.js +%%WWWDIR%%/lib/bundles/scrollable-tabs.js +%%WWWDIR%%/lib/bundles/scrollable-tabs.min.js +%%WWWDIR%%/lib/bundles/sortable.js +%%WWWDIR%%/lib/bundles/sortable.min.js +%%WWWDIR%%/lib/bundles/tinymce.js +%%WWWDIR%%/lib/bundles/tinymce.min.js +%%WWWDIR%%/lib/bundles/unorm.js +%%WWWDIR%%/lib/bundles/unorm.min.js %%WWWDIR%%/lib/index.php -%%WWWDIR%%/lib/jquery/css/smoothness/images/animated-overlay.gif -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_0_FFF_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_65_ffffff_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_75_dadada_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_75_e6e6e6_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_flat_95_fef1ec_40x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-icons_222222_256x240.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-icons_2e83ff_256x240.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-icons_454545_256x240.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-icons_888888_256x240.png -%%WWWDIR%%/lib/jquery/css/smoothness/images/ui-icons_cd0a0a_256x240.png -%%WWWDIR%%/lib/jquery/css/smoothness/jquery-ui-1.10.4.custom.css -%%WWWDIR%%/lib/jquery/css/smoothness/jquery-ui-1.10.4.custom.min.css -%%WWWDIR%%/lib/jquery/i18n/jquery-ui-i18n.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-af.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ar-DZ.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ar.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-az.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-be.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-bg.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-bs.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ca.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-cs.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-cy-GB.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-da.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-de.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-el.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-en-AU.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-en-GB.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-en-NZ.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-eo.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-es.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-et.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-eu.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-fa.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-fi.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-fo.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-fr-CA.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-fr-CH.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-fr.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-gl.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-he.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-hi.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-hr.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-hu.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-hy.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-id.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-is.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-it.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ja.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ka.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-kk.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-km.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ko.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ky.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-lb.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-lt.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-lv.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-mk.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ml.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ms.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-nb.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-nl-BE.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-nl.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-nn.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-no.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-pl.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-pt-BR.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-pt.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-rm.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ro.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ru.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-sk.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-sl.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-sq.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-sr-SR.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-sr.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-sv.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-ta.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-th.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-tj.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-tr.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-uk.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-vi.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-zh-CN.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-zh-HK.js -%%WWWDIR%%/lib/jquery/i18n/jquery.ui.datepicker-zh-TW.js -%%WWWDIR%%/lib/jquery/js/jquery-ui-1.10.4.custom.js -%%WWWDIR%%/lib/jquery/js/jquery-ui-1.10.4.custom.min.js -%%WWWDIR%%/lib/jquery/js/jquery.js -%%WWWDIR%%/lib/jquery/js/jquery.min.js -%%WWWDIR%%/lib/jquery/js/jquery.min.map -%%WWWDIR%%/lib/jqueryplugins/autogrow/jquery.autogrow-textarea.js -%%WWWDIR%%/lib/jqueryplugins/autogrow/jquery.autogrow-textarea.min.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/CHANGELOG.txt -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/CONTRIBUTING.txt -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/LICENSE.txt -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/fullcalendar.css -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/fullcalendar.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/fullcalendar.min.css -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/fullcalendar.min.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/fullcalendar.print.css -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/fullcalendar.print.min.css -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/gcal.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/gcal.min.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale-all.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/af.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar-dz.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar-kw.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar-ly.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar-ma.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar-sa.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar-tn.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ar.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/be.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/bg.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/bs.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ca.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/cs.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/da.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/de-at.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/de-ch.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/de.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/el.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/en-au.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/en-ca.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/en-gb.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/en-ie.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/en-nz.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/es-do.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/es-us.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/es.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/et.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/eu.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/fa.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/fi.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/fr-ca.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/fr-ch.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/fr.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/gl.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/he.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/hi.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/hr.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/hu.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/id.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/is.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/it.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ja.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ka.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/kk.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ko.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/lb.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/lt.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/lv.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/mk.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ms-my.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ms.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/nb.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/nl-be.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/nl.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/nn.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/pl.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/pt-br.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/pt.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ro.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/ru.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/sk.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/sl.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/sq.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/sr-cyrl.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/sr.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/sv.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/th.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/tr.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/uk.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/vi.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/zh-cn.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/zh-hk.js -%%WWWDIR%%/lib/jqueryplugins/fullcalendar/locale/zh-tw.js -%%WWWDIR%%/lib/jqueryplugins/jquery-file-upload/README.md -%%WWWDIR%%/lib/jqueryplugins/jquery-file-upload/js/jquery.fileupload.js -%%WWWDIR%%/lib/jqueryplugins/jquery-file-upload/js/jquery.iframe-transport.js -%%WWWDIR%%/lib/jqueryplugins/jquery-file-upload/server/php/UploadHandler.php %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/CONTRIBUTORS.md %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/README.md %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/css/style.css +%%WWWDIR%%/lib/jqueryplugins/jquery-gantt/css/style.min.css %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/img/grid.png %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/img/icon_sprite.png %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/img/loader_bg.png %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/img/slider_handle.png %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/js/dataDays.js +%%WWWDIR%%/lib/jqueryplugins/jquery-gantt/js/dataDays.min.js %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/js/dataDaysEnh.js +%%WWWDIR%%/lib/jqueryplugins/jquery-gantt/js/dataDaysEnh.min.js %%WWWDIR%%/lib/jqueryplugins/jquery-gantt/js/dataHours.js +%%WWWDIR%%/lib/jqueryplugins/jquery-gantt/js/dataHours.min.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Fri Dec 11 10:59:10 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 93BFF4AB707; Fri, 11 Dec 2020 10:59:10 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Csnpk3nzcz3PMd; Fri, 11 Dec 2020 10:59:10 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 711831D02; Fri, 11 Dec 2020 10:59:10 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BBAxAAk072783; Fri, 11 Dec 2020 10:59:10 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BBAxAWv072782; Fri, 11 Dec 2020 10:59:10 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <202012111059.0BBAxAWv072782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Fri, 11 Dec 2020 10:59:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557716 - branches/2020Q4/security/libressl X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: branches/2020Q4/security/libressl X-SVN-Commit-Revision: 557716 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.34 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, 11 Dec 2020 10:59:10 -0000 Author: brnrd Date: Fri Dec 11 10:59:09 2020 New Revision: 557716 URL: https://svnweb.freebsd.org/changeset/ports/557716 Log: security/libressl: Security update to 3.1.5 Security: 88dfd92f-3b9c-11eb-929d-d4c9ef517024 Modified: branches/2020Q4/security/libressl/Makefile branches/2020Q4/security/libressl/distinfo Modified: branches/2020Q4/security/libressl/Makefile ============================================================================== --- branches/2020Q4/security/libressl/Makefile Fri Dec 11 10:52:37 2020 (r557715) +++ branches/2020Q4/security/libressl/Makefile Fri Dec 11 10:59:09 2020 (r557716) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libressl -PORTVERSION= 3.1.4 +PORTVERSION= 3.1.5 CATEGORIES= security devel MASTER_SITES= OPENBSD/LibreSSL Modified: branches/2020Q4/security/libressl/distinfo ============================================================================== --- branches/2020Q4/security/libressl/distinfo Fri Dec 11 10:52:37 2020 (r557715) +++ branches/2020Q4/security/libressl/distinfo Fri Dec 11 10:59:09 2020 (r557716) @@ -1,3 +1,3 @@ -TIMESTAMP = 1597744791 -SHA256 (libressl-3.1.4.tar.gz) = 414c149c9963983f805a081db5bd3aec146b5f82d529bb63875ac941b25dcbb6 -SIZE (libressl-3.1.4.tar.gz) = 3767238 +TIMESTAMP = 1607683817 +SHA256 (libressl-3.1.5.tar.gz) = 2c13ddcec5081c0e7ba7f93d8370a91911173090f1922007e1d90de274500494 +SIZE (libressl-3.1.5.tar.gz) = 3767605 From owner-svn-ports-branches@freebsd.org Fri Dec 11 13:12:51 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5C5C24AFC48; Fri, 11 Dec 2020 13:12:51 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Csrmz280mz3qT5; Fri, 11 Dec 2020 13:12:51 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C82D34DD; Fri, 11 Dec 2020 13:12:51 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BBDCpSj061662; Fri, 11 Dec 2020 13:12:51 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BBDCpQh061661; Fri, 11 Dec 2020 13:12:51 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <202012111312.0BBDCpQh061661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Fri, 11 Dec 2020 13:12:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557734 - branches/2020Q4/graphics/qtqr X-SVN-Group: ports-branches X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: branches/2020Q4/graphics/qtqr X-SVN-Commit-Revision: 557734 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.34 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, 11 Dec 2020 13:12:51 -0000 Author: ehaupt Date: Fri Dec 11 13:12:50 2020 New Revision: 557734 URL: https://svnweb.freebsd.org/changeset/ports/557734 Log: MFH: r557733 Fix stage-qa issue by setting PKGNAMEPREFIX PR: 251734 Submitted by: lbartoletti Modified: branches/2020Q4/graphics/qtqr/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/graphics/qtqr/Makefile ============================================================================== --- branches/2020Q4/graphics/qtqr/Makefile Fri Dec 11 13:09:18 2020 (r557733) +++ branches/2020Q4/graphics/qtqr/Makefile Fri Dec 11 13:12:50 2020 (r557734) @@ -3,9 +3,10 @@ PORTNAME= qtqr DISTVERSION= 2.0.bzr39 -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= graphics python MASTER_SITES= LOCAL/ehaupt +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= qr-tools-${DISTVERSION} MAINTAINER= ehaupt@FreeBSD.org From owner-svn-ports-branches@freebsd.org Fri Dec 11 16:15:06 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6B0864B3E99; Fri, 11 Dec 2020 16:15:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CswqG2QW9z4Y3F; Fri, 11 Dec 2020 16:15: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 45F265972; Fri, 11 Dec 2020 16:15: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 0BBGF6sB075365; Fri, 11 Dec 2020 16:15:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BBGF5gl075363; Fri, 11 Dec 2020 16:15:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202012111615.0BBGF5gl075363@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 11 Dec 2020 16:15:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557749 - in branches/2020Q4: net/openntpd net/relayd security/dsniff X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2020Q4: net/openntpd net/relayd security/dsniff X-SVN-Commit-Revision: 557749 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.34 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, 11 Dec 2020 16:15:06 -0000 Author: jbeich Date: Fri Dec 11 16:15:05 2020 New Revision: 557749 URL: https://svnweb.freebsd.org/changeset/ports/557749 Log: MFH: r557748 security/libressl: re-link static library consumers after r557713 Modified: branches/2020Q4/net/openntpd/Makefile branches/2020Q4/net/relayd/Makefile branches/2020Q4/security/dsniff/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/net/openntpd/Makefile ============================================================================== --- branches/2020Q4/net/openntpd/Makefile Fri Dec 11 16:13:58 2020 (r557748) +++ branches/2020Q4/net/openntpd/Makefile Fri Dec 11 16:15:05 2020 (r557749) @@ -2,7 +2,7 @@ PORTNAME= openntpd PORTVERSION= 6.2p3 -PORTREVISION= 8 +PORTREVISION= 9 PORTEPOCH= 2 CATEGORIES= net MASTER_SITES= OPENBSD/OpenNTPD Modified: branches/2020Q4/net/relayd/Makefile ============================================================================== --- branches/2020Q4/net/relayd/Makefile Fri Dec 11 16:13:58 2020 (r557748) +++ branches/2020Q4/net/relayd/Makefile Fri Dec 11 16:15:05 2020 (r557749) @@ -2,7 +2,7 @@ PORTNAME= relayd PORTVERSION= 5.5.20140810 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net MAINTAINER= koue@chaosophia.net Modified: branches/2020Q4/security/dsniff/Makefile ============================================================================== --- branches/2020Q4/security/dsniff/Makefile Fri Dec 11 16:13:58 2020 (r557748) +++ branches/2020Q4/security/dsniff/Makefile Fri Dec 11 16:15:05 2020 (r557749) @@ -3,7 +3,7 @@ PORTNAME= dsniff DISTVERSION= 2.4b1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MASTER_SITES= http://www.monkey.org/~dugsong/${PORTNAME}/beta/ \ LOCAL/sbz From owner-svn-ports-branches@freebsd.org Fri Dec 11 20:38:16 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E2DEC4BA31C; Fri, 11 Dec 2020 20:38:16 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ct2fw5zk1z4s3B; Fri, 11 Dec 2020 20:38:16 +0000 (UTC) (envelope-from gerald@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C08F811352; Fri, 11 Dec 2020 20:38:16 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BBKcG9D045165; Fri, 11 Dec 2020 20:38:16 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BBKcGGL045164; Fri, 11 Dec 2020 20:38:16 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <202012112038.0BBKcGGL045164@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Fri, 11 Dec 2020 20:38:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557762 - branches/2020Q4/emulators/wine-devel X-SVN-Group: ports-branches X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: branches/2020Q4/emulators/wine-devel X-SVN-Commit-Revision: 557762 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.34 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, 11 Dec 2020 20:38:16 -0000 Author: gerald Date: Fri Dec 11 20:38:16 2020 New Revision: 557762 URL: https://svnweb.freebsd.org/changeset/ports/557762 Log: MFH: r556564 Wine is now able to use mingw-w64 to build components. When mingw-w64 is installed on FreeBSD, users might inadvertedly use that when we have not set up things properly yet (and it probably should be an option to choose, at least initially). For example, mingw-w64 produces .dll files instead of the current .dll.so files, breaking pkg-plist. So for now explicitly disable the use of mingw-w64. In a next step, once mingw-w64 is available, we probably should make this an option. PR: 237213 Reported by: Damjan Jovanovic Modified: branches/2020Q4/emulators/wine-devel/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/emulators/wine-devel/Makefile ============================================================================== --- branches/2020Q4/emulators/wine-devel/Makefile Fri Dec 11 20:35:54 2020 (r557761) +++ branches/2020Q4/emulators/wine-devel/Makefile Fri Dec 11 20:38:16 2020 (r557762) @@ -38,6 +38,7 @@ CONFIGURE_ARGS+=--verbose \ --without-gphoto --without-gsm --without-gstreamer \ --without-inotify \ --without-krb5 \ + --without-mingw \ --without-opencl \ --without-osmesa \ --with-oss \ From owner-svn-ports-branches@freebsd.org Sat Dec 12 00:25:35 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2BA1A4BFC97; Sat, 12 Dec 2020 00:25:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ct7jC0k40z3Nxl; Sat, 12 Dec 2020 00:25:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07AE6142E5; Sat, 12 Dec 2020 00:25:35 +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 0BC0PYqh088615; Sat, 12 Dec 2020 00:25:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BC0PYaw088613; Sat, 12 Dec 2020 00:25:34 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202012120025.0BC0PYaw088613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 12 Dec 2020 00:25:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557766 - branches/2020Q4/www/youtube_dl X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q4/www/youtube_dl X-SVN-Commit-Revision: 557766 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.34 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, 12 Dec 2020 00:25:35 -0000 Author: jbeich Date: Sat Dec 12 00:25:34 2020 New Revision: 557766 URL: https://svnweb.freebsd.org/changeset/ports/557766 Log: MFH: r557765 www/youtube_dl: update to 2020.12.12 Changes: https://github.com/ytdl-org/youtube-dl/releases/tag/2020.12.12 Reported by: GitHub (watch releases) Modified: branches/2020Q4/www/youtube_dl/Makefile branches/2020Q4/www/youtube_dl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/youtube_dl/Makefile ============================================================================== --- branches/2020Q4/www/youtube_dl/Makefile Sat Dec 12 00:23:29 2020 (r557765) +++ branches/2020Q4/www/youtube_dl/Makefile Sat Dec 12 00:25:34 2020 (r557766) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2020.12.09 +PORTVERSION= 2020.12.12 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} Modified: branches/2020Q4/www/youtube_dl/distinfo ============================================================================== --- branches/2020Q4/www/youtube_dl/distinfo Sat Dec 12 00:23:29 2020 (r557765) +++ branches/2020Q4/www/youtube_dl/distinfo Sat Dec 12 00:25:34 2020 (r557766) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607462698 -SHA256 (youtube-dl-2020.12.09.tar.gz) = 0ac76347bf455b4e80a026638f9406aa28df3d2b6e445c705ad43809808eb961 -SIZE (youtube-dl-2020.12.09.tar.gz) = 3235695 +TIMESTAMP = 1607731689 +SHA256 (youtube-dl-2020.12.12.tar.gz) = 8e0de6f68c8ed9afc3c40b0c6a3e5310f8920dee6793edabc1a87fead1a16447 +SIZE (youtube-dl-2020.12.12.tar.gz) = 3225195 From owner-svn-ports-branches@freebsd.org Sat Dec 12 10:52:33 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7AA004B10E1; Sat, 12 Dec 2020 10:52:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CtPcd37RKz4lhR; Sat, 12 Dec 2020 10:52:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E6D41BE30; Sat, 12 Dec 2020 10:52: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 0BCAqXVs084159; Sat, 12 Dec 2020 10:52:33 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BCAqX3s084158; Sat, 12 Dec 2020 10:52:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202012121052.0BCAqX3s084158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 12 Dec 2020 10:52:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557810 - branches/2020Q4/lang/pocl X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q4/lang/pocl X-SVN-Commit-Revision: 557810 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.34 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, 12 Dec 2020 10:52:33 -0000 Author: jbeich Date: Sat Dec 12 10:52:32 2020 New Revision: 557810 URL: https://svnweb.freebsd.org/changeset/ports/557810 Log: MFH: r557808 lang/pocl: unbreak runtime after r514525 PR: 241482 Submitted by: Lars Herschke Approved by: maintainer timeout (2 months) Modified: branches/2020Q4/lang/pocl/Makefile branches/2020Q4/lang/pocl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/lang/pocl/Makefile ============================================================================== --- branches/2020Q4/lang/pocl/Makefile Sat Dec 12 10:44:12 2020 (r557809) +++ branches/2020Q4/lang/pocl/Makefile Sat Dec 12 10:52:32 2020 (r557810) @@ -3,7 +3,11 @@ PORTNAME= pocl PORTVERSION= 1.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= lang + +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES+= 9ba33d2a570c.patch:-p1 # https://github.com/pocl/pocl/pull/879 MAINTAINER= ohartmann@walstatt.org COMMENT= POrtable Computing Language (POCL) Modified: branches/2020Q4/lang/pocl/distinfo ============================================================================== --- branches/2020Q4/lang/pocl/distinfo Sat Dec 12 10:44:12 2020 (r557809) +++ branches/2020Q4/lang/pocl/distinfo Sat Dec 12 10:52:32 2020 (r557810) @@ -1,3 +1,5 @@ TIMESTAMP = 1571058139 SHA256 (pocl-pocl-v1.4_GH0.tar.gz) = ec237faa83bb1c803fbdf7c6e83d8a2ad68b6f0ed1879c3aa16c0e1dcc478742 SIZE (pocl-pocl-v1.4_GH0.tar.gz) = 1560972 +SHA256 (9ba33d2a570c.patch) = ebbf503a5e1b9e6676d66c8839a785bcd26667a0aa881fb68b74883e07e3a139 +SIZE (9ba33d2a570c.patch) = 744 From owner-svn-ports-branches@freebsd.org Sat Dec 12 15:09:20 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C9B674B7CDE; Sat, 12 Dec 2020 15:09:20 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CtWJw5F3Kz3J2j; Sat, 12 Dec 2020 15:09:20 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A106D1F40E; Sat, 12 Dec 2020 15:09:20 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BCF9Kqj042958; Sat, 12 Dec 2020 15:09:20 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BCF9F1g042936; Sat, 12 Dec 2020 15:09:15 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202012121509.0BCF9F1g042936@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 12 Dec 2020 15:09:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557830 - in branches/2020Q4/security/sssd: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in branches/2020Q4/security/sssd: . files X-SVN-Commit-Revision: 557830 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.34 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, 12 Dec 2020 15:09:20 -0000 Author: rene Date: Sat Dec 12 15:09:15 2020 New Revision: 557830 URL: https://svnweb.freebsd.org/changeset/ports/557830 Log: MFH: r555585 r557829 security/sssd: update to 1.16.5 This fixes several security vulnerabilities and unexpires the port because it moves to Python 3. PR: 241347 Submitted by: lukas.slebodnik@intrak.sk (initial patch) Security: CVE-2018-16838 Security: CVE-2019-3811 security/sssd: fix SMB option - use Samba 4.12 instead of the removed Samba 4.10 - use ldb 2.1 instead of ldb 2.0 While here, recognize Kerberos 1.18 PR: 250864 Submitted by: joerg (patch by Richard Frewin) Approved by: maintainer timeout (14 days) Added: branches/2020Q4/security/sssd/files/patch-src__external__ldap.m4 - copied unchanged from r555585, head/security/sssd/files/patch-src__external__ldap.m4 branches/2020Q4/security/sssd/files/patch-src__external__pac_responder.m4 - copied, changed from r555585, head/security/sssd/files/patch-src__external__pac_responder.m4 branches/2020Q4/security/sssd/files/patch-src__lib__winbind_idmap_sss__winbind_idmap_sss.h - copied unchanged from r555585, head/security/sssd/files/patch-src__lib__winbind_idmap_sss__winbind_idmap_sss.h branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_common.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ad__ad_common.c branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_gpo_ndr.c - copied unchanged from r557829, head/security/sssd/files/patch-src__providers__ad__ad_gpo_ndr.c branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_pac.h - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ad__ad_pac.h branches/2020Q4/security/sssd/files/patch-src__providers__data_provider_fo.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__data_provider_fo.c branches/2020Q4/security/sssd/files/patch-src__providers__ipa__ipa_common.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ipa__ipa_common.c branches/2020Q4/security/sssd/files/patch-src__providers__ipa__ipa_deskprofile_rules_util.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ipa__ipa_deskprofile_rules_util.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_child.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ldap__ldap_child.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_groups.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_groups.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_initgroups.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_initgroups.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_initgroups_ad.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_initgroups_ad.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_sudo_hostinfo.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_sudo_hostinfo.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_users.c - copied unchanged from r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_users.c branches/2020Q4/security/sssd/files/patch-src__resolv__async_resolv_utils.c - copied unchanged from r555585, head/security/sssd/files/patch-src__resolv__async_resolv_utils.c branches/2020Q4/security/sssd/files/patch-src__sbus__sbus_codegen - copied unchanged from r555585, head/security/sssd/files/patch-src__sbus__sbus_codegen branches/2020Q4/security/sssd/files/patch-src__sss_client__pam_sss.c - copied unchanged from r555585, head/security/sssd/files/patch-src__sss_client__pam_sss.c branches/2020Q4/security/sssd/files/patch-src__tests__cmocka__test_authtok.c - copied unchanged from r555585, head/security/sssd/files/patch-src__tests__cmocka__test_authtok.c branches/2020Q4/security/sssd/files/patch-src__tests__cmocka__test_pam_srv.c - copied unchanged from r555585, head/security/sssd/files/patch-src__tests__cmocka__test_pam_srv.c branches/2020Q4/security/sssd/files/patch-src__tests__cwrap__test_responder_common.c - copied unchanged from r555585, head/security/sssd/files/patch-src__tests__cwrap__test_responder_common.c branches/2020Q4/security/sssd/files/patch-src__tests__cwrap__test_server.c - copied unchanged from r555585, head/security/sssd/files/patch-src__tests__cwrap__test_server.c branches/2020Q4/security/sssd/files/patch-src__tests__dlopen-tests.c - copied unchanged from r555585, head/security/sssd/files/patch-src__tests__dlopen-tests.c branches/2020Q4/security/sssd/files/patch-src__util__nss_dl_load.c - copied unchanged from r555585, head/security/sssd/files/patch-src__util__nss_dl_load.c branches/2020Q4/security/sssd/files/patch-src__util__sss_endian.h - copied unchanged from r555585, head/security/sssd/files/patch-src__util__sss_endian.h branches/2020Q4/security/sssd/files/patch-src__util__sss_krb5.c - copied unchanged from r555585, head/security/sssd/files/patch-src__util__sss_krb5.c branches/2020Q4/security/sssd/files/patch-src__util__sss_sockets.c - copied unchanged from r555585, head/security/sssd/files/patch-src__util__sss_sockets.c branches/2020Q4/security/sssd/files/patch-src__util__util.c - copied unchanged from r555585, head/security/sssd/files/patch-src__util__util.c Deleted: branches/2020Q4/security/sssd/files/patch-src-monitor-monitor.c branches/2020Q4/security/sssd/files/patch-src__util__signal.c branches/2020Q4/security/sssd/files/patch-src__util__sss_ldap.c branches/2020Q4/security/sssd/files/patch-src_external_pac__responder.m4 Modified: branches/2020Q4/security/sssd/Makefile branches/2020Q4/security/sssd/distinfo branches/2020Q4/security/sssd/files/patch-Makefile.am branches/2020Q4/security/sssd/files/patch-configure.ac branches/2020Q4/security/sssd/files/patch-src__confdb__confdb.c branches/2020Q4/security/sssd/files/patch-src__external__inotify.m4 branches/2020Q4/security/sssd/files/patch-src__external__krb5.m4 branches/2020Q4/security/sssd/files/patch-src__providers__krb5__krb5_delayed_online_authentication.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_auth.c branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_access.c branches/2020Q4/security/sssd/files/patch-src__sss_client__common.c branches/2020Q4/security/sssd/files/patch-src__sss_client__nss_group.c branches/2020Q4/security/sssd/files/patch-src__sss_client__sss_nss.exports branches/2020Q4/security/sssd/files/patch-src__util__crypto__libcrypto__crypto_sha512crypt.c branches/2020Q4/security/sssd/files/patch-src__util__crypto__nss__nss_sha512crypt.c branches/2020Q4/security/sssd/files/patch-src__util__find_uid.c branches/2020Q4/security/sssd/files/patch-src__util__server.c branches/2020Q4/security/sssd/files/patch-src__util__util.h branches/2020Q4/security/sssd/files/pkg-message.in branches/2020Q4/security/sssd/files/sssd.in branches/2020Q4/security/sssd/pkg-plist Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/security/sssd/Makefile ============================================================================== --- branches/2020Q4/security/sssd/Makefile Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/Makefile Sat Dec 12 15:09:15 2020 (r557830) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= sssd -PORTVERSION= 1.11.7 -PORTREVISION= 22 +PORTVERSION= 1.16.5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://releases.pagure.org/SSSD/${PORTNAME}/ @@ -13,14 +13,11 @@ COMMENT= System Security Services Daemon LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -DEPRECATED= Uses deprecated version of python -EXPIRATION_DATE= 2020-09-15 - LIB_DEPENDS= libpopt.so:devel/popt \ libtalloc.so:devel/talloc \ libtevent.so:devel/tevent \ libtdb.so:databases/tdb \ - libldb.so:databases/ldb14 \ + libldb.so:databases/ldb21 \ libcares.so:dns/c-ares \ libdbus-1.so:devel/dbus \ libdhash.so:devel/ding-libs \ @@ -37,33 +34,37 @@ BUILD_DEPENDS= xmlcatalog:textproc/libxml2 \ krb5>=1.10:security/krb5 \ nsupdate:dns/bind-tools -USES= autoreconf cpe gettext gmake iconv libtool pathfix pkgconfig \ - python:2.7 shebangfix gssapi:mit - -USE_LDCONFIG= yes -USE_OPENLDAP= yes - GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-selinux=no --with-semanage=no \ +CONFIGURE_ARGS= --without-selinux --without-semanage \ + --without-libnl --without-nfsv4-idmapd-plugin \ + --without-autofs --without-secrets --without-kcm \ + --without-python2-bindings \ + --with-init-dir=no \ + --disable-cifs-idmap-plugin \ + --with-unicode-lib=libunistring \ --with-ldb-lib-dir=${LOCALBASE}/lib/shared-modules/ldb \ --with-xml-catalog-path=${LOCALBASE}/share/xml/catalog \ - --with-libnl=no --with-init-dir=no --datadir=${DATADIR} \ - --docdir=${DOCSDIR} --with-pid-path=/var/run \ - --localstatedir=/var --enable-pammoddir=${PREFIX}/lib \ - --with-db-path=/var/db/sss --with-pipe-path=/var/run/sss \ - --with-pubconf-path=/var/run/sss --with-mcache-path=/var/db/sss_mc \ - --with-unicode-lib=libunistring --with-autofs=no \ - --disable-cifs-idmap-plugin --disable-config-lib \ - --with-krb5-conf=/etc/krb5.conf + --datadir=${DATADIR} --docdir=${DOCSDIR} --localstatedir=/var \ + --with-db-path=/var/db/sss/db --with-mcache-path=/var/db/sss/mc \ + --with-pubconf-path=/var/db/sss/pubconf \ + --with-gpo-cache-path=/var/db/sss/gpo_cache \ + --with-pid-path=/var/run --with-pipe-path=/var/run/sss/pipes \ + --with-krb5-conf=/etc/krb5.conf \ + --enable-pammoddir=${PREFIX}/lib CFLAGS+= -fstack-protector-all PLIST_SUB= PYTHON_VER=${PYTHON_VER} #DEBUG_FLAGS= -g MAKE_ENV+= LINGUAS="bg de eu es fr hu id it ja nb nl pl pt ru sv tg tr uk zh_CN zh_TW" SUB_FILES= pkg-message +USES= autoreconf cpe gettext gmake iconv libtool pathfix pkgconfig \ + python:3.7 shebangfix gssapi:mit +USE_LDCONFIG= yes +USE_OPENLDAP= yes INSTALL_TARGET= install-strip CPE_VENDOR= fedoraproject +BINARY_ALIAS= python3=python${PYTHON_VER} SHEBANG_FILES= src/tools/sss_obfuscate \ src/sbus/sbus_codegen @@ -73,18 +74,17 @@ PORTDATA= * OPTIONS_DEFINE= DOCS SMB OPTIONS_SUB= yes -# If the port fails to package with SMB=on due to some missing files from -# pkg-plist, check if there was a version bump of security/krb5 and -# update files/patch-src__external__krb5.m4 accordingly. -# -# See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244778 - SMB_DESC= Install IPA and AD providers (requires Samba4) -SMB_USES= samba:lib # libndr-krb5pac libndr-nbt libndr libsamba-util -SMB_CONFIGURE_WITH= samba +SMB_USES= samba:lib +SMB_CONFIGURE_WITH= samba smb-idmap-interface-version=6 +SMB_LIB_DEPENDS= libndr-nbt.so.0:net/samba412 \ + libndr-krb5pac.so.0:net/samba412 \ + libndr-standard.so.0:net/samba412 \ + libndr.so.1:net/samba412 \ + libsamba-util.so.0:net/samba412 \ + libsmbclient.so.0:net/samba412 post-patch: - @${REINPLACE_CMD} -e 's|SIGCLD|SIGCHLD|g' ${WRKSRC}/src/util/signal.c @${REINPLACE_CMD} -e 's|NSS_STATUS_NOTFOUND|NS_NOTFOUND|g' \ -e 's|NSS_STATUS_UNAVAIL|NS_UNAVAIL|g' \ -e 's|NSS_STATUS_TRYAGAIN|NS_TRYAGAIN|g' \ @@ -108,12 +108,9 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/src/examples/sssd-example.conf \ ${STAGEDIR}${ETCDIR}/sssd.conf.sample ${LN} -sf nss_sss.so ${STAGEDIR}${PREFIX}/lib/nss_sss.so.1 -# clean these up from the install; we create them in rc script start_precmd -.for d in db/sss db/sss_mc log/sssd run/sss/krb5.include.d run/sss/private run/sss - @${RMDIR} ${STAGEDIR}/var/${d} -.endfor + # clean unused man dirs -.for i in nl/man1 nl/man5 pt/man1 pt/man5 +.for i in es/man1 nl/man1 nl/man5 pt/man1 pt/man5 sv/man1 @${RMDIR} ${STAGEDIR}${PREFIX}/man/${i} .endfor Modified: branches/2020Q4/security/sssd/distinfo ============================================================================== --- branches/2020Q4/security/sssd/distinfo Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/distinfo Sat Dec 12 15:09:15 2020 (r557830) @@ -1,2 +1,3 @@ -SHA256 (sssd-1.11.7.tar.gz) = ff12d5730a6d7d08fe11140aa58e544900b75c63902b7a07bbbc12d6a99cb5b5 -SIZE (sssd-1.11.7.tar.gz) = 3661227 +TIMESTAMP = 1587639728 +SHA256 (sssd-1.16.5.tar.gz) = 2e1a7bf036b583f686d35164f2d79bdf4857b98f51fe8b0d17aa0fa756e4d0c0 +SIZE (sssd-1.16.5.tar.gz) = 6639917 Modified: branches/2020Q4/security/sssd/files/patch-Makefile.am ============================================================================== --- branches/2020Q4/security/sssd/files/patch-Makefile.am Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-Makefile.am Sat Dec 12 15:09:15 2020 (r557830) @@ -1,22 +1,38 @@ ---- Makefile.am.orig 2020-03-16 18:30:24 UTC +diff --git Makefile.am Makefile.am +index be17d6a59..03386d1f8 100644 +--- Makefile.am +++ Makefile.am -@@ -311,6 +311,7 @@ AM_CPPFLAGS = \ - $(LIBNL_CFLAGS) \ - $(OPENLDAP_CFLAGS) \ - $(GLIB2_CFLAGS) \ -+ -DHOST_NAME_MAX=_POSIX_HOST_NAME_MAX \ - -DLIBDIR=\"$(libdir)\" \ - -DVARDIR=\"$(localstatedir)\" \ - -DSHLIBEXT=\"$(SHLIBEXT)\" \ -@@ -378,6 +379,7 @@ SSSD_LIBS = \ - $(DHASH_LIBS) \ - $(SSS_CRYPT_LIBS) \ - $(OPENLDAP_LIBS) \ -+ $(LTLIBINTL) \ - $(TDB_LIBS) +@@ -61,7 +61,7 @@ sssdapiplugindir = $(sssddatadir)/sssd.api.d + sssdtapscriptdir = $(sssddatadir)/systemtap + dbuspolicydir = $(sysconfdir)/dbus-1/system.d + dbusservicedir = $(datadir)/dbus-1/system-services +-sss_statedir = $(localstatedir)/lib/sss ++sss_statedir = $(localstatedir)/db/sss + runstatedir = @runstatedir@ + localedir = @localedir@ + nsslibdir = @nsslibdir@ +@@ -378,12 +378,6 @@ sssdlib_LTLIBRARIES += \ + libsss_ad.la + endif - PYTHON_BINDINGS_LIBS = \ -@@ -433,6 +435,7 @@ dist_noinst_HEADERS = \ +-if HAVE_INOTIFY +-sssdlib_LTLIBRARIES += \ +- libsss_files.la \ +- $(NULL) +-endif # HAVE_INOTIFY +- + ldblib_LTLIBRARIES = \ + memberof.la + +@@ -610,6 +604,7 @@ SSSD_FAILOVER_OBJ = \ + + SSSD_LIBS = \ + $(TALLOC_LIBS) \ ++ $(LTLIBINTL) \ + $(TEVENT_LIBS) \ + $(POPT_LIBS) \ + $(LDB_LIBS) \ +@@ -664,6 +659,7 @@ dist_noinst_HEADERS = \ src/util/sss_ssh.h \ src/util/sss_ini.h \ src/util/sss_format.h \ @@ -24,7 +40,137 @@ src/util/refcount.h \ src/util/find_uid.h \ src/util/user_info_msg.h \ -@@ -1700,9 +1703,10 @@ endif +@@ -1358,6 +1354,7 @@ sssd_LDADD = \ + $(SSSD_LIBS) \ + $(INOTIFY_LIBS) \ + $(LIBNL_LIBS) \ ++ $(LTLIBINTL) \ + $(KEYUTILS_LIBS) \ + $(SYSTEMD_DAEMON_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) +@@ -1381,6 +1378,7 @@ sssd_nss_SOURCES = \ + sssd_nss_LDADD = \ + $(TDB_LIBS) \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + libsss_idmap.la \ + libsss_cert.la \ + $(SYSTEMD_DAEMON_LIBS) \ +@@ -1397,6 +1395,7 @@ sssd_pam_SOURCES = \ + sssd_pam_LDADD = \ + $(TDB_LIBS) \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(SELINUX_LIBS) \ + $(PAM_LIBS) \ + $(SYSTEMD_DAEMON_LIBS) \ +@@ -1414,6 +1413,7 @@ sssd_sudo_SOURCES = \ + $(SSSD_RESPONDER_OBJ) + sssd_sudo_LDADD = \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(SYSTEMD_DAEMON_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) + endif +@@ -1426,6 +1426,7 @@ sssd_autofs_SOURCES = \ + $(SSSD_RESPONDER_OBJ) + sssd_autofs_LDADD = \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(SYSTEMD_DAEMON_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) + endif +@@ -1441,6 +1442,7 @@ sssd_ssh_SOURCES = \ + $(NULL) + sssd_ssh_LDADD = \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(SSSD_INTERNAL_LTLIBS) \ + $(SYSTEMD_DAEMON_LIBS) \ + libsss_cert.la \ +@@ -1481,6 +1483,7 @@ sssd_ifp_CFLAGS = \ + $(AM_CFLAGS) + sssd_ifp_LDADD = \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(SYSTEMD_DAEMON_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) \ + libsss_cert.la \ +@@ -1604,6 +1607,7 @@ sssd_be_SOURCES = \ + sssd_be_LDADD = \ + $(LIBADD_DL) \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(CARES_LIBS) \ + $(PAM_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) +@@ -1726,6 +1730,7 @@ sss_signal_SOURCES = \ + src/tools/common/sss_process.c + $(NULL) + sss_signal_LDADD = \ ++ $(LTLIBINTL) \ + libsss_debug.la \ + $(NULL) + +@@ -2318,6 +2323,7 @@ test_ssh_client_CFLAGS = \ + test_ssh_client_LDADD = \ + $(SSSD_INTERNAL_LTLIBS) \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(NULL) + + if BUILD_DBUS_TESTS +@@ -2602,6 +2608,7 @@ test_authtok_LDADD = \ + $(CMOCKA_LIBS) \ + $(DHASH_LIBS) \ + $(POPT_LIBS) \ ++ $(LTLIBINTL) \ + libsss_test_common.la \ + libsss_debug.la \ + $(NULL) +@@ -2622,6 +2629,7 @@ deskprofile_utils_tests_SOURCES = \ + deskprofile_utils_tests_CFLAGS = \ + $(AM_CFLAGS) + deskprofile_utils_tests_LDADD = \ ++ $(LTLIBINTL) \ + $(CMOCKA_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) \ + libsss_test_common.la +@@ -2654,6 +2662,7 @@ domain_resolution_order_tests_CFLAGS = \ + $(AM_CFLAGS) + domain_resolution_order_tests_LDADD = \ + $(CMOCKA_LIBS) \ ++ $(LTLIBINTL) \ + $(SSSD_INTERNAL_LTLIBS) \ + libsss_test_common.la + +@@ -2738,6 +2747,7 @@ test_search_bases_LDADD = \ + $(CMOCKA_LIBS) \ + $(TALLOC_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) \ ++ $(LTLIBINTL) \ + libsss_ldap_common.la \ + libsss_test_common.la \ + libdlopen_test_providers.la \ +@@ -3545,6 +3555,7 @@ test_inotify_LDADD = \ + $(CMOCKA_LIBS) \ + $(SSSD_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) \ ++ $(INOTIFY_LIBS) \ + $(LIBADD_DL) \ + libsss_test_common.la \ + $(NULL) +@@ -3637,9 +3648,6 @@ endif + if BUILD_WITH_LIBCURL + noinst_PROGRAMS += tcurl-test-tool + endif +-if BUILD_PAC_RESPONDER +- noinst_PROGRAMS += sssd_pac_test_client +-endif + + if BUILD_AUTOFS + autofs_test_client_SOURCES = \ +@@ -3730,9 +3738,10 @@ intgcheck: # Client Libraries # #################### @@ -37,9 +183,9 @@ src/sss_client/nss_passwd.c \ src/sss_client/nss_group.c \ src/sss_client/nss_netgroup.c \ -@@ -1715,9 +1719,9 @@ libnss_sss_la_SOURCES = \ - src/sss_client/nss_mc_passwd.c \ +@@ -3748,9 +3757,9 @@ libnss_sss_la_SOURCES = \ src/sss_client/nss_mc_group.c \ + src/sss_client/nss_mc_initgr.c \ src/sss_client/nss_mc.h -libnss_sss_la_LIBADD = \ +nss_sss_la_LIBADD = \ @@ -49,20 +195,43 @@ -module \ -version-info 2:0:0 \ -Wl,--version-script,$(srcdir)/src/sss_client/sss_nss.exports -@@ -2086,6 +2090,7 @@ ldap_child_LDADD = \ - $(POPT_LIBS) \ +@@ -3908,6 +3917,7 @@ libsss_ldap_common_la_LIBADD = \ $(OPENLDAP_LIBS) \ $(DHASH_LIBS) \ + $(KRB5_LIBS) \ + $(LTLIBINTL) \ - $(KRB5_LIBS) + libsss_krb5_common.la \ + libsss_idmap.la \ + libsss_certmap.la \ +@@ -4271,6 +4281,7 @@ ldap_child_CFLAGS = \ + $(KRB5_CFLAGS) + ldap_child_LDADD = \ + libsss_debug.la \ ++ $(LTLIBINTL) \ + $(TALLOC_LIBS) \ + $(POPT_LIBS) \ + $(DHASH_LIBS) \ +@@ -4313,6 +4324,7 @@ gpo_child_CFLAGS = \ + $(SMBCLIENT_CFLAGS) + gpo_child_LDADD = \ + libsss_debug.la \ ++ $(LTLIBINTL) \ + $(TALLOC_LIBS) \ + $(POPT_LIBS) \ + $(DHASH_LIBS) \ +@@ -4329,6 +4341,7 @@ proxy_child_CFLAGS = \ + proxy_child_LDADD = \ + $(PAM_LIBS) \ + $(SSSD_LIBS) \ ++ $(LTLIBINTL) \ + $(SSSD_INTERNAL_LTLIBS) - proxy_child_SOURCES = \ -@@ -2333,7 +2338,7 @@ else - mkdir -p $(DESTDIR)$(initdir) - endif + p11_child_SOURCES = \ +@@ -4361,6 +4374,7 @@ endif --install-data-hook: -+notinstall-data-hook: - rm $(DESTDIR)/$(nsslibdir)/libnss_sss.so.2 \ - $(DESTDIR)/$(nsslibdir)/libnss_sss.so - mv $(DESTDIR)/$(nsslibdir)/libnss_sss.so.2.0.0 $(DESTDIR)/$(nsslibdir)/libnss_sss.so.2 + p11_child_LDADD = \ + libsss_debug.la \ ++ $(LTLIBINTL) \ + $(TALLOC_LIBS) \ + $(DHASH_LIBS) \ + $(POPT_LIBS) \ Modified: branches/2020Q4/security/sssd/files/patch-configure.ac ============================================================================== --- branches/2020Q4/security/sssd/files/patch-configure.ac Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-configure.ac Sat Dec 12 15:09:15 2020 (r557830) @@ -1,20 +1,13 @@ ---- configure.ac.orig 2014-09-17 13:01:37 UTC +diff --git configure.ac configure.ac +index 9df463d9c..17d0d9ea7 100644 +--- configure.ac +++ configure.ac -@@ -5,14 +5,14 @@ AC_INIT([sssd], - VERSION_NUMBER, - [sssd-devel@lists.fedorahosted.org]) +@@ -44,8 +44,6 @@ AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) + AC_CHECK_HEADERS(stdint.h dlfcn.h) + AC_CONFIG_HEADER(config.h) -+AC_CONFIG_SRCDIR([BUILD.txt]) -+AC_CONFIG_AUX_DIR([build]) -+ - m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], - [AC_USE_SYSTEM_EXTENSIONS], - [AC_GNU_SOURCE]) - - CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE" +-AC_CHECK_TYPES([errno_t], [], [], [[#include ]]) - --AC_CONFIG_SRCDIR([BUILD.txt]) --AC_CONFIG_AUX_DIR([build]) + m4_include([src/build_macros.m4]) + BUILD_WITH_SHARED_BUILD_DIR - AM_INIT_AUTOMAKE([-Wall foreign subdir-objects tar-pax]) - AM_PROG_CC_C_O Modified: branches/2020Q4/security/sssd/files/patch-src__confdb__confdb.c ============================================================================== --- branches/2020Q4/security/sssd/files/patch-src__confdb__confdb.c Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-src__confdb__confdb.c Sat Dec 12 15:09:15 2020 (r557830) @@ -1,4 +1,6 @@ ---- src/confdb/confdb.c.orig 2014-09-17 13:01:37 UTC +diff --git src/confdb/confdb.c src/confdb/confdb.c +index e55f88e4e..81fd3417a 100644 +--- src/confdb/confdb.c +++ src/confdb/confdb.c @@ -28,6 +28,11 @@ #include "util/strtonum.h" Modified: branches/2020Q4/security/sssd/files/patch-src__external__inotify.m4 ============================================================================== --- branches/2020Q4/security/sssd/files/patch-src__external__inotify.m4 Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-src__external__inotify.m4 Sat Dec 12 15:09:15 2020 (r557830) @@ -1,4 +1,6 @@ ---- src/external/inotify.m4.orig 2014-09-17 13:01:37 UTC +diff --git src/external/inotify.m4 src/external/inotify.m4 +index 3ae5ae314..e88bd3ffc 100644 +--- src/external/inotify.m4 +++ src/external/inotify.m4 @@ -20,10 +20,10 @@ int main () { AS_IF([test x"$inotify_works" != xyes], Modified: branches/2020Q4/security/sssd/files/patch-src__external__krb5.m4 ============================================================================== --- branches/2020Q4/security/sssd/files/patch-src__external__krb5.m4 Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-src__external__krb5.m4 Sat Dec 12 15:09:15 2020 (r557830) @@ -1,11 +1,13 @@ ---- src/external/krb5.m4.orig 2014-09-17 13:01:37 UTC +diff --git src/external/krb5.m4 src/external/krb5.m4 +index b844c2fbe..856ef56fe 100644 +--- src/external/krb5.m4 +++ src/external/krb5.m4 @@ -9,7 +9,7 @@ if test x$KRB5_CFLAGS != x; then KRB5_PASSED_CFLAGS=$KRB5_CFLAGS fi --AC_PATH_PROG(KRB5_CONFIG, krb5-config) -+AC_PATH_PROG(KRB5_CONFIG, krb5-config, [], [/usr/local/bin:$PATH]) +-AC_PATH_TOOL(KRB5_CONFIG, krb5-config) ++AC_PATH_TOOL(KRB5_CONFIG, krb5-config, [], [/usr/local/bin:$PATH]) AC_MSG_CHECKING(for working krb5-config) if test -x "$KRB5_CONFIG"; then KRB5_CFLAGS="`$KRB5_CONFIG --cflags`" Copied: branches/2020Q4/security/sssd/files/patch-src__external__ldap.m4 (from r555585, head/security/sssd/files/patch-src__external__ldap.m4) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__external__ldap.m4 Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__external__ldap.m4) @@ -0,0 +1,24 @@ +diff --git src/external/ldap.m4 src/external/ldap.m4 +index cd13fde62..73ca93674 100644 +--- src/external/ldap.m4 ++++ src/external/ldap.m4 +@@ -32,8 +32,7 @@ dnl Check for other libraries we need to link with to get the main routines. + test "$with_ldap" != "yes" && { AC_CHECK_LIB(ldap, ldap_open, [with_ldap=yes with_ldap_lber=yes], , -llber) } + test "$with_ldap" != "yes" && { AC_CHECK_LIB(ldap, ldap_open, [with_ldap=yes with_ldap_lber=yes with_ldap_krb=yes], , -llber -lkrb) } + test "$with_ldap" != "yes" && { AC_CHECK_LIB(ldap, ldap_open, [with_ldap=yes with_ldap_lber=yes with_ldap_krb=yes with_ldap_des=yes], , -llber -lkrb -ldes) } +-CFLAGS=$SAVE_CFLAGS +-LIBS=$SAVE_LIBS ++ + dnl Recently, we need -lber even though the main routines are elsewhere, + dnl because otherwise we get link errors w.r.t. ber_pvt_opt_on. So just + dnl check for that (it's a variable not a fun but that doesn't seem to +@@ -42,6 +41,9 @@ dnl stick it in always shouldn't hurt, I don't think) ... #### Someone who + dnl #### understands LDAP needs to fix this properly. + test "$with_ldap_lber" != "yes" && { AC_CHECK_LIB(lber, ber_pvt_opt_on, with_ldap_lber=yes) } + ++CFLAGS=$SAVE_CFLAGS ++LIBS=$SAVE_LIBS ++ + if test "$with_ldap" = "yes"; then + if test "$with_ldap_des" = "yes" ; then + OPENLDAP_LIBS="${OPENLDAP_LIBS} -ldes" Copied and modified: branches/2020Q4/security/sssd/files/patch-src__external__pac_responder.m4 (from r555585, head/security/sssd/files/patch-src__external__pac_responder.m4) ============================================================================== --- head/security/sssd/files/patch-src__external__pac_responder.m4 Tue Nov 17 20:42:16 2020 (r555585, copy source) +++ branches/2020Q4/security/sssd/files/patch-src__external__pac_responder.m4 Sat Dec 12 15:09:15 2020 (r557830) @@ -11,3 +11,13 @@ index dc986a1b8..09efdb139 100644 AC_MSG_CHECKING(for supported MIT krb5 version) KRB5_VERSION="`$KRB5_CONFIG --version`" case $KRB5_VERSION in +@@ -19,7 +19,8 @@ + Kerberos\ 5\ release\ 1.14* | \ + Kerberos\ 5\ release\ 1.15* | \ + Kerberos\ 5\ release\ 1.16* | \ +- Kerberos\ 5\ release\ 1.17*) ++ Kerberos\ 5\ release\ 1.17* | \ ++ Kerberos\ 5\ release\ 1.18*) + krb5_version_ok=yes + AC_MSG_RESULT([yes]) + ;; Copied: branches/2020Q4/security/sssd/files/patch-src__lib__winbind_idmap_sss__winbind_idmap_sss.h (from r555585, head/security/sssd/files/patch-src__lib__winbind_idmap_sss__winbind_idmap_sss.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__lib__winbind_idmap_sss__winbind_idmap_sss.h Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__lib__winbind_idmap_sss__winbind_idmap_sss.h) @@ -0,0 +1,13 @@ +diff --git src/lib/winbind_idmap_sss/winbind_idmap_sss.h src/lib/winbind_idmap_sss/winbind_idmap_sss.h +index 868049fff..cb1604ef1 100644 +--- src/lib/winbind_idmap_sss/winbind_idmap_sss.h ++++ src/lib/winbind_idmap_sss/winbind_idmap_sss.h +@@ -29,6 +29,8 @@ + #include + + #include ++#include ++#include + #include + #include + Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_common.c (from r555585, head/security/sssd/files/patch-src__providers__ad__ad_common.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_common.c Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__ad__ad_common.c) @@ -0,0 +1,31 @@ +diff --git src/providers/ad/ad_common.c src/providers/ad/ad_common.c +index 0d154ca57..407d37a37 100644 +--- src/providers/ad/ad_common.c ++++ src/providers/ad/ad_common.c +@@ -419,7 +419,7 @@ ad_get_common_options(TALLOC_CTX *mem_ctx, + char *server; + char *realm; + char *ad_hostname; +- char hostname[HOST_NAME_MAX + 1]; ++ char hostname[_POSIX_HOST_NAME_MAX + 1]; + char *case_sensitive_opt; + const char *opt_override; + +@@ -458,7 +458,7 @@ ad_get_common_options(TALLOC_CTX *mem_ctx, + */ + ad_hostname = dp_opt_get_string(opts->basic, AD_HOSTNAME); + if (ad_hostname == NULL) { +- gret = gethostname(hostname, sizeof(hostname)); ++ gret = gethostname(hostname, _POSIX_HOST_NAME_MAX); + if (gret != 0) { + ret = errno; + DEBUG(SSSDBG_FATAL_FAILURE, +@@ -466,7 +466,7 @@ ad_get_common_options(TALLOC_CTX *mem_ctx, + strerror(ret)); + goto done; + } +- hostname[HOST_NAME_MAX] = '\0'; ++ hostname[_POSIX_HOST_NAME_MAX] = '\0'; + DEBUG(SSSDBG_CONF_SETTINGS, + "Setting ad_hostname to [%s].\n", hostname); + ret = dp_opt_set_string(opts->basic, AD_HOSTNAME, hostname); Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_gpo_ndr.c (from r557829, head/security/sssd/files/patch-src__providers__ad__ad_gpo_ndr.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_gpo_ndr.c Sat Dec 12 15:09:15 2020 (r557830, copy of r557829, head/security/sssd/files/patch-src__providers__ad__ad_gpo_ndr.c) @@ -0,0 +1,29 @@ +--- src/providers/ad/ad_gpo_ndr.c-orig 2020-11-28 22:21:39.860006000 +0000 ++++ src/providers/ad/ad_gpo_ndr.c 2020-11-28 22:23:15.849602000 +0000 +@@ -105,7 +105,7 @@ + union security_ace_object_type *r) + { + uint32_t level; +- level = ndr_pull_get_switch_value(ndr, r); ++ level = ndr_token_peek(&ndr->switch_list, r); + NDR_PULL_CHECK_FLAGS(ndr, ndr_flags); + if (ndr_flags & NDR_SCALARS) { + NDR_CHECK(ndr_pull_union_align(ndr, 4)); +@@ -135,7 +135,7 @@ + union security_ace_object_inherited_type *r) + { + uint32_t level; +- level = ndr_pull_get_switch_value(ndr, r); ++ level = ndr_token_peek(&ndr->switch_list, r); + NDR_PULL_CHECK_FLAGS(ndr, ndr_flags); + if (ndr_flags & NDR_SCALARS) { + NDR_CHECK(ndr_pull_union_align(ndr, 4)); +@@ -198,7 +198,7 @@ + union security_ace_object_ctr *r) + { + uint32_t level; +- level = ndr_pull_get_switch_value(ndr, r); ++ level = ndr_token_peek(&ndr->switch_list, r); + NDR_PULL_CHECK_FLAGS(ndr, ndr_flags); + if (ndr_flags & NDR_SCALARS) { + NDR_CHECK(ndr_pull_union_align(ndr, 4)); Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_pac.h (from r555585, head/security/sssd/files/patch-src__providers__ad__ad_pac.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ad__ad_pac.h Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__ad__ad_pac.h) @@ -0,0 +1,13 @@ +diff --git src/providers/ad/ad_pac.h src/providers/ad/ad_pac.h +index 34f1e92c7..00a53cccd 100644 +--- src/providers/ad/ad_pac.h ++++ src/providers/ad/ad_pac.h +@@ -32,6 +32,8 @@ + #ifdef ldb_val + #error Please make sure to include ad_pac.h before ldb.h + #endif ++#include ++#include + #include + #include + #include Copied: branches/2020Q4/security/sssd/files/patch-src__providers__data_provider_fo.c (from r555585, head/security/sssd/files/patch-src__providers__data_provider_fo.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__data_provider_fo.c Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__data_provider_fo.c) @@ -0,0 +1,26 @@ +diff --git src/providers/data_provider_fo.c src/providers/data_provider_fo.c +index 473b667e5..63f2dd131 100644 +--- src/providers/data_provider_fo.c ++++ src/providers/data_provider_fo.c +@@ -235,18 +235,18 @@ errno_t be_fo_set_dns_srv_lookup_plugin(struct be_ctx *be_ctx, + const char *hostname) + { + struct fo_resolve_srv_dns_ctx *srv_ctx = NULL; +- char resolved_hostname[HOST_NAME_MAX + 1]; ++ char resolved_hostname[_POSIX_HOST_NAME_MAX + 1]; + errno_t ret; + + if (hostname == NULL) { +- ret = gethostname(resolved_hostname, sizeof(resolved_hostname)); ++ ret = gethostname(resolved_hostname, _POSIX_HOST_NAME_MAX); + if (ret != EOK) { + ret = errno; + DEBUG(SSSDBG_CRIT_FAILURE, + "gethostname() failed: [%d]: %s\n", ret, strerror(ret)); + return ret; + } +- resolved_hostname[HOST_NAME_MAX] = '\0'; ++ resolved_hostname[_POSIX_HOST_NAME_MAX] = '\0'; + hostname = resolved_hostname; + } + Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ipa__ipa_common.c (from r555585, head/security/sssd/files/patch-src__providers__ipa__ipa_common.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ipa__ipa_common.c Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__ipa__ipa_common.c) @@ -0,0 +1,30 @@ +diff --git src/providers/ipa/ipa_common.c src/providers/ipa/ipa_common.c +index 17d14e6b0..681ac8615 100644 +--- src/providers/ipa/ipa_common.c ++++ src/providers/ipa/ipa_common.c +@@ -49,7 +49,7 @@ int ipa_get_options(TALLOC_CTX *memctx, + char *realm; + char *ipa_hostname; + int ret; +- char hostname[HOST_NAME_MAX + 1]; ++ char hostname[_POSIX_HOST_NAME_MAX + 1]; + + opts = talloc_zero(memctx, struct ipa_options); + if (!opts) return ENOMEM; +@@ -79,14 +79,14 @@ int ipa_get_options(TALLOC_CTX *memctx, + + ipa_hostname = dp_opt_get_string(opts->basic, IPA_HOSTNAME); + if (ipa_hostname == NULL) { +- ret = gethostname(hostname, sizeof(hostname)); ++ ret = gethostname(hostname, _POSIX_HOST_NAME_MAX); + if (ret != EOK) { + DEBUG(SSSDBG_CRIT_FAILURE, "gethostname failed [%d][%s].\n", errno, + strerror(errno)); + ret = errno; + goto done; + } +- hostname[HOST_NAME_MAX] = '\0'; ++ hostname[_POSIX_HOST_NAME_MAX] = '\0'; + DEBUG(SSSDBG_TRACE_ALL, "Setting ipa_hostname to [%s].\n", hostname); + ret = dp_opt_set_string(opts->basic, IPA_HOSTNAME, hostname); + if (ret != EOK) { Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ipa__ipa_deskprofile_rules_util.c (from r555585, head/security/sssd/files/patch-src__providers__ipa__ipa_deskprofile_rules_util.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ipa__ipa_deskprofile_rules_util.c Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__ipa__ipa_deskprofile_rules_util.c) @@ -0,0 +1,13 @@ +diff --git src/providers/ipa/ipa_deskprofile_rules_util.c src/providers/ipa/ipa_deskprofile_rules_util.c +index 991c6053d..59483b452 100644 +--- src/providers/ipa/ipa_deskprofile_rules_util.c ++++ src/providers/ipa/ipa_deskprofile_rules_util.c +@@ -25,6 +25,8 @@ + #include "providers/ipa/ipa_rules_common.h" + #include + #include ++#include ++#include + + #define DESKPROFILE_GLOBAL_POLICY_MIN_VALUE 1 + #define DESKPROFILE_GLOBAL_POLICY_MAX_VALUE 24 Modified: branches/2020Q4/security/sssd/files/patch-src__providers__krb5__krb5_delayed_online_authentication.c ============================================================================== --- branches/2020Q4/security/sssd/files/patch-src__providers__krb5__krb5_delayed_online_authentication.c Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-src__providers__krb5__krb5_delayed_online_authentication.c Sat Dec 12 15:09:15 2020 (r557830) @@ -1,6 +1,8 @@ ---- src/providers/krb5/krb5_delayed_online_authentication.c.orig 2014-09-17 13:01:37 UTC +diff --git src/providers/krb5/krb5_delayed_online_authentication.c src/providers/krb5/krb5_delayed_online_authentication.c +index 1cb7eade0..4aaeb84b2 100644 +--- src/providers/krb5/krb5_delayed_online_authentication.c +++ src/providers/krb5/krb5_delayed_online_authentication.c -@@ -320,6 +320,7 @@ errno_t init_delayed_online_authentication(struct krb5 +@@ -328,6 +328,7 @@ errno_t init_delayed_online_authentication(struct krb5_ctx *krb5_ctx, struct tevent_context *ev) { int ret; @@ -8,7 +10,7 @@ hash_table_t *tmp_table; ret = get_uid_table(krb5_ctx, &tmp_table); -@@ -339,6 +340,7 @@ errno_t init_delayed_online_authentication(struct krb5 +@@ -347,6 +348,7 @@ errno_t init_delayed_online_authentication(struct krb5_ctx *krb5_ctx, "hash_destroy failed [%s].\n", hash_error_string(ret)); return EFAULT; } Modified: branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_auth.c ============================================================================== --- branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_auth.c Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_auth.c Sat Dec 12 15:09:15 2020 (r557830) @@ -1,4 +1,6 @@ ---- src/providers/ldap/ldap_auth.c.orig 2014-09-17 13:01:37 UTC +diff --git src/providers/ldap/ldap_auth.c src/providers/ldap/ldap_auth.c +index de22689ae..fdfd67cf4 100644 +--- src/providers/ldap/ldap_auth.c +++ src/providers/ldap/ldap_auth.c @@ -37,7 +37,6 @@ #include @@ -8,10 +10,10 @@ #include #include "util/util.h" -@@ -56,6 +55,22 @@ enum pwexpire { - PWEXPIRE_SHADOW - }; +@@ -52,6 +51,22 @@ + #define LDAP_PWEXPIRE_WARNING_TIME 0 + +struct spwd +{ + char *sp_namp; /* Login name. */ @@ -31,20 +33,9 @@ static errno_t add_expired_warning(struct pam_data *pd, long exp_time) { int ret; -@@ -109,6 +124,7 @@ static errno_t check_pwexpire_kerberos(const char *exp - return EINVAL; +@@ -97,9 +112,9 @@ static errno_t check_pwexpire_kerberos(const char *expire_date, time_t now, } -+ tzset(); - expire_time = mktime(&tm); - if (expire_time == -1) { - DEBUG(SSSDBG_CRIT_FAILURE, -@@ -116,12 +132,10 @@ static errno_t check_pwexpire_kerberos(const char *exp - return EINVAL; - } - -- tzset(); -- expire_time -= timezone; DEBUG(SSSDBG_TRACE_ALL, - "Time info: tzname[0] [%s] tzname[1] [%s] timezone [%ld] " - "daylight [%d] now [%ld] expire_time [%ld].\n", tzname[0], @@ -55,7 +46,59 @@ if (difftime(now, expire_time) > 0.0) { DEBUG(SSSDBG_CONF_SETTINGS, "Kerberos password expired.\n"); -@@ -924,7 +938,7 @@ void sdap_pam_chpass_handler(struct be_req *breq) +@@ -946,14 +961,14 @@ sdap_pam_auth_handler_send(TALLOC_CTX *mem_ctx, + + state->pd = pd; + state->be_ctx = params->be_ctx; +- pd->pam_status = PAM_SYSTEM_ERR; ++ pd->pam_status = PAM_SERVICE_ERR; + + switch (pd->cmd) { + case SSS_PAM_AUTHENTICATE: + subreq = auth_send(state, params->ev, auth_ctx, + pd->user, pd->authtok, false); + if (subreq == NULL) { +- pd->pam_status = PAM_SYSTEM_ERR; ++ pd->pam_status = PAM_SERVICE_ERR; + goto immediately; + } + +@@ -963,14 +978,14 @@ sdap_pam_auth_handler_send(TALLOC_CTX *mem_ctx, + subreq = auth_send(state, params->ev, auth_ctx, + pd->user, pd->authtok, true); + if (subreq == NULL) { +- pd->pam_status = PAM_SYSTEM_ERR; ++ pd->pam_status = PAM_SERVICE_ERR; + goto immediately; + } + + tevent_req_set_callback(subreq, sdap_pam_auth_handler_done, req); + break; + case SSS_PAM_CHAUTHTOK: +- pd->pam_status = PAM_SYSTEM_ERR; ++ pd->pam_status = PAM_SERVICE_ERR; + goto immediately; + + case SSS_PAM_ACCT_MGMT: +@@ -1015,7 +1030,7 @@ static void sdap_pam_auth_handler_done(struct tevent_req *subreq) + state->be_ctx->domain->pwd_expiration_warning); + if (ret == EINVAL) { + /* Unknown password expiration type. */ +- state->pd->pam_status = PAM_SYSTEM_ERR; ++ state->pd->pam_status = PAM_SERVICE_ERR; + goto done; + } + } +@@ -1049,7 +1064,7 @@ static void sdap_pam_auth_handler_done(struct tevent_req *subreq) + state->pd->pam_status = PAM_BAD_ITEM; + break; + default: +- state->pd->pam_status = PAM_SYSTEM_ERR; ++ state->pd->pam_status = PAM_SERVICE_ERR; + break; + } + +@@ -1271,7 +1286,7 @@ sdap_pam_chpass_handler_send(TALLOC_CTX *mem_ctx, DEBUG(SSSDBG_OP_FAILURE, "starting password change request for user [%s].\n", pd->user); @@ -64,16 +107,61 @@ if (pd->cmd != SSS_PAM_CHAUTHTOK && pd->cmd != SSS_PAM_CHAUTHTOK_PRELIM) { DEBUG(SSSDBG_OP_FAILURE, -@@ -1069,7 +1083,7 @@ static void sdap_auth4chpass_done(struct tevent_req *r - dp_err = DP_ERR_OFFLINE; +@@ -1282,7 +1297,7 @@ sdap_pam_chpass_handler_send(TALLOC_CTX *mem_ctx, + subreq = auth_send(state, params->ev, auth_ctx, + pd->user, pd->authtok, true); + if (subreq == NULL) { +- pd->pam_status = PAM_SYSTEM_ERR; ++ pd->pam_status = PAM_SERVICE_ERR; + goto immediately; + } + +@@ -1335,7 +1350,7 @@ static void sdap_pam_chpass_handler_auth_done(struct tevent_req *subreq) + if (ret == ERR_PASSWORD_EXPIRED) { + DEBUG(SSSDBG_CRIT_FAILURE, "LDAP provider cannot change " + "kerberos passwords.\n"); +- state->pd->pam_status = PAM_SYSTEM_ERR; ++ state->pd->pam_status = PAM_SERVICE_ERR; + goto done; + } + break; +@@ -1344,7 +1359,7 @@ static void sdap_pam_chpass_handler_auth_done(struct tevent_req *subreq) + break; + default: + DEBUG(SSSDBG_CRIT_FAILURE, "Unknown password expiration type.\n"); +- state->pd->pam_status = PAM_SYSTEM_ERR; ++ state->pd->pam_status = PAM_SERVICE_ERR; + goto done; + } + } +@@ -1369,7 +1384,7 @@ static void sdap_pam_chpass_handler_auth_done(struct tevent_req *subreq) + if (subreq == NULL) { + DEBUG(SSSDBG_OP_FAILURE, "Failed to change password for " + "%s\n", state->pd->user); +- state->pd->pam_status = PAM_SYSTEM_ERR; ++ state->pd->pam_status = PAM_SERVICE_ERR; + goto done; + } + +@@ -1401,7 +1416,7 @@ static void sdap_pam_chpass_handler_auth_done(struct tevent_req *subreq) + be_mark_offline(state->be_ctx); + break; + default: +- state->pd->pam_status = PAM_SYSTEM_ERR; ++ state->pd->pam_status = PAM_SERVICE_ERR; + break; + } + +@@ -1437,7 +1452,7 @@ static void sdap_pam_chpass_handler_chpass_done(struct tevent_req *subreq) + state->pd->pam_status = PAM_AUTHTOK_ERR; break; default: - state->pd->pam_status = PAM_SYSTEM_ERR; + state->pd->pam_status = PAM_SERVICE_ERR; + break; } - done: -@@ -1131,7 +1145,7 @@ static void sdap_pam_chpass_done(struct tevent_req *re +@@ -1463,7 +1478,7 @@ static void sdap_pam_chpass_handler_chpass_done(struct tevent_req *subreq) state->sh, state->dn, lastchanged_name); if (subreq == NULL) { @@ -82,30 +170,12 @@ goto done; } -@@ -1152,7 +1166,7 @@ static void sdap_lastchange_done(struct tevent_req *re +@@ -1489,7 +1504,7 @@ static void sdap_pam_chpass_handler_last_done(struct tevent_req *subreq) + talloc_free(subreq); - ret = sdap_modify_shadow_lastchange_recv(req); if (ret != EOK) { - state->pd->pam_status = PAM_SYSTEM_ERR; + state->pd->pam_status = PAM_SERVICE_ERR; goto done; - } - -@@ -1193,7 +1207,7 @@ void sdap_pam_auth_handler(struct be_req *breq) - goto done; - } - -- pd->pam_status = PAM_SYSTEM_ERR; -+ pd->pam_status = PAM_SERVICE_ERR; - - switch (pd->cmd) { - case SSS_PAM_AUTHENTICATE: -@@ -1291,7 +1305,7 @@ static void sdap_pam_auth_done(struct tevent_req *req) - state->pd->pam_status = PAM_NEW_AUTHTOK_REQD; - break; - default: -- state->pd->pam_status = PAM_SYSTEM_ERR; -+ state->pd->pam_status = PAM_SERVICE_ERR; - dp_err = DP_ERR_FATAL; } Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_child.c (from r555585, head/security/sssd/files/patch-src__providers__ldap__ldap_child.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ldap__ldap_child.c Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__ldap__ldap_child.c) @@ -0,0 +1,22 @@ +diff --git src/providers/ldap/ldap_child.c src/providers/ldap/ldap_child.c +index 368bb91e1..1bc86ecb5 100644 +--- src/providers/ldap/ldap_child.c ++++ src/providers/ldap/ldap_child.c +@@ -324,14 +324,14 @@ static krb5_error_code ldap_child_get_tgt_sync(TALLOC_CTX *memctx, + full_princ = talloc_strdup(tmp_ctx, princ_str); + } + } else { +- char hostname[HOST_NAME_MAX + 1]; ++ char hostname[_POSIX_HOST_NAME_MAX + 1]; + +- ret = gethostname(hostname, sizeof(hostname)); ++ ret = gethostname(hostname, _POSIX_HOST_NAME_MAX); + if (ret == -1) { + krberr = KRB5KRB_ERR_GENERIC; + goto done; + } +- hostname[HOST_NAME_MAX] = '\0'; ++ hostname[_POSIX_HOST_NAME_MAX] = '\0'; + + DEBUG(SSSDBG_TRACE_LIBS, "got hostname: [%s]\n", hostname); + Modified: branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_access.c ============================================================================== --- branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_access.c Sat Dec 12 14:56:47 2020 (r557829) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_access.c Sat Dec 12 15:09:15 2020 (r557830) @@ -1,19 +1,9 @@ ---- src/providers/ldap/sdap_access.c.orig 2014-09-17 13:01:37 UTC +diff --git src/providers/ldap/sdap_access.c src/providers/ldap/sdap_access.c +index dd04ec512..58a3766fc 100644 +--- src/providers/ldap/sdap_access.c +++ src/providers/ldap/sdap_access.c -@@ -499,6 +499,7 @@ static bool nds_check_expired(const char *exp_time_str - return true; - } +@@ -562,9 +562,9 @@ bool nds_check_expired(const char *exp_time_str) -+ tzset(); - expire_time = mktime(&tm); - if (expire_time == -1) { - DEBUG(SSSDBG_CRIT_FAILURE, -@@ -506,13 +507,11 @@ static bool nds_check_expired(const char *exp_time_str - return true; - } - -- tzset(); -- expire_time -= timezone; now = time(NULL); DEBUG(SSSDBG_TRACE_ALL, - "Time info: tzname[0] [%s] tzname[1] [%s] timezone [%ld] " @@ -25,3 +15,27 @@ if (difftime(now, expire_time) > 0.0) { DEBUG(SSSDBG_CONF_SETTINGS, "NDS account expired.\n"); +@@ -1247,7 +1247,7 @@ static errno_t sdap_access_host(struct ldb_message *user_entry) + struct ldb_message_element *el; + unsigned int i; + char *host; +- char hostname[HOST_NAME_MAX + 1]; ++ char hostname[_POSIX_HOST_NAME_MAX + 1]; + + el = ldb_msg_find_element(user_entry, SYSDB_AUTHORIZED_HOST); + if (!el || el->num_values == 0) { +@@ -1255,12 +1255,12 @@ static errno_t sdap_access_host(struct ldb_message *user_entry) + return ERR_ACCESS_DENIED; + } + +- if (gethostname(hostname, sizeof(hostname)) == -1) { ++ if (gethostname(hostname, _POSIX_HOST_NAME_MAX) == -1) { + DEBUG(SSSDBG_CRIT_FAILURE, + "Unable to get system hostname. Access denied\n"); + return ERR_ACCESS_DENIED; + } +- hostname[HOST_NAME_MAX] = '\0'; ++ hostname[_POSIX_HOST_NAME_MAX] = '\0'; + + /* FIXME: PADL's pam_ldap also calls gethostbyname() on the hostname + * in some attempt to get aliases and/or FQDN for the machine. Copied: branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_groups.c (from r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_groups.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/sssd/files/patch-src__providers__ldap__sdap_async_groups.c Sat Dec 12 15:09:15 2020 (r557830, copy of r555585, head/security/sssd/files/patch-src__providers__ldap__sdap_async_groups.c) @@ -0,0 +1,22 @@ +diff --git src/providers/ldap/sdap_async_groups.c src/providers/ldap/sdap_async_groups.c +index 09e15bc3d..c74e4c3ea 100644 +--- src/providers/ldap/sdap_async_groups.c *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-branches@freebsd.org Sat Dec 12 16:58:25 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 790094BA0F5; Sat, 12 Dec 2020 16:58:25 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CtYkn31Htz3P9P; Sat, 12 Dec 2020 16:58:25 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59EB1208BE; Sat, 12 Dec 2020 16:58:25 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BCGwPYY011841; Sat, 12 Dec 2020 16:58:25 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BCGwOZf011839; Sat, 12 Dec 2020 16:58:24 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <202012121658.0BCGwOZf011839@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sat, 12 Dec 2020 16:58:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557837 - branches/2020Q4/dns/unbound X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: branches/2020Q4/dns/unbound X-SVN-Commit-Revision: 557837 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.34 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, 12 Dec 2020 16:58:25 -0000 Author: brnrd Date: Sat Dec 12 16:58:24 2020 New Revision: 557837 URL: https://svnweb.freebsd.org/changeset/ports/557837 Log: MFH: r552135 r557836 * Don't change default options on 2020Q4 dns/unbound: Update to 1.12.0 PR: 250199 Submitted by: maintainer Sponsored by: Rubicon Communications, LLC (Netgate) dns/unbound: Security update to 1.13.0 * Sort options and port_docs while here PR: 251563 Submitted by: Jaap Akkerhuis (maintainer) Approved by: maintainer (implicit) Security: 388ebb5b-3c95-11eb-929d-d4c9ef517024 Approved by: ports-secteam (implicit) Modified: branches/2020Q4/dns/unbound/Makefile branches/2020Q4/dns/unbound/distinfo branches/2020Q4/dns/unbound/pkg-plist Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/dns/unbound/Makefile ============================================================================== --- branches/2020Q4/dns/unbound/Makefile Sat Dec 12 16:54:41 2020 (r557836) +++ branches/2020Q4/dns/unbound/Makefile Sat Dec 12 16:58:24 2020 (r557837) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= unbound -PORTVERSION= 1.11.0 +PORTVERSION= 1.13.0 CATEGORIES= dns MASTER_SITES= https://www.nlnetlabs.nl/downloads/unbound/ \ https://distfiles.crux.guru/ @@ -28,15 +28,17 @@ GROUPS= ${PORTNAME} USE_RC_SUBR= unbound -PORTDOCS= CREDITS Changelog FEATURES LICENSE README README.svn \ - README.tests TODO control_proto_spec.txt ietf67-design-02.odp \ +PORTDOCS= CNAME-basedRedirectionDesignNotes.pdf CREDITS Changelog \ + FEATURES IP-BasedActions.pdf LICENSE README README.DNS64 \ + README.ipset.md README.svn README.tests TODO \ + control_proto_spec.txt example.conf ietf67-design-02.odp \ ietf67-design-02.pdf requirements.txt OPTIONS_SUB= yes -OPTIONS_DEFINE= THREADS PYTHON GOST ECDSA MUNIN_PLUGIN DOCS LIBEVENT \ - FILTER_AAAA DNSTAP DNSCRYPT SUBNET EVAPI TFOCL TFOSE \ - HIREDIS -OPTIONS_DEFAULT=THREADS ECDSA LIBEVENT GOST +OPTIONS_DEFINE= DNSCRYPT DNSTAP DOCS DOH ECDSA EVAPI FILTER_AAAA GOST \ + HIREDIS LIBEVENT MUNIN_PLUGIN PYTHON SUBNET TFOCL TFOSE \ + THREADS +OPTIONS_DEFAULT=ECDSA GOST LIBEVENT THREADS LIBEVENT_DESC= Build against libevent GOST_DESC= Enable GOST support (requires OpenSSL >= 1.0) @@ -50,6 +52,7 @@ EVAPI_DESC= (Experimental) pluggable event based libun TFOCL_DESC= Enable TCP Fast Open for client mode TFOSE_DESC= Enable TCP Fast Open for server mode HIREDIS_DESC= Enable hiredis support for the cachedb module +DOH_DESC= Enable DNS-over-HTTPS supports STRIP_FILES= .libs/libunbound.so unbound-checkconf unbound \ unbound-control .libs/unbound-host .libs/unbound-anchor @@ -81,6 +84,8 @@ PYTHON_VARS= STRIP_FILES+=.libs/_unbound.so THREADS_CONFIGURE_WITH= pthreads HIREDIS_CONFIGURE_ON= --enable-cachedb --with-libhiredis HIREDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis +DOH_CONFIGURE_ON= --with-libnghttp2 +DOH_LIB_DEPENDS= libnghttp2.so:www/libnghttp2 post-patch: @${RM} ${WRKSRC}/util/configlexer.c Modified: branches/2020Q4/dns/unbound/distinfo ============================================================================== --- branches/2020Q4/dns/unbound/distinfo Sat Dec 12 16:54:41 2020 (r557836) +++ branches/2020Q4/dns/unbound/distinfo Sat Dec 12 16:58:24 2020 (r557837) @@ -1,3 +1,3 @@ -TIMESTAMP = 1595844570 -SHA256 (unbound-1.11.0.tar.gz) = 9f2f0798f76eb8f30feaeda7e442ceed479bc54db0e3ac19c052d68685e51ef7 -SIZE (unbound-1.11.0.tar.gz) = 5900967 +TIMESTAMP = 1607786765 +SHA256 (unbound-1.13.0.tar.gz) = a954043a95b0326ca4037e50dace1f3a207a0a19e9a4a22f4c6718fc623db2a1 +SIZE (unbound-1.13.0.tar.gz) = 5950063 Modified: branches/2020Q4/dns/unbound/pkg-plist ============================================================================== --- branches/2020Q4/dns/unbound/pkg-plist Sat Dec 12 16:54:41 2020 (r557836) +++ branches/2020Q4/dns/unbound/pkg-plist Sat Dec 12 16:58:24 2020 (r557837) @@ -5,7 +5,7 @@ libdata/pkgconfig/libunbound.pc lib/libunbound.a lib/libunbound.so lib/libunbound.so.8 -lib/libunbound.so.8.1.9 +lib/libunbound.so.8.1.11 %%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/unbound.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/unboundmodule.py From owner-svn-ports-branches@freebsd.org Sat Dec 12 17:06:30 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 840E24BAB0F; Sat, 12 Dec 2020 17:06:30 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CtYw63Lqdz3QCF; Sat, 12 Dec 2020 17:06:30 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65C1520858; Sat, 12 Dec 2020 17:06:30 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BCH6UrT019765; Sat, 12 Dec 2020 17:06:30 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BCH6U6C019764; Sat, 12 Dec 2020 17:06:30 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <202012121706.0BCH6U6C019764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sat, 12 Dec 2020 17:06:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557840 - branches/2020Q4 X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: branches/2020Q4 X-SVN-Commit-Revision: 557840 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.34 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, 12 Dec 2020 17:06:30 -0000 Author: brnrd Date: Sat Dec 12 17:06:29 2020 New Revision: 557840 URL: https://svnweb.freebsd.org/changeset/ports/557840 Log: MFH: r551720 r557837 dns/nsd: update 4.3.2 -> 4.3.3 This release contains the DNS Flag Day 2020 fixes. This sets the default EDNS buffer size to 1232, that should reduce fragmentation. https://dnsflagday.net/2020/ There is a new feature where it is possible to list an interface by name. This pulls in the IP addresses associated with the interface at server start. FEATURES: - Follow DNS flag day 2020 advice and set default EDNS message size to 1232. - Merged PR #113 with fixes. Instead of listing an IP-address to listen on, an interface name can be specified in nsd.conf, with ip-address: eth0. The IP-addresses for that interface are then used. - Port TSIG code for openssl 3.0.0-alpha6. BUG FIXES: - Fix make install with --with-pidfile="". - Merge #115 from millert: Fix strlcpy() usage. From OpenBSD. - Merge #117: mini_event.h (4.3.2 and 4.3.1) on OpenBSD cannot find fd_set - patch. - Fix that configure checks for EVP_sha256 to detect openssl, because HMAC_CTX_new is deprecated in 3.0.0. - Fix #119: fix compile warnings from new gcc. - Fix #119: warn when trying to parse a directory. - Merge PR #121: Increase log level of recreated database from WARNING to ERR. - Remove unused space from LIBS on link line. - Updated date in nsd -v output. PR: 250203 Submitted by: Jaap Akkerhuis (maintainer) Relnotes: https://www.nlnetlabs.nl/news/2020/Oct/08/nsd-4.3.3-released/ Approved by: ports-secteam (blanket) Modified: Directory Properties: branches/2020Q4/ (props changed) From owner-svn-ports-branches@freebsd.org Sat Dec 12 17:09:24 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8F2B04BA853; Sat, 12 Dec 2020 17:09:24 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CtYzS3fPTz3QMk; Sat, 12 Dec 2020 17:09:24 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 700C020D19; Sat, 12 Dec 2020 17:09:24 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BCH9OIA020168; Sat, 12 Dec 2020 17:09:24 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BCH9Ovm020167; Sat, 12 Dec 2020 17:09:24 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <202012121709.0BCH9Ovm020167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sat, 12 Dec 2020 17:09:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r557841 - branches/2020Q4/dns/nsd X-SVN-Group: ports-branches X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: branches/2020Q4/dns/nsd X-SVN-Commit-Revision: 557841 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.34 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, 12 Dec 2020 17:09:24 -0000 Author: brnrd Date: Sat Dec 12 17:09:23 2020 New Revision: 557841 URL: https://svnweb.freebsd.org/changeset/ports/557841 Log: MFH: r557838 dns/nsd: Security update to 4.3.4 PR: 251530 Submitted by: Jaap Akkerhuis (maintainer) Approved by: maintainer (implicit) Security: 388ebb5b-3c95-11eb-929d-d4c9ef517024 Modified: branches/2020Q4/dns/nsd/Makefile branches/2020Q4/dns/nsd/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/dns/nsd/Makefile ============================================================================== --- branches/2020Q4/dns/nsd/Makefile Sat Dec 12 17:06:29 2020 (r557840) +++ branches/2020Q4/dns/nsd/Makefile Sat Dec 12 17:09:23 2020 (r557841) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nsd -PORTVERSION= 4.3.3 +PORTVERSION= 4.3.4 CATEGORIES= dns MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ Modified: branches/2020Q4/dns/nsd/distinfo ============================================================================== --- branches/2020Q4/dns/nsd/distinfo Sat Dec 12 17:06:29 2020 (r557840) +++ branches/2020Q4/dns/nsd/distinfo Sat Dec 12 17:09:23 2020 (r557841) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602177809 -SHA256 (nsd-4.3.3.tar.gz) = 5fc6d81a977c0246b741da691acaab5c62830a8b38ce696021c26f372d8eed51 -SIZE (nsd-4.3.3.tar.gz) = 1181082 +TIMESTAMP = 1606826936 +SHA256 (nsd-4.3.4.tar.gz) = 3be834a97151a7ba8185e46bc37ff12c2f25f399755ae8a2d0e3711801528b50 +SIZE (nsd-4.3.4.tar.gz) = 1182467