From owner-svn-ports-branches@freebsd.org Sun Sep 15 02:52:23 2019 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 09E14DBE6F; Sun, 15 Sep 2019 02:52:23 +0000 (UTC) (envelope-from jgh@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) server-signature RSA-PSS (4096 bits) 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 46WDS66XD2z3MHn; Sun, 15 Sep 2019 02:52:22 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C4FE119A6; Sun, 15 Sep 2019 02:52:22 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8F2qM4q018520; Sun, 15 Sep 2019 02:52:22 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8F2qMv1018517; Sun, 15 Sep 2019 02:52:22 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201909150252.x8F2qMv1018517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Sun, 15 Sep 2019 02:52:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512087 - branches/2019Q3/sysutils/zfs-replicate X-SVN-Group: ports-branches X-SVN-Commit-Author: jgh X-SVN-Commit-Paths: branches/2019Q3/sysutils/zfs-replicate X-SVN-Commit-Revision: 512087 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.29 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, 15 Sep 2019 02:52:23 -0000 Author: jgh Date: Sun Sep 15 02:52:21 2019 New Revision: 512087 URL: https://svnweb.freebsd.org/changeset/ports/512087 Log: MFH: r512086 - update to 0.7_2 - code shift to github - update WWW along with pkg-descr - support docs and examples PR: 207244 Reported by: lapo@lapo.it, w.schwarzenfeld@utanet.at (WWW) Approved by: ports-secteam (with hat) Modified: branches/2019Q3/sysutils/zfs-replicate/Makefile branches/2019Q3/sysutils/zfs-replicate/distinfo branches/2019Q3/sysutils/zfs-replicate/pkg-descr Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/sysutils/zfs-replicate/Makefile ============================================================================== --- branches/2019Q3/sysutils/zfs-replicate/Makefile Sun Sep 15 02:46:36 2019 (r512086) +++ branches/2019Q3/sysutils/zfs-replicate/Makefile Sun Sep 15 02:52:21 2019 (r512087) @@ -3,30 +3,46 @@ PORTNAME= zfs-replicate PORTVERSION= 0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils -MASTER_SITES= http://blogs.sun.com/constantin/resource/ -DISTNAME= ${PORTNAME}_v${PORTVERSION} MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= ZFS Snapshot Replication Script -RUN_DEPENDS= ksh:shells/pdksh +RUN_DEPENDS= bash:shells/bash -NO_WRKSUBDIR= yes +USES= shebangfix + NO_BUILD= yes -USES= tar:bzip2 +NO_ARCH= yes -PLIST_FILES= sbin/zfs-replicate +OPTIONS_DEFINE= DOCS EXAMPLES -do-patch: - @${REINPLACE_CMD} -e 's|^#!/bin/ksh|#!${PREFIX}/bin/ksh|g' \ - ${WRKSRC}/zfs-replicate_v${PORTVERSION} - @${REINPLACE_CMD} -e 's|/usr/sbin/zfs|/sbin/zfs|g' \ - ${WRKSRC}/zfs-replicate_v${PORTVERSION} +SHEBANG_FILES= zfs-replicate.sh +PORTDOCS= README.md +PORTDATA= config.sample.sh + +USE_GITHUB= yes +GH_ACCOUNT= leprechau +GH_TAGNAME= 17bf8fb + +PLIST_FILES= sbin/zfs-replicate + do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/zfs-replicate_v${PORTVERSION} \ + ${INSTALL_SCRIPT} ${WRKSRC}/zfs-replicate.sh \ ${STAGEDIR}${PREFIX}/sbin/zfs-replicate + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for file in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} +.endfor + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${DATADIR} +.for data in ${PORTDATA} + ${INSTALL_DATA} ${WRKSRC}/${data} ${STAGEDIR}${DATADIR} +.endfor .include Modified: branches/2019Q3/sysutils/zfs-replicate/distinfo ============================================================================== --- branches/2019Q3/sysutils/zfs-replicate/distinfo Sun Sep 15 02:46:36 2019 (r512086) +++ branches/2019Q3/sysutils/zfs-replicate/distinfo Sun Sep 15 02:52:21 2019 (r512087) @@ -1,2 +1,3 @@ -SHA256 (zfs-replicate_v0.7.tar.bz2) = 4ecd8ae205e90294bc5d0f2d56dfcc375499901f025e2e1926628c4e01ccd41e -SIZE (zfs-replicate_v0.7.tar.bz2) = 4020 +TIMESTAMP = 1567786202 +SHA256 (leprechau-zfs-replicate-0.7-17bf8fb_GH0.tar.gz) = a9c9f948abae7e7490ae69711946b63e7483cdab43709e92c0b495cbdfef3f9f +SIZE (leprechau-zfs-replicate-0.7-17bf8fb_GH0.tar.gz) = 5497 Modified: branches/2019Q3/sysutils/zfs-replicate/pkg-descr ============================================================================== --- branches/2019Q3/sysutils/zfs-replicate/pkg-descr Sun Sep 15 02:46:36 2019 (r512086) +++ branches/2019Q3/sysutils/zfs-replicate/pkg-descr Sun Sep 15 02:52:21 2019 (r512087) @@ -1,4 +1,4 @@ -zfs-replicate makes migrating a few filesystems and many -snapshots to a new zpool more easier. +Simple script to replicate zfs volumes between hosts +(or between pools on the same host) via incremental snapshots. -WWW: https://blogs.oracle.com/constantin/entry/useful_zfs_snapshot_replicator_script +WWW: https://github.com/leprechau/zfs-replicate From owner-svn-ports-branches@freebsd.org Sun Sep 15 09:57:34 2019 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 624B9E8E8A; Sun, 15 Sep 2019 09:57:34 +0000 (UTC) (envelope-from pi@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) server-signature RSA-PSS (4096 bits) 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 46WPtk1ycSz4BgG; Sun, 15 Sep 2019 09:57:34 +0000 (UTC) (envelope-from pi@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 0F2F367E1; Sun, 15 Sep 2019 09:57:34 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8F9vXC3065592; Sun, 15 Sep 2019 09:57:33 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8F9vXdo065589; Sun, 15 Sep 2019 09:57:33 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909150957.x8F9vXdo065589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 15 Sep 2019 09:57:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512094 - in branches/2019Q3/mail/opendmarc: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in branches/2019Q3/mail/opendmarc: . files X-SVN-Commit-Revision: 512094 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.29 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, 15 Sep 2019 09:57:34 -0000 Author: pi Date: Sun Sep 15 09:57:33 2019 New Revision: 512094 URL: https://svnweb.freebsd.org/changeset/ports/512094 Log: MFH: r512093 mail/opendmarc: fix multiple addresses in From vulnerability - please note that it might only be a partial fix, see https://github.com/trusteddomainproject/OpenDMARC/pull/48#issuecomment-530375590 PR: 240505 Reported by: protonmail Approved by: ports-secteam (delphij) Obtained from: https://github.com/trusteddomainproject/OpenDMARC/pull/48 Security: https://protonmail.com/blog/bellingcat-cyberattack-phishing/ Added: branches/2019Q3/mail/opendmarc/files/patch-libopendmarc_tests_test__finddomain.c - copied unchanged from r512093, head/mail/opendmarc/files/patch-libopendmarc_tests_test__finddomain.c branches/2019Q3/mail/opendmarc/files/patch-opendmarc_opendmarc.c - copied unchanged from r512093, head/mail/opendmarc/files/patch-opendmarc_opendmarc.c Modified: branches/2019Q3/mail/opendmarc/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/mail/opendmarc/Makefile ============================================================================== --- branches/2019Q3/mail/opendmarc/Makefile Sun Sep 15 09:51:20 2019 (r512093) +++ branches/2019Q3/mail/opendmarc/Makefile Sun Sep 15 09:57:33 2019 (r512094) @@ -3,7 +3,7 @@ PORTNAME= opendmarc PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail security MASTER_SITES= SF/${PORTNAME} \ SF/${PORTNAME}/Previous%20Releases Copied: branches/2019Q3/mail/opendmarc/files/patch-libopendmarc_tests_test__finddomain.c (from r512093, head/mail/opendmarc/files/patch-libopendmarc_tests_test__finddomain.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/mail/opendmarc/files/patch-libopendmarc_tests_test__finddomain.c Sun Sep 15 09:57:33 2019 (r512094, copy of r512093, head/mail/opendmarc/files/patch-libopendmarc_tests_test__finddomain.c) @@ -0,0 +1,10 @@ +--- libopendmarc/tests/test_finddomain.c.orig 2012-10-25 15:38:55 UTC ++++ libopendmarc/tests/test_finddomain.c +@@ -23,6 +23,7 @@ main(int argc, char **argv) + /* 11 */ {"(,) joe@joe.com", "joe.com"}, + /* 12 */ {"\"( bob@bob.com)\" joe@joe.com", "joe.com"}, + /* 12 */ {"From: Davide D'Marco ", "blah.com"}, ++ /* 13 */ {"blah.com>", "blah.com"}, + {NULL, NULL}, + }; + u_char dbuf[256]; Copied: branches/2019Q3/mail/opendmarc/files/patch-opendmarc_opendmarc.c (from r512093, head/mail/opendmarc/files/patch-opendmarc_opendmarc.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/mail/opendmarc/files/patch-opendmarc_opendmarc.c Sun Sep 15 09:57:33 2019 (r512094, copy of r512093, head/mail/opendmarc/files/patch-opendmarc_opendmarc.c) @@ -0,0 +1,11 @@ +--- opendmarc/opendmarc.c.orig 2017-03-04 13:28:39 UTC ++++ opendmarc/opendmarc.c +@@ -2193,7 +2193,7 @@ mlfi_eom(SMFICTX *ctx) + strncpy(dfc->mctx_fromdomain, domain, sizeof dfc->mctx_fromdomain - 1); + + ostatus = opendmarc_policy_store_from_domain(cc->cctx_dmarc, +- from->hdr_value); ++ dfc->mctx_fromdomain); + if (ostatus != DMARC_PARSE_OKAY) + { + if (conf->conf_dolog) From owner-svn-ports-branches@freebsd.org Mon Sep 16 08:13:58 2019 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 7B291F8213; Mon, 16 Sep 2019 08:13:58 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46WzXk2jwZz4JXK; Mon, 16 Sep 2019 08:13:58 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40B2E1D735; Mon, 16 Sep 2019 08:13:58 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8G8DwmE066646; Mon, 16 Sep 2019 08:13:58 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8G8DwSD066645; Mon, 16 Sep 2019 08:13:58 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909160813.x8G8DwSD066645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 16 Sep 2019 08:13:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512143 - branches/2019Q3/security/openssl-unsafe X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/security/openssl-unsafe X-SVN-Commit-Revision: 512143 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.29 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, 16 Sep 2019 08:13:58 -0000 Author: antoine Date: Mon Sep 16 08:13:57 2019 New Revision: 512143 URL: https://svnweb.freebsd.org/changeset/ports/512143 Log: MFH: r512142 Mark BROKEN on i386 with lld Reported by: pkg-fallout Modified: branches/2019Q3/security/openssl-unsafe/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/security/openssl-unsafe/Makefile ============================================================================== --- branches/2019Q3/security/openssl-unsafe/Makefile Mon Sep 16 08:13:08 2019 (r512142) +++ branches/2019Q3/security/openssl-unsafe/Makefile Mon Sep 16 08:13:57 2019 (r512143) @@ -26,6 +26,9 @@ USE_GITHUB= yes GH_ACCOUNT= PeterMosmans GH_TAGNAME= c9ba19c +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN_i386= ld: error: unknown argument: -Bforcearchive +.endif MAKE_JOBS_UNSAFE= yes CONFIGURE_ARGS= enable-camellia enable-cms enable-ec enable-ec2m \ From owner-svn-ports-branches@freebsd.org Mon Sep 16 08:17:16 2019 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 BF4AFF82CF; Mon, 16 Sep 2019 08:17:16 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46WzcX4bqjz4JkL; Mon, 16 Sep 2019 08:17:16 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 81B8A1D739; Mon, 16 Sep 2019 08:17:16 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8G8HGGk067052; Mon, 16 Sep 2019 08:17:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8G8HGev067051; Mon, 16 Sep 2019 08:17:16 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909160817.x8G8HGev067051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 16 Sep 2019 08:17:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512145 - branches/2019Q3/x11-toolkits/nucleo X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/x11-toolkits/nucleo X-SVN-Commit-Revision: 512145 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.29 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, 16 Sep 2019 08:17:16 -0000 Author: antoine Date: Mon Sep 16 08:17:16 2019 New Revision: 512145 URL: https://svnweb.freebsd.org/changeset/ports/512145 Log: MFH: r512144 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/x11-toolkits/nucleo/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/x11-toolkits/nucleo/Makefile ============================================================================== --- branches/2019Q3/x11-toolkits/nucleo/Makefile Mon Sep 16 08:16:35 2019 (r512144) +++ branches/2019Q3/x11-toolkits/nucleo/Makefile Mon Sep 16 08:17:16 2019 (r512145) @@ -13,6 +13,10 @@ COMMENT= Toolkit to explore video and human-computer i LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LESSER +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: /wrkdirs/usr/ports/x11-toolkits/nucleo/work/nucleo-0.7.6/nucleo/.libs/libNucleo.so: undefined reference to XCloseDisplay +.endif + LIB_DEPENDS= libexif.so:graphics/libexif \ libpng.so:graphics/png \ libfreetype.so:print/freetype2 \ From owner-svn-ports-branches@freebsd.org Mon Sep 16 09:08:51 2019 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 4AECFF969C; Mon, 16 Sep 2019 09:08:51 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46X0m31JfNz4MF7; Mon, 16 Sep 2019 09:08:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 118391E000; Mon, 16 Sep 2019 09:08:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8G98o4j097151; Mon, 16 Sep 2019 09:08:50 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8G98ope097150; Mon, 16 Sep 2019 09:08:50 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909160908.x8G98ope097150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 16 Sep 2019 09:08:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512149 - branches/2019Q3/deskutils/gworkspace-gwmetadata X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/deskutils/gworkspace-gwmetadata X-SVN-Commit-Revision: 512149 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.29 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, 16 Sep 2019 09:08:51 -0000 Author: antoine Date: Mon Sep 16 09:08:50 2019 New Revision: 512149 URL: https://svnweb.freebsd.org/changeset/ports/512149 Log: MFH: r512148 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/deskutils/gworkspace-gwmetadata/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/deskutils/gworkspace-gwmetadata/Makefile ============================================================================== --- branches/2019Q3/deskutils/gworkspace-gwmetadata/Makefile Mon Sep 16 09:07:42 2019 (r512148) +++ branches/2019Q3/deskutils/gworkspace-gwmetadata/Makefile Mon Sep 16 09:08:50 2019 (r512149) @@ -13,6 +13,10 @@ COMMENT= GWMetadata for GNUstep workspace manager LICENSE= GPLv2 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: /usr/local/GNUstep/System/Library/Libraries/libFSNode.so: undefined reference to NSApplicationFileType +.endif + USES= gnustep sqlite USE_GNUSTEP= back build GNU_CONFIGURE= yes From owner-svn-ports-branches@freebsd.org Mon Sep 16 09:15:37 2019 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 90D09F9BA5; Mon, 16 Sep 2019 09:15:37 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46X0vs3N2Nz4Ms1; Mon, 16 Sep 2019 09:15:37 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 587D01E1B7; Mon, 16 Sep 2019 09:15:37 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8G9FbN9003424; Mon, 16 Sep 2019 09:15:37 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8G9FbSp003423; Mon, 16 Sep 2019 09:15:37 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909160915.x8G9FbSp003423@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 16 Sep 2019 09:15:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512151 - branches/2019Q3/multimedia/mythtv X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/multimedia/mythtv X-SVN-Commit-Revision: 512151 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.29 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, 16 Sep 2019 09:15:37 -0000 Author: antoine Date: Mon Sep 16 09:15:36 2019 New Revision: 512151 URL: https://svnweb.freebsd.org/changeset/ports/512151 Log: MFH: r512150 Mark BROKEN on i386 with lld Reported by: pkg-fallout Modified: branches/2019Q3/multimedia/mythtv/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/multimedia/mythtv/Makefile ============================================================================== --- branches/2019Q3/multimedia/mythtv/Makefile Mon Sep 16 09:14:44 2019 (r512150) +++ branches/2019Q3/multimedia/mythtv/Makefile Mon Sep 16 09:15:36 2019 (r512151) @@ -15,6 +15,9 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING ONLY_FOR_ARCHS= amd64 i386 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN_i386= ld: error: can't create dynamic relocation R_386_32 against local symbol in readonly segment +.endif LIB_DEPENDS= liblzo2.so:archivers/lzo2 \ libmp3lame.so:audio/lame \ From owner-svn-ports-branches@freebsd.org Mon Sep 16 11:22:29 2019 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 A47A4FCE22; Mon, 16 Sep 2019 11:22:29 +0000 (UTC) (envelope-from tobik@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) server-signature RSA-PSS (4096 bits) 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 46X3kF3sSbz4VXT; Mon, 16 Sep 2019 11:22:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 67E9B1F8ED; Mon, 16 Sep 2019 11:22:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8GBMTi3096683; Mon, 16 Sep 2019 11:22:29 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8GBMT8i096682; Mon, 16 Sep 2019 11:22:29 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201909161122.x8GBMT8i096682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 16 Sep 2019 11:22:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512166 - branches/2019Q3/editors/uemacs X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: branches/2019Q3/editors/uemacs X-SVN-Commit-Revision: 512166 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.29 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, 16 Sep 2019 11:22:29 -0000 Author: tobik Date: Mon Sep 16 11:22:29 2019 New Revision: 512166 URL: https://svnweb.freebsd.org/changeset/ports/512166 Log: MFH: r512165 editors/uemacs: Update MASTER_SITES http://dl.ozzmosis.com/ is offline. PR: 240612 Submitted by: mail@ozzmosis.com (maintainer) Approved by: ports-secteam blanket Modified: branches/2019Q3/editors/uemacs/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/editors/uemacs/Makefile ============================================================================== --- branches/2019Q3/editors/uemacs/Makefile Mon Sep 16 11:21:54 2019 (r512165) +++ branches/2019Q3/editors/uemacs/Makefile Mon Sep 16 11:22:29 2019 (r512166) @@ -4,7 +4,7 @@ PORTNAME= uemacs PORTVERSION= 4.0 CATEGORIES= editors -MASTER_SITES= http://dl.ozzmosis.com/uemacs/ +MASTER_SITES= http://debian.physik.uni-essen.de/misc/memacs/disk2/ DISTNAME= ue400dev MAINTAINER= mail@ozzmosis.com From owner-svn-ports-branches@freebsd.org Mon Sep 16 11:26:10 2019 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 2BBD9FD1A6; Mon, 16 Sep 2019 11:26:10 +0000 (UTC) (envelope-from koobs@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) server-signature RSA-PSS (4096 bits) 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 46X3pV0HVFz4W3Z; Mon, 16 Sep 2019 11:26:10 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0CD21F90B; Mon, 16 Sep 2019 11:26:09 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8GBQ9HY097654; Mon, 16 Sep 2019 11:26:09 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8GBQ9DR097653; Mon, 16 Sep 2019 11:26:09 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201909161126.x8GBQ9DR097653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 16 Sep 2019 11:26:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512168 - branches/2019Q3/devel/caf X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q3/devel/caf X-SVN-Commit-Revision: 512168 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.29 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, 16 Sep 2019 11:26:10 -0000 Author: koobs Date: Mon Sep 16 11:26:09 2019 New Revision: 512168 URL: https://svnweb.freebsd.org/changeset/ports/512168 Log: MFH: r509897 r509960 devel/caf: Reset MAINTAINER While I'm here pet portlint: extra item placed in the USES/USE_x section PR: 240119 Approved by: Matthias Vallentin devel/caf: Take maintainership Approved by: matthew (mentor, implicit) Approved by: ports-secteam (joneum, r509897 explicitly, r509960 implicitly) Modified: branches/2019Q3/devel/caf/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/devel/caf/Makefile ============================================================================== --- branches/2019Q3/devel/caf/Makefile Mon Sep 16 11:22:53 2019 (r512167) +++ branches/2019Q3/devel/caf/Makefile Mon Sep 16 11:26:09 2019 (r512168) @@ -3,20 +3,18 @@ PORTNAME= caf PORTVERSION= 0.15.3 -PORTREVISION= 4 +PORTREVISION= 6 CATEGORIES= devel -MAINTAINER= vallentin@icir.org +MAINTAINER= leres@FreeBSD.org COMMENT= C++ actor framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic -LDFLAGS+= -pthread USES= cmake compiler:c++11-lang USE_LDCONFIG= yes -TEST_TARGET= test + USE_GITHUB= yes GH_ACCOUNT= actor-framework GH_PROJECT= ${GH_ACCOUNT} @@ -35,6 +33,11 @@ LOG_LEVEL_WARN= Use log level WARN for console output LOG_LEVEL_INFO= Use log level INFO for console output LOG_LEVEL_DEBUG= Use log level DEBUG for console output LOG_LEVEL_TRACE= Use log level TRACE for console output + +TEST_TARGET= test + +CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic +LDFLAGS+= -pthread # Until we cannot automatically disentangle examples from other binaries, we do # not support an EXAMPLES option. We also disable a few components that are From owner-svn-ports-branches@freebsd.org Mon Sep 16 11:30:36 2019 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 587ABFD2F0; Mon, 16 Sep 2019 11:30:36 +0000 (UTC) (envelope-from koobs@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) server-signature RSA-PSS (4096 bits) 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 46X3vc1G1Tz4WGv; Mon, 16 Sep 2019 11:30:36 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1010A1F91D; Mon, 16 Sep 2019 11:30:36 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8GBUZ9s098697; Mon, 16 Sep 2019 11:30:35 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8GBUZ6v098696; Mon, 16 Sep 2019 11:30:35 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201909161130.x8GBUZ6v098696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 16 Sep 2019 11:30:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512169 - branches/2019Q3/www/py-soupsieve X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q3/www/py-soupsieve X-SVN-Commit-Revision: 512169 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.29 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, 16 Sep 2019 11:30:36 -0000 Author: koobs Date: Mon Sep 16 11:30:35 2019 New Revision: 512169 URL: https://svnweb.freebsd.org/changeset/ports/512169 Log: MFH: r511814 www/py-soupsieve: Add missing dependency soupsieve depends on backports.functools_lru_cache [1] on Python versions < 3, add the dependency accordingly. While I'm here: - Add TEST_DEPENDS and test target to improve future QA Note: soupsieve 'requires' [2] beautifulsoup4, but beautifulsoup4 depends on soupsieve via install_requires, causing a technical circular dependency, which is why soupsieve doesn't seem to explicitly install_requires on it ... anymore [3]. This seems bizzare. [1] requirements/project.txt: backports.functools_lru_cache ; python_version < '3' [2] https://github.com/facelessuser/soupsieve#installation [3] https://github.com/facelessuser/soupsieve/commit/9a792216ea1ffce018c7968105540c08b82b96db QA: 624 passed, 2 skipped, 6 warnings in 35.70 seconds PR: 240490 Reported by: jbeich Approved by: portmgr (blanket: missing dependencies, ports compliance) Approved by: ports-secteam (blanket: run-time bugfix) Modified: branches/2019Q3/www/py-soupsieve/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/py-soupsieve/Makefile ============================================================================== --- branches/2019Q3/www/py-soupsieve/Makefile Mon Sep 16 11:26:09 2019 (r512168) +++ branches/2019Q3/www/py-soupsieve/Makefile Mon Sep 16 11:30:35 2019 (r512169) @@ -2,6 +2,7 @@ PORTNAME= soupsieve PORTVERSION= 1.9 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,8 +13,23 @@ COMMENT= CSS4 selector implementation for BeautifulSou LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}beautifulsoup>4:www/py-beautifulsoup@${PY_FLAVOR} + USES= python USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes -.include +.include + +.if ${PYTHON_VER} < 3 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.functools_lru_cache>0:devel/py-backports.functools_lru_cache@${PY_FLAVOR} +.endif + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs + +.include From owner-svn-ports-branches@freebsd.org Mon Sep 16 11:33:48 2019 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 9CCD1FD6B5; Mon, 16 Sep 2019 11:33:48 +0000 (UTC) (envelope-from koobs@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) server-signature RSA-PSS (4096 bits) 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 46X3zJ3k7Kz4Wlg; Mon, 16 Sep 2019 11:33:48 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 641B91FAE6; Mon, 16 Sep 2019 11:33:48 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8GBXm6Q005135; Mon, 16 Sep 2019 11:33:48 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8GBXm3p005134; Mon, 16 Sep 2019 11:33:48 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201909161133.x8GBXm3p005134@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 16 Sep 2019 11:33:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512170 - branches/2019Q3/security/py-pyaxo X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q3/security/py-pyaxo X-SVN-Commit-Revision: 512170 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.29 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, 16 Sep 2019 11:33:48 -0000 Author: koobs Date: Mon Sep 16 11:33:47 2019 New Revision: 512170 URL: https://svnweb.freebsd.org/changeset/ports/512170 Log: MFH: r512099 security/py-pyaxo: Add missing dependency net-im/py-unmessage currently fails at run-time with the following error: File "/usr/local/lib/python2.7/site-packages/unmessage/cli.py", line 9, in from pyaxo import b2a File "/usr/local/lib/python2.7/site-packages/pyaxo.py", line 27, in import sqlite3 File "/usr/local/lib/python2.7/sqlite3/__init__.py", line 24, in from dbapi2 import * File "/usr/local/lib/python2.7/sqlite3/dbapi2.py", line 28, in from _sqlite3 import * ImportError: No module named _sqlite3 This change adds the appropriate and missing dependency on databases/py-sqlite3. While I'm here: - Verbosify pytest output (one test per line) and print skipped reasons, which can be very useful during QA. - Pet portlint (extra item in USES/USE_x section: "NO_ARCH".) Reported by: DanDare (via IRC, via net-im/py-unmessage) Approved by: portmgr (blanket(s): missing dependencies, ports compliance) Approved by: ports-secteam (blanket(s): dependency fix, run-time bugfix) Modified: branches/2019Q3/security/py-pyaxo/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/security/py-pyaxo/Makefile ============================================================================== --- branches/2019Q3/security/py-pyaxo/Makefile Mon Sep 16 11:30:35 2019 (r512169) +++ branches/2019Q3/security/py-pyaxo/Makefile Mon Sep 16 11:33:47 2019 (r512170) @@ -3,6 +3,7 @@ PORTNAME= pyaxo PORTVERSION= 0.8.2 +PORTREVISION= 1 CATEGORIES= security net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,17 +15,19 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}passlib>=1.6.1:security/py-passlib@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pynacl>=1.0.1:security/py-pynacl@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pynacl>=1.0.1:security/py-pynacl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= autoplist distutils + NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e "/'pytest-runner',/d" ${WRKSRC}/setup.py do-test: - @(cd ${WRKSRC} && ${PYTHON_CMD} -m pytest) + @(cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs) .include From owner-svn-ports-branches@freebsd.org Mon Sep 16 11:35:30 2019 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 414CDFD782; Mon, 16 Sep 2019 11:35:30 +0000 (UTC) (envelope-from koobs@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) server-signature RSA-PSS (4096 bits) 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 46X41G12g0z4Wrj; Mon, 16 Sep 2019 11:35:30 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 06EE81FAE8; Mon, 16 Sep 2019 11:35:30 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8GBZTGl005590; Mon, 16 Sep 2019 11:35:29 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8GBZT3a005589; Mon, 16 Sep 2019 11:35:29 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201909161135.x8GBZT3a005589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 16 Sep 2019 11:35:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512171 - branches/2019Q3/net-im/py-unmessage X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2019Q3/net-im/py-unmessage X-SVN-Commit-Revision: 512171 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.29 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, 16 Sep 2019 11:35:30 -0000 Author: koobs Date: Mon Sep 16 11:35:29 2019 New Revision: 512171 URL: https://svnweb.freebsd.org/changeset/ports/512171 Log: MFH: r512100 net-im/py-unmessage: Add missing dependencies unmessage currently fails at runtime with the following errors: 1) pkg_resources.DistributionNotFound: The 'service_identity' distribution was not found and is required by Twisted unmessage depends on Twisted *and* its "tls" optional (extras_require) dependencies, requiring unmessage to depend directly on them: - openssl - service_identity - idna 2) ImportError: No module named _sqlite3 (fixed by ports r512099) 3) File "/usr/local/lib/python2.7/site-packages/unmessage/gui.py", line 5, in import Tkinter as Tk Add dependency on x11-toolkits/py-tkinter accordingly While I'm here: Pet portlint: extra item in USES/USE_x section: "NO_ARCH". [1] setup.py: install_requires: 'Twisted[tls]>=16.6.0', Reported by: DanDare (via IRC) Approved by: portmgr (blanket(s): missing dependencies, ports compliance) Approved by: ports-secteam (blanket(s): dependency fix, run-time bugfix) Modified: branches/2019Q3/net-im/py-unmessage/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net-im/py-unmessage/Makefile ============================================================================== --- branches/2019Q3/net-im/py-unmessage/Makefile Mon Sep 16 11:33:47 2019 (r512170) +++ branches/2019Q3/net-im/py-unmessage/Makefile Mon Sep 16 11:35:29 2019 (r512171) @@ -3,6 +3,7 @@ PORTNAME= unmessage PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= net-im net-p2p python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,10 +21,16 @@ RUN_DEPENDS= tor:security/tor \ ${PYTHON_PKGNAMEPREFIX}pynacl>=1.0.1:security/py-pynacl@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyperclip>=1.5.27:devel/py-pyperclip@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}twisted>=16.6.0:devel/py-twisted@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}txtorcon>=0.19.0:security/py-txtorcon@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}txtorcon>=0.19.0:security/py-txtorcon@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} +# Twisted[tls] +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}service_identity>0:security/py-service_identity@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}idna>=0.6:dns/py-idna@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist + NO_ARCH= yes .include From owner-svn-ports-branches@freebsd.org Tue Sep 17 04:45:07 2019 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 A7209F703C; Tue, 17 Sep 2019 04:45:07 +0000 (UTC) (envelope-from riggs@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) server-signature RSA-PSS (4096 bits) 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 46XVsH3yJgz4WGn; Tue, 17 Sep 2019 04:45:07 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5227132F2; Tue, 17 Sep 2019 04:45:07 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8H4j7gW061239; Tue, 17 Sep 2019 04:45:07 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8H4j6HP061236; Tue, 17 Sep 2019 04:45:06 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201909170445.x8H4j6HP061236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 17 Sep 2019 04:45:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512197 - branches/2019Q3/net/traefik X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: branches/2019Q3/net/traefik X-SVN-Commit-Revision: 512197 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 04:45:07 -0000 Author: riggs Date: Tue Sep 17 04:45:06 2019 New Revision: 512197 URL: https://svnweb.freebsd.org/changeset/ports/512197 Log: MFH: r512196 Update to upstream version 1.7.16 Details: - Bugfix release, details see: https://github.com/containous/traefik/releases/tag/v1.7.16 - From r508903: Convert pkg-message to UCL Approved by: ports-secteam (riggs) Modified: branches/2019Q3/net/traefik/Makefile branches/2019Q3/net/traefik/distinfo branches/2019Q3/net/traefik/pkg-message Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net/traefik/Makefile ============================================================================== --- branches/2019Q3/net/traefik/Makefile Tue Sep 17 04:42:06 2019 (r512196) +++ branches/2019Q3/net/traefik/Makefile Tue Sep 17 04:45:06 2019 (r512197) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= traefik -PORTVERSION= 1.7.14 +PORTVERSION= 1.7.16 DISTVERSIONPREFIX= v CATEGORIES= net MASTER_SITES= LOCAL/riggs/${PORTNAME}:webui Modified: branches/2019Q3/net/traefik/distinfo ============================================================================== --- branches/2019Q3/net/traefik/distinfo Tue Sep 17 04:42:06 2019 (r512196) +++ branches/2019Q3/net/traefik/distinfo Tue Sep 17 04:45:06 2019 (r512197) @@ -1,5 +1,5 @@ -TIMESTAMP = 1565859465 -SHA256 (traefik-webui-static-1.7.14.tar.gz) = 72b89cec3ffda3c846c332affb7563de1d277f74c115cc0b8ff6083d175a392c -SIZE (traefik-webui-static-1.7.14.tar.gz) = 920851 -SHA256 (containous-traefik-v1.7.14_GH0.tar.gz) = f09757f9ed4c5ff91c2d21d4c7efd32a9d801a0455268d524f6ddd0e046443d4 -SIZE (containous-traefik-v1.7.14_GH0.tar.gz) = 11361030 +TIMESTAMP = 1568637383 +SHA256 (traefik-webui-static-1.7.16.tar.gz) = acb7f66955c86f590c8aa641b4d03cb87b2d52de5b010ca59db556a7c546884f +SIZE (traefik-webui-static-1.7.16.tar.gz) = 921154 +SHA256 (containous-traefik-v1.7.16_GH0.tar.gz) = 88097a6f2a48fada5135adfd0e65ab9fa06d5e8221e5ecbfa319baf1cceebe3f +SIZE (containous-traefik-v1.7.16_GH0.tar.gz) = 11366255 Modified: branches/2019Q3/net/traefik/pkg-message ============================================================================== --- branches/2019Q3/net/traefik/pkg-message Tue Sep 17 04:42:06 2019 (r512196) +++ branches/2019Q3/net/traefik/pkg-message Tue Sep 17 04:45:06 2019 (r512197) @@ -1,5 +1,6 @@ -============================================================== - +[ +{ type: install + 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 D52B1125446; Tue, 17 Sep 2019 14:14:29 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46XlVF5JR2z44Gf; Tue, 17 Sep 2019 14:14:29 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 99B44999D; Tue, 17 Sep 2019 14:14:29 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HEETfC096250; Tue, 17 Sep 2019 14:14:29 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HEET21096249; Tue, 17 Sep 2019 14:14:29 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909171414.x8HEET21096249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 17 Sep 2019 14:14:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512210 - branches/2019Q3/lang/nml X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/lang/nml X-SVN-Commit-Revision: 512210 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 14:14:29 -0000 Author: antoine Date: Tue Sep 17 14:14:29 2019 New Revision: 512210 URL: https://svnweb.freebsd.org/changeset/ports/512210 Log: MFH: r512209 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/lang/nml/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/lang/nml/Makefile ============================================================================== --- branches/2019Q3/lang/nml/Makefile Tue Sep 17 14:13:58 2019 (r512209) +++ branches/2019Q3/lang/nml/Makefile Tue Sep 17 14:14:29 2019 (r512210) @@ -15,6 +15,9 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-0.92 ONLY_FOR_ARCHS= i386 MAKE_JOBS_UNSAFE= yes +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: relocation R_386_PC32 cannot be used against symbol BnnAdd +.endif HAS_CONFIGURE= yes CONFIGURE_ARGS+=--prefix ${PREFIX} From owner-svn-ports-branches@freebsd.org Tue Sep 17 17:39:47 2019 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 E352A12A30F; Tue, 17 Sep 2019 17:39:47 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46Xr375hQ0z4HXF; Tue, 17 Sep 2019 17:39:47 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A686DBEE8; Tue, 17 Sep 2019 17:39:47 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HHdlsR013830; Tue, 17 Sep 2019 17:39:47 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HHdlEf013829; Tue, 17 Sep 2019 17:39:47 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909171739.x8HHdlEf013829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 17 Sep 2019 17:39:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512217 - branches/2019Q3/audio/faust-lv2 X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/audio/faust-lv2 X-SVN-Commit-Revision: 512217 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 17:39:47 -0000 Author: antoine Date: Tue Sep 17 17:39:47 2019 New Revision: 512217 URL: https://svnweb.freebsd.org/changeset/ports/512217 Log: MFH: r512216 Mark BROKEN on i386 with lld Reported by: pkg-fallout Modified: branches/2019Q3/audio/faust-lv2/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/audio/faust-lv2/Makefile ============================================================================== --- branches/2019Q3/audio/faust-lv2/Makefile Tue Sep 17 17:39:26 2019 (r512216) +++ branches/2019Q3/audio/faust-lv2/Makefile Tue Sep 17 17:39:47 2019 (r512217) @@ -14,6 +14,9 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_aarch64= fails to link: can't create dynamic relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol: vtable for LV2UI in readonly segment +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN_i386= ld: error: can't create dynamic relocation R_386_32 against symbol: vtable for LV2UI in readonly segment +.endif BUILD_DEPENDS= lv2>0:audio/lv2 \ faust>0:audio/faust \ From owner-svn-ports-branches@freebsd.org Tue Sep 17 17:46:07 2019 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 A7EF512A63D; Tue, 17 Sep 2019 17:46:07 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46XrBR3yVBz4J7H; Tue, 17 Sep 2019 17:46:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C222C09A; Tue, 17 Sep 2019 17:46:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HHk7HE020077; Tue, 17 Sep 2019 17:46:07 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HHk70T020076; Tue, 17 Sep 2019 17:46:07 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909171746.x8HHk70T020076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 17 Sep 2019 17:46:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512219 - branches/2019Q3/x11/cde X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/x11/cde X-SVN-Commit-Revision: 512219 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 17:46:07 -0000 Author: antoine Date: Tue Sep 17 17:46:06 2019 New Revision: 512219 URL: https://svnweb.freebsd.org/changeset/ports/512219 Log: MFH: r512218 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/x11/cde/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/x11/cde/Makefile ============================================================================== --- branches/2019Q3/x11/cde/Makefile Tue Sep 17 17:45:46 2019 (r512218) +++ branches/2019Q3/x11/cde/Makefile Tue Sep 17 17:46:06 2019 (r512219) @@ -11,6 +11,9 @@ COMMENT= Common Desktop Environment LICENSE= LGPL21 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= Fails to build: ld: error: ../../../exports/lib/libDtHelp.so: undefined reference to jpeg_CreateDecompress +.endif BROKEN_mips64= fails to build: ./config/imake/imake: No such file or directory BROKEN_powerpc64= fails to build: ./config/imake/imake: No such file or directory @@ -41,12 +44,6 @@ MAKE_ARGS+= PERL=${PERL} MAKE_JOBS_UNSAFE=yes SUB_FILES= pkg-message -.include - -.if ${OSVERSION} >= 1300018 -BROKEN= Fails to build: ld: error: ../../../exports/lib/libDtHelp.so: undefined reference to jpeg_CreateDecompress -.endif - post-patch: @if [ -f /usr/include/iconv.h ]; then \ ${REINPLACE_CMD} -e 's!^[[:space:]]*const char .ip = (const char .) .bp!char *ip = *bp!' \ @@ -115,7 +112,6 @@ post-patch: # @${LN} -s ${LOCALBASE}/include/Xm ${WRKSRC}/imports/x11/include # @${LN} -s ${LOCALBASE}/include/fontconfig ${WRKSRC}/imports/x11/include # @${LN} -s ${LOCALBASE}/include/freetype2 ${WRKSRC}/imports/x11/include - do-install: cd ${WRKSRC}/admin/IntegTools/dbTools && \ From owner-svn-ports-branches@freebsd.org Tue Sep 17 17:48:29 2019 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 00C1A12A725; Tue, 17 Sep 2019 17:48:29 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46XrF86B2Pz4JKw; Tue, 17 Sep 2019 17:48:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8774C09E; Tue, 17 Sep 2019 17:48:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HHmS6D020416; Tue, 17 Sep 2019 17:48:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HHmSnO020415; Tue, 17 Sep 2019 17:48:28 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909171748.x8HHmSnO020415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 17 Sep 2019 17:48:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512221 - branches/2019Q3/x11-toolkits/gtkmathview X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/x11-toolkits/gtkmathview X-SVN-Commit-Revision: 512221 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 17:48:29 -0000 Author: antoine Date: Tue Sep 17 17:48:28 2019 New Revision: 512221 URL: https://svnweb.freebsd.org/changeset/ports/512221 Log: MFH: r512220 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/x11-toolkits/gtkmathview/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/x11-toolkits/gtkmathview/Makefile ============================================================================== --- branches/2019Q3/x11-toolkits/gtkmathview/Makefile Tue Sep 17 17:48:11 2019 (r512220) +++ branches/2019Q3/x11-toolkits/gtkmathview/Makefile Tue Sep 17 17:48:28 2019 (r512221) @@ -13,6 +13,10 @@ COMMENT= GTK Widget to Render MathML Documents LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/COPYING +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: ../src/backend/ps/.libs/libmathview_backend_ps.so: undefined reference to T1_AddToFileSearchPath +.endif + BUILD_DEPENDS= xsltproc:textproc/libxslt LIB_DEPENDS= libpopt.so:devel/popt \ libt1.so:devel/t1lib \ From owner-svn-ports-branches@freebsd.org Tue Sep 17 18:27:51 2019 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 7B68512B361; Tue, 17 Sep 2019 18:27:51 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46Xs6b2fsnz4Vvh; Tue, 17 Sep 2019 18:27:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E77518C9B; Tue, 17 Sep 2019 18:27:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HIRpgQ043819; Tue, 17 Sep 2019 18:27:51 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HIRpSZ043818; Tue, 17 Sep 2019 18:27:51 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909171827.x8HIRpSZ043818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 17 Sep 2019 18:27:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512223 - branches/2019Q3/devel/mpatrol X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/devel/mpatrol X-SVN-Commit-Revision: 512223 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 18:27:51 -0000 Author: antoine Date: Tue Sep 17 18:27:50 2019 New Revision: 512223 URL: https://svnweb.freebsd.org/changeset/ports/512223 Log: MFH: r512222 Mark BROKEN on i386 with lld Reported by: pkg-fallout Modified: branches/2019Q3/devel/mpatrol/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/devel/mpatrol/Makefile ============================================================================== --- branches/2019Q3/devel/mpatrol/Makefile Tue Sep 17 18:27:32 2019 (r512222) +++ branches/2019Q3/devel/mpatrol/Makefile Tue Sep 17 18:27:50 2019 (r512223) @@ -12,6 +12,9 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Dynamic memory debugging and profiling library ONLY_FOR_ARCHS= amd64 i386 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN_i386= ld: error: relocation R_386_PC32 cannot be used against symbol __mp_init +.endif LIB_DEPENDS= libelf.so.0:devel/libelf From owner-svn-ports-branches@freebsd.org Tue Sep 17 18:33:41 2019 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 459CC12B6EE; Tue, 17 Sep 2019 18:33:41 +0000 (UTC) (envelope-from cmt@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) server-signature RSA-PSS (4096 bits) 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 46XsFK17Tdz4X18; Tue, 17 Sep 2019 18:33:41 +0000 (UTC) (envelope-from cmt@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 0A5F318E70; Tue, 17 Sep 2019 18:33:41 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HIXees049905; Tue, 17 Sep 2019 18:33:40 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HIXef2049902; Tue, 17 Sep 2019 18:33:40 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201909171833.x8HIXef2049902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Tue, 17 Sep 2019 18:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512227 - branches/2019Q3/www/firefox X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2019Q3/www/firefox X-SVN-Commit-Revision: 512227 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 18:33:41 -0000 Author: cmt Date: Tue Sep 17 18:33:40 2019 New Revision: 512227 URL: https://svnweb.freebsd.org/changeset/ports/512227 Log: MFH: r512225 www/firefox: update to 69.0.1 (rc1) Release Notes (soon): https://www.mozilla.org/en-US/firefox/69.0.1/releasenotes/ PR: 239155 Approved by: ports-secteam blanket (web browser) Modified: branches/2019Q3/www/firefox/Makefile branches/2019Q3/www/firefox/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/firefox/Makefile ============================================================================== --- branches/2019Q3/www/firefox/Makefile Tue Sep 17 18:31:06 2019 (r512226) +++ branches/2019Q3/www/firefox/Makefile Tue Sep 17 18:33:40 2019 (r512227) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 69.0 -PORTREVISION= 1 +DISTVERSION= 69.0.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2019Q3/www/firefox/distinfo ============================================================================== --- branches/2019Q3/www/firefox/distinfo Tue Sep 17 18:31:06 2019 (r512226) +++ branches/2019Q3/www/firefox/distinfo Tue Sep 17 18:33:40 2019 (r512227) @@ -1,3 +1,3 @@ -TIMESTAMP = 1566869555 -SHA256 (firefox-69.0.source.tar.xz) = 413c3febdfeb69eade818824eecbdb11eaeda71de229573810afd641ba741ec5 -SIZE (firefox-69.0.source.tar.xz) = 323421020 +TIMESTAMP = 1568742653 +SHA256 (firefox-69.0.1.source.tar.xz) = f5f2f592b8296812d43244d6a50c0c57ad11a5324db8e4e79749545482b79033 +SIZE (firefox-69.0.1.source.tar.xz) = 315516072 From owner-svn-ports-branches@freebsd.org Tue Sep 17 19:02:54 2019 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 8DBE412C1A3; Tue, 17 Sep 2019 19:02:54 +0000 (UTC) (envelope-from bhughes@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) server-signature RSA-PSS (4096 bits) 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 46Xsv234v3z4YtN; Tue, 17 Sep 2019 19:02:54 +0000 (UTC) (envelope-from bhughes@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 4DF0E19406; Tue, 17 Sep 2019 19:02:54 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HJ2sAR067991; Tue, 17 Sep 2019 19:02:54 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HJ2qfS067984; Tue, 17 Sep 2019 19:02:52 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201909171902.x8HJ2qfS067984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Tue, 17 Sep 2019 19:02:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512229 - in branches/2019Q3/www/node10: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in branches/2019Q3/www/node10: . files X-SVN-Commit-Revision: 512229 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 19:02:54 -0000 Author: bhughes Date: Tue Sep 17 19:02:52 2019 New Revision: 512229 URL: https://svnweb.freebsd.org/changeset/ports/512229 Log: MFH: r507835 r509060 r509480 www/node10: Update 10.16.0_1 => 10.16.1 https://nodejs.org/en/blog/release/v10.16.1/ While here, refresh patches with `make makepatch`. Sponsored by: Miles AS www/node10: Update 10.16.1 -> 10.16.2 https://nodejs.org/en/blog/release/v10.16.2/ Sponsored by: Miles AS www/node10: Update 10.16.2 -> 10.16.3 This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/aug-2019-security-releases/ for details on patched vulnerabilities. Security: c97a940b-c392-11e9-bb38-000d3ab229d6 Sponsored by: Miles AS Approved by: ports-secteam (joneum) Modified: branches/2019Q3/www/node10/Makefile branches/2019Q3/www/node10/distinfo branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl-cl.gypi branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl.gypi branches/2019Q3/www/node10/files/patch-deps_openssl_openssl-cl__no__asm.gypi branches/2019Q3/www/node10/files/patch-deps_openssl_openssl__no__asm.gypi branches/2019Q3/www/node10/files/patch-node.gypi Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/node10/Makefile ============================================================================== --- branches/2019Q3/www/node10/Makefile Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/Makefile Tue Sep 17 19:02:52 2019 (r512229) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 10.16.0 +PORTVERSION= 10.16.3 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -68,7 +68,7 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ BUILD_DEPENDS+= c-ares>=1.15.0:dns/c-ares\ libuv>=1.28.0:devel/libuv \ - libnghttp2>=1.34.0:www/libnghttp2 + libnghttp2>=1.39.2:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 Modified: branches/2019Q3/www/node10/distinfo ============================================================================== --- branches/2019Q3/www/node10/distinfo Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/distinfo Tue Sep 17 19:02:52 2019 (r512229) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559158058 -SHA256 (node-v10.16.0.tar.gz) = d00f1ffdb0a7413eaaf3afc393fb652ea713db135dcd3ccf6809370a07395713 -SIZE (node-v10.16.0.tar.gz) = 45543679 +TIMESTAMP = 1565994495 +SHA256 (node-v10.16.3.tar.gz) = db5a5e03a815b84a1266a4b48bb6a6d887175705f84fd2472f0d28e5e305a1f8 +SIZE (node-v10.16.3.tar.gz) = 45870800 Modified: branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl-cl.gypi ============================================================================== --- branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl-cl.gypi Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl-cl.gypi Tue Sep 17 19:02:52 2019 (r512229) @@ -1,6 +1,6 @@ ---- deps/openssl/config/archs/linux-elf/asm/openssl-cl.gypi.orig 2019-05-28 21:32:15 UTC +--- deps/openssl/config/archs/linux-elf/asm/openssl-cl.gypi.orig 2019-07-31 17:44:59 UTC +++ deps/openssl/config/archs/linux-elf/asm/openssl-cl.gypi -@@ -26,12 +26,11 @@ +@@ -25,12 +25,11 @@ ], 'openssl_cflags_linux-elf': [ '-Wa,--noexecstack', Modified: branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl.gypi ============================================================================== --- branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl.gypi Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl.gypi Tue Sep 17 19:02:52 2019 (r512229) @@ -1,6 +1,6 @@ ---- deps/openssl/config/archs/linux-elf/asm/openssl.gypi.orig 2019-05-28 21:32:15 UTC +--- deps/openssl/config/archs/linux-elf/asm/openssl.gypi.orig 2019-07-31 17:44:59 UTC +++ deps/openssl/config/archs/linux-elf/asm/openssl.gypi -@@ -722,12 +722,11 @@ +@@ -721,12 +721,11 @@ ], 'openssl_cflags_linux-elf': [ '-Wa,--noexecstack', Modified: branches/2019Q3/www/node10/files/patch-deps_openssl_openssl-cl__no__asm.gypi ============================================================================== --- branches/2019Q3/www/node10/files/patch-deps_openssl_openssl-cl__no__asm.gypi Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/files/patch-deps_openssl_openssl-cl__no__asm.gypi Tue Sep 17 19:02:52 2019 (r512229) @@ -1,4 +1,4 @@ ---- deps/openssl/openssl-cl_no_asm.gypi.orig 2018-05-11 10:11:27 UTC +--- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-07-31 17:44:59 UTC +++ deps/openssl/openssl-cl_no_asm.gypi @@ -1,4 +1,5 @@ { @@ -6,7 +6,7 @@ 'conditions': [ ['target_arch=="ppc" and OS=="aix"', { 'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'], -@@ -41,7 +42,7 @@ +@@ -43,7 +44,7 @@ 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'], }, { # Other architectures don't use assembly Modified: branches/2019Q3/www/node10/files/patch-deps_openssl_openssl__no__asm.gypi ============================================================================== --- branches/2019Q3/www/node10/files/patch-deps_openssl_openssl__no__asm.gypi Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/files/patch-deps_openssl_openssl__no__asm.gypi Tue Sep 17 19:02:52 2019 (r512229) @@ -1,6 +1,6 @@ ---- deps/openssl/openssl_no_asm.gypi.orig 2018-05-11 12:27:27 UTC +--- deps/openssl/openssl_no_asm.gypi.orig 2019-07-31 17:45:01 UTC +++ deps/openssl/openssl_no_asm.gypi -@@ -42,7 +42,7 @@ +@@ -44,7 +44,7 @@ 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'], }, { # Other architectures don't use assembly Modified: branches/2019Q3/www/node10/files/patch-node.gypi ============================================================================== --- branches/2019Q3/www/node10/files/patch-node.gypi Tue Sep 17 18:46:40 2019 (r512228) +++ branches/2019Q3/www/node10/files/patch-node.gypi Tue Sep 17 19:02:52 2019 (r512229) @@ -1,6 +1,6 @@ ---- node.gypi.orig 2018-06-06 12:52:40 UTC +--- node.gypi.orig 2019-07-31 17:45:05 UTC +++ node.gypi -@@ -294,6 +294,9 @@ +@@ -316,6 +316,9 @@ ['openssl_fips != ""', { 'defines': [ 'NODE_FIPS_MODE' ], }], From owner-svn-ports-branches@freebsd.org Tue Sep 17 19:06:04 2019 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 2C7D112C2B1; Tue, 17 Sep 2019 19:06:04 +0000 (UTC) (envelope-from bhughes@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) server-signature RSA-PSS (4096 bits) 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 46Xsyh17Gdz4Z77; Tue, 17 Sep 2019 19:06:04 +0000 (UTC) (envelope-from bhughes@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 09C4E19413; Tue, 17 Sep 2019 19:06:04 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8HJ642W068785; Tue, 17 Sep 2019 19:06:04 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8HJ61Fo068771; Tue, 17 Sep 2019 19:06:01 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201909171906.x8HJ61Fo068771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Tue, 17 Sep 2019 19:06:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512231 - in branches/2019Q3/www/node: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: in branches/2019Q3/www/node: . files X-SVN-Commit-Revision: 512231 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.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2019 19:06:04 -0000 Author: bhughes Date: Tue Sep 17 19:06:01 2019 New Revision: 512231 URL: https://svnweb.freebsd.org/changeset/ports/512231 Log: MFH: r506491 r507478 r509122 r509481 www/node: Update 12.4.0 -> 12.6.0 https://nodejs.org/en/blog/release/v12.5.0/ https://nodejs.org/en/blog/release/v12.6.0/ Sponsored by: Miles AS www/node: Update 12.6.0_1 -> 12.7.0 https://nodejs.org/en/blog/release/v12.7.0/ www/node: Update 12.7.0 -> 12.8.0 https://nodejs.org/en/blog/release/v12.8.0/ The bundled OpenSSL configuration now includes BSD-x86, which this port can now use. The build for i386 is still using the no-asm variant for the time being. Assembler errors in BSD-x86/asm-avx2 need to be investigated to be able to enable asm with the bundled OpenSSL. While here, regenerate all remaining patches with `make makepatch`. Sponsored by: Miles AS www/node: Update 12.8.0 -> 12.8.1 This is a security release. All Node.js users should consult the security release summary at https://nodejs.org/en/blog/vulnerability/aug-2019-security-releases/ for details on patched vulnerabilities. Security: c97a940b-c392-11e9-bb38-000d3ab229d6 Sponsored by: Miles AS Approved by: ports-secteam (joneum) Deleted: branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl-cl.gypi branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_asm_openssl.gypi branches/2019Q3/www/node/files/patch-deps_openssl_config_bn__conf__asm.h branches/2019Q3/www/node/files/patch-deps_openssl_config_bn__conf__no-asm.h branches/2019Q3/www/node/files/patch-deps_openssl_config_dso__conf__asm.h branches/2019Q3/www/node/files/patch-deps_openssl_config_dso__conf__no-asm.h branches/2019Q3/www/node/files/patch-deps_openssl_config_opensslconf__asm.h branches/2019Q3/www/node/files/patch-deps_openssl_config_opensslconf__no-asm.h Modified: branches/2019Q3/www/node/Makefile branches/2019Q3/www/node/distinfo branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl-cl.gypi branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi branches/2019Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi branches/2019Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi branches/2019Q3/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc branches/2019Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc branches/2019Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc branches/2019Q3/www/node/files/patch-node.gypi branches/2019Q3/www/node/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/www/node/Makefile ============================================================================== --- branches/2019Q3/www/node/Makefile Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/Makefile Tue Sep 17 19:06:01 2019 (r512231) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 12.4.0 +PORTVERSION= 12.8.1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -66,8 +66,8 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ LINK.host=${CXX} LDFLAGS.host="${LDFLAGS}" BUILD_DEPENDS+= c-ares>=1.15.0:dns/c-ares\ - libuv>=1.29.1:devel/libuv \ - libnghttp2>=1.38.0:www/libnghttp2 + libuv>=1.30.1:devel/libuv \ + libnghttp2>=1.39.2:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 @@ -78,7 +78,7 @@ LIB_DEPENDS+= libcares.so:dns/c-ares\ BROKEN_SSL+= base .endif -.if ${PORT_OPTIONS:MBUNDLED_SSL} && ${ARCH} != amd64 && ${ARCH} != i386 +.if ${PORT_OPTIONS:MBUNDLED_SSL} && ${ARCH} != amd64 CONFIGURE_ARGS+=--openssl-no-asm .endif Modified: branches/2019Q3/www/node/distinfo ============================================================================== --- branches/2019Q3/www/node/distinfo Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/distinfo Tue Sep 17 19:06:01 2019 (r512231) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559661163 -SHA256 (node-v12.4.0.tar.gz) = cf39befb8ea486363cac6f297d8f451fd0d5dd8ad21dca51e9c2ea86b242baa0 -SIZE (node-v12.4.0.tar.gz) = 49167965 +TIMESTAMP = 1565994523 +SHA256 (node-v12.8.1.tar.gz) = fbd4de6657f6301cdcd0c60a0e5a413c490670d8c21b501c380b96cc3b9b5b95 +SIZE (node-v12.8.1.tar.gz) = 50231954 Modified: branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl-cl.gypi ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl-cl.gypi Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl-cl.gypi Tue Sep 17 19:06:01 2019 (r512231) @@ -1,17 +1,11 @@ ---- deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi.orig 2019-01-30 20:43:11 UTC +--- deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi.orig 2019-08-06 20:46:23 UTC +++ deps/openssl/config/archs/linux-elf/no-asm/openssl-cl.gypi -@@ -7,12 +7,11 @@ - 'OPENSSL_PIC', +@@ -12,7 +12,7 @@ + '-Wall -O3 -fomit-frame-pointer', ], - 'openssl_cflags_linux-elf': [ -- '-Wall -O3 -fomit-frame-pointer', -+ '-Wall -O3', - '-pthread', -- '-Wall -O3 -fomit-frame-pointer', - ], 'openssl_ex_libs_linux-elf': [ - '-ldl -pthread', -+ '', ++ '-pthread', ], 'openssl_cli_srcs_linux-elf': [ 'openssl/apps/asn1pars.c', Modified: branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_openssl_config_archs_linux-elf_no-asm_openssl.gypi Tue Sep 17 19:06:01 2019 (r512231) @@ -1,17 +1,11 @@ ---- deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi.orig 2019-02-06 21:04:54 UTC +--- deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi.orig 2019-08-06 20:46:23 UTC +++ deps/openssl/config/archs/linux-elf/no-asm/openssl.gypi -@@ -691,12 +691,11 @@ - 'OPENSSL_PIC', +@@ -696,7 +696,7 @@ + '-Wall -O3 -fomit-frame-pointer', ], - 'openssl_cflags_linux-elf': [ -- '-Wall -O3 -fomit-frame-pointer', -+ '-Wall -O3', - '-pthread', -- '-Wall -O3 -fomit-frame-pointer', - ], 'openssl_ex_libs_linux-elf': [ - '-ldl -pthread', -+ '', ++ '-pthread', ], }, 'include_dirs': [ Modified: branches/2019Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_openssl_openssl-cl__no__asm.gypi Tue Sep 17 19:06:01 2019 (r512231) @@ -1,4 +1,4 @@ ---- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-04-23 12:30:43 UTC +--- deps/openssl/openssl-cl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC +++ deps/openssl/openssl-cl_no_asm.gypi @@ -1,4 +1,5 @@ { @@ -6,8 +6,8 @@ 'conditions': [ ['target_arch=="ppc" and OS=="aix"', { 'includes': ['config/archs/aix-gcc/no-asm/openssl-cl.gypi'], -@@ -43,7 +44,7 @@ - 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'], +@@ -45,7 +46,7 @@ + 'includes': ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'], }, { # Other architectures don't use assembly - 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'], Modified: branches/2019Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_openssl_openssl__no__asm.gypi Tue Sep 17 19:06:01 2019 (r512231) @@ -1,7 +1,7 @@ ---- deps/openssl/openssl_no_asm.gypi.orig 2019-04-23 12:30:43 UTC +--- deps/openssl/openssl_no_asm.gypi.orig 2019-08-06 20:46:23 UTC +++ deps/openssl/openssl_no_asm.gypi -@@ -44,7 +44,7 @@ - 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'], +@@ -46,7 +46,7 @@ + 'includes': ['config/archs/linux64-mips64/no-asm/openssl.gypi'], }, { # Other architectures don't use assembly - 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'], Modified: branches/2019Q3/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_v8_src_arm_cpu-arm.cc Tue Sep 17 19:06:01 2019 (r512231) @@ -1,4 +1,4 @@ ---- deps/v8/src/arm/cpu-arm.cc.orig 2019-04-23 12:30:43 UTC +--- deps/v8/src/arm/cpu-arm.cc.orig 2019-08-06 20:46:23 UTC +++ deps/v8/src/arm/cpu-arm.cc @@ -7,6 +7,9 @@ #ifdef __QNXNTO__ @@ -10,7 +10,7 @@ #else #include // for cache flushing. #endif -@@ -23,6 +26,9 @@ void CpuFeatures::FlushICache(void* start, size_t size +@@ -26,6 +29,9 @@ __attribute__((noinline)) void CpuFeatures::FlushICach #if !defined(USE_SIMULATOR) #if V8_OS_QNX msync(start, size, MS_SYNC | MS_INVALIDATE_ICACHE); Modified: branches/2019Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_v8_src_base_platform_platform-freebsd.cc Tue Sep 17 19:06:01 2019 (r512231) @@ -1,6 +1,6 @@ ---- deps/v8/src/base/platform/platform-freebsd.cc.orig 2019-01-30 20:43:13 UTC +--- deps/v8/src/base/platform/platform-freebsd.cc.orig 2019-08-06 20:46:24 UTC +++ deps/v8/src/base/platform/platform-freebsd.cc -@@ -86,5 +86,47 @@ std::vector OS::GetSharedLib +@@ -86,6 +86,48 @@ std::vector OS::GetSharedLib void OS::SignalCodeMovingGC() {} @@ -46,5 +46,6 @@ + +#endif // def __arm__ + + void OS::AdjustSchedulingParams() {} + } // namespace base - } // namespace v8 Modified: branches/2019Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc ============================================================================== --- branches/2019Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-deps_v8_src_libsampler_sampler.cc Tue Sep 17 19:06:01 2019 (r512231) @@ -1,6 +1,6 @@ ---- deps/v8/src/libsampler/sampler.cc.orig 2019-04-23 12:30:43 UTC +--- deps/v8/src/libsampler/sampler.cc.orig 2019-08-06 20:46:24 UTC +++ deps/v8/src/libsampler/sampler.cc -@@ -466,9 +466,13 @@ void SignalHandler::FillRegisterState(void* context, R +@@ -470,9 +470,13 @@ void SignalHandler::FillRegisterState(void* context, R state->sp = reinterpret_cast(mcontext.mc_rsp); state->fp = reinterpret_cast(mcontext.mc_rbp); #elif V8_HOST_ARCH_ARM Modified: branches/2019Q3/www/node/files/patch-node.gypi ============================================================================== --- branches/2019Q3/www/node/files/patch-node.gypi Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/files/patch-node.gypi Tue Sep 17 19:06:01 2019 (r512231) @@ -1,6 +1,6 @@ ---- node.gypi.orig 2019-04-23 12:30:45 UTC +--- node.gypi.orig 2019-08-06 20:46:25 UTC +++ node.gypi -@@ -315,6 +315,9 @@ +@@ -307,6 +307,9 @@ ['openssl_fips != "" or openssl_is_fips=="true"', { 'defines': [ 'NODE_FIPS_MODE' ], }], Modified: branches/2019Q3/www/node/pkg-plist ============================================================================== --- branches/2019Q3/www/node/pkg-plist Tue Sep 17 19:03:46 2019 (r512230) +++ branches/2019Q3/www/node/pkg-plist Tue Sep 17 19:06:01 2019 (r512231) @@ -12,6 +12,21 @@ include/node/node_api_types.h include/node/node_buffer.h include/node/node_object_wrap.h include/node/node_version.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/asm_avx2/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86/no-asm/include/progs.h %%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h %%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/bn_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/BSD-x86_64/asm/crypto/include/internal/dso_conf.h @@ -167,6 +182,16 @@ include/node/node_version.h %%BUNDLED_SSL%%include/node/openssl/archs/linux-elf/no-asm/crypto/include/internal/dso_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux-elf/no-asm/include/openssl/opensslconf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux-elf/no-asm/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/asm/include/progs.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/bn_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/crypto/include/internal/dso_conf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/include/openssl/opensslconf.h +%%BUNDLED_SSL%%include/node/openssl/archs/linux64-mips64/no-asm/include/progs.h %%BUNDLED_SSL%%include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/bn_conf.h %%BUNDLED_SSL%%include/node/openssl/archs/linux-ppc/asm/crypto/include/internal/dso_conf.h From owner-svn-ports-branches@freebsd.org Wed Sep 18 09:26:08 2019 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 0EABAF8B0D; Wed, 18 Sep 2019 09:26:08 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46YF336cwzz46Nq; Wed, 18 Sep 2019 09:26:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C613422F5D; Wed, 18 Sep 2019 09:26:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8I9Q7CP078398; Wed, 18 Sep 2019 09:26:07 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8I9Q7Tt078397; Wed, 18 Sep 2019 09:26:07 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909180926.x8I9Q7Tt078397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 18 Sep 2019 09:26:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512263 - branches/2019Q3/cad/qcad X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/cad/qcad X-SVN-Commit-Revision: 512263 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.29 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, 18 Sep 2019 09:26:08 -0000 Author: antoine Date: Wed Sep 18 09:26:07 2019 New Revision: 512263 URL: https://svnweb.freebsd.org/changeset/ports/512263 Log: MFH: r512262 Mark BROKEN on i386 with lld Reported by: pkg-fallout Modified: branches/2019Q3/cad/qcad/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/cad/qcad/Makefile ============================================================================== --- branches/2019Q3/cad/qcad/Makefile Wed Sep 18 09:25:44 2019 (r512262) +++ branches/2019Q3/cad/qcad/Makefile Wed Sep 18 09:26:07 2019 (r512263) @@ -13,6 +13,10 @@ COMMENT= Professional CAD system LICENSE= GPLv3 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN_i386= ld: error: relocation R_386_PC32 cannot be used against symbol ON_GetPointListBoundingBox +.endif + BUILD_DEPENDS= bash:shells/bash \ ${LOCALBASE}/lib/libopenNURBS.a:graphics/opennurbs From owner-svn-ports-branches@freebsd.org Wed Sep 18 09:33:54 2019 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 4C95CF8DA0; Wed, 18 Sep 2019 09:33:54 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46YFD21HrKz4744; Wed, 18 Sep 2019 09:33:54 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0FA7E2311E; Wed, 18 Sep 2019 09:33:54 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8I9Xr7i084431; Wed, 18 Sep 2019 09:33:53 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8I9XraY084430; Wed, 18 Sep 2019 09:33:53 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909180933.x8I9XraY084430@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 18 Sep 2019 09:33:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512267 - branches/2019Q3/cad/geda X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/cad/geda X-SVN-Commit-Revision: 512267 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.29 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, 18 Sep 2019 09:33:54 -0000 Author: antoine Date: Wed Sep 18 09:33:53 2019 New Revision: 512267 URL: https://svnweb.freebsd.org/changeset/ports/512267 Log: MFH: r512266 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/cad/geda/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/cad/geda/Makefile ============================================================================== --- branches/2019Q3/cad/geda/Makefile Wed Sep 18 09:33:35 2019 (r512266) +++ branches/2019Q3/cad/geda/Makefile Wed Sep 18 09:33:53 2019 (r512267) @@ -14,6 +14,10 @@ COMMENT= GPL Electronic Design Automation tools LICENSE= GPLv2+ +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: ../src/.libs/libgeda.so: undefined reference to g_input_stream_get_type +.endif + LIB_DEPENDS= libstroke.so:devel/libstroke \ libguile.so:lang/guile RUN_DEPENDS= gawk:lang/gawk\ From owner-svn-ports-branches@freebsd.org Wed Sep 18 11:09:46 2019 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 5A067FA670; Wed, 18 Sep 2019 11:09:46 +0000 (UTC) (envelope-from lme@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) server-signature RSA-PSS (4096 bits) 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 46YHLf0zkjz4Bgl; Wed, 18 Sep 2019 11:09:46 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 01C59240D4; Wed, 18 Sep 2019 11:09:46 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8IB9jxj038303; Wed, 18 Sep 2019 11:09:45 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8IB9jct038300; Wed, 18 Sep 2019 11:09:45 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201909181109.x8IB9jct038300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Wed, 18 Sep 2019 11:09:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512271 - branches/2019Q3/net-mgmt/icingaweb2-module-grafana X-SVN-Group: ports-branches X-SVN-Commit-Author: lme X-SVN-Commit-Paths: branches/2019Q3/net-mgmt/icingaweb2-module-grafana X-SVN-Commit-Revision: 512271 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.29 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, 18 Sep 2019 11:09:46 -0000 Author: lme Date: Wed Sep 18 11:09:45 2019 New Revision: 512271 URL: https://svnweb.freebsd.org/changeset/ports/512271 Log: MFH: r512261 net-mgmt/icingaweb2-module-grafana: Update to 1.3.6 Approved by: ports-secteam (joneum) Modified: branches/2019Q3/net-mgmt/icingaweb2-module-grafana/Makefile branches/2019Q3/net-mgmt/icingaweb2-module-grafana/distinfo branches/2019Q3/net-mgmt/icingaweb2-module-grafana/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net-mgmt/icingaweb2-module-grafana/Makefile ============================================================================== --- branches/2019Q3/net-mgmt/icingaweb2-module-grafana/Makefile Wed Sep 18 10:50:27 2019 (r512270) +++ branches/2019Q3/net-mgmt/icingaweb2-module-grafana/Makefile Wed Sep 18 11:09:45 2019 (r512271) @@ -2,7 +2,7 @@ PORTNAME= icingaweb2-module-grafana DISTVERSIONPREFIX= v -DISTVERSION= 1.3.5 +DISTVERSION= 1.3.6 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org @@ -22,7 +22,7 @@ NO_ARCH= yes WWWDIR?= ${PREFIX}/www/icingaweb2/modules/${PORTNAME:C/^.*-//} do-install: - @${RM} -r ${WRKSRC}/.README.md.swp ${WRKSRC}/.github + @${RM} -r ${WRKSRC}/.idea ${WRKSRC}/.github @${MKDIR} ${STAGEDIR}${WWWDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) Modified: branches/2019Q3/net-mgmt/icingaweb2-module-grafana/distinfo ============================================================================== --- branches/2019Q3/net-mgmt/icingaweb2-module-grafana/distinfo Wed Sep 18 10:50:27 2019 (r512270) +++ branches/2019Q3/net-mgmt/icingaweb2-module-grafana/distinfo Wed Sep 18 11:09:45 2019 (r512271) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557738901 -SHA256 (mikesch-mp-icingaweb2-module-grafana-v1.3.5_GH0.tar.gz) = c24ef277efe5a3acd14a77c59f620eff96af4fe408991fb82d7af6c3bef166ee -SIZE (mikesch-mp-icingaweb2-module-grafana-v1.3.5_GH0.tar.gz) = 1771869 +TIMESTAMP = 1568797815 +SHA256 (mikesch-mp-icingaweb2-module-grafana-v1.3.6_GH0.tar.gz) = 41bcedc6ee2b5b83695e7e16260ad7b4b633a38f181ab985ac4ab580531e9103 +SIZE (mikesch-mp-icingaweb2-module-grafana-v1.3.6_GH0.tar.gz) = 1776495 Modified: branches/2019Q3/net-mgmt/icingaweb2-module-grafana/pkg-plist ============================================================================== --- branches/2019Q3/net-mgmt/icingaweb2-module-grafana/pkg-plist Wed Sep 18 10:50:27 2019 (r512270) +++ branches/2019Q3/net-mgmt/icingaweb2-module-grafana/pkg-plist Wed Sep 18 11:09:45 2019 (r512271) @@ -1,8 +1,3 @@ -%%WWWDIR%%/.idea/icingaweb2-module-grafana.iml -%%WWWDIR%%/.idea/inspectionProfiles/profiles_settings.xml -%%WWWDIR%%/.idea/misc.xml -%%WWWDIR%%/.idea/modules.xml -%%WWWDIR%%/.idea/workspace.xml %%WWWDIR%%/CHANGELOG.md %%WWWDIR%%/CONTRIBUTING.md %%WWWDIR%%/LICENSE From owner-svn-ports-branches@freebsd.org Wed Sep 18 15:28:24 2019 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 841ED12128F; Wed, 18 Sep 2019 15:28:24 +0000 (UTC) (envelope-from zeising@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) server-signature RSA-PSS (4096 bits) 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 46YP541wx8z4SHc; Wed, 18 Sep 2019 15:28:24 +0000 (UTC) (envelope-from zeising@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 269A326F07; Wed, 18 Sep 2019 15:28:24 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8IFSODQ090313; Wed, 18 Sep 2019 15:28:24 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8IFSNji090312; Wed, 18 Sep 2019 15:28:23 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201909181528.x8IFSNji090312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Wed, 18 Sep 2019 15:28:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512277 - branches/2019Q3/graphics/drm-current-kmod X-SVN-Group: ports-branches X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: branches/2019Q3/graphics/drm-current-kmod X-SVN-Commit-Revision: 512277 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.29 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, 18 Sep 2019 15:28:24 -0000 Author: zeising Date: Wed Sep 18 15:28:23 2019 New Revision: 512277 URL: https://svnweb.freebsd.org/changeset/ports/512277 Log: MFH: r510009 r510045 r512276 graphics/drm-current-kmod: Update snapshot Fix build on latest current. graphics/drm-current-kmod: Update snapshot Update snapshot with fixes for powerpc64 elfv, fixes when printing a sysctl and fixes in anticipation of updates to current. graphics/drm-current-kmod: Update snapshot Update drm-current-snapshot. This has been reported to fix some issues on recent current. Approved by: ports-secteam (implicit, drm-drivers blanket) Modified: branches/2019Q3/graphics/drm-current-kmod/Makefile branches/2019Q3/graphics/drm-current-kmod/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/graphics/drm-current-kmod/Makefile ============================================================================== --- branches/2019Q3/graphics/drm-current-kmod/Makefile Wed Sep 18 15:20:52 2019 (r512276) +++ branches/2019Q3/graphics/drm-current-kmod/Makefile Wed Sep 18 15:28:23 2019 (r512277) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-current-kmod -PORTVERSION= 4.16.g20190814 +PORTVERSION= 4.16.g20190918 CATEGORIES= graphics kld MAINTAINER= x11@FreeBSD.org @@ -34,7 +34,7 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= f4e7403 +GH_TAGNAME= 11cf2dc .include Modified: branches/2019Q3/graphics/drm-current-kmod/distinfo ============================================================================== --- branches/2019Q3/graphics/drm-current-kmod/distinfo Wed Sep 18 15:20:52 2019 (r512276) +++ branches/2019Q3/graphics/drm-current-kmod/distinfo Wed Sep 18 15:28:23 2019 (r512277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565813816 -SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190814-f4e7403_GH0.tar.gz) = 477a76b33fb97983d5d342dbac75a81c6e0f95b2fded2227edbf4f365366916d -SIZE (FreeBSDDesktop-kms-drm-4.16.g20190814-f4e7403_GH0.tar.gz) = 13087363 +TIMESTAMP = 1568818553 +SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190918-11cf2dc_GH0.tar.gz) = 3b5538e56413e540fc9d2ec008fccc8161c74482503e1bca9f2d0ad2b62e8169 +SIZE (FreeBSDDesktop-kms-drm-4.16.g20190918-11cf2dc_GH0.tar.gz) = 13089397 From owner-svn-ports-branches@freebsd.org Wed Sep 18 17:16:17 2019 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 41C7B1235A2; Wed, 18 Sep 2019 17:16:17 +0000 (UTC) (envelope-from leres@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) server-signature RSA-PSS (4096 bits) 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 46YRTY0zkFz4YhJ; Wed, 18 Sep 2019 17:16:17 +0000 (UTC) (envelope-from leres@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 048342E1; Wed, 18 Sep 2019 17:16:17 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8IHGG7m054891; Wed, 18 Sep 2019 17:16:16 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8IHGGx5054889; Wed, 18 Sep 2019 17:16:16 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201909181716.x8IHGGx5054889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Wed, 18 Sep 2019 17:16:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512280 - branches/2019Q3/security/bro X-SVN-Group: ports-branches X-SVN-Commit-Author: leres X-SVN-Commit-Paths: branches/2019Q3/security/bro X-SVN-Commit-Revision: 512280 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.29 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, 18 Sep 2019 17:16:17 -0000 Author: leres Date: Wed Sep 18 17:16:16 2019 New Revision: 512280 URL: https://svnweb.freebsd.org/changeset/ports/512280 Log: MFH: r512245 security/bro: Update to 2.6.4 and address a potential Denial of Service vulnerability: https://raw.githubusercontent.com/zeek/zeek/3b5a9f88ece1d274edee897837e280ef751bde94/NEWS - The NTLM analyzer did not properly handle AV Pair sequences that were either empty or unterminated, resulting in invalid memory access or heap buffer over-read. The NTLM analyzer is enabled by default and used in the analysis of SMB, DCE/RPC, and GSSAPI protocols. Approved by: ler (mentor, implicit) Security: 55571619-454e-4769-b1e5-28354659e152 Approved by: ports-secteam (miwi) Modified: branches/2019Q3/security/bro/Makefile branches/2019Q3/security/bro/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/security/bro/Makefile ============================================================================== --- branches/2019Q3/security/bro/Makefile Wed Sep 18 17:14:34 2019 (r512279) +++ branches/2019Q3/security/bro/Makefile Wed Sep 18 17:16:16 2019 (r512280) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bro -PORTVERSION= 2.6.3 +PORTVERSION= 2.6.4 CATEGORIES= security MASTER_SITES= https://www.zeek.org/downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} Modified: branches/2019Q3/security/bro/distinfo ============================================================================== --- branches/2019Q3/security/bro/distinfo Wed Sep 18 17:14:34 2019 (r512279) +++ branches/2019Q3/security/bro/distinfo Wed Sep 18 17:16:16 2019 (r512280) @@ -1,5 +1,5 @@ -TIMESTAMP = 1565320389 -SHA256 (bro-2.6.3.tar.gz) = 469dd7456af388ba65d8722fbfdd5b9182f14def16149aa5ebceb1cfd881697f -SIZE (bro-2.6.3.tar.gz) = 28480249 +TIMESTAMP = 1568760632 +SHA256 (bro-2.6.4.tar.gz) = a47a9cdcef0ea14d5f70c390ab266f0333063ff96f3869a5f1609581a1d1ceb7 +SIZE (bro-2.6.4.tar.gz) = 28481281 SHA256 (bro-bro-netmap-cf88debf487b31ab30dc3b5bac64783b4e49997e_GH0.tar.gz) = 383423f92932c3ef244194954708b3a237b4f37ebc358014f51dcb3b9786896b SIZE (bro-bro-netmap-cf88debf487b31ab30dc3b5bac64783b4e49997e_GH0.tar.gz) = 24630 From owner-svn-ports-branches@freebsd.org Thu Sep 19 07:55:02 2019 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 E3564F9A86; Thu, 19 Sep 2019 07:55:02 +0000 (UTC) (envelope-from zeising@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) server-signature RSA-PSS (4096 bits) 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 46YpzV5g5Nz4Nk3; Thu, 19 Sep 2019 07:55:02 +0000 (UTC) (envelope-from zeising@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 A5AF5A403; Thu, 19 Sep 2019 07:55:02 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8J7t2S7073997; Thu, 19 Sep 2019 07:55:02 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8J7t2TW073996; Thu, 19 Sep 2019 07:55:02 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201909190755.x8J7t2TW073996@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Thu, 19 Sep 2019 07:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512319 - branches/2019Q3/graphics/drm-fbsd11.2-kmod X-SVN-Group: ports-branches X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: branches/2019Q3/graphics/drm-fbsd11.2-kmod X-SVN-Commit-Revision: 512319 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.29 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, 19 Sep 2019 07:55:03 -0000 Author: zeising Date: Thu Sep 19 07:55:02 2019 New Revision: 512319 URL: https://svnweb.freebsd.org/changeset/ports/512319 Log: MFH: r512318 graphics/drm-fbsd11.2-kmod: Restrict versions Restrcict drm-fbsd11.2-kmod to 11.2 and the rest of the 11 branch. This port might work on 12.0 as well, but this is not supported anyway. It's definetly broken on 13-CURRENT. Approved by: ports-secteam (drm drivers blanket) Modified: branches/2019Q3/graphics/drm-fbsd11.2-kmod/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/graphics/drm-fbsd11.2-kmod/Makefile ============================================================================== --- branches/2019Q3/graphics/drm-fbsd11.2-kmod/Makefile Thu Sep 19 07:47:11 2019 (r512318) +++ branches/2019Q3/graphics/drm-fbsd11.2-kmod/Makefile Thu Sep 19 07:55:02 2019 (r512319) @@ -32,6 +32,10 @@ GH_TAGNAME= 72300db .include +.if ${OPSYS} == FreeBSD && (${OSVERSION} < 1102000 || ${OSVERSION} > 1200000) +IGNORE= only supported on FreeBSD 11. +.endif + .if ${OPSYS} != FreeBSD IGNORE= not supported on anything but FreeBSD (missing linuxkpi functionality) .endif From owner-svn-ports-branches@freebsd.org Thu Sep 19 16:50:34 2019 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 E2A0112861E; Thu, 19 Sep 2019 16:50:34 +0000 (UTC) (envelope-from tijl@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) server-signature RSA-PSS (4096 bits) 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 46Z2sQ5n9nz400Z; Thu, 19 Sep 2019 16:50:34 +0000 (UTC) (envelope-from tijl@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 AB51A1859C; Thu, 19 Sep 2019 16:50:34 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8JGoYq7090302; Thu, 19 Sep 2019 16:50:34 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8JGoYFk090300; Thu, 19 Sep 2019 16:50:34 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201909191650.x8JGoYFk090300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 19 Sep 2019 16:50:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512362 - branches/2019Q3/security/mbedtls X-SVN-Group: ports-branches X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: branches/2019Q3/security/mbedtls X-SVN-Commit-Revision: 512362 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.29 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, 19 Sep 2019 16:50:34 -0000 Author: tijl Date: Thu Sep 19 16:50:33 2019 New Revision: 512362 URL: https://svnweb.freebsd.org/changeset/ports/512362 Log: MFH: r512324 Update to 2.16.3. Security: https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2019-10 Approved by: ports-secteam (joneum) Modified: branches/2019Q3/security/mbedtls/Makefile branches/2019Q3/security/mbedtls/distinfo Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/security/mbedtls/Makefile ============================================================================== --- branches/2019Q3/security/mbedtls/Makefile Thu Sep 19 16:30:05 2019 (r512361) +++ branches/2019Q3/security/mbedtls/Makefile Thu Sep 19 16:50:33 2019 (r512362) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mbedtls -PORTVERSION= 2.16.2 +PORTVERSION= 2.16.3 DISTVERSIONPREFIX=${PORTNAME}- CATEGORIES= security devel Modified: branches/2019Q3/security/mbedtls/distinfo ============================================================================== --- branches/2019Q3/security/mbedtls/distinfo Thu Sep 19 16:30:05 2019 (r512361) +++ branches/2019Q3/security/mbedtls/distinfo Thu Sep 19 16:50:33 2019 (r512362) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561019039 -SHA256 (ARMmbed-mbedtls-mbedtls-2.16.2_GH0.tar.gz) = 4699f2509c3b2c65f6c27b9a7e114ad0e7df1e8c70b0f82bbad7585cad8aa47e -SIZE (ARMmbed-mbedtls-mbedtls-2.16.2_GH0.tar.gz) = 2452915 +TIMESTAMP = 1568885139 +SHA256 (ARMmbed-mbedtls-mbedtls-2.16.3_GH0.tar.gz) = ec72ecf39275327f52b5ee9787271313a0d2960e7342b488d223a118ba164caa +SIZE (ARMmbed-mbedtls-mbedtls-2.16.3_GH0.tar.gz) = 2459563 From owner-svn-ports-branches@freebsd.org Sat Sep 21 01:43:17 2019 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 39E5BF0773; Sat, 21 Sep 2019 01:43:17 +0000 (UTC) (envelope-from gjb@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) server-signature RSA-PSS (4096 bits) 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 46Ztdd0mgFz3Qqv; Sat, 21 Sep 2019 01:43:17 +0000 (UTC) (envelope-from gjb@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 D9AF16D68; Sat, 21 Sep 2019 01:43:16 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8L1hGV0062549; Sat, 21 Sep 2019 01:43:16 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8L1hFC5062540; Sat, 21 Sep 2019 01:43:15 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201909210143.x8L1hFC5062540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Sat, 21 Sep 2019 01:43:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512457 - in branches/2019Q3/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Group: ports-branches X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in branches/2019Q3/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Commit-Revision: 512457 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.29 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, 21 Sep 2019 01:43:17 -0000 Author: gjb Date: Sat Sep 21 01:43:14 2019 New Revision: 512457 URL: https://svnweb.freebsd.org/changeset/ports/512457 Log: MFH: r512456 Add 12.1-BETA1 MANIFEST files. Approved by: portmgr (implicit, re blanket) Sponsored by: Rubicon Communications, LLC (Netgate) Added: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.1-BETA1 branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.1-BETA1 branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.1-BETA1 branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.1-BETA1 branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.1-BETA1 branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.1-BETA1 branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.1-BETA1 - copied unchanged from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.1-BETA1 Modified: branches/2019Q3/misc/freebsd-release-manifests/Makefile branches/2019Q3/misc/freebsd-release-manifests/pkg-plist Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/misc/freebsd-release-manifests/Makefile ============================================================================== --- branches/2019Q3/misc/freebsd-release-manifests/Makefile Sat Sep 21 01:42:16 2019 (r512456) +++ branches/2019Q3/misc/freebsd-release-manifests/Makefile Sat Sep 21 01:43:14 2019 (r512457) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= freebsd-release-manifests -DISTVERSION= 20190709 +DISTVERSION= 20190920 PORTREVISION= 0 CATEGORIES= misc MASTER_SITES= # Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-12.1-BETA1) @@ -0,0 +1,9 @@ +base-dbg.txz bd1edd485e0d9d82732a1ad89f95fe3c2001d3d02a4eea76d9ae7c73ca4c98dc 1635 base_dbg "Base system (Debugging)" off +base.txz 97fb81c602c2dda94f3a732429db3347a77693da576e7997dcffa48eb84e3048 25671 base "Base system (MANDATORY)" on +kernel-dbg.txz 462793f754054a55084cd7ec9b518962b20b493ed2daf369f9498ee3913ed23f 884 kernel_dbg "Kernel (Debugging)" on +kernel.txz a1f2c3957505a67ae24ea189b88a1e08d0dcc3e3ee9605eadff6d8024891c9b7 896 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz 0a149f8f26b0700cda8c2754cb2dc598a0490c885661a9746f356165656bb729 243 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz 50938d87fd96926a316ab082678224967a88373ae3a09a854939e6c5ffa94c20 1009 lib32 "32-bit compatibility libraries" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz 0b3af446ab1e53a9323da99fc91d62ca6ec6a71613308e8bc3445e1e8503ba34 5941 tests "Test suite" off Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-12.1-BETA1) @@ -0,0 +1,7 @@ +base-dbg.txz 1e93e674d30674bab00f4edb74ac4a34a044fd1cc3893a3ee364c6677803daaa 1603 base_dbg "Base system (Debugging)" off +base.txz 8554da46b49cba3089fdb6a30f8497b75f8f917e840f25de4420dd19971c665d 25373 base "Base system (MANDATORY)" on +kernel-dbg.txz 2d79ef08b43827a313a7e8783f7d063d956b7c08f360acabc40da156e1cdcdaf 617 kernel_dbg "Kernel (Debugging)" on +kernel.txz 2ee20862e5e793d29085cc84178579a8a70a113ea3d2e2441b285c8a10416244 653 kernel "Kernel (MANDATORY)" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz 6b748eb01ac5e48144bcd9b0ab08e7c3bce553bc94b9985da6abc27c987c244b 5938 tests "Test suite" off Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-12.1-BETA1) @@ -0,0 +1,7 @@ +base-dbg.txz fbcc29c0c566cc1585cc6d7976c8015fec0e7bee04a60ce654bca1da4a921ab7 1633 base_dbg "Base system (Debugging)" off +base.txz 95ba87c3b4500c1794f253977b66ef1ae2425162b0e13da5bad68f2359873788 25676 base "Base system (MANDATORY)" on +kernel-dbg.txz fb10fb74a4cdb9006c69bb6c31718f7e2876e4a7d9e701b80de7170e476ea001 878 kernel_dbg "Kernel (Debugging)" on +kernel.txz c767e11ff7e0ae9a2949b0080cef139b5312dc66ed15ec6a142a737cd1c28f0e 889 kernel "Kernel (MANDATORY)" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz 36cb5498015c136173c390000cf928cd23c00b9a7bcabff2be0a2b053468d1c2 5941 tests "Test suite" off Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-12.1-BETA1) @@ -0,0 +1,7 @@ +base-dbg.txz 24912b3fd16e23878b0c2f4162c54fa396acaea391ed0483f24ae1154d0ce570 1593 base_dbg "Base system (Debugging)" off +base.txz 1ca5a389a3fa82a54cac935e03a354d58a3f6ab7b8f322e0d8d8d1d830cd4bcb 25401 base "Base system (MANDATORY)" on +kernel-dbg.txz 51f42051141b23303e1a14b2ef39ac8094b3d04e8c43de3604c9bc2356689c8b 605 kernel_dbg "Kernel (Debugging)" on +kernel.txz a36f4c35520152c02869674f90db8bf7da1cccb80f014eb53021cbfc637a9fad 615 kernel "Kernel (MANDATORY)" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz 6bb4416bc766a485ccc31dc8d0c8dd5505f81bf7ec649a856441d0613d759673 5821 tests "Test suite" off Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-12.1-BETA1) @@ -0,0 +1,9 @@ +base-dbg.txz aaad0518ee3a8a41b759c0a968495df9aa66ad5bd65a24f6e38f12cc975c3c1a 1601 base_dbg "Base system (Debugging)" off +base.txz 11fb0042ca51edb51b929b276d13a2a63f3258e3c28027d2d23b406d69757186 25429 base "Base system (MANDATORY)" on +kernel-dbg.txz 67b4e95df462cf1000fb9229157089fbb36370deafe3b58a49eec801426e175e 700 kernel_dbg "Kernel (Debugging)" on +kernel.txz 013b780b1307bbc854a1bb6ea6e0af915963fbd83c4f6b190559805bce0d40f1 710 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz f4c3e2d18f8e5e5973431f9a5e72a3a368f5a12add18a5f80a8294b5e26ec4da 234 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz 89b9162697e339ed8a96a78a5a9a05d1211d7d4bc800c8eadda74734d915d69b 971 lib32 "32-bit compatibility libraries" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz 0497d89b2c1d3a416dcfd730614faac300c3c40e06d2127d21352fee4751dd49 5821 tests "Test suite" off Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpcspe-12.1-BETA1) @@ -0,0 +1,7 @@ +base-dbg.txz 8f71b352a7e7aed4dff289b6632bf5daf1349f34c925594116367d90a696bca6 1592 base_dbg "Base system (Debugging)" off +base.txz 2a11715af9c7e32a49d07f0cfe0665f7dff1c25743eb90213cd93714e6b95bff 25396 base "Base system (MANDATORY)" on +kernel-dbg.txz 6a2ea2c7862a0bcd8bb3b7fc9ae57063e75cfc94fde54ceddaa08f66a575941e 605 kernel_dbg "Kernel (Debugging)" on +kernel.txz 6c72689cb52422d697c9474ff40b1ab8480fd7705e4dd7e538f7046d29968717 615 kernel "Kernel (MANDATORY)" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz c0217bb776d049867f9a34a302910b4db79072fbb155b919123b7fe2a71cb2cb 5821 tests "Test suite" off Copied: branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.1-BETA1 (from r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.1-BETA1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.1-BETA1 Sat Sep 21 01:43:14 2019 (r512457, copy of r512456, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-12.1-BETA1) @@ -0,0 +1,7 @@ +base-dbg.txz 48907f58084a78fcec5ccab9b9bf546112c07091c97e1017e780f853529f6119 1592 base_dbg "Base system (Debugging)" off +base.txz d70c686c5b68df5e98a979a571bfef9c4841a46c8ea002386468a554d9162a1e 25334 base "Base system (MANDATORY)" on +kernel-dbg.txz f08effea2798504a58e1f3eb7d0603ef7611bee32a7cee57e9c35d5e62911da2 587 kernel_dbg "Kernel (Debugging)" on +kernel.txz c148a64d839d1858ca2c620620e2368affe4b0e260be7a5125323c8ff006335d 597 kernel "Kernel (MANDATORY)" on +ports.txz e00d0751e2f5ac338a7b44a02e2affb6f904a47ee6d00819f75ad90401c6ca19 176800 ports "Ports tree" off +src.txz 42ed6b84ecd1066c9837d965777579dceba9d9f566632cbbd7580caa1472de89 86719 src "System source tree" off +tests.txz 7fda8f35ef4a83e4a44216c79adee762e2c3be70f0513967c80f35ed1923a87e 5817 tests "Test suite" off Modified: branches/2019Q3/misc/freebsd-release-manifests/pkg-plist ============================================================================== --- branches/2019Q3/misc/freebsd-release-manifests/pkg-plist Sat Sep 21 01:42:16 2019 (r512456) +++ branches/2019Q3/misc/freebsd-release-manifests/pkg-plist Sat Sep 21 01:43:14 2019 (r512457) @@ -81,3 +81,10 @@ %%DATADIR%%/MANIFESTS/powerpc-powerpc-11.3-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.3-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-11.3-RELEASE +%%DATADIR%%/MANIFESTS/amd64-amd64-12.1-BETA1 +%%DATADIR%%/MANIFESTS/arm64-aarch64-12.1-BETA1 +%%DATADIR%%/MANIFESTS/i386-i386-12.1-BETA1 +%%DATADIR%%/MANIFESTS/powerpc-powerpc-12.1-BETA1 +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-12.1-BETA1 +%%DATADIR%%/MANIFESTS/powerpc-powerpcspe-12.1-BETA1 +%%DATADIR%%/MANIFESTS/sparc64-sparc64-12.1-BETA1 From owner-svn-ports-branches@freebsd.org Sat Sep 21 08:39:45 2019 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 86D19FBDC2; Sat, 21 Sep 2019 08:39:45 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46b3t92xRVz4GyH; Sat, 21 Sep 2019 08:39:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 482FAB80C; Sat, 21 Sep 2019 08:39:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8L8djd3006400; Sat, 21 Sep 2019 08:39:45 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8L8djH7006399; Sat, 21 Sep 2019 08:39:45 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909210839.x8L8djH7006399@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 21 Sep 2019 08:39:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512478 - branches/2019Q3/devel/xeus-cling X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/devel/xeus-cling X-SVN-Commit-Revision: 512478 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.29 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, 21 Sep 2019 08:39:45 -0000 Author: antoine Date: Sat Sep 21 08:39:44 2019 New Revision: 512478 URL: https://svnweb.freebsd.org/changeset/ports/512478 Log: MFH: r512477 Mark BROKEN with lld Modified: branches/2019Q3/devel/xeus-cling/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/devel/xeus-cling/Makefile ============================================================================== --- branches/2019Q3/devel/xeus-cling/Makefile Sat Sep 21 08:39:14 2019 (r512477) +++ branches/2019Q3/devel/xeus-cling/Makefile Sat Sep 21 08:39:44 2019 (r512478) @@ -10,7 +10,9 @@ COMMENT= C++ Jupyter Kernel LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_13= https://github.com/QuantStack/xeus-cling/issues/234 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= https://github.com/QuantStack/xeus-cling/issues/234 +.endif BUILD_DEPENDS= cppzmq>0:net/cppzmq \ cxxopts>0:devel/cxxopts \ From owner-svn-ports-branches@freebsd.org Sat Sep 21 08:42:28 2019 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 3BD92FC080; Sat, 21 Sep 2019 08:42:28 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46b3xJ0v2Qz4HPm; Sat, 21 Sep 2019 08:42:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 02DF1B9C0; Sat, 21 Sep 2019 08:42:28 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8L8gRrP011940; Sat, 21 Sep 2019 08:42:27 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8L8gR82011939; Sat, 21 Sep 2019 08:42:27 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909210842.x8L8gR82011939@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 21 Sep 2019 08:42:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512480 - branches/2019Q3/math/py-z3-solver X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/math/py-z3-solver X-SVN-Commit-Revision: 512480 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.29 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, 21 Sep 2019 08:42:28 -0000 Author: antoine Date: Sat Sep 21 08:42:27 2019 New Revision: 512480 URL: https://svnweb.freebsd.org/changeset/ports/512480 Log: MFH: r507522 math/py-z3-solver: Broken on i386 Modified: branches/2019Q3/math/py-z3-solver/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/math/py-z3-solver/Makefile ============================================================================== --- branches/2019Q3/math/py-z3-solver/Makefile Sat Sep 21 08:40:13 2019 (r512479) +++ branches/2019Q3/math/py-z3-solver/Makefile Sat Sep 21 08:42:27 2019 (r512480) @@ -13,8 +13,10 @@ COMMENT= Python binding for Z3 Theorem Prover LICENSE= MIT LICENSE_FILE= ${WRKSRC}/../../../LICENSE.txt -# CAVEAT: It should have LIB_DEPENDS=libz3.so:math/z3, but currently it rebuilds all code, see https://github.com/Z3Prover/z3/issues/1767 +BROKEN_i386= can't create dynamic relocation R_386_32 against symbol: .L.str in readonly segment; see https://github.com/Z3Prover/z3/issues/2442 +# CAVEAT: There should have LIB_DEPENDS=libz3.so:math/z3, but currently it rebuilds all code, see https://github.com/Z3Prover/z3/issues/1767 + USES= compiler:c++11-lang python USE_GITHUB= yes GH_ACCOUNT= Z3Prover @@ -22,8 +24,6 @@ GH_PROJECT= z3 USE_PYTHON= distutils autoplist WRKSRC_SUBDIR= src/api/python - -CXXFLAGS+= -fPIC # failure message on 13-i386 suggested -fPIC, no other platforms experienced failures post-patch: # https://github.com/Z3Prover/z3/issues/2131 @${REINPLACE_CMD} 's|…|...|' ${WRKSRC}/../../ast/recfun_decl_plugin.h From owner-svn-ports-branches@freebsd.org Sat Sep 21 08:45:02 2019 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 9A8B4FC109; Sat, 21 Sep 2019 08:45:02 +0000 (UTC) (envelope-from tijl@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) server-signature RSA-PSS (4096 bits) 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 46b40G3cYLz4HWN; Sat, 21 Sep 2019 08:45:02 +0000 (UTC) (envelope-from tijl@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 5C5D2B9C8; Sat, 21 Sep 2019 08:45:02 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8L8j2oI012259; Sat, 21 Sep 2019 08:45:02 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8L8j2bV012258; Sat, 21 Sep 2019 08:45:02 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201909210845.x8L8j2bV012258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sat, 21 Sep 2019 08:45:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512481 - branches/2019Q3/net/linux-c7-avahi-libs X-SVN-Group: ports-branches X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: branches/2019Q3/net/linux-c7-avahi-libs X-SVN-Commit-Revision: 512481 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.29 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, 21 Sep 2019 08:45:02 -0000 Author: tijl Date: Sat Sep 21 08:45:01 2019 New Revision: 512481 URL: https://svnweb.freebsd.org/changeset/ports/512481 Log: MFH: r512479 Add dependency on dbus, required by libavahi-client.so.3. PR: 240726 Submitted by: Tatsuki Makino Approved by: ports-secteam (blanket) Modified: branches/2019Q3/net/linux-c7-avahi-libs/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/net/linux-c7-avahi-libs/Makefile ============================================================================== --- branches/2019Q3/net/linux-c7-avahi-libs/Makefile Sat Sep 21 08:42:27 2019 (r512480) +++ branches/2019Q3/net/linux-c7-avahi-libs/Makefile Sat Sep 21 08:45:01 2019 (r512481) @@ -4,7 +4,7 @@ PORTNAME= avahi PORTVERSION= 0.6.31 DISTVERSIONSUFFIX= -19.el7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net linux PKGNAMESUFFIX= -libs @@ -13,6 +13,7 @@ COMMENT= Libraries for Avahi (Linux CentOS ${LINUX_DIS USES= linux:c7 USE_LDCONFIG= yes +USE_LINUX= dbuslibs USE_LINUX_RPM= yes LIB_DISTNAMES= ${PORTNAME}${PKGNAMESUFFIX}-${DISTVERSIONFULL} From owner-svn-ports-branches@freebsd.org Sat Sep 21 08:46:18 2019 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 05E4EFC205; Sat, 21 Sep 2019 08:46:18 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46b41j6NQKz4Hlf; Sat, 21 Sep 2019 08:46:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF885B9CE; Sat, 21 Sep 2019 08:46:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8L8kHOB012567; Sat, 21 Sep 2019 08:46:17 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8L8kH8i012566; Sat, 21 Sep 2019 08:46:17 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909210846.x8L8kH8i012566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 21 Sep 2019 08:46:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512483 - branches/2019Q3/graphics/entangle X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/graphics/entangle X-SVN-Commit-Revision: 512483 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.29 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, 21 Sep 2019 08:46:18 -0000 Author: antoine Date: Sat Sep 21 08:46:17 2019 New Revision: 512483 URL: https://svnweb.freebsd.org/changeset/ports/512483 Log: MFH: r512482 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/graphics/entangle/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/graphics/entangle/Makefile ============================================================================== --- branches/2019Q3/graphics/entangle/Makefile Sat Sep 21 08:45:40 2019 (r512482) +++ branches/2019Q3/graphics/entangle/Makefile Sat Sep 21 08:46:17 2019 (r512483) @@ -12,6 +12,10 @@ COMMENT= Digital camera tethered control and capture p LICENSE= GPLv3 +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: ./.libs/libentangle_backend.so: undefined reference to gst_base_src_get_type +.endif + BUILD_DEPENDS= ${LOCALBASE}/share/icons/mate/scalable/devices/camera-photo-symbolic.svg:x11-themes/mate-icon-theme \ itstool:textproc/itstool LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 \ From owner-svn-ports-branches@freebsd.org Sat Sep 21 08:48:23 2019 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 C3BB9FC30A; Sat, 21 Sep 2019 08:48:23 +0000 (UTC) (envelope-from antoine@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) server-signature RSA-PSS (4096 bits) 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 46b4474nDmz4Hxk; Sat, 21 Sep 2019 08:48:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87942B9D2; Sat, 21 Sep 2019 08:48:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8L8mNQD012900; Sat, 21 Sep 2019 08:48:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8L8mNxI012899; Sat, 21 Sep 2019 08:48:23 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201909210848.x8L8mNxI012899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 21 Sep 2019 08:48:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512485 - branches/2019Q3/textproc/link-grammar X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: branches/2019Q3/textproc/link-grammar X-SVN-Commit-Revision: 512485 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.29 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, 21 Sep 2019 08:48:23 -0000 Author: antoine Date: Sat Sep 21 08:48:23 2019 New Revision: 512485 URL: https://svnweb.freebsd.org/changeset/ports/512485 Log: MFH: r512484 Mark BROKEN with lld Reported by: pkg-fallout Modified: branches/2019Q3/textproc/link-grammar/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/textproc/link-grammar/Makefile ============================================================================== --- branches/2019Q3/textproc/link-grammar/Makefile Sat Sep 21 08:48:05 2019 (r512484) +++ branches/2019Q3/textproc/link-grammar/Makefile Sat Sep 21 08:48:23 2019 (r512485) @@ -12,6 +12,10 @@ COMMENT= Grammar checking library LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +.if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld +BROKEN= ld: error: ../link-grammar/.libs/liblink-grammar.so: undefined reference to std::__1::__vector_base_common::__throw_length_error() const +.endif + BUILD_DEPENDS= autoconf-archive>=0:devel/autoconf-archive USES= autoreconf compiler:c++11-lib dos2unix gmake libtool localbase ncurses \ From owner-svn-ports-branches@freebsd.org Sat Sep 21 12:41:14 2019 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 B6993122B75; Sat, 21 Sep 2019 12:41:14 +0000 (UTC) (envelope-from tijl@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) server-signature RSA-PSS (4096 bits) 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 46b9Dp30LCz4Snl; Sat, 21 Sep 2019 12:41:14 +0000 (UTC) (envelope-from tijl@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 3105FE471; Sat, 21 Sep 2019 12:41:14 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8LCfE3Y052053; Sat, 21 Sep 2019 12:41:14 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8LCf7rP052018; Sat, 21 Sep 2019 12:41:07 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201909211241.x8LCf7rP052018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sat, 21 Sep 2019 12:41:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r512491 - in branches/2019Q3: . Mk/Uses archivers archivers/linux-c7-lz4 audio audio/linux-c7-alsa-lib-devel audio/linux-c7-alsa-plugins-oss audio/linux-c7-alsa-plugins-oss/files audio/... X-SVN-Group: ports-branches X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: in branches/2019Q3: . Mk/Uses archivers archivers/linux-c7-lz4 audio audio/linux-c7-alsa-lib-devel audio/linux-c7-alsa-plugins-oss audio/linux-c7-alsa-plugins-oss/files audio/linux-c7-openal-soft audi... X-SVN-Commit-Revision: 512491 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.29 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, 21 Sep 2019 12:41:14 -0000 Author: tijl Date: Sat Sep 21 12:41:06 2019 New Revision: 512491 URL: https://svnweb.freebsd.org/changeset/ports/512491 Log: MFH: r506146, r506147, r506148, r507982, r507986, r509783, r509784, r509785, r509786, r509788, r509790, r509795, r509799, r509800, r509801, r509805, r509852, r509853, r510385, r510930, r511571, r511572, r511576, r511594, r511595, r511597, r511647, r511702, r511746, r511748, r511900 Merge linux-c7 fixes and prerequisite updates. This is mostly about missing dependencies and making ALSA OSS plugin work. Approved by: ports-secteam (blanket) Added: branches/2019Q3/archivers/linux-c7-lz4/ - copied from r509788, head/archivers/linux-c7-lz4/ branches/2019Q3/audio/linux-c7-alsa-lib-devel/ - copied from r511595, head/audio/linux-c7-alsa-lib-devel/ branches/2019Q3/audio/linux-c7-alsa-plugins-oss/files/ - copied from r511597, head/audio/linux-c7-alsa-plugins-oss/files/ branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.i386 - copied unchanged from r510930, head/audio/linux-c7-openal-soft/pkg-plist.i386 branches/2019Q3/devel/linux-c6-elfutils-libelf/ - copied from r509784, head/devel/linux-c6-elfutils-libelf/ branches/2019Q3/devel/linux-c7-elfutils-libelf/ - copied from r509784, head/devel/linux-c7-elfutils-libelf/ branches/2019Q3/devel/linux-c7-elfutils-libs/ - copied from r509785, head/devel/linux-c7-elfutils-libs/ branches/2019Q3/devel/linux-c7-make/ - copied from r511594, head/devel/linux-c7-make/ branches/2019Q3/devel/linux-c7-systemd-libs/ - copied from r509790, head/devel/linux-c7-systemd-libs/ Deleted: branches/2019Q3/devel/linux-c6-libelf/ branches/2019Q3/devel/linux-c7-libelf/ branches/2019Q3/security/linux-c7-openssl/ Modified: branches/2019Q3/MOVED branches/2019Q3/Mk/Uses/linux.mk branches/2019Q3/archivers/Makefile branches/2019Q3/archivers/linux-c7-lz4/Makefile branches/2019Q3/audio/Makefile branches/2019Q3/audio/linux-c7-alsa-plugins-oss/Makefile branches/2019Q3/audio/linux-c7-alsa-plugins-oss/distinfo branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.amd64 branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.i386 branches/2019Q3/audio/linux-c7-openal-soft/Makefile branches/2019Q3/audio/linux-c7-openal-soft/distinfo branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.amd64 branches/2019Q3/audio/linux-c7-pulseaudio-libs/Makefile branches/2019Q3/devel/Makefile branches/2019Q3/devel/linux-c6-elfutils-libelf/Makefile branches/2019Q3/devel/linux-c6-elfutils-libelf/pkg-descr branches/2019Q3/devel/linux-c7-dbus-libs/Makefile branches/2019Q3/devel/linux-c7-devtools/Makefile branches/2019Q3/devel/linux-c7-devtools/distinfo branches/2019Q3/devel/linux-c7-devtools/pkg-plist.amd64 branches/2019Q3/devel/linux-c7-devtools/pkg-plist.i386 branches/2019Q3/devel/linux-c7-elfutils-libelf/Makefile branches/2019Q3/devel/linux-c7-elfutils-libelf/pkg-descr branches/2019Q3/devel/linux-c7-qt/Makefile branches/2019Q3/devel/linux-c7-qt/distinfo branches/2019Q3/devel/linux-c7-qt/pkg-plist.i386 branches/2019Q3/devel/linux-c7-strace/Makefile branches/2019Q3/devel/linux-c7-systemd-libs/Makefile branches/2019Q3/devel/linux-c7-systemd-libs/pkg-plist.amd64 branches/2019Q3/devel/linux-c7-systemd-libs/pkg-plist.i386 branches/2019Q3/emulators/linux-c7/Makefile branches/2019Q3/emulators/linux_base-c7/Makefile branches/2019Q3/emulators/linux_base-c7/distinfo branches/2019Q3/emulators/linux_base-c7/pkg-plist.amd64 branches/2019Q3/emulators/linux_base-c7/pkg-plist.i386 branches/2019Q3/graphics/linux-c6-dri/Makefile branches/2019Q3/graphics/linux-c7-dri/Makefile branches/2019Q3/print/linux-c7-cups-libs/Makefile branches/2019Q3/security/Makefile branches/2019Q3/security/linux-c7-libssh2/Makefile branches/2019Q3/security/linux-c7-libssh2/distinfo branches/2019Q3/security/linux-c7-trousers/Makefile branches/2019Q3/x11-toolkits/linux-c7-qt-x11/Makefile branches/2019Q3/x11-toolkits/linux-c7-qt-x11/distinfo branches/2019Q3/x11-toolkits/linux-c7-qt-x11/pkg-plist.i386 branches/2019Q3/x11/linux-c7-xorg-libs/Makefile branches/2019Q3/x11/linux-c7-xorg-libs/distinfo branches/2019Q3/x11/linux-c7-xorg-libs/pkg-plist.amd64 branches/2019Q3/x11/linux-c7-xorg-libs/pkg-plist.i386 Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/MOVED ============================================================================== --- branches/2019Q3/MOVED Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/MOVED Sat Sep 21 12:41:06 2019 (r512491) @@ -12843,3 +12843,6 @@ emulators/xen-kernel47|emulators/xen-kernel|2019-07-01 sysutils/xen-tools47|sysutils/xen-tools|2019-07-01|Has expired: This port is about to be removed, please update to a newer Xen version www/palemoon||2019-07-03|Not maintained and full of security holes www/seamonkey||2019-07-03|2.49.* is not maintained upstream and full of security holes +devel/linux-c6-libelf|devel/linux-c6-elfutils-libelf|2019-08-25|Moved to match package name +devel/linux-c7-libelf|devel/linux-c7-elfutils-libelf|2019-08-25|Moved to match package name +security/linux-c7-openssl||2019-08-25|Merged into linux_base-c7 Modified: branches/2019Q3/Mk/Uses/linux.mk ============================================================================== --- branches/2019Q3/Mk/Uses/linux.mk Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/Mk/Uses/linux.mk Sat Sep 21 12:41:06 2019 (r512491) @@ -60,124 +60,111 @@ IGNORE= Linux CentOS ${LINUX_DIST_VER} is unsupporte IGNORE= Invalid Linux distribution: ${linux_ARGS} .endif -linux_allegro_DEP= linux-${linux_ARGS}-allegro>0:devel/linux-${linux_ARGS}-allegro -linux_alsa-plugins-oss_DEP= linux-${linux_ARGS}-alsa-plugins-oss>0:audio/linux-${linux_ARGS}-alsa-plugins-oss -linux_alsa-plugins-pulseaudio_DEP=linux-${linux_ARGS}-alsa-plugins-pulseaudio>0:audio/linux-${linux_ARGS}-alsa-plugins-pulseaudio -linux_alsalib_DEP= linux-${linux_ARGS}-alsa-lib>0:audio/linux-${linux_ARGS}-alsa-lib -linux_atk_DEP= linux-${linux_ARGS}-atk>0:accessibility/linux-${linux_ARGS}-atk -linux_avahi-libs_DEP= linux-${linux_ARGS}-avahi-libs>0:net/linux-${linux_ARGS}-avahi-libs -linux_base_DEP= linux_base-${linux_ARGS}>0:emulators/linux_base-${linux_ARGS} -linux_cairo_DEP= linux-${linux_ARGS}-cairo>0:graphics/linux-${linux_ARGS}-cairo -linux_cups-libs_DEP= linux-${linux_ARGS}-cups-libs>0:print/linux-${linux_ARGS}-cups-libs -linux_curl_DEP= linux-${linux_ARGS}-curl>0:ftp/linux-${linux_ARGS}-curl -linux_cyrus-sasl2_DEP= linux-${linux_ARGS}-cyrus-sasl-lib>0:security/linux-${linux_ARGS}-cyrus-sasl2 -linux_dbusglib_DEP= linux-${linux_ARGS}-dbus-glib>0:devel/linux-${linux_ARGS}-dbus-glib -linux_dbuslibs_DEP= linux-${linux_ARGS}-dbus-libs>0:devel/linux-${linux_ARGS}-dbus-libs -linux_devtools_DEP= linux-${linux_ARGS}-devtools>0:devel/linux-${linux_ARGS}-devtools -linux_dri_DEP= linux-${linux_ARGS}-dri>0:graphics/linux-${linux_ARGS}-dri -linux_expat_DEP= linux-${linux_ARGS}-expat>0:textproc/linux-${linux_ARGS}-expat -.if ${linux_ARGS} == c6 -linux_flac_DEP= linux-${linux_ARGS}-flac>0:audio/linux-${linux_ARGS}-flac -.else -linux_flac_DEP= linux-${linux_ARGS}-flac-libs>0:audio/linux-${linux_ARGS}-flac -.endif -linux_fontconfig_DEP= linux-${linux_ARGS}-fontconfig>0:x11-fonts/linux-${linux_ARGS}-fontconfig -linux_freetype_DEP= linux-${linux_ARGS}-freetype>0:print/linux-${linux_ARGS}-freetype -linux_fribidi_DEP= linux-${linux_ARGS}-fribidi>0:converters/linux-${linux_ARGS}-fribidi -linux_gdkpixbuf2_DEP= linux-${linux_ARGS}-gdk-pixbuf2>0:graphics/linux-${linux_ARGS}-gdk-pixbuf2 -linux_gnutls_DEP= linux-${linux_ARGS}-gnutls>0:security/linux-${linux_ARGS}-gnutls -linux_graphite2_DEP= linux-${linux_ARGS}-graphite2>0:graphics/linux-${linux_ARGS}-graphite2 -linux_gtk2_DEP= linux-${linux_ARGS}-gtk2>0:x11-toolkits/linux-${linux_ARGS}-gtk2 -linux_harfbuzz_DEP= linux-${linux_ARGS}-harfbuzz>0:print/linux-${linux_ARGS}-harfbuzz -linux_icu_DEP= linux-${linux_ARGS}-icu>0:devel/linux-${linux_ARGS}-icu -linux_jasper_DEP= linux-${linux_ARGS}-jasper-libs>0:graphics/linux-${linux_ARGS}-jasper -linux_jbigkit_DEP= linux-${linux_ARGS}-jbigkit-libs>0:graphics/linux-${linux_ARGS}-jbigkit -linux_jpeg_DEP= linux-${linux_ARGS}-jpeg>0:graphics/linux-${linux_ARGS}-jpeg -linux_libasyncns_DEP= linux-${linux_ARGS}-libasyncns>0:dns/linux-${linux_ARGS}-libasyncns -.if ${linux_ARGS} == c6 -linux_libaudiofile_DEP= linux-${linux_ARGS}-audiofile>0:audio/linux-${linux_ARGS}-libaudiofile -.else -linux_libaudiofile_DEP= linux-${linux_ARGS}-audiofile>0:audio/linux-${linux_ARGS}-audiofile -.endif -linux_libelf_DEP= linux-${linux_ARGS}-elfutils-libelf>0:devel/linux-${linux_ARGS}-libelf -linux_libgcrypt_DEP= linux-${linux_ARGS}-libgcrypt>0:security/linux-${linux_ARGS}-libgcrypt -linux_libgfortran_DEP= linux-${linux_ARGS}-libgfortran>0:devel/linux-${linux_ARGS}-libgfortran -linux_libglvnd_DEP= linux-${linux_ARGS}-libglvnd>0:graphics/linux-${linux_ARGS}-libglvnd -linux_libgpg-error_DEP= linux-${linux_ARGS}-libgpg-error>0:security/linux-${linux_ARGS}-libgpg-error -linux_libmng_DEP= linux-${linux_ARGS}-libmng>0:graphics/linux-${linux_ARGS}-libmng -linux_libogg_DEP= linux-${linux_ARGS}-libogg>0:audio/linux-${linux_ARGS}-libogg -linux_libpciaccess_DEP= linux-${linux_ARGS}-libpciaccess>0:devel/linux-${linux_ARGS}-libpciaccess -linux_libsndfile_DEP= linux-${linux_ARGS}-libsndfile>0:audio/linux-${linux_ARGS}-libsndfile -linux_libsoup_DEP= linux-${linux_ARGS}-libsoup>0:devel/linux-${linux_ARGS}-libsoup -linux_libssh2_DEP= linux-${linux_ARGS}-libssh2>0:security/linux-${linux_ARGS}-libssh2 -linux_libtasn1_DEP= linux-${linux_ARGS}-libtasn1>0:security/linux-${linux_ARGS}-libtasn1 -linux_libthai_DEP= linux-${linux_ARGS}-libthai>0:devel/linux-${linux_ARGS}-libthai -linux_libtheora_DEP= linux-${linux_ARGS}-libtheora>0:multimedia/linux-${linux_ARGS}-libtheora -linux_libunwind_DEP= linux-${linux_ARGS}-libunwind>0:devel/linux-${linux_ARGS}-libunwind -linux_libv4l_DEP= linux-${linux_ARGS}-libv4l>0:multimedia/linux-${linux_ARGS}-libv4l -linux_libvorbis_DEP= linux-${linux_ARGS}-libvorbis>0:audio/linux-${linux_ARGS}-libvorbis -linux_libxml2_DEP= linux-${linux_ARGS}-libxml2>0:textproc/linux-${linux_ARGS}-libxml2 -linux_lttng-ust_DEP= linux-${linux_ARGS}-lttng-ust>0:sysutils/linux-${linux_ARGS}-lttng-ust -linux_mikmod_DEP= linux-${linux_ARGS}-libmikmod>0:audio/linux-${linux_ARGS}-mikmod -linux_naslibs_DEP= linux-${linux_ARGS}-nas>0:audio/linux-${linux_ARGS}-nas-libs -linux_nettle_DEP= linux-${linux_ARGS}-nettle>0:security/linux-${linux_ARGS}-nettle -linux_nspr_DEP= linux-${linux_ARGS}-nspr>0:devel/linux-${linux_ARGS}-nspr -linux_nss_DEP= linux-${linux_ARGS}-nss>0:security/linux-${linux_ARGS}-nss -linux_openal_DEP= linux-${linux_ARGS}-openal>0:audio/linux-${linux_ARGS}-openal -linux_openal-soft_DEP= linux-${linux_ARGS}-openal-soft>0:audio/linux-${linux_ARGS}-openal-soft -linux_openldap_DEP= linux-${linux_ARGS}-openldap>0:net/linux-${linux_ARGS}-openldap -.if ${linux_ARGS} == c6 -linux_openmotif_DEP= linux-${linux_ARGS}-openmotif>0:x11-toolkits/linux-${linux_ARGS}-openmotif -.else -linux_openmotif_DEP= linux-${linux_ARGS}-motif>0:x11-toolkits/linux-${linux_ARGS}-openmotif -.endif -.if ${linux_ARGS} == c6 -linux_openssl_DEP= linux-${linux_ARGS}-openssl>0:security/linux-${linux_ARGS}-openssl -.else -linux_openssl_DEP= linux-${linux_ARGS}-openssl-libs>0:security/linux-${linux_ARGS}-openssl -.endif -linux_p11-kit_DEP= linux-${linux_ARGS}-p11-kit>0:security/linux-${linux_ARGS}-p11-kit -linux_pango_DEP= linux-${linux_ARGS}-pango>0:x11-toolkits/linux-${linux_ARGS}-pango -linux_pixman_DEP= linux-${linux_ARGS}-pixman>0:x11/linux-${linux_ARGS}-pixman -linux_png_DEP= linux-${linux_ARGS}-libpng>0:graphics/linux-${linux_ARGS}-png -linux_pulseaudio-libs_DEP= linux-${linux_ARGS}-pulseaudio-libs>0:audio/linux-${linux_ARGS}-pulseaudio-libs -.if ${linux_ARGS} == c6 -linux_qt_DEP= linux-${linux_ARGS}-qt47>0:devel/linux-${linux_ARGS}-qt47 -linux_qt-x11_DEP= linux-${linux_ARGS}-qt47-x11>0:x11-toolkits/linux-${linux_ARGS}-qt47-x11 -linux_qtwebkit_DEP= linux-${linux_ARGS}-qt47-webkit>0:www/linux-${linux_ARGS}-qt47-webkit -.else -linux_qt_DEP= linux-${linux_ARGS}-qt>0:devel/linux-${linux_ARGS}-qt -linux_qt-x11_DEP= linux-${linux_ARGS}-qt-x11>0:x11-toolkits/linux-${linux_ARGS}-qt-x11 -linux_qtwebkit_DEP= linux-${linux_ARGS}-qtwebkit>0:www/linux-${linux_ARGS}-qtwebkit -.endif -linux_scimlibs_DEP= linux-${linux_ARGS}-scim-libs>0:textproc/linux-${linux_ARGS}-scim-libs -linux_sdl12_DEP= linux-${linux_ARGS}-sdl>0:devel/linux-${linux_ARGS}-sdl12 -linux_sdlimage_DEP= linux-${linux_ARGS}-sdl_image>0:graphics/linux-${linux_ARGS}-sdl_image -linux_sdlmixer_DEP= linux-${linux_ARGS}-sdl_mixer>0:audio/linux-${linux_ARGS}-sdl_mixer -linux_sqlite3_DEP= linux-${linux_ARGS}-sqlite>0:databases/linux-${linux_ARGS}-sqlite3 -linux_tcl85_DEP= linux-${linux_ARGS}-tcl85>0:lang/linux-${linux_ARGS}-tcl85 -linux_tcp_wrappers-libs_DEP= linux-${linux_ARGS}-tcp_wrappers-libs>0:net/linux-${linux_ARGS}-tcp_wrappers-libs -linux_tiff_DEP= linux-${linux_ARGS}-libtiff>0:graphics/linux-${linux_ARGS}-tiff -linux_tk85_DEP= linux-${linux_ARGS}-tk85>0:x11-toolkits/linux-${linux_ARGS}-tk85 -linux_trousers_DEP= linux-${linux_ARGS}-trousers>0:security/linux-${linux_ARGS}-trousers -linux_ucl_DEP= linux-${linux_ARGS}-ucl>0:archivers/linux-${linux_ARGS}-ucl -linux_userspace-rcu_DEP= linux-${linux_ARGS}-userspace-rcu>0:sysutils/linux-${linux_ARGS}-userspace-rcu -linux_wayland_DEP= linux-${linux_ARGS}-wayland>0:graphics/linux-${linux_ARGS}-wayland -linux_xorglibs_DEP= linux-${linux_ARGS}-xorg-libs>0:x11/linux-${linux_ARGS}-xorg-libs +_linux_c7_alsa-lib-devel= linux-c7-alsa-lib-devel>0:audio/linux-c7-alsa-lib-devel +_linux_${linux_ARGS}_alsa-plugins-oss= linux-${linux_ARGS}-alsa-plugins-oss>0:audio/linux-${linux_ARGS}-alsa-plugins-oss +_linux_${linux_ARGS}_alsa-plugins-pulseaudio=linux-${linux_ARGS}-alsa-plugins-pulseaudio>0:audio/linux-${linux_ARGS}-alsa-plugins-pulseaudio +_linux_${linux_ARGS}_alsalib= linux-${linux_ARGS}-alsa-lib>0:audio/linux-${linux_ARGS}-alsa-lib +_linux_${linux_ARGS}_atk= linux-${linux_ARGS}-atk>0:accessibility/linux-${linux_ARGS}-atk +_linux_${linux_ARGS}_avahi-libs= linux-${linux_ARGS}-avahi-libs>0:net/linux-${linux_ARGS}-avahi-libs +_linux_c6_base= linux_base-c6>=6.10:emulators/linux_base-c6 +_linux_c7_base= linux_base-c7>=7.6.1810_7:emulators/linux_base-c7 +_linux_${linux_ARGS}_cairo= linux-${linux_ARGS}-cairo>0:graphics/linux-${linux_ARGS}-cairo +_linux_${linux_ARGS}_cups-libs= linux-${linux_ARGS}-cups-libs>0:print/linux-${linux_ARGS}-cups-libs +_linux_${linux_ARGS}_curl= linux-${linux_ARGS}-curl>0:ftp/linux-${linux_ARGS}-curl +_linux_${linux_ARGS}_cyrus-sasl2= linux-${linux_ARGS}-cyrus-sasl-lib>0:security/linux-${linux_ARGS}-cyrus-sasl2 +_linux_${linux_ARGS}_dbusglib= linux-${linux_ARGS}-dbus-glib>0:devel/linux-${linux_ARGS}-dbus-glib +_linux_${linux_ARGS}_dbuslibs= linux-${linux_ARGS}-dbus-libs>0:devel/linux-${linux_ARGS}-dbus-libs +_linux_${linux_ARGS}_devtools= linux-${linux_ARGS}-devtools>0:devel/linux-${linux_ARGS}-devtools +_linux_${linux_ARGS}_dri= linux-${linux_ARGS}-dri>0:graphics/linux-${linux_ARGS}-dri +_linux_${linux_ARGS}_elfutils-libelf= linux-${linux_ARGS}-elfutils-libelf>0:devel/linux-${linux_ARGS}-elfutils-libelf +_linux_c7_elfutils-libs= linux-c7-elfutils-libs>0:devel/linux-c7-elfutils-libs +_linux_${linux_ARGS}_expat= linux-${linux_ARGS}-expat>0:textproc/linux-${linux_ARGS}-expat +_linux_c6_flac= linux-c6-flac>0:audio/linux-c6-flac +_linux_c7_flac= linux-c7-flac-libs>0:audio/linux-c7-flac +_linux_${linux_ARGS}_fontconfig= linux-${linux_ARGS}-fontconfig>0:x11-fonts/linux-${linux_ARGS}-fontconfig +_linux_c7_freetype= linux-c7-freetype>0:print/linux-c7-freetype +_linux_c7_fribidi= linux-c7-fribidi>0:converters/linux-c7-fribidi +_linux_${linux_ARGS}_gdkpixbuf2= linux-${linux_ARGS}-gdk-pixbuf2>0:graphics/linux-${linux_ARGS}-gdk-pixbuf2 +_linux_${linux_ARGS}_gnutls= linux-${linux_ARGS}-gnutls>0:security/linux-${linux_ARGS}-gnutls +_linux_c7_graphite2= linux-c7-graphite2>0:graphics/linux-c7-graphite2 +_linux_${linux_ARGS}_gtk2= linux-${linux_ARGS}-gtk2>0:x11-toolkits/linux-${linux_ARGS}-gtk2 +_linux_c7_harfbuzz= linux-c7-harfbuzz>0:print/linux-c7-harfbuzz +_linux_${linux_ARGS}_icu= linux-${linux_ARGS}-icu>0:devel/linux-${linux_ARGS}-icu +_linux_${linux_ARGS}_jasper= linux-${linux_ARGS}-jasper-libs>0:graphics/linux-${linux_ARGS}-jasper +_linux_c7_jbigkit= linux-c7-jbigkit-libs>0:graphics/linux-c7-jbigkit +_linux_${linux_ARGS}_jpeg= linux-${linux_ARGS}-jpeg>0:graphics/linux-${linux_ARGS}-jpeg +_linux_${linux_ARGS}_libasyncns= linux-${linux_ARGS}-libasyncns>0:dns/linux-${linux_ARGS}-libasyncns +_linux_c6_libaudiofile= linux-c6-audiofile>0:audio/linux-c6-libaudiofile +_linux_c7_libaudiofile= linux-c7-audiofile>0:audio/linux-c7-audiofile +_linux_${linux_ARGS}_libgcrypt= linux-${linux_ARGS}-libgcrypt>0:security/linux-${linux_ARGS}-libgcrypt +_linux_${linux_ARGS}_libgfortran= linux-${linux_ARGS}-libgfortran>0:devel/linux-${linux_ARGS}-libgfortran +_linux_c7_libglvnd= linux-c7-libglvnd>0:graphics/linux-c7-libglvnd +_linux_${linux_ARGS}_libgpg-error= linux-${linux_ARGS}-libgpg-error>0:security/linux-${linux_ARGS}-libgpg-error +_linux_${linux_ARGS}_libogg= linux-${linux_ARGS}-libogg>0:audio/linux-${linux_ARGS}-libogg +_linux_${linux_ARGS}_libpciaccess= linux-${linux_ARGS}-libpciaccess>0:devel/linux-${linux_ARGS}-libpciaccess +_linux_${linux_ARGS}_libsndfile= linux-${linux_ARGS}-libsndfile>0:audio/linux-${linux_ARGS}-libsndfile +_linux_c6_libsoup= linux-c6-libsoup>0:devel/linux-c6-libsoup +_linux_${linux_ARGS}_libssh2= linux-${linux_ARGS}-libssh2>0:security/linux-${linux_ARGS}-libssh2 +_linux_${linux_ARGS}_libtasn1= linux-${linux_ARGS}-libtasn1>0:security/linux-${linux_ARGS}-libtasn1 +_linux_${linux_ARGS}_libthai= linux-${linux_ARGS}-libthai>0:devel/linux-${linux_ARGS}-libthai +_linux_${linux_ARGS}_libtheora= linux-${linux_ARGS}-libtheora>0:multimedia/linux-${linux_ARGS}-libtheora +_linux_${linux_ARGS}_libunwind= linux-${linux_ARGS}-libunwind>0:devel/linux-${linux_ARGS}-libunwind +_linux_${linux_ARGS}_libv4l= linux-${linux_ARGS}-libv4l>0:multimedia/linux-${linux_ARGS}-libv4l +_linux_${linux_ARGS}_libvorbis= linux-${linux_ARGS}-libvorbis>0:audio/linux-${linux_ARGS}-libvorbis +_linux_${linux_ARGS}_libxml2= linux-${linux_ARGS}-libxml2>0:textproc/linux-${linux_ARGS}-libxml2 +_linux_${linux_ARGS}_lttng-ust= linux-${linux_ARGS}-lttng-ust>0:sysutils/linux-${linux_ARGS}-lttng-ust +_linux_c7_lz4= linux-c7-lz4>0:archivers/linux-c7-lz4 +_linux_c7_make= linux-c7-make>0:devel/linux-c7-make +_linux_c6_mikmod= linux-c6-libmikmod>0:audio/linux-c6-mikmod +_linux_c6_naslibs= linux-c6-nas>0:audio/linux-c6-nas-libs +_linux_c7_nettle= linux-c7-nettle>0:security/linux-c7-nettle +_linux_${linux_ARGS}_nspr= linux-${linux_ARGS}-nspr>0:devel/linux-${linux_ARGS}-nspr +_linux_${linux_ARGS}_nss= linux-${linux_ARGS}-nss>0:security/linux-${linux_ARGS}-nss +_linux_${linux_ARGS}_openal-soft= linux-${linux_ARGS}-openal-soft>0:audio/linux-${linux_ARGS}-openal-soft +_linux_${linux_ARGS}_openldap= linux-${linux_ARGS}-openldap>0:net/linux-${linux_ARGS}-openldap +_linux_c6_openmotif= linux-c6-openmotif>0:x11-toolkits/linux-c6-openmotif +_linux_c7_openmotif= linux-c7-motif>0:x11-toolkits/linux-c7-openmotif +_linux_c6_openssl= linux-c6-openssl>0:security/linux-c6-openssl +_linux_c7_openssl= ${_linux_c7_base} +_linux_c7_p11-kit= linux-c7-p11-kit>0:security/linux-c7-p11-kit +_linux_${linux_ARGS}_pango= linux-${linux_ARGS}-pango>0:x11-toolkits/linux-${linux_ARGS}-pango +_linux_${linux_ARGS}_pixman= linux-${linux_ARGS}-pixman>0:x11/linux-${linux_ARGS}-pixman +_linux_${linux_ARGS}_png= linux-${linux_ARGS}-libpng>0:graphics/linux-${linux_ARGS}-png +_linux_${linux_ARGS}_pulseaudio-libs= linux-${linux_ARGS}-pulseaudio-libs>0:audio/linux-${linux_ARGS}-pulseaudio-libs +_linux_c6_qt= linux-c6-qt47>0:devel/linux-c6-qt47 +_linux_c7_qt= linux-c7-qt>0:devel/linux-c7-qt +_linux_c6_qt-x11= linux-c6-qt47-x11>0:x11-toolkits/linux-c6-qt47-x11 +_linux_c7_qt-x11= linux-c7-qt-x11>0:x11-toolkits/linux-c7-qt-x11 +_linux_c6_qtwebkit= linux-c6-qt47-webkit>0:www/linux-c6-qt47-webkit +_linux_c7_qtwebkit= linux-c7-qtwebkit>0:www/linux-c7-qtwebkit +_linux_${linux_ARGS}_sdl12= linux-${linux_ARGS}-sdl>0:devel/linux-${linux_ARGS}-sdl12 +_linux_${linux_ARGS}_sdlimage= linux-${linux_ARGS}-sdl_image>0:graphics/linux-${linux_ARGS}-sdl_image +_linux_${linux_ARGS}_sdlmixer= linux-${linux_ARGS}-sdl_mixer>0:audio/linux-${linux_ARGS}-sdl_mixer +_linux_${linux_ARGS}_sqlite3= linux-${linux_ARGS}-sqlite>0:databases/linux-${linux_ARGS}-sqlite3 +_linux_c7_systemd-libs= linux-c7-systemd-libs>0:devel/linux-c7-systemd-libs +_linux_${linux_ARGS}_tcl85= linux-${linux_ARGS}-tcl85>0:lang/linux-${linux_ARGS}-tcl85 +_linux_${linux_ARGS}_tcp_wrappers-libs= linux-${linux_ARGS}-tcp_wrappers-libs>0:net/linux-${linux_ARGS}-tcp_wrappers-libs +_linux_${linux_ARGS}_tiff= linux-${linux_ARGS}-libtiff>0:graphics/linux-${linux_ARGS}-tiff +_linux_${linux_ARGS}_tk85= linux-${linux_ARGS}-tk85>0:x11-toolkits/linux-${linux_ARGS}-tk85 +_linux_c7_trousers= linux-c7-trousers>0:security/linux-c7-trousers +_linux_${linux_ARGS}_userspace-rcu= linux-${linux_ARGS}-userspace-rcu>0:sysutils/linux-${linux_ARGS}-userspace-rcu +_linux_c7_wayland= linux-c7-wayland>0:graphics/linux-c7-wayland +_linux_c6_xorglibs= linux-c6-xorg-libs>0:x11/linux-c6-xorg-libs +_linux_c7_xorglibs= linux-c7-xorg-libs>=7.7_7:x11/linux-c7-xorg-libs USE_LINUX?= base .for i in ${USE_LINUX} _i_args:= ${i:C/^[^:]*:?//:S/,/ /g} .if ${_i_args:Mpatch} -PATCH_DEPENDS+= ${linux_${i:C/:.*//}_DEP} +PATCH_DEPENDS+= ${_linux_${linux_ARGS}_${i:C/:.*//}} .endif .if ${_i_args:Mbuild} -BUILD_DEPENDS+= ${linux_${i:C/:.*//}_DEP} +BUILD_DEPENDS+= ${_linux_${linux_ARGS}_${i:C/:.*//}} .endif .if ${_i_args:Mrun} || empty(_i_args) -RUN_DEPENDS+= ${linux_${i:C/:.*//}_DEP} +RUN_DEPENDS+= ${_linux_${linux_ARGS}_${i:C/:.*//}} .endif -.if !defined(linux_${i:C/:.*//}_DEP) +.if !defined(_linux_${linux_ARGS}_${i:C/:.*//}) DEV_ERROR+= "USE_LINUX=${i}: package does not exist" .endif .endfor Modified: branches/2019Q3/archivers/Makefile ============================================================================== --- branches/2019Q3/archivers/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/archivers/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -70,6 +70,7 @@ SUBDIR += libunrar SUBDIR += libunrar5 SUBDIR += libzip + SUBDIR += linux-c7-lz4 SUBDIR += lizard SUBDIR += lrzip SUBDIR += lua-lzlib Modified: branches/2019Q3/archivers/linux-c7-lz4/Makefile ============================================================================== --- head/archivers/linux-c7-lz4/Makefile Sun Aug 25 11:02:47 2019 (r509788) +++ branches/2019Q3/archivers/linux-c7-lz4/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -3,7 +3,7 @@ PORTNAME= lz4 PORTVERSION= 1.7.5 DISTVERSIONSUFFIX= -2.el7 -CATEGORIES= devel linux +CATEGORIES= archivers linux MAINTAINER= emulation@FreeBSD.org COMMENT= LZ4 compression library and utilities (Linux CentOS ${LINUX_DIST_VER}) Modified: branches/2019Q3/audio/Makefile ============================================================================== --- branches/2019Q3/audio/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -456,6 +456,7 @@ SUBDIR += linux-c6-pulseaudio-utils SUBDIR += linux-c6-sdl_mixer SUBDIR += linux-c7-alsa-lib + SUBDIR += linux-c7-alsa-lib-devel SUBDIR += linux-c7-alsa-plugins-oss SUBDIR += linux-c7-alsa-plugins-pulseaudio SUBDIR += linux-c7-alsa-utils Modified: branches/2019Q3/audio/linux-c7-alsa-plugins-oss/Makefile ============================================================================== --- branches/2019Q3/audio/linux-c7-alsa-plugins-oss/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-alsa-plugins-oss/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -4,25 +4,108 @@ PORTNAME= alsa-plugins PORTVERSION= 1.1.6 DISTVERSIONSUFFIX= -1.el7 +PORTREVISION= 3 CATEGORIES= audio linux +MASTER_SITES= CENTOS_LINUX +MASTER_SITE_SUBDIR= centos/${LINUX_DIST_VER}/os/Source/SPackages/ \ + centos/${LINUX_DIST_VER}/updates/Source/SPackages/ +PKGNAMEPREFIX= linux-c7- PKGNAMESUFFIX= -oss +EXTRACT_SUFX= .src.rpm +DIST_SUBDIR= centos MAINTAINER= emulation@FreeBSD.org COMMENT= OSS plugin for ALSA (Linux CentOS ${LINUX_DIST_VER}) -LICENSE= GPLv3 +LICENSE= LGPL21+ -USES= linux:c7 +USES= autoreconf:build gmake libtool:build linux:c7 pkgconfig USE_LDCONFIG= yes -USE_LINUX= alsalib -USE_LINUX_RPM= yes +USE_LINUX= alsalib:build,run alsa-lib-devel:build base:build devtools:build +USE_LINUX_PREFIX=yes -LIB_DISTNAMES= ${PORTNAME}${PKGNAMESUFFIX}-${DISTVERSIONFULL} +RPM_PATCHES= alsa-plugins-1.1.6-post.patch \ + alsa-plugins-1.1.6-speexdsp.patch +CONFIG_ARGS= --disable-static --disable-mix --disable-usbstream \ + --disable-arcamav --disable-jack --disable-pulseaudio \ + --disable-samplerate --disable-libav --disable-a52 \ + --disable-lavrate --disable-speexdsp --with-speex=no +CPPFLAGS+= -DFREEBSD_OSS -DFREEBSD_OSS_USE_IO_PTR +CFLAGS+= --sysroot=${LINUXBASE} +COMPAT32_CFLAGS_amd64= -m32 +LIBDIR_amd64= /usr/lib64 +LIBDIR_i386= /usr/lib +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +WRKSRC32= ${WRKDIR}/32/${PORTNAME}-${PORTVERSION} CONFLICTS= linux-c6-${PORTNAME}${PKGNAMESUFFIX}-[0-9]* DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr -DOCSDIR= ${PREFIX}/usr/share/doc/${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} +PLIST= ${PKGDIR}/pkg-plist.${ARCH} -OPTIONS_DEFINE= DOCS +.include + +post-extract: +.if !empty(COMPAT32_CFLAGS_${ARCH}) + @${MKDIR} ${WRKDIR}/32 + @(cd ${WRKDIR}/32 && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ + ../${PORTNAME}-${PORTVERSION}.tar.bz2 ${EXTRACT_AFTER_ARGS}) +.endif + @(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ + ${PORTNAME}-${PORTVERSION}.tar.bz2 ${EXTRACT_AFTER_ARGS}) + +do-patch: + @${REINPLACE_CMD} 's/mkdir -p/$$(MKDIR_P)/' \ + ${WRKDIR}/alsa-plugins-1.1.6-post.patch +.for p in ${RPM_PATCHES} +.if !empty(COMPAT32_CFLAGS_${ARCH}) + @${PATCH} -d ${WRKSRC32} --forward --quiet -E -p1 < ${WRKDIR}/${p} +.endif + @${PATCH} -d ${WRKSRC} --forward --quiet -E -p1 < ${WRKDIR}/${p} +.endfor +.if !empty(COMPAT32_CFLAGS_${ARCH}) + @${CAT} ${PATCHDIR}/patch-* | ${PATCH} -d ${WRKSRC32} --forward \ + --quiet -E -p0 +.endif + @${CAT} ${PATCHDIR}/patch-* | ${PATCH} -d ${WRKSRC} --forward \ + --quiet -E -p0 + +do-configure: +.if !empty(COMPAT32_CFLAGS_${ARCH}) + @(cd ${WRKSRC32} && ${AUTORECONF} -f -i && ${SETENV} \ + PATH=${LINUXBASE}/usr/bin ./configure CPPFLAGS="${CPPFLAGS}" \ + CFLAGS="${CFLAGS} ${COMPAT32_CFLAGS_${ARCH}}" \ + LDFLAGS="${LDFLAGS}" MAKE="${LOCALBASE}/bin/gmake" \ + MKDIR_P="${MKDIR}" PKG_CONFIG="${LOCALBASE}/bin/pkgconf" \ + PKG_CONFIG_PATH=${LINUXBASE}/usr/lib/pkgconfig \ + ${CONFIG_ARGS}) +.endif + @(cd ${WRKSRC} && ${AUTORECONF} -f -i && ${SETENV} \ + PATH=${LINUXBASE}/usr/bin ./configure CPPFLAGS="${CPPFLAGS}" \ + CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + MAKE="${LOCALBASE}/bin/gmake" MKDIR_P="${MKDIR}" \ + PKG_CONFIG="${LOCALBASE}/bin/pkgconf" \ + PKG_CONFIG_PATH=${LINUXBASE}${LIBDIR_${ARCH}}/pkgconfig \ + --libdir ${LIBDIR_${ARCH}} ${CONFIG_ARGS}) + +do-build: +.if !empty(COMPAT32_CFLAGS_${ARCH}) + @(cd ${WRKSRC32} && ${SETENV} PATH=${LINUXBASE}/usr/bin \ + ${LOCALBASE}/bin/gmake) +.endif + @(cd ${WRKSRC} && ${SETENV} PATH=${LINUXBASE}/usr/bin \ + ${LOCALBASE}/bin/gmake) + +do-install: +.if !empty(COMPAT32_CFLAGS_${ARCH}) + @(cd ${WRKSRC32} && ${SETENV} PATH=${LINUXBASE}/usr/bin \ + ${LOCALBASE}/bin/gmake install-strip \ + DESTDIR=${STAGEDIR}${LINUXBASE}) + ${RM} -r ${STAGEDIR}${LINUXBASE}/usr/lib/alsa-lib/*.la +.endif + @(cd ${WRKSRC} && ${SETENV} PATH=${LINUXBASE}/usr/bin \ + ${LOCALBASE}/bin/gmake install-strip \ + DESTDIR=${STAGEDIR}${LINUXBASE}) + ${RM} -r ${STAGEDIR}${LINUXBASE}${LIBDIR_${ARCH}}/alsa-lib/*.la + ${RM} -r ${STAGEDIR}${LINUXBASE}/etc ${STAGEDIR}${LINUXBASE}/usr/share .include Modified: branches/2019Q3/audio/linux-c7-alsa-plugins-oss/distinfo ============================================================================== --- branches/2019Q3/audio/linux-c7-alsa-plugins-oss/distinfo Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-alsa-plugins-oss/distinfo Sat Sep 21 12:41:06 2019 (r512491) @@ -1,7 +1,3 @@ -TIMESTAMP = 1556469061 -SHA256 (centos/alsa-plugins-oss-1.1.6-1.el7.i686.rpm) = 4da7c5cd52caed8640db1cb1521c7c7ef837dd89272e93870a13d919f1db081a -SIZE (centos/alsa-plugins-oss-1.1.6-1.el7.i686.rpm) = 32748 -SHA256 (centos/alsa-plugins-oss-1.1.6-1.el7.x86_64.rpm) = f7ebfb51012b6905e4e96eecfff1179cde32ade799c2eb7e740c3646146a70c3 -SIZE (centos/alsa-plugins-oss-1.1.6-1.el7.x86_64.rpm) = 33236 +TIMESTAMP = 1567864839 SHA256 (centos/alsa-plugins-1.1.6-1.el7.src.rpm) = e01bf476f3117bc29276a24ddae250396b928dfe2755550ec234e6f77f43add0 SIZE (centos/alsa-plugins-1.1.6-1.el7.src.rpm) = 396174 Modified: branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.amd64 ============================================================================== --- branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.amd64 Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.amd64 Sat Sep 21 12:41:06 2019 (r512491) @@ -1,9 +1,4 @@ -etc/alsa/conf.d/50-oss.conf usr/lib/alsa-lib/libasound_module_ctl_oss.so usr/lib/alsa-lib/libasound_module_pcm_oss.so usr/lib64/alsa-lib/libasound_module_ctl_oss.so usr/lib64/alsa-lib/libasound_module_pcm_oss.so -usr/share/alsa/alsa.conf.d/50-oss.conf -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/COPYING.GPL -%%PORTDOCS%%%%DOCSDIR%%/README-pcm-oss Modified: branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.i386 ============================================================================== --- branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.i386 Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-alsa-plugins-oss/pkg-plist.i386 Sat Sep 21 12:41:06 2019 (r512491) @@ -1,7 +1,2 @@ -etc/alsa/conf.d/50-oss.conf usr/lib/alsa-lib/libasound_module_ctl_oss.so usr/lib/alsa-lib/libasound_module_pcm_oss.so -usr/share/alsa/alsa.conf.d/50-oss.conf -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/COPYING.GPL -%%PORTDOCS%%%%DOCSDIR%%/README-pcm-oss Modified: branches/2019Q3/audio/linux-c7-openal-soft/Makefile ============================================================================== --- branches/2019Q3/audio/linux-c7-openal-soft/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-openal-soft/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -4,14 +4,13 @@ PORTNAME= openal-soft PORTVERSION= 1.16.0 DISTVERSIONSUFFIX= -3.el7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio linux -MASTER_SITES= EPEL7/o +MASTER_SITES= EPEL7/o \ + https://harbottle.gitlab.io/wine32/7/i386/:i386 MAINTAINER= emulation@FreeBSD.org COMMENT= 3D positional spatialized sound library (Linux CentOS ${LINUX_DIST_VER}) - -ONLY_FOR_ARCHS= amd64 USES= linux:c7 USE_LDCONFIG= yes Modified: branches/2019Q3/audio/linux-c7-openal-soft/distinfo ============================================================================== --- branches/2019Q3/audio/linux-c7-openal-soft/distinfo Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-openal-soft/distinfo Sat Sep 21 12:41:06 2019 (r512491) @@ -1,4 +1,6 @@ -TIMESTAMP = 1482094313 +TIMESTAMP = 1567501651 +SHA256 (centos/openal-soft-1.16.0-3.el7.i686.rpm) = 114e20b9feeb46dcdee2f52f7a4ba746085502dab51624506abc428bc2153408 +SIZE (centos/openal-soft-1.16.0-3.el7.i686.rpm) = 286432 SHA256 (centos/openal-soft-1.16.0-3.el7.x86_64.rpm) = 775242cb1d603b85a53eb325c9d85a6aed9639968430c5d45893c90252b07429 SIZE (centos/openal-soft-1.16.0-3.el7.x86_64.rpm) = 288688 SHA256 (centos/openal-soft-1.16.0-3.el7.src.rpm) = 906734a0d59518d4ccd106ae5a96e01196f1214dab7a96e2c8cabd8f9f930d64 Modified: branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.amd64 ============================================================================== --- branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.amd64 Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.amd64 Sat Sep 21 12:41:06 2019 (r512491) @@ -1,5 +1,7 @@ etc/openal/alsoft.conf usr/bin/openal-info +usr/lib/libopenal.so.1 +usr/lib/libopenal.so.1.16.0 usr/lib64/libopenal.so.1 usr/lib64/libopenal.so.1.16.0 %%PORTDOCS%%%%DOCSDIR%%/COPYING Copied: branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.i386 (from r510930, head/audio/linux-c7-openal-soft/pkg-plist.i386) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q3/audio/linux-c7-openal-soft/pkg-plist.i386 Sat Sep 21 12:41:06 2019 (r512491, copy of r510930, head/audio/linux-c7-openal-soft/pkg-plist.i386) @@ -0,0 +1,8 @@ +etc/openal/alsoft.conf +usr/bin/openal-info +usr/lib/libopenal.so.1 +usr/lib/libopenal.so.1.16.0 +%%PORTDOCS%%%%DOCSDIR%%/COPYING +usr/share/openal/alsoftrc.sample +usr/share/openal/hrtf/default-44100.mhr +usr/share/openal/hrtf/default-48000.mhr Modified: branches/2019Q3/audio/linux-c7-pulseaudio-libs/Makefile ============================================================================== --- branches/2019Q3/audio/linux-c7-pulseaudio-libs/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/audio/linux-c7-pulseaudio-libs/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -4,7 +4,7 @@ PORTNAME= pulseaudio PORTVERSION= 10.0 DISTVERSIONSUFFIX= -5.el7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio linux PKGNAMESUFFIX= -libs @@ -13,7 +13,8 @@ COMMENT= Libraries for PulseAudio clients (Linux CentO USES= linux:c7 USE_LDCONFIG= yes -USE_LINUX= dbuslibs libasyncns libsndfile tcp_wrappers-libs xorglibs +USE_LINUX= dbuslibs libasyncns libsndfile systemd-libs tcp_wrappers-libs \ + xorglibs USE_LINUX_RPM= yes LIB_DISTNAMES= ${PORTNAME}${PKGNAMESUFFIX}-${DISTVERSIONFULL} \ Modified: branches/2019Q3/devel/Makefile ============================================================================== --- branches/2019Q3/devel/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -1406,8 +1406,8 @@ SUBDIR += linux-c6-dbus-glib SUBDIR += linux-c6-dbus-libs SUBDIR += linux-c6-devtools + SUBDIR += linux-c6-elfutils-libelf SUBDIR += linux-c6-icu - SUBDIR += linux-c6-libelf SUBDIR += linux-c6-libgfortran SUBDIR += linux-c6-libglade2 SUBDIR += linux-c6-libpciaccess @@ -1421,19 +1421,22 @@ SUBDIR += linux-c7-dbus-glib SUBDIR += linux-c7-dbus-libs SUBDIR += linux-c7-devtools + SUBDIR += linux-c7-elfutils-libelf + SUBDIR += linux-c7-elfutils-libs SUBDIR += linux-c7-icu - SUBDIR += linux-c7-libelf SUBDIR += linux-c7-libgfortran SUBDIR += linux-c7-libglade2 SUBDIR += linux-c7-libpciaccess SUBDIR += linux-c7-libsigc++20 SUBDIR += linux-c7-libthai SUBDIR += linux-c7-libunwind + SUBDIR += linux-c7-make SUBDIR += linux-c7-nspr SUBDIR += linux-c7-qt SUBDIR += linux-c7-sdl12 SUBDIR += linux-c7-sdl20 SUBDIR += linux-c7-strace + SUBDIR += linux-c7-systemd-libs SUBDIR += linux-ltp SUBDIR += linux_libusb SUBDIR += lion Modified: branches/2019Q3/devel/linux-c6-elfutils-libelf/Makefile ============================================================================== --- head/devel/linux-c6-elfutils-libelf/Makefile Sun Aug 25 10:18:02 2019 (r509784) +++ branches/2019Q3/devel/linux-c6-elfutils-libelf/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -4,7 +4,7 @@ PORTNAME= elfutils PORTVERSION= 0.164 DISTVERSIONSUFFIX= -2.el6 PORTREVISION= 2 -CATEGORIES= devel +CATEGORIES= devel linux PKGNAMESUFFIX= -libelf MAINTAINER= emulation@FreeBSD.org Modified: branches/2019Q3/devel/linux-c6-elfutils-libelf/pkg-descr ============================================================================== --- head/devel/linux-c6-elfutils-libelf/pkg-descr Sun Aug 25 10:18:02 2019 (r509784) +++ branches/2019Q3/devel/linux-c6-elfutils-libelf/pkg-descr Sat Sep 21 12:41:06 2019 (r512491) @@ -1,3 +1,3 @@ ELF file handling library from elfutils. -WWW: https://fedorahosted.org/elfutils/ +WWW: https://sourceware.org/elfutils/ Modified: branches/2019Q3/devel/linux-c7-dbus-libs/Makefile ============================================================================== --- branches/2019Q3/devel/linux-c7-dbus-libs/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-dbus-libs/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -4,6 +4,7 @@ PORTNAME= dbus PORTVERSION= 1.10.24 DISTVERSIONSUFFIX= -13.el7_6 +PORTREVISION= 1 CATEGORIES= devel linux PKGNAMESUFFIX= -libs @@ -14,6 +15,7 @@ LICENSE= GPLv2+ USES= linux:c7 USE_LDCONFIG= yes +USE_LINUX= systemd-libs USE_LINUX_RPM= yes LIB_DISTNAMES= ${PORTNAME}${PKGNAMESUFFIX}-${DISTVERSIONFULL} Modified: branches/2019Q3/devel/linux-c7-devtools/Makefile ============================================================================== --- branches/2019Q3/devel/linux-c7-devtools/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-devtools/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -3,7 +3,7 @@ PORTNAME= devtools PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 1 +PORTREVISION= 5 CATEGORIES= devel MAINTAINER= emulation@FreeBSD.org @@ -17,27 +17,28 @@ USE_LINUX= libgfortran USE_LINUX_RPM= yes BIN_DISTNAMES= binutils-2.27-34.base.el7 \ - glibc-headers-2.17-260.el7_6.5 \ + glibc-headers-2.17-260.el7_6.6 \ mpfr-3.1.1-4.el7 \ cpp-4.8.5-36.el7_6.2 \ gcc-4.8.5-36.el7_6.2 \ gcc-c++-4.8.5-36.el7_6.2 \ - gcc-gfortran-4.8.5-36.el7_6.2 + gcc-gfortran-4.8.5-36.el7_6.2 \ + libstdc++-devel-4.8.5-36.el7_6.2 LIB_DISTNAMES= binutils-devel-2.27-34.base.el7 \ - glibc-devel-2.17-260.el7_6.5 \ - libstdc++-devel-4.8.5-36.el7_6.2 \ + glibc-devel-2.17-260.el7_6.6 \ + glibc-static-2.17-260.el7_6.6 \ libgomp-4.8.5-36.el7_6.2 \ libmpc-1.0.1-3.el7 DISTFILES_amd64=${LIB_DISTNAMES:S/$/${EXTRACT_SUFX_i386}:amd64,i386/} \ ${LIB_DISTNAMES:S/$/${EXTRACT_SUFX_amd64}:amd64/} \ ${BIN_DISTNAMES:S/$/${EXTRACT_SUFX_amd64}:amd64/} \ - kernel-headers-3.10.0-957.21.3.el7${EXTRACT_SUFX_amd64}:amd64 + kernel-headers-3.10.0-957.27.2.el7${EXTRACT_SUFX_amd64}:amd64 DISTFILES_i386= ${LIB_DISTNAMES:S/$/${EXTRACT_SUFX_i386}:amd64,i386/} \ ${BIN_DISTNAMES:S/$/${EXTRACT_SUFX_i386}:i386/} \ kernel-headers-3.10.0-957.21.3.el7.centos.plus${EXTRACT_SUFX_i386}:i386 SRC_DISTFILES= binutils-2.27-34.base.el7${SRC_SUFX}:SOURCE \ - glibc-2.17-260.el7_6.5${SRC_SUFX}:SOURCE \ - kernel-3.10.0-957.21.3.el7${SRC_SUFX}:SOURCE \ + glibc-2.17-260.el7_6.6${SRC_SUFX}:SOURCE \ + kernel-3.10.0-957.27.2.el7${SRC_SUFX}:SOURCE \ libmpc-1.0.1-3.el7${SRC_SUFX}:SOURCE \ mpfr-3.1.1-4.el7${SRC_SUFX}:SOURCE \ gcc-4.8.5-36.el7_6.2${SRC_SUFX}:SOURCE Modified: branches/2019Q3/devel/linux-c7-devtools/distinfo ============================================================================== --- branches/2019Q3/devel/linux-c7-devtools/distinfo Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-devtools/distinfo Sat Sep 21 12:41:06 2019 (r512491) @@ -1,4 +1,4 @@ -TIMESTAMP = 1561316755 +TIMESTAMP = 1567936796 SHA256 (centos/binutils-2.27-34.base.el7.i686.rpm) = 40f02c8e10d58e86e0d37ae4d3813ff1a2ece9d340f15371465758c0791e2c42 SIZE (centos/binutils-2.27-34.base.el7.i686.rpm) = 6343144 SHA256 (centos/binutils-2.27-34.base.el7.x86_64.rpm) = 45995236bc07a51d506c036a557540e9407024758027eb58635390e408823392 @@ -23,18 +23,22 @@ SHA256 (centos/gcc-gfortran-4.8.5-36.el7_6.2.i686.rpm) SIZE (centos/gcc-gfortran-4.8.5-36.el7_6.2.i686.rpm) = 6639648 SHA256 (centos/gcc-gfortran-4.8.5-36.el7_6.2.x86_64.rpm) = 76f426e1b324a612b907c6b52fb915488c00d9b2317f5460387dfb53b99d29bc SIZE (centos/gcc-gfortran-4.8.5-36.el7_6.2.x86_64.rpm) = 6975208 -SHA256 (centos/glibc-devel-2.17-260.el7_6.5.i686.rpm) = d052eda13e21be893002269a20c378bb17ac134d188c7bd931fe73edfe5a5d1d -SIZE (centos/glibc-devel-2.17-260.el7_6.5.i686.rpm) = 1122036 -SHA256 (centos/glibc-devel-2.17-260.el7_6.5.x86_64.rpm) = 288cbaa2ee577070918f3e88b49e0510f92a853e0836d3abf65c6e6e74b68d0b -SIZE (centos/glibc-devel-2.17-260.el7_6.5.x86_64.rpm) = 1121240 -SHA256 (centos/glibc-headers-2.17-260.el7_6.5.i686.rpm) = 820ef0dcd3e1b8e939594afe43738ec477fd7b709490b2000ebb45cb34ba89b9 -SIZE (centos/glibc-headers-2.17-260.el7_6.5.i686.rpm) = 699816 -SHA256 (centos/glibc-headers-2.17-260.el7_6.5.x86_64.rpm) = e54d09e59b29388cbbabe71cb849bff68d9c76df0c45c70049263e5a0845c501 -SIZE (centos/glibc-headers-2.17-260.el7_6.5.x86_64.rpm) = 699840 +SHA256 (centos/glibc-devel-2.17-260.el7_6.6.i686.rpm) = 41fb66384e5b906d35e6f7bf897f3ed657c199532488264d028f1ee0d6310ea7 +SIZE (centos/glibc-devel-2.17-260.el7_6.6.i686.rpm) = 1122156 +SHA256 (centos/glibc-devel-2.17-260.el7_6.6.x86_64.rpm) = 304037d6f42e7d4ae381ac116f01d73cf482049edbb025ffbbd8861dabf4f312 +SIZE (centos/glibc-devel-2.17-260.el7_6.6.x86_64.rpm) = 1121352 +SHA256 (centos/glibc-headers-2.17-260.el7_6.6.i686.rpm) = ca43e46741f414d28489824b828d3af15fe49ee5c39c87ec9a85a255fb7bd96a +SIZE (centos/glibc-headers-2.17-260.el7_6.6.i686.rpm) = 699932 +SHA256 (centos/glibc-headers-2.17-260.el7_6.6.x86_64.rpm) = 67de580f4cabd7625a050f101eb42ac93de27582d04ef939ab252059d11abedb +SIZE (centos/glibc-headers-2.17-260.el7_6.6.x86_64.rpm) = 700036 +SHA256 (centos/glibc-static-2.17-260.el7_6.6.i686.rpm) = b67f91ceae9cbaedd450e9aa7fc79037fcaa95b40b758a73dc60a6d05c6ce40d +SIZE (centos/glibc-static-2.17-260.el7_6.6.i686.rpm) = 1326892 +SHA256 (centos/glibc-static-2.17-260.el7_6.6.x86_64.rpm) = 69def216085fcc622f3795a68e25a43fed92be2b5e75a8d8c1e5eefc30846414 +SIZE (centos/glibc-static-2.17-260.el7_6.6.x86_64.rpm) = 1623928 SHA256 (centos/kernel-headers-3.10.0-957.21.3.el7.centos.plus.i686.rpm) = 776f25e647161f6dcd4175742eb312427128d456a7cea147d58a0435f4ae8078 SIZE (centos/kernel-headers-3.10.0-957.21.3.el7.centos.plus.i686.rpm) = 8393612 -SHA256 (centos/kernel-headers-3.10.0-957.21.3.el7.x86_64.rpm) = 89591bfbdac140b53cd711be564ddac982e2cad7e7f27c4bc360ef30b395d0f4 -SIZE (centos/kernel-headers-3.10.0-957.21.3.el7.x86_64.rpm) = 8390988 +SHA256 (centos/kernel-headers-3.10.0-957.27.2.el7.x86_64.rpm) = dcba6cda3e82004a9b75cc1a029bb5a822baaaefe17155579289b644f7c5a575 +SIZE (centos/kernel-headers-3.10.0-957.27.2.el7.x86_64.rpm) = 8418620 SHA256 (centos/libgomp-4.8.5-36.el7_6.2.i686.rpm) = 63e76c63d5e97594f8aee9f6868a69393bcfe74221d6e1645d81cc5c1c1fc295 SIZE (centos/libgomp-4.8.5-36.el7_6.2.i686.rpm) = 164660 SHA256 (centos/libgomp-4.8.5-36.el7_6.2.x86_64.rpm) = 3d4b7fef75e6abdac9393e0fb334b1a79e33dca26f3042a126378072a70a2dc2 @@ -53,10 +57,10 @@ SHA256 (centos/mpfr-3.1.1-4.el7.x86_64.rpm) = 252c6dbd SIZE (centos/mpfr-3.1.1-4.el7.x86_64.rpm) = 208316 SHA256 (centos/binutils-2.27-34.base.el7.src.rpm) = f5c458f75c5efb325c7b0a2796e86329560415fa851aa9dfb0dcdbb7b3fe2c42 SIZE (centos/binutils-2.27-34.base.el7.src.rpm) = 25575302 -SHA256 (centos/glibc-2.17-260.el7_6.5.src.rpm) = 288963e2de5061c038c8e9eccee1eba6bd884e9d07a05a51f627e7977d4153de -SIZE (centos/glibc-2.17-260.el7_6.5.src.rpm) = 26263753 -SHA256 (centos/kernel-3.10.0-957.21.3.el7.src.rpm) = 2505f185d1a15da378709fd7b481ee80de6d7e202807ba24aacaa1306670bc93 -SIZE (centos/kernel-3.10.0-957.21.3.el7.src.rpm) = 101094181 +SHA256 (centos/glibc-2.17-260.el7_6.6.src.rpm) = 6bc5269b718e73692feed026fca0590d068e2616c674a0cf71a4896688c6a5e8 +SIZE (centos/glibc-2.17-260.el7_6.6.src.rpm) = 26274809 +SHA256 (centos/kernel-3.10.0-957.27.2.el7.src.rpm) = 2daeadf23e70629607f607409e67cf37b9f01da80ff01195d950cf9059e5ab5c +SIZE (centos/kernel-3.10.0-957.27.2.el7.src.rpm) = 101136511 SHA256 (centos/libmpc-1.0.1-3.el7.src.rpm) = 21d2e108f7eb0b09110c6097c50981090dd261cbe8cf16edbc86d62b7ea08241 SIZE (centos/libmpc-1.0.1-3.el7.src.rpm) = 1187712 SHA256 (centos/mpfr-3.1.1-4.el7.src.rpm) = c6946822a27080f2952925146088928a16292ee0fc2639aa4ef862eae716397e Modified: branches/2019Q3/devel/linux-c7-devtools/pkg-plist.amd64 ============================================================================== --- branches/2019Q3/devel/linux-c7-devtools/pkg-plist.amd64 Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-devtools/pkg-plist.amd64 Sat Sep 21 12:41:06 2019 (r512491) @@ -734,29 +734,6 @@ usr/include/c++/4.8.2/forward_list usr/include/c++/4.8.2/fstream usr/include/c++/4.8.2/functional usr/include/c++/4.8.2/future -usr/include/c++/4.8.2/i686-redhat-linux/bits/atomic_word.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/basic_file.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/c++allocator.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/c++config.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/c++io.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/c++locale.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/cpu_defines.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/ctype_base.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/ctype_inline.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/cxxabi_tweaks.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/error_constants.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/extc++.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/gthr-default.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/gthr-posix.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/gthr-single.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/gthr.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/messages_members.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/opt_random.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/os_defines.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/stdc++.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/stdtr1c++.h -usr/include/c++/4.8.2/i686-redhat-linux/bits/time_members.h -usr/include/c++/4.8.2/i686-redhat-linux/ext/opt_random.h usr/include/c++/4.8.2/initializer_list usr/include/c++/4.8.2/iomanip usr/include/c++/4.8.2/ios @@ -1955,8 +1932,6 @@ usr/lib/cpp usr/lib/crt1.o usr/lib/crti.o usr/lib/crtn.o -usr/lib/gcc/i686-redhat-linux/4.8.2/libstdc++.so -usr/lib/gcc/i686-redhat-linux/4.8.5 usr/lib/gcc/x86_64-redhat-linux/4.8.2/32/crtbegin.o usr/lib/gcc/x86_64-redhat-linux/4.8.2/32/crtbeginS.o usr/lib/gcc/x86_64-redhat-linux/4.8.2/32/crtbeginT.o @@ -2079,26 +2054,34 @@ usr/lib/gcc/x86_64-redhat-linux/4.8.2/libtsan.so usr/lib/gcc/x86_64-redhat-linux/4.8.2/rpmver usr/lib/gcc/x86_64-redhat-linux/4.8.5 usr/lib/gcrt1.o +usr/lib/libBrokenLocale.a usr/lib/libBrokenLocale.so +usr/lib/libanl.a usr/lib/libanl.so usr/lib/libbfd.a usr/lib/libbfd.so usr/lib/libbsd-compat.a usr/lib/libbsd.a +usr/lib/libc.a usr/lib/libc.so usr/lib/libc_nonshared.a +usr/lib/libc_stubs.a usr/lib/libcidn.so +usr/lib/libcrypt.a usr/lib/libcrypt.so +usr/lib/libdl.a usr/lib/libdl.so usr/lib/libg.a usr/lib/libgomp.so.1 usr/lib/libgomp.so.1.0.0 usr/lib/libiberty.a usr/lib/libieee.a +usr/lib/libm.a usr/lib/libm.so usr/lib/libmcheck.a usr/lib/libmpc.so.3 usr/lib/libmpc.so.3.0.0 +usr/lib/libnsl.a usr/lib/libnsl.so usr/lib/libnss_compat.so usr/lib/libnss_db.so @@ -2109,12 +2092,16 @@ usr/lib/libnss_nis.so usr/lib/libnss_nisplus.so usr/lib/libopcodes.a usr/lib/libopcodes.so +usr/lib/libpthread.a usr/lib/libpthread.so usr/lib/libpthread_nonshared.a +usr/lib/libresolv.a usr/lib/libresolv.so usr/lib/librpcsvc.a +usr/lib/librt.a usr/lib/librt.so usr/lib/libthread_db.so +usr/lib/libutil.a usr/lib/libutil.so usr/lib64/Mcrt1.o usr/lib64/Scrt1.o @@ -2122,29 +2109,37 @@ usr/lib64/crt1.o usr/lib64/crti.o usr/lib64/crtn.o usr/lib64/gcrt1.o +usr/lib64/libBrokenLocale.a usr/lib64/libBrokenLocale.so +usr/lib64/libanl.a usr/lib64/libanl.so usr/lib64/libbfd-2.27-34.base.el7.so usr/lib64/libbfd.a usr/lib64/libbfd.so usr/lib64/libbsd-compat.a usr/lib64/libbsd.a +usr/lib64/libc.a usr/lib64/libc.so usr/lib64/libc_nonshared.a +usr/lib64/libc_stubs.a usr/lib64/libcidn.so +usr/lib64/libcrypt.a usr/lib64/libcrypt.so +usr/lib64/libdl.a usr/lib64/libdl.so usr/lib64/libg.a usr/lib64/libgomp.so.1 usr/lib64/libgomp.so.1.0.0 usr/lib64/libiberty.a usr/lib64/libieee.a +usr/lib64/libm.a usr/lib64/libm.so usr/lib64/libmcheck.a usr/lib64/libmpc.so.3 usr/lib64/libmpc.so.3.0.0 usr/lib64/libmpfr.so.4 usr/lib64/libmpfr.so.4.1.1 +usr/lib64/libnsl.a usr/lib64/libnsl.so usr/lib64/libnss_compat.so usr/lib64/libnss_db.so @@ -2156,12 +2151,16 @@ usr/lib64/libnss_nisplus.so usr/lib64/libopcodes-2.27-34.base.el7.so usr/lib64/libopcodes.a usr/lib64/libopcodes.so +usr/lib64/libpthread.a usr/lib64/libpthread.so usr/lib64/libpthread_nonshared.a +usr/lib64/libresolv.a usr/lib64/libresolv.so usr/lib64/librpcsvc.a +usr/lib64/librt.a usr/lib64/librt.so usr/lib64/libthread_db.so +usr/lib64/libutil.a usr/lib64/libutil.so usr/libexec/gcc/x86_64-redhat-linux/4.8.2/cc1 usr/libexec/gcc/x86_64-redhat-linux/4.8.2/cc1plus Modified: branches/2019Q3/devel/linux-c7-devtools/pkg-plist.i386 ============================================================================== --- branches/2019Q3/devel/linux-c7-devtools/pkg-plist.i386 Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-devtools/pkg-plist.i386 Sat Sep 21 12:41:06 2019 (r512491) @@ -1672,8 +1672,8 @@ usr/include/pty.h usr/include/pwd.h usr/include/rdma/cxgb3-abi.h usr/include/rdma/cxgb4-abi.h -usr/include/rdma/hfi/hfi1_user.h usr/include/rdma/hfi/hfi1_ioctl.h +usr/include/rdma/hfi/hfi1_user.h usr/include/rdma/ib_user_cm.h usr/include/rdma/ib_user_mad.h usr/include/rdma/ib_user_sa.h @@ -1994,29 +1994,37 @@ usr/lib/gcc/i686-redhat-linux/4.8.2/libstdc++.so usr/lib/gcc/i686-redhat-linux/4.8.2/rpmver usr/lib/gcc/i686-redhat-linux/4.8.5 usr/lib/gcrt1.o +usr/lib/libBrokenLocale.a usr/lib/libBrokenLocale.so +usr/lib/libanl.a usr/lib/libanl.so usr/lib/libbfd-2.27-34.base.el7.so usr/lib/libbfd.a usr/lib/libbfd.so usr/lib/libbsd-compat.a usr/lib/libbsd.a +usr/lib/libc.a usr/lib/libc.so usr/lib/libc_nonshared.a +usr/lib/libc_stubs.a usr/lib/libcidn.so +usr/lib/libcrypt.a usr/lib/libcrypt.so +usr/lib/libdl.a usr/lib/libdl.so usr/lib/libg.a usr/lib/libgomp.so.1 usr/lib/libgomp.so.1.0.0 usr/lib/libiberty.a usr/lib/libieee.a +usr/lib/libm.a usr/lib/libm.so usr/lib/libmcheck.a usr/lib/libmpc.so.3 usr/lib/libmpc.so.3.0.0 usr/lib/libmpfr.so.4 usr/lib/libmpfr.so.4.1.1 +usr/lib/libnsl.a usr/lib/libnsl.so usr/lib/libnss_compat.so usr/lib/libnss_db.so @@ -2028,12 +2036,16 @@ usr/lib/libnss_nisplus.so usr/lib/libopcodes-2.27-34.base.el7.so usr/lib/libopcodes.a usr/lib/libopcodes.so +usr/lib/libpthread.a usr/lib/libpthread.so usr/lib/libpthread_nonshared.a +usr/lib/libresolv.a usr/lib/libresolv.so usr/lib/librpcsvc.a +usr/lib/librt.a usr/lib/librt.so usr/lib/libthread_db.so +usr/lib/libutil.a usr/lib/libutil.so usr/libexec/gcc/i686-redhat-linux/4.8.2/cc1 usr/libexec/gcc/i686-redhat-linux/4.8.2/cc1plus Modified: branches/2019Q3/devel/linux-c7-elfutils-libelf/Makefile ============================================================================== --- head/devel/linux-c7-elfutils-libelf/Makefile Sun Aug 25 10:18:02 2019 (r509784) +++ branches/2019Q3/devel/linux-c7-elfutils-libelf/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -3,7 +3,7 @@ PORTNAME= elfutils PORTVERSION= 0.172 DISTVERSIONSUFFIX= -2.el7 -CATEGORIES= devel +CATEGORIES= devel linux PKGNAMESUFFIX= -libelf MAINTAINER= emulation@FreeBSD.org Modified: branches/2019Q3/devel/linux-c7-elfutils-libelf/pkg-descr ============================================================================== --- head/devel/linux-c7-elfutils-libelf/pkg-descr Sun Aug 25 10:18:02 2019 (r509784) +++ branches/2019Q3/devel/linux-c7-elfutils-libelf/pkg-descr Sat Sep 21 12:41:06 2019 (r512491) @@ -1,3 +1,3 @@ ELF file handling library from elfutils. -WWW: https://fedorahosted.org/elfutils/ +WWW: https://sourceware.org/elfutils/ Modified: branches/2019Q3/devel/linux-c7-qt/Makefile ============================================================================== --- branches/2019Q3/devel/linux-c7-qt/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-qt/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -3,7 +3,8 @@ PORTNAME= qt PORTVERSION= 4.8.7 -DISTVERSIONSUFFIX= -2.el7 +DISTVERSIONSUFFIX= -3.el7_6 +PORTREVISION= 2 CATEGORIES= devel linux MAINTAINER= emulation@FreeBSD.org @@ -11,7 +12,7 @@ COMMENT= RPM of QT4 (Linux CentOS ${LINUX_DIST_VER}) USES= linux:c7 USE_LDCONFIG= yes -USE_LINUX= fontconfig png dbuslibs sqlite3 openssl +USE_LINUX= fontconfig png dbuslibs sqlite3 USE_LINUX_RPM= yes CONFLICTS= linux-c6-${PORTNAME}47-[0-9]* Modified: branches/2019Q3/devel/linux-c7-qt/distinfo ============================================================================== --- branches/2019Q3/devel/linux-c7-qt/distinfo Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-qt/distinfo Sat Sep 21 12:41:06 2019 (r512491) @@ -1,7 +1,7 @@ -TIMESTAMP = 1530377707 -SHA256 (centos/qt-4.8.7-2.el7.i686.rpm) = dd0ab5e79ab16650bea9ad949a5926337249c62df4a1fdd16e6e3f34d0c99134 -SIZE (centos/qt-4.8.7-2.el7.i686.rpm) = 4874728 -SHA256 (centos/qt-4.8.7-2.el7.x86_64.rpm) = 271dc317cf6ea86ac56d49ca0b020731dabac16df74fbd5f96ca2bfa1238fca9 -SIZE (centos/qt-4.8.7-2.el7.x86_64.rpm) = 4783788 -SHA256 (centos/qt-4.8.7-2.el7.src.rpm) = 63a3e15d926037bd00b37fb3cb2fc5c81c35e2bbfd339f8fd138743ffa0248b1 -SIZE (centos/qt-4.8.7-2.el7.src.rpm) = 240443274 +TIMESTAMP = 1562519609 +SHA256 (centos/qt-4.8.7-3.el7_6.i686.rpm) = 9dc8ce1319f07ab2ce6a23471a5ffef9c4b32d56e982b23273ffe5eafb46dda7 +SIZE (centos/qt-4.8.7-3.el7_6.i686.rpm) = 4876112 +SHA256 (centos/qt-4.8.7-3.el7_6.x86_64.rpm) = 91db10e590a952afe819d6295714a6d44a1130949aba43e88433b1739c68ac23 +SIZE (centos/qt-4.8.7-3.el7_6.x86_64.rpm) = 4784036 +SHA256 (centos/qt-4.8.7-3.el7_6.src.rpm) = 7a288c8123c88cfac90d4893e5deb401f6303c7e1bd57530af5a9e5b1c4715ef +SIZE (centos/qt-4.8.7-3.el7_6.src.rpm) = 240443518 Modified: branches/2019Q3/devel/linux-c7-qt/pkg-plist.i386 ============================================================================== --- branches/2019Q3/devel/linux-c7-qt/pkg-plist.i386 Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-qt/pkg-plist.i386 Sat Sep 21 12:41:06 2019 (r512491) @@ -47,6 +47,7 @@ usr/lib/qt4/plugins/sqldrivers/libqsqlite.so %%DATADIR%%/translations/qt_da.qm %%DATADIR%%/translations/qt_de.qm %%DATADIR%%/translations/qt_es.qm +%%DATADIR%%/translations/qt_eu.qm %%DATADIR%%/translations/qt_fa.qm %%DATADIR%%/translations/qt_fr.qm %%DATADIR%%/translations/qt_gl.qm Modified: branches/2019Q3/devel/linux-c7-strace/Makefile ============================================================================== --- branches/2019Q3/devel/linux-c7-strace/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/devel/linux-c7-strace/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -10,6 +10,6 @@ MAINTAINER= trasz@FreeBSD.org COMMENT= System call tracer (CentOS ${LINUX_DIST_VER}) USES= linux:c7 -USE_LINUX_RPM= yes +USE_LINUX_RPM= nolib .include Modified: branches/2019Q3/devel/linux-c7-systemd-libs/Makefile ============================================================================== --- head/devel/linux-c7-systemd-libs/Makefile Sun Aug 25 12:20:16 2019 (r509790) +++ branches/2019Q3/devel/linux-c7-systemd-libs/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -3,6 +3,7 @@ PORTNAME= systemd PORTVERSION= 219 DISTVERSIONSUFFIX= -62.el7_6.9 +PORTREVISION= 1 CATEGORIES= devel linux PKGNAMESUFFIX= -libs @@ -19,7 +20,6 @@ USE_LINUX_RPM= yes LIB_DISTNAMES= ${PORTNAME}${PKGNAMESUFFIX}-${DISTVERSIONFULL} post-patch: - @${RM} -r ${WRKSRC}/usr/lib/security - @${RM} -r ${WRKSRC}/usr/lib64/security + @${RM} -r ${WRKSRC}/usr/lib*/libudev.so.* ${WRKSRC}/usr/lib*/security .include Modified: branches/2019Q3/devel/linux-c7-systemd-libs/pkg-plist.amd64 ============================================================================== --- head/devel/linux-c7-systemd-libs/pkg-plist.amd64 Sun Aug 25 12:20:16 2019 (r509790) +++ branches/2019Q3/devel/linux-c7-systemd-libs/pkg-plist.amd64 Sat Sep 21 12:41:06 2019 (r512491) @@ -10,8 +10,6 @@ usr/lib/libsystemd-login.so.0 usr/lib/libsystemd-login.so.0.9.3 usr/lib/libsystemd.so.0 usr/lib/libsystemd.so.0.6.0 -usr/lib/libudev.so.1 -usr/lib/libudev.so.1.6.2 usr/lib64/libnss_myhostname.so.2 usr/lib64/libnss_mymachines.so.2 usr/lib64/libsystemd-daemon.so.0 @@ -24,5 +22,3 @@ usr/lib64/libsystemd-login.so.0 usr/lib64/libsystemd-login.so.0.9.3 usr/lib64/libsystemd.so.0 usr/lib64/libsystemd.so.0.6.0 -usr/lib64/libudev.so.1 -usr/lib64/libudev.so.1.6.2 Modified: branches/2019Q3/devel/linux-c7-systemd-libs/pkg-plist.i386 ============================================================================== --- head/devel/linux-c7-systemd-libs/pkg-plist.i386 Sun Aug 25 12:20:16 2019 (r509790) +++ branches/2019Q3/devel/linux-c7-systemd-libs/pkg-plist.i386 Sat Sep 21 12:41:06 2019 (r512491) @@ -10,5 +10,3 @@ usr/lib/libsystemd-login.so.0 usr/lib/libsystemd-login.so.0.9.3 usr/lib/libsystemd.so.0 usr/lib/libsystemd.so.0.6.0 -usr/lib/libudev.so.1 -usr/lib/libudev.so.1.6.2 Modified: branches/2019Q3/emulators/linux-c7/Makefile ============================================================================== --- branches/2019Q3/emulators/linux-c7/Makefile Sat Sep 21 12:30:30 2019 (r512490) +++ branches/2019Q3/emulators/linux-c7/Makefile Sat Sep 21 12:41:06 2019 (r512491) @@ -3,6 +3,7 @@ PORTNAME= linux-c7 *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***