From owner-svn-ports-all@freebsd.org Thu May 18 18:39:56 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27F2FD7173A; Thu, 18 May 2017 18:39:56 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2614DEE; Thu, 18 May 2017 18:39:55 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4IIdsbH067411; Thu, 18 May 2017 18:39:54 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4IIdsKB067409; Thu, 18 May 2017 18:39:54 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201705181839.v4IIdsKB067409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 18 May 2017 18:39:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441191 - in head: . www/yarn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 May 2017 18:39:56 -0000 Author: adamw Date: Thu May 18 18:39:54 2017 New Revision: 441191 URL: https://svnweb.freebsd.org/changeset/ports/441191 Log: Switch the default yarn node backend from node6 (LTS) to node (current). This makes yarn's backend selection consistent with npm and all other node consumers. Add an UPDATING message to reduce surprise. Submitted by: maintainer (Luca Pizzamiglio) Reported by: jrm Modified: head/UPDATING head/www/yarn/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu May 18 17:57:57 2017 (r441190) +++ head/UPDATING Thu May 18 18:39:54 2017 (r441191) @@ -5,6 +5,15 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20170518: + AFFECTS: users of www/yarn + AUTHOR: adamw@FreeBSD.org + + The default node backend for yarn has switched to www/node. Binary + package users should expect the node backend to be switched during + the upgrade. To keep the node6 (LTS) backend, rebuild www/yarn with + the NODE6 backend option enabled. + 20170517: AFFECTS: users of security/pecl-ssh2 AUTHOR: dbaio@FreeBSD.org Modified: head/www/yarn/Makefile ============================================================================== --- head/www/yarn/Makefile Thu May 18 17:57:57 2017 (r441190) +++ head/www/yarn/Makefile Thu May 18 18:39:54 2017 (r441191) @@ -3,6 +3,7 @@ PORTNAME= yarn PORTVERSION= 0.23.2 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://yarnpkg.com/downloads/${PORTVERSION}/ @@ -16,7 +17,7 @@ WRKSRC= ${WRKDIR}/dist OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= NODE4 NODE6 NODE -OPTIONS_DEFAULT= NODE6 +OPTIONS_DEFAULT= NODE NODE_DESC= Use www/node as backend NODE6_DESC= Use www/node6 as backend NODE4_DESC= Use www/node4 as backend