Received: by mail.netbsd.org (Postfix, from userid 605) id 389DA84D67; Sun, 24 Nov 2019 20:23:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B3C0B84D51 for ; Sun, 24 Nov 2019 20:23:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Bay9g11dAJCN for ; Sun, 24 Nov 2019 20:23:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 312D584CD3 for ; Sun, 24 Nov 2019 20:23:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 24DB4FA97; Sun, 24 Nov 2019 20:23:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15746269907130" MIME-Version: 1.0 Date: Sun, 24 Nov 2019 20:23:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/yarn To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191124202310.24DB4FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15746269907130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 24 20:23:10 UTC 2019 Modified Files: pkgsrc/devel/yarn: Makefile distinfo Log Message: yarn: updated to 1.19.1 1.19.1: Computes the --modules-folder & friends paths based on the cwd. Stores the sha512 in the cache even when not provided by the server. Uses the right Node binary when using yarn-path. 1.19.0: Fixes a potential vulnerability regarding how the build artifacts are stored 1.18.0: Suggests using the Yarn 2 development trunk on PnP-enabled projects Preserves linked packages when calling yarn create Fixes the offline mirror filenames when using Verdaccio Fixes using link:. to refer to the package folder Runs the prepare lifecycle of git dependencies even if NODE_ENV is set to production. Fixes the postversion lifecycle method not being called when using --no-git-tag-version. Ignores potentially large vscode keys in package.json to avoid E2BIG errors. Enforces https for the Yarn and npm registries. Adds support for reading yarnPath from v2-produced .yarnrc.yml files. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/yarn/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/yarn/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15746269907130 Content-Disposition: inline Content-Length: 1741 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/yarn/Makefile diff -u pkgsrc/devel/yarn/Makefile:1.8 pkgsrc/devel/yarn/Makefile:1.9 --- pkgsrc/devel/yarn/Makefile:1.8 Sun Aug 18 04:19:58 2019 +++ pkgsrc/devel/yarn/Makefile Sun Nov 24 20:23:09 2019 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.8 2019/08/18 04:19:58 maya Exp $ +# $NetBSD: Makefile,v 1.9 2019/11/24 20:23:09 adam Exp $ -DISTNAME= yarn-v1.17.3 +DISTNAME= yarn-v1.19.1 PKGNAME= ${DISTNAME:S/-v/-/} CATEGORIES= devel -MASTER_SITES= https://yarnpkg.com/downloads/${PKGVERSION_NOREV}/ +MASTER_SITES= ${MASTER_SITE_GITHUB:=yarnpkg/} +GITHUB_RELEASE= v${PKGVERSION_NOREV} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://yarnpkg.com/ Index: pkgsrc/devel/yarn/distinfo diff -u pkgsrc/devel/yarn/distinfo:1.7 pkgsrc/devel/yarn/distinfo:1.8 --- pkgsrc/devel/yarn/distinfo:1.7 Sat Jul 13 09:18:52 2019 +++ pkgsrc/devel/yarn/distinfo Sun Nov 24 20:23:09 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2019/07/13 09:18:52 adam Exp $ +$NetBSD: distinfo,v 1.8 2019/11/24 20:23:09 adam Exp $ -SHA1 (yarn-v1.17.3.tar.gz) = 60e0b77d079eb78e753bb616f7592b51b6a9adce -RMD160 (yarn-v1.17.3.tar.gz) = 8682b29457d836a16d5e9e724fb57b95425133c8 -SHA512 (yarn-v1.17.3.tar.gz) = 0a003ca3b9d165a42f99e17f581c76142edff56ff45f9f53d8868b62a80ca3aeb7ef07e9e66304b0cdd85e826d294b299e998324a97f8061619ea4beb0e37b84 -Size (yarn-v1.17.3.tar.gz) = 1240577 bytes +SHA1 (yarn-v1.19.1.tar.gz) = 14b92410dd1ba5bab87a12b4a3d807f4569bea97 +RMD160 (yarn-v1.19.1.tar.gz) = 43769e50b1142891d51a08675b78e088f86deed1 +SHA512 (yarn-v1.19.1.tar.gz) = 8019df6cbf6b618d391add1c8c986cfec8aa4171d89596a54e32b79d79f640edb4c5b90814fa1bf8b947e3830be3b19c478554f7fd9d61c93505614cd096afc7 +Size (yarn-v1.19.1.tar.gz) = 1243585 bytes --_----------=_15746269907130--