From owner-svn-ports-head@freebsd.org Fri Apr 29 22:42:13 2016 Return-Path: Delivered-To: svn-ports-head@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 EF84FB21995; Fri, 29 Apr 2016 22:42:13 +0000 (UTC) (envelope-from sunpoet@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 BF58018D2; Fri, 29 Apr 2016 22:42:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3TMgCwm053368; Fri, 29 Apr 2016 22:42:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3TMgCn9053367; Fri, 29 Apr 2016 22:42:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201604292242.u3TMgCn9053367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 29 Apr 2016 22:42:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414304 - head/www/npm2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2016 22:42:14 -0000 Author: sunpoet Date: Fri Apr 29 22:42:12 2016 New Revision: 414304 URL: https://svnweb.freebsd.org/changeset/ports/414304 Log: - Adjust options: - Remove NODE option: npm 2.x will be available only for LTS and legacy versions of Node.js (www/node4, www/node012 and www/node010) - Set NODE4 as default - Bump PORTREVISION for dependency change Discussed with: Bradley T. Hughes (maintainer of www/node*) Modified: head/www/npm2/Makefile Modified: head/www/npm2/Makefile ============================================================================== --- head/www/npm2/Makefile Fri Apr 29 22:42:08 2016 (r414303) +++ head/www/npm2/Makefile Fri Apr 29 22:42:12 2016 (r414304) @@ -3,7 +3,7 @@ PORTNAME= npm PORTVERSION= 2.14.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet PKGNAMESUFFIX= 2 @@ -18,9 +18,8 @@ RUN_DEPENDS= gmake:devel/gmake CONFLICTS_INSTALL= npm-[0-9]* OPTIONS_SINGLE= BACKEND -OPTIONS_SINGLE_BACKEND= NODE NODE010 NODE012 NODE4 -OPTIONS_DEFAULT=NODE -NODE_DESC= Use www/node as backend +OPTIONS_SINGLE_BACKEND= NODE010 NODE012 NODE4 +OPTIONS_DEFAULT=NODE4 NODE010_DESC= Use www/node010 as backend NODE012_DESC= Use www/node012 as backend NODE4_DESC= Use www/node4 as backend @@ -43,7 +42,6 @@ SHEBANG_FILES= lib/utils/completion.sh \ scripts/relocate.sh \ test/update-test.sh -NODE_RUN_DEPENDS= node>=0.8.0:www/node NODE010_RUN_DEPENDS= node010>=0.8.0:www/node010 NODE012_RUN_DEPENDS= node012>=0.8.0:www/node012 NODE4_RUN_DEPENDS= node4>=0.8.0:www/node4