From owner-svn-ports-all@freebsd.org Fri Apr 6 07:07:18 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A39BF889C1; Fri, 6 Apr 2018 07:07:18 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCAC869154; Fri, 6 Apr 2018 07:07:17 +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 B73A86725; Fri, 6 Apr 2018 07:07:17 +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 w3677Hco048980; Fri, 6 Apr 2018 07:07:17 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3677Hms048979; Fri, 6 Apr 2018 07:07:17 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201804060707.w3677Hms048979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Fri, 6 Apr 2018 07:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466621 - head/www/node4 X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: head/www/node4 X-SVN-Commit-Revision: 466621 X-SVN-Commit-Repository: ports 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.25 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: Fri, 06 Apr 2018 07:07:18 -0000 Author: bhughes Date: Fri Apr 6 07:07:17 2018 New Revision: 466621 URL: https://svnweb.freebsd.org/changeset/ports/466621 Log: www/node4: fix portlint errors and relevant warnings - move DEPRECATED/EXPIRATION_DATE out of MAINTAINER section - move ONLY_FOR_ARCHS - remove USES_LDCONFIG (Node.js doesn't install a .so) MFH: 2018Q2 Modified: head/www/node4/Makefile Modified: head/www/node4/Makefile ============================================================================== --- head/www/node4/Makefile Fri Apr 6 06:46:53 2018 (r466620) +++ head/www/node4/Makefile Fri Apr 6 07:07:17 2018 (r466621) @@ -10,12 +10,14 @@ PKGNAMESUFFIX= 4 MAINTAINER= bhughes@FreeBSD.org COMMENT= V8 JavaScript for client and server (4.x LTS) -DEPRECATED= Node.js v4.x reaches end-of-life on 2018-04-30, see https://github.com/nodejs/Release -EXPIRATION_DATE= 2018-04-30 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Node.js v4.x reaches end-of-life on 2018-04-30, see https://github.com/nodejs/Release +EXPIRATION_DATE= 2018-04-30 +ONLY_FOR_ARCHS= amd64 i386 + OPTIONS_DEFINE= BUNDLED_SSL DOCS NLS OPTIONS_DEFAULT= OPTIONS_SUB= yes @@ -32,11 +34,9 @@ NLS_LIB_DEPENDS= libicui18n.so:devel/icu USES= compiler:c++11-lib gmake python:2.7 pkgconfig localbase HAS_CONFIGURE= yes -USE_LDCONFIG= yes CONFLICTS_INSTALL= node[568]-[0-9]* node-[0-9]* -ONLY_FOR_ARCHS= amd64 i386 CONFIGURE_ARGS= --prefix=${PREFIX_RELDEST} \ --without-npm \ --shared-libuv \