Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Aug 2013 08:44:20 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324959 - head/www/npm
Message-ID:  <201308190844.r7J8iKAi029251@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Aug 19 08:44:20 2013
New Revision: 324959
URL: http://svnweb.freebsd.org/changeset/ports/324959

Log:
  - Update to 1.3.1
  - Do not link manpages to PREFIX/man, use man.d/npm.conf instead
  - Pet portlint
  
  Changes:	https://github.com/isaacs/npm/commits/master

Modified:
  head/www/npm/Makefile
  head/www/npm/distinfo
  head/www/npm/pkg-plist

Modified: head/www/npm/Makefile
==============================================================================
--- head/www/npm/Makefile	Mon Aug 19 08:42:26 2013	(r324958)
+++ head/www/npm/Makefile	Mon Aug 19 08:44:20 2013	(r324959)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	npm
-PORTVERSION=	1.2.28
+PORTVERSION=	1.3.7
 CATEGORIES=	www
 MASTER_SITES=	LOCAL/sunpoet
 
@@ -18,22 +18,30 @@ NO_BUILD=	yes
 NO_MANCOMPRESS=	yes
 USE_XZ=		yes
 
-MAN1=		README.1 adduser.1 bin.1 bugs.1 build.1 bundle.1 cache.1 \
-		changelog.1 coding-style.1 completion.1 config.1 dedupe.1 \
-		deprecate.1 developers.1 disputes.1 docs.1 edit.1 explore.1 \
-		faq.1 folders.1 global.1 help-search.1 help.1 index.1 init.1 \
-		install.1 json.1 link.1 ls.1 npm.1 outdated.1 owner.1 pack.1 \
-		prefix.1 prune.1 publish.1 rebuild.1 registry.1 removing-npm.1 \
-		restart.1 rm.1 root.1 run-script.1 scripts.1 search.1 semver.1 \
-		shrinkwrap.1 star.1 stars.1 start.1 stop.1 submodule.1 tag.1 \
-		test.1 uninstall.1 unpublish.1 update.1 version.1 view.1 \
-		whoami.1
-MAN3=		bin.3 bugs.3 commands.3 config.3 deprecate.3 docs.3 edit.3 \
-		explore.3 help-search.3 init.3 install.3 link.3 load.3 ls.3 \
-		npm.3 outdated.3 owner.3 pack.3 prefix.3 prune.3 publish.3 \
-		rebuild.3 restart.3 root.3 run-script.3 search.3 shrinkwrap.3 \
-		start.3 stop.3 submodule.3 tag.3 test.3 uninstall.3 \
-		unpublish.3 update.3 version.3 view.3 whoami.3
+MAN1=		npm.1 npm-README.1 npm-adduser.1 npm-bin.1 npm-bugs.1 \
+		npm-build.1 npm-bundle.1 npm-cache.1 npm-completion.1 \
+		npm-config.1 npm-dedupe.1 npm-deprecate.1 npm-docs.1 \
+		npm-edit.1 npm-explore.1 npm-help-search.1 npm-help.1 \
+		npm-init.1 npm-install.1 npm-link.1 npm-ls.1 npm-outdated.1 \
+		npm-owner.1 npm-pack.1 npm-prefix.1 npm-prune.1 npm-publish.1 \
+		npm-rebuild.1 npm-restart.1 npm-rm.1 npm-root.1 \
+		npm-run-script.1 npm-search.1 npm-shrinkwrap.1 npm-star.1 \
+		npm-stars.1 npm-start.1 npm-stop.1 npm-submodule.1 npm-tag.1 \
+		npm-test.1 npm-uninstall.1 npm-unpublish.1 npm-update.1 \
+		npm-version.1 npm-view.1 npm-whoami.1
+MAN3=		npm.3 npm-bin.3 npm-bugs.3 npm-commands.3 npm-config.3 \
+		npm-deprecate.3 npm-docs.3 npm-edit.3 npm-explore.3 \
+		npm-help-search.3 npm-init.3 npm-install.3 npm-link.3 \
+		npm-load.3 npm-ls.3 npm-outdated.3 npm-owner.3 npm-pack.3 \
+		npm-prefix.3 npm-prune.3 npm-publish.3 npm-rebuild.3 \
+		npm-restart.3 npm-root.3 npm-run-script.3 npm-search.3 \
+		npm-shrinkwrap.3 npm-start.3 npm-stop.3 npm-submodule.3 \
+		npm-tag.3 npm-test.3 npm-uninstall.3 npm-unpublish.3 \
+		npm-update.3 npm-version.3 npm-view.3 npm-whoami.3
+MAN5=		npm-folders.5 npm-global.5 npm-json.5 npmrc.5 package.json.5
+MAN7=		npm-coding-style.7 npm-config.7 npm-developers.7 \
+		npm-disputes.7 npm-faq.7 npm-index.7 npm-registry.7 \
+		npm-scripts.7 removing-npm.7 semver.7
 MANPREFIX=	${PREFIX}/lib/node_modules/npm
 
 .include <bsd.port.options.mk>
@@ -45,7 +53,12 @@ RUN_DEPENDS+=	node>=0.8.0:${PORTSDIR}/ww
 .endif
 
 post-patch:
-	@${SED} -i '' -e 's|node cli.js|& --cache ${WRKDIR}/.cache|' ${WRKSRC}/Makefile
+	@${SED} -i '' -e 's|node cli.js|& --cache ${WRKDIR}/.cache|; /^install: / s| docclean||' ${WRKSRC}/Makefile
+	@${SED} -i '' -e 's|linkBins, linkMans|linkBins|' ${WRKSRC}/lib/build.js
+	@${ECHO_CMD} "MANPATH ${PREFIX}/lib/node_modules/npm/man" > ${WRKDIR}/npm.conf
+
+post-install:
+	@${INSTALL_DATA} ${WRKDIR}/npm.conf ${PREFIX}/etc/man.d/npm.conf
 
 # maintainer section:
 # require: bash, git, gmake, node
@@ -76,9 +89,10 @@ maketar: do-clean extract
 	@cd ${MS_WRKSRC}/${MS_DISTNAME}/ && ${GMAKE}
 	@${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type d -exec ${CHMOD} 755 '{}' \;
 	@${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -exec ${CHMOD} 644 '{}' \;
+	@${FIND} ${MS_WRKSRC}/${MS_DISTNAME}/ -type f -name '*.sh' -exec ${CHMOD} 755 '{}' \;
 	@cd ${MS_WRKSRC}/ && ${TAR} -Jcf ${MS_DISTNAME}.tar.xz ${MS_DISTNAME}/
 	@${SED} -i '' -e '/^PORTVERSION=/ s|${PORTVERSION}|'${MS_VERSION}'|; /^PORTREVISION=/d' ${.CURDIR}/Makefile
-	@${INSTALL} -m 644 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}.tar.xz ${DISTDIR}/
+	@sudo ${INSTALL} -m 644 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}.tar.xz ${DISTDIR}/
 	@cd ${.CURDIR}/ && ${MAKE} makesum
 
 .include <bsd.port.mk>

Modified: head/www/npm/distinfo
==============================================================================
--- head/www/npm/distinfo	Mon Aug 19 08:42:26 2013	(r324958)
+++ head/www/npm/distinfo	Mon Aug 19 08:44:20 2013	(r324959)
@@ -1,2 +1,2 @@
-SHA256 (npm-1.2.28.tar.xz) = a48ff9debc7e262fab7b04aa2ef40fd8ec54706f7b6b077191eb908f02666d9b
-SIZE (npm-1.2.28.tar.xz) = 1968992
+SHA256 (npm-1.3.7.tar.xz) = f4095eb2a5b3a3317bf0d08e925ff6030772a7b470a2127c2aeff918ace694e4
+SIZE (npm-1.3.7.tar.xz) = 1783676

Modified: head/www/npm/pkg-plist
==============================================================================
--- head/www/npm/pkg-plist	Mon Aug 19 08:42:26 2013	(r324958)
+++ head/www/npm/pkg-plist	Mon Aug 19 08:44:20 2013	(r324959)
@@ -1,4 +1,5 @@
 bin/npm
+etc/man.d/npm.conf
 lib/node_modules/npm/.npmignore
 lib/node_modules/npm/AUTHORS
 lib/node_modules/npm/LICENSE
@@ -12,201 +13,204 @@ lib/node_modules/npm/bin/npm.cmd
 lib/node_modules/npm/bin/read-package-json.js
 lib/node_modules/npm/cli.js
 lib/node_modules/npm/configure
-lib/node_modules/npm/doc/api/bin.md
-lib/node_modules/npm/doc/api/bugs.md
-lib/node_modules/npm/doc/api/commands.md
-lib/node_modules/npm/doc/api/config.md
-lib/node_modules/npm/doc/api/deprecate.md
-lib/node_modules/npm/doc/api/docs.md
-lib/node_modules/npm/doc/api/edit.md
-lib/node_modules/npm/doc/api/explore.md
-lib/node_modules/npm/doc/api/help-search.md
-lib/node_modules/npm/doc/api/init.md
-lib/node_modules/npm/doc/api/install.md
-lib/node_modules/npm/doc/api/link.md
-lib/node_modules/npm/doc/api/load.md
-lib/node_modules/npm/doc/api/ls.md
+lib/node_modules/npm/doc/api/npm-bin.md
+lib/node_modules/npm/doc/api/npm-bugs.md
+lib/node_modules/npm/doc/api/npm-commands.md
+lib/node_modules/npm/doc/api/npm-config.md
+lib/node_modules/npm/doc/api/npm-deprecate.md
+lib/node_modules/npm/doc/api/npm-docs.md
+lib/node_modules/npm/doc/api/npm-edit.md
+lib/node_modules/npm/doc/api/npm-explore.md
+lib/node_modules/npm/doc/api/npm-help-search.md
+lib/node_modules/npm/doc/api/npm-init.md
+lib/node_modules/npm/doc/api/npm-install.md
+lib/node_modules/npm/doc/api/npm-link.md
+lib/node_modules/npm/doc/api/npm-load.md
+lib/node_modules/npm/doc/api/npm-ls.md
+lib/node_modules/npm/doc/api/npm-outdated.md
+lib/node_modules/npm/doc/api/npm-owner.md
+lib/node_modules/npm/doc/api/npm-pack.md
+lib/node_modules/npm/doc/api/npm-prefix.md
+lib/node_modules/npm/doc/api/npm-prune.md
+lib/node_modules/npm/doc/api/npm-publish.md
+lib/node_modules/npm/doc/api/npm-rebuild.md
+lib/node_modules/npm/doc/api/npm-restart.md
+lib/node_modules/npm/doc/api/npm-root.md
+lib/node_modules/npm/doc/api/npm-run-script.md
+lib/node_modules/npm/doc/api/npm-search.md
+lib/node_modules/npm/doc/api/npm-shrinkwrap.md
+lib/node_modules/npm/doc/api/npm-start.md
+lib/node_modules/npm/doc/api/npm-stop.md
+lib/node_modules/npm/doc/api/npm-submodule.md
+lib/node_modules/npm/doc/api/npm-tag.md
+lib/node_modules/npm/doc/api/npm-test.md
+lib/node_modules/npm/doc/api/npm-uninstall.md
+lib/node_modules/npm/doc/api/npm-unpublish.md
+lib/node_modules/npm/doc/api/npm-update.md
+lib/node_modules/npm/doc/api/npm-version.md
+lib/node_modules/npm/doc/api/npm-view.md
+lib/node_modules/npm/doc/api/npm-whoami.md
 lib/node_modules/npm/doc/api/npm.md
-lib/node_modules/npm/doc/api/outdated.md
-lib/node_modules/npm/doc/api/owner.md
-lib/node_modules/npm/doc/api/pack.md
-lib/node_modules/npm/doc/api/prefix.md
-lib/node_modules/npm/doc/api/prune.md
-lib/node_modules/npm/doc/api/publish.md
-lib/node_modules/npm/doc/api/rebuild.md
-lib/node_modules/npm/doc/api/restart.md
-lib/node_modules/npm/doc/api/root.md
-lib/node_modules/npm/doc/api/run-script.md
-lib/node_modules/npm/doc/api/search.md
-lib/node_modules/npm/doc/api/shrinkwrap.md
-lib/node_modules/npm/doc/api/start.md
-lib/node_modules/npm/doc/api/stop.md
-lib/node_modules/npm/doc/api/submodule.md
-lib/node_modules/npm/doc/api/tag.md
-lib/node_modules/npm/doc/api/test.md
-lib/node_modules/npm/doc/api/uninstall.md
-lib/node_modules/npm/doc/api/unpublish.md
-lib/node_modules/npm/doc/api/update.md
-lib/node_modules/npm/doc/api/version.md
-lib/node_modules/npm/doc/api/view.md
-lib/node_modules/npm/doc/api/whoami.md
-lib/node_modules/npm/doc/cli/adduser.md
-lib/node_modules/npm/doc/cli/bin.md
-lib/node_modules/npm/doc/cli/bugs.md
-lib/node_modules/npm/doc/cli/build.md
-lib/node_modules/npm/doc/cli/bundle.md
-lib/node_modules/npm/doc/cli/cache.md
-lib/node_modules/npm/doc/cli/changelog.md
-lib/node_modules/npm/doc/cli/coding-style.md
-lib/node_modules/npm/doc/cli/completion.md
-lib/node_modules/npm/doc/cli/config.md
-lib/node_modules/npm/doc/cli/dedupe.md
-lib/node_modules/npm/doc/cli/deprecate.md
-lib/node_modules/npm/doc/cli/developers.md
-lib/node_modules/npm/doc/cli/disputes.md
-lib/node_modules/npm/doc/cli/docs.md
-lib/node_modules/npm/doc/cli/edit.md
-lib/node_modules/npm/doc/cli/explore.md
-lib/node_modules/npm/doc/cli/faq.md
-lib/node_modules/npm/doc/cli/folders.md
-lib/node_modules/npm/doc/cli/global.md
-lib/node_modules/npm/doc/cli/help-search.md
-lib/node_modules/npm/doc/cli/help.md
-lib/node_modules/npm/doc/cli/index.md
-lib/node_modules/npm/doc/cli/init.md
-lib/node_modules/npm/doc/cli/install.md
-lib/node_modules/npm/doc/cli/json.md
-lib/node_modules/npm/doc/cli/link.md
-lib/node_modules/npm/doc/cli/ls.md
+lib/node_modules/npm/doc/cli/npm-adduser.md
+lib/node_modules/npm/doc/cli/npm-bin.md
+lib/node_modules/npm/doc/cli/npm-bugs.md
+lib/node_modules/npm/doc/cli/npm-build.md
+lib/node_modules/npm/doc/cli/npm-bundle.md
+lib/node_modules/npm/doc/cli/npm-cache.md
+lib/node_modules/npm/doc/cli/npm-completion.md
+lib/node_modules/npm/doc/cli/npm-config.md
+lib/node_modules/npm/doc/cli/npm-dedupe.md
+lib/node_modules/npm/doc/cli/npm-deprecate.md
+lib/node_modules/npm/doc/cli/npm-docs.md
+lib/node_modules/npm/doc/cli/npm-edit.md
+lib/node_modules/npm/doc/cli/npm-explore.md
+lib/node_modules/npm/doc/cli/npm-help-search.md
+lib/node_modules/npm/doc/cli/npm-help.md
+lib/node_modules/npm/doc/cli/npm-init.md
+lib/node_modules/npm/doc/cli/npm-install.md
+lib/node_modules/npm/doc/cli/npm-link.md
+lib/node_modules/npm/doc/cli/npm-ls.md
+lib/node_modules/npm/doc/cli/npm-outdated.md
+lib/node_modules/npm/doc/cli/npm-owner.md
+lib/node_modules/npm/doc/cli/npm-pack.md
+lib/node_modules/npm/doc/cli/npm-prefix.md
+lib/node_modules/npm/doc/cli/npm-prune.md
+lib/node_modules/npm/doc/cli/npm-publish.md
+lib/node_modules/npm/doc/cli/npm-rebuild.md
+lib/node_modules/npm/doc/cli/npm-restart.md
+lib/node_modules/npm/doc/cli/npm-rm.md
+lib/node_modules/npm/doc/cli/npm-root.md
+lib/node_modules/npm/doc/cli/npm-run-script.md
+lib/node_modules/npm/doc/cli/npm-search.md
+lib/node_modules/npm/doc/cli/npm-shrinkwrap.md
+lib/node_modules/npm/doc/cli/npm-star.md
+lib/node_modules/npm/doc/cli/npm-stars.md
+lib/node_modules/npm/doc/cli/npm-start.md
+lib/node_modules/npm/doc/cli/npm-stop.md
+lib/node_modules/npm/doc/cli/npm-submodule.md
+lib/node_modules/npm/doc/cli/npm-tag.md
+lib/node_modules/npm/doc/cli/npm-test.md
+lib/node_modules/npm/doc/cli/npm-uninstall.md
+lib/node_modules/npm/doc/cli/npm-unpublish.md
+lib/node_modules/npm/doc/cli/npm-update.md
+lib/node_modules/npm/doc/cli/npm-version.md
+lib/node_modules/npm/doc/cli/npm-view.md
+lib/node_modules/npm/doc/cli/npm-whoami.md
 lib/node_modules/npm/doc/cli/npm.md
-lib/node_modules/npm/doc/cli/outdated.md
-lib/node_modules/npm/doc/cli/owner.md
-lib/node_modules/npm/doc/cli/pack.md
-lib/node_modules/npm/doc/cli/prefix.md
-lib/node_modules/npm/doc/cli/prune.md
-lib/node_modules/npm/doc/cli/publish.md
-lib/node_modules/npm/doc/cli/rebuild.md
-lib/node_modules/npm/doc/cli/registry.md
-lib/node_modules/npm/doc/cli/removing-npm.md
-lib/node_modules/npm/doc/cli/restart.md
-lib/node_modules/npm/doc/cli/rm.md
-lib/node_modules/npm/doc/cli/root.md
-lib/node_modules/npm/doc/cli/run-script.md
-lib/node_modules/npm/doc/cli/scripts.md
-lib/node_modules/npm/doc/cli/search.md
-lib/node_modules/npm/doc/cli/semver.md
-lib/node_modules/npm/doc/cli/shrinkwrap.md
-lib/node_modules/npm/doc/cli/star.md
-lib/node_modules/npm/doc/cli/stars.md
-lib/node_modules/npm/doc/cli/start.md
-lib/node_modules/npm/doc/cli/stop.md
-lib/node_modules/npm/doc/cli/submodule.md
-lib/node_modules/npm/doc/cli/tag.md
-lib/node_modules/npm/doc/cli/test.md
-lib/node_modules/npm/doc/cli/uninstall.md
-lib/node_modules/npm/doc/cli/unpublish.md
-lib/node_modules/npm/doc/cli/update.md
-lib/node_modules/npm/doc/cli/version.md
-lib/node_modules/npm/doc/cli/view.md
-lib/node_modules/npm/doc/cli/whoami.md
-lib/node_modules/npm/html/api/bin.html
-lib/node_modules/npm/html/api/bugs.html
-lib/node_modules/npm/html/api/commands.html
-lib/node_modules/npm/html/api/config.html
-lib/node_modules/npm/html/api/deprecate.html
-lib/node_modules/npm/html/api/docs.html
-lib/node_modules/npm/html/api/edit.html
-lib/node_modules/npm/html/api/explore.html
-lib/node_modules/npm/html/api/help-search.html
-lib/node_modules/npm/html/api/init.html
-lib/node_modules/npm/html/api/install.html
-lib/node_modules/npm/html/api/link.html
-lib/node_modules/npm/html/api/load.html
-lib/node_modules/npm/html/api/ls.html
-lib/node_modules/npm/html/api/npm.html
-lib/node_modules/npm/html/api/outdated.html
-lib/node_modules/npm/html/api/owner.html
-lib/node_modules/npm/html/api/pack.html
-lib/node_modules/npm/html/api/prefix.html
-lib/node_modules/npm/html/api/prune.html
-lib/node_modules/npm/html/api/publish.html
-lib/node_modules/npm/html/api/rebuild.html
-lib/node_modules/npm/html/api/restart.html
-lib/node_modules/npm/html/api/root.html
-lib/node_modules/npm/html/api/run-script.html
-lib/node_modules/npm/html/api/search.html
-lib/node_modules/npm/html/api/shrinkwrap.html
-lib/node_modules/npm/html/api/start.html
-lib/node_modules/npm/html/api/stop.html
-lib/node_modules/npm/html/api/submodule.html
-lib/node_modules/npm/html/api/tag.html
-lib/node_modules/npm/html/api/test.html
-lib/node_modules/npm/html/api/uninstall.html
-lib/node_modules/npm/html/api/unpublish.html
-lib/node_modules/npm/html/api/update.html
-lib/node_modules/npm/html/api/version.html
-lib/node_modules/npm/html/api/view.html
-lib/node_modules/npm/html/api/whoami.html
+lib/node_modules/npm/doc/files/npm-folders.md
+lib/node_modules/npm/doc/files/npmrc.md
+lib/node_modules/npm/doc/files/package.json.md
+lib/node_modules/npm/doc/misc/npm-coding-style.md
+lib/node_modules/npm/doc/misc/npm-config.md
+lib/node_modules/npm/doc/misc/npm-developers.md
+lib/node_modules/npm/doc/misc/npm-disputes.md
+lib/node_modules/npm/doc/misc/npm-faq.md
+lib/node_modules/npm/doc/misc/npm-index.md
+lib/node_modules/npm/doc/misc/npm-registry.md
+lib/node_modules/npm/doc/misc/npm-scripts.md
+lib/node_modules/npm/doc/misc/removing-npm.md
+lib/node_modules/npm/doc/misc/semver.md
 lib/node_modules/npm/html/doc/README.html
-lib/node_modules/npm/html/doc/adduser.html
-lib/node_modules/npm/html/doc/bin.html
-lib/node_modules/npm/html/doc/bugs.html
-lib/node_modules/npm/html/doc/build.html
-lib/node_modules/npm/html/doc/bundle.html
-lib/node_modules/npm/html/doc/cache.html
-lib/node_modules/npm/html/doc/changelog.html
-lib/node_modules/npm/html/doc/coding-style.html
-lib/node_modules/npm/html/doc/completion.html
-lib/node_modules/npm/html/doc/config.html
-lib/node_modules/npm/html/doc/dedupe.html
-lib/node_modules/npm/html/doc/deprecate.html
-lib/node_modules/npm/html/doc/developers.html
-lib/node_modules/npm/html/doc/disputes.html
-lib/node_modules/npm/html/doc/docs.html
-lib/node_modules/npm/html/doc/edit.html
-lib/node_modules/npm/html/doc/explore.html
-lib/node_modules/npm/html/doc/faq.html
-lib/node_modules/npm/html/doc/folders.html
-lib/node_modules/npm/html/doc/global.html
-lib/node_modules/npm/html/doc/help-search.html
-lib/node_modules/npm/html/doc/help.html
+lib/node_modules/npm/html/doc/api/npm-bin.html
+lib/node_modules/npm/html/doc/api/npm-bugs.html
+lib/node_modules/npm/html/doc/api/npm-commands.html
+lib/node_modules/npm/html/doc/api/npm-config.html
+lib/node_modules/npm/html/doc/api/npm-deprecate.html
+lib/node_modules/npm/html/doc/api/npm-docs.html
+lib/node_modules/npm/html/doc/api/npm-edit.html
+lib/node_modules/npm/html/doc/api/npm-explore.html
+lib/node_modules/npm/html/doc/api/npm-help-search.html
+lib/node_modules/npm/html/doc/api/npm-init.html
+lib/node_modules/npm/html/doc/api/npm-install.html
+lib/node_modules/npm/html/doc/api/npm-link.html
+lib/node_modules/npm/html/doc/api/npm-load.html
+lib/node_modules/npm/html/doc/api/npm-ls.html
+lib/node_modules/npm/html/doc/api/npm-outdated.html
+lib/node_modules/npm/html/doc/api/npm-owner.html
+lib/node_modules/npm/html/doc/api/npm-pack.html
+lib/node_modules/npm/html/doc/api/npm-prefix.html
+lib/node_modules/npm/html/doc/api/npm-prune.html
+lib/node_modules/npm/html/doc/api/npm-publish.html
+lib/node_modules/npm/html/doc/api/npm-rebuild.html
+lib/node_modules/npm/html/doc/api/npm-restart.html
+lib/node_modules/npm/html/doc/api/npm-root.html
+lib/node_modules/npm/html/doc/api/npm-run-script.html
+lib/node_modules/npm/html/doc/api/npm-search.html
+lib/node_modules/npm/html/doc/api/npm-shrinkwrap.html
+lib/node_modules/npm/html/doc/api/npm-start.html
+lib/node_modules/npm/html/doc/api/npm-stop.html
+lib/node_modules/npm/html/doc/api/npm-submodule.html
+lib/node_modules/npm/html/doc/api/npm-tag.html
+lib/node_modules/npm/html/doc/api/npm-test.html
+lib/node_modules/npm/html/doc/api/npm-uninstall.html
+lib/node_modules/npm/html/doc/api/npm-unpublish.html
+lib/node_modules/npm/html/doc/api/npm-update.html
+lib/node_modules/npm/html/doc/api/npm-version.html
+lib/node_modules/npm/html/doc/api/npm-view.html
+lib/node_modules/npm/html/doc/api/npm-whoami.html
+lib/node_modules/npm/html/doc/api/npm.html
+lib/node_modules/npm/html/doc/cli/npm-adduser.html
+lib/node_modules/npm/html/doc/cli/npm-bin.html
+lib/node_modules/npm/html/doc/cli/npm-bugs.html
+lib/node_modules/npm/html/doc/cli/npm-build.html
+lib/node_modules/npm/html/doc/cli/npm-bundle.html
+lib/node_modules/npm/html/doc/cli/npm-cache.html
+lib/node_modules/npm/html/doc/cli/npm-completion.html
+lib/node_modules/npm/html/doc/cli/npm-config.html
+lib/node_modules/npm/html/doc/cli/npm-dedupe.html
+lib/node_modules/npm/html/doc/cli/npm-deprecate.html
+lib/node_modules/npm/html/doc/cli/npm-docs.html
+lib/node_modules/npm/html/doc/cli/npm-edit.html
+lib/node_modules/npm/html/doc/cli/npm-explore.html
+lib/node_modules/npm/html/doc/cli/npm-help-search.html
+lib/node_modules/npm/html/doc/cli/npm-help.html
+lib/node_modules/npm/html/doc/cli/npm-init.html
+lib/node_modules/npm/html/doc/cli/npm-install.html
+lib/node_modules/npm/html/doc/cli/npm-link.html
+lib/node_modules/npm/html/doc/cli/npm-ls.html
+lib/node_modules/npm/html/doc/cli/npm-outdated.html
+lib/node_modules/npm/html/doc/cli/npm-owner.html
+lib/node_modules/npm/html/doc/cli/npm-pack.html
+lib/node_modules/npm/html/doc/cli/npm-prefix.html
+lib/node_modules/npm/html/doc/cli/npm-prune.html
+lib/node_modules/npm/html/doc/cli/npm-publish.html
+lib/node_modules/npm/html/doc/cli/npm-rebuild.html
+lib/node_modules/npm/html/doc/cli/npm-restart.html
+lib/node_modules/npm/html/doc/cli/npm-rm.html
+lib/node_modules/npm/html/doc/cli/npm-root.html
+lib/node_modules/npm/html/doc/cli/npm-run-script.html
+lib/node_modules/npm/html/doc/cli/npm-search.html
+lib/node_modules/npm/html/doc/cli/npm-shrinkwrap.html
+lib/node_modules/npm/html/doc/cli/npm-star.html
+lib/node_modules/npm/html/doc/cli/npm-stars.html
+lib/node_modules/npm/html/doc/cli/npm-start.html
+lib/node_modules/npm/html/doc/cli/npm-stop.html
+lib/node_modules/npm/html/doc/cli/npm-submodule.html
+lib/node_modules/npm/html/doc/cli/npm-tag.html
+lib/node_modules/npm/html/doc/cli/npm-test.html
+lib/node_modules/npm/html/doc/cli/npm-uninstall.html
+lib/node_modules/npm/html/doc/cli/npm-unpublish.html
+lib/node_modules/npm/html/doc/cli/npm-update.html
+lib/node_modules/npm/html/doc/cli/npm-version.html
+lib/node_modules/npm/html/doc/cli/npm-view.html
+lib/node_modules/npm/html/doc/cli/npm-whoami.html
+lib/node_modules/npm/html/doc/cli/npm.html
+lib/node_modules/npm/html/doc/files/npm-folders.html
+lib/node_modules/npm/html/doc/files/npm-global.html
+lib/node_modules/npm/html/doc/files/npm-json.html
+lib/node_modules/npm/html/doc/files/npmrc.html
+lib/node_modules/npm/html/doc/files/package.json.html
 lib/node_modules/npm/html/doc/index.html
-lib/node_modules/npm/html/doc/init.html
-lib/node_modules/npm/html/doc/install.html
-lib/node_modules/npm/html/doc/json.html
-lib/node_modules/npm/html/doc/link.html
-lib/node_modules/npm/html/doc/ls.html
-lib/node_modules/npm/html/doc/npm.html
-lib/node_modules/npm/html/doc/outdated.html
-lib/node_modules/npm/html/doc/owner.html
-lib/node_modules/npm/html/doc/pack.html
-lib/node_modules/npm/html/doc/prefix.html
-lib/node_modules/npm/html/doc/prune.html
-lib/node_modules/npm/html/doc/publish.html
-lib/node_modules/npm/html/doc/rebuild.html
-lib/node_modules/npm/html/doc/registry.html
-lib/node_modules/npm/html/doc/removing-npm.html
-lib/node_modules/npm/html/doc/restart.html
-lib/node_modules/npm/html/doc/rm.html
-lib/node_modules/npm/html/doc/root.html
-lib/node_modules/npm/html/doc/run-script.html
-lib/node_modules/npm/html/doc/scripts.html
-lib/node_modules/npm/html/doc/search.html
-lib/node_modules/npm/html/doc/semver.html
-lib/node_modules/npm/html/doc/shrinkwrap.html
-lib/node_modules/npm/html/doc/star.html
-lib/node_modules/npm/html/doc/stars.html
-lib/node_modules/npm/html/doc/start.html
-lib/node_modules/npm/html/doc/stop.html
-lib/node_modules/npm/html/doc/submodule.html
-lib/node_modules/npm/html/doc/tag.html
-lib/node_modules/npm/html/doc/test.html
-lib/node_modules/npm/html/doc/uninstall.html
-lib/node_modules/npm/html/doc/unpublish.html
-lib/node_modules/npm/html/doc/update.html
-lib/node_modules/npm/html/doc/version.html
-lib/node_modules/npm/html/doc/view.html
-lib/node_modules/npm/html/doc/whoami.html
+lib/node_modules/npm/html/doc/misc/npm-coding-style.html
+lib/node_modules/npm/html/doc/misc/npm-config.html
+lib/node_modules/npm/html/doc/misc/npm-developers.html
+lib/node_modules/npm/html/doc/misc/npm-disputes.html
+lib/node_modules/npm/html/doc/misc/npm-faq.html
+lib/node_modules/npm/html/doc/misc/npm-registry.html
+lib/node_modules/npm/html/doc/misc/npm-scripts.html
+lib/node_modules/npm/html/doc/misc/removing-npm.html
+lib/node_modules/npm/html/doc/misc/semver.html
+lib/node_modules/npm/html/docfoot-script.html
 lib/node_modules/npm/html/docfoot.html
 lib/node_modules/npm/html/dochead.html
 lib/node_modules/npm/html/favicon.ico
@@ -269,11 +273,13 @@ lib/node_modules/npm/lib/utils/error-han
 lib/node_modules/npm/lib/utils/fetch.js
 lib/node_modules/npm/lib/utils/find-prefix.js
 lib/node_modules/npm/lib/utils/gently-rm.js
+lib/node_modules/npm/lib/utils/is-git-url.js
 lib/node_modules/npm/lib/utils/lifecycle.js
 lib/node_modules/npm/lib/utils/link.js
 lib/node_modules/npm/lib/utils/tar.js
 lib/node_modules/npm/lib/version.js
 lib/node_modules/npm/lib/view.js
+lib/node_modules/npm/lib/visnup.js
 lib/node_modules/npm/lib/whoami.js
 lib/node_modules/npm/lib/xmas.js
 lib/node_modules/npm/node_modules/.bin/beep
@@ -282,6 +288,7 @@ lib/node_modules/npm/node_modules/.bin/i
 lib/node_modules/npm/node_modules/.bin/node-gyp
 lib/node_modules/npm/node_modules/.bin/nopt
 lib/node_modules/npm/node_modules/.bin/opener
+lib/node_modules/npm/node_modules/.bin/rimraf
 lib/node_modules/npm/node_modules/.bin/semver
 lib/node_modules/npm/node_modules/.bin/starwars
 lib/node_modules/npm/node_modules/.bin/which
@@ -338,7 +345,6 @@ lib/node_modules/npm/node_modules/chownr
 lib/node_modules/npm/node_modules/chownr/chownr.js
 lib/node_modules/npm/node_modules/chownr/package.json
 lib/node_modules/npm/node_modules/cmd-shim/.npmignore
-lib/node_modules/npm/node_modules/cmd-shim/.travis.yml
 lib/node_modules/npm/node_modules/cmd-shim/LICENSE
 lib/node_modules/npm/node_modules/cmd-shim/README.md
 lib/node_modules/npm/node_modules/cmd-shim/index.js
@@ -426,10 +432,10 @@ lib/node_modules/npm/node_modules/gracef
 lib/node_modules/npm/node_modules/graceful-fs/README.md
 lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js
 lib/node_modules/npm/node_modules/graceful-fs/package.json
+lib/node_modules/npm/node_modules/graceful-fs/polyfills.js
 lib/node_modules/npm/node_modules/graceful-fs/test/open.js
 lib/node_modules/npm/node_modules/inherits/LICENSE
 lib/node_modules/npm/node_modules/inherits/README.md
-lib/node_modules/npm/node_modules/inherits/inherits-old.js
 lib/node_modules/npm/node_modules/inherits/inherits.js
 lib/node_modules/npm/node_modules/inherits/package.json
 lib/node_modules/npm/node_modules/ini/LICENSE
@@ -527,8 +533,8 @@ lib/node_modules/npm/node_modules/node-g
 lib/node_modules/npm/node_modules/node-gyp/gyp/MANIFEST
 lib/node_modules/npm/node_modules/node-gyp/gyp/OWNERS
 lib/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/buildbot_run.py
 lib/node_modules/npm/node_modules/node-gyp/gyp/codereview.settings
+lib/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc
 lib/node_modules/npm/node_modules/node-gyp/gyp/gyp
 lib/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat
 lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_dummy.c
@@ -539,6 +545,7 @@ lib/node_modules/npm/node_modules/node-g
 lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py
 lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py
 lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py
+lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py
 lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py
 lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/SCons.py
 lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py
@@ -572,967 +579,6 @@ lib/node_modules/npm/node_modules/node-g
 lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples
 lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples.bat
 lib/node_modules/npm/node_modules/node-gyp/gyp/setup.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-bare/gyptest-bare.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-bare/src/bare.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-bare/src/bare.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/src/actions.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/src/copy.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/src/filter.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/src/foo.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/src/input.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-multiple/src/main.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-none/gyptest-none.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-none/src/fake_cross.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-none/src/foo.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-none/src/none_with_source_files.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-subdir/gyptest-action.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-subdir/src/make-file.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-subdir/src/none.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-subdir/src/subdir/make-subdir-file.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions-subdir/src/subdir/subdir.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/gyptest-default.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/gyptest-errors.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/action_missing_name.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/actions.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/confirm-dep-files.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir1/counter.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir1/executable.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir1/make-prog1.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir1/make-prog2.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir1/program.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir2/make-file.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir2/none.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir3/generate_main.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/actions/src/subdir3/null_input.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/additional-targets/gyptest-additional.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/additional-targets/src/all.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/additional-targets/src/dir1/actions.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/additional-targets/src/dir1/emit.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/additional-targets/src/dir1/lib1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/assembly/gyptest-assembly.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/assembly/src/as.bat
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/assembly/src/assembly.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/assembly/src/lib1.S
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/assembly/src/lib1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/assembly/src/program.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/build-option/gyptest-build.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/build-option/hello.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/build-option/hello.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/gyptest-default.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/builddir.gypi
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/func1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/func2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/func3.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/func4.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/func5.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/prog1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/prog1.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/prog2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/prog2.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/subdir3/prog3.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/cflags/cflags.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/cflags/cflags.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/cflags/gyptest-cflags.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compilable/gyptest-headers.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compilable/src/headers.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compilable/src/lib1.cpp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compilable/src/lib1.hpp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compilable/src/program.cpp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/compiler-global-settings.gyp.in
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/compiler-host.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/compiler.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/cxxtest.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/gyptest-compiler-env.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/gyptest-compiler-global-settings.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/my_cc.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/my_cxx.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/my_ld.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/compiler-override/test.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/basics/configurations.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/basics/configurations.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/basics/gyptest-configurations.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/inheritance/configurations.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/inheritance/configurations.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/inheritance/gyptest-inheritance.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/actions.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/all_dependent_settings.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/configurations.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/dependencies.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/direct_dependent_settings.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/gyptest-configurations.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/libraries.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/link_settings.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/sources.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/standalone_static_library.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/target_name.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/invalid/type.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/target_platform/configurations.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/target_platform/front.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/target_platform/gyptest-target_platform.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/target_platform/left.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/target_platform/right.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/x64/configurations.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/x64/configurations.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/configurations/x64/gyptest-x86.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/gyptest-default.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/gyptest-slash.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/gyptest-updir.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/copies-slash.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/copies-updir.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/copies.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/directory/file3
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/directory/file4
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/directory/subdir/file5
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/file1
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/file2
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/copies/src/parentdir/subdir/file6
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/custom-generator/gyptest-custom-generator.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/custom-generator/mygenerator.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/custom-generator/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/cxxflags/cxxflags.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/cxxflags/cxxflags.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/cxxflags/gyptest-cxxflags.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines-escaping/defines-escaping.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines-escaping/defines-escaping.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines-escaping/gyptest-defines-escaping.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/defines-env.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/defines.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/defines.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/gyptest-define-override.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/gyptest-defines-env-regyp.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/gyptest-defines-env.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/defines/gyptest-defines.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/a.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/b/b.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/b/b.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/b/b3.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/c/c.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/c/c.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/c/d.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/double_dependency.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/double_dependent.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/extra_targets.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/gyptest-double-dependency.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/gyptest-extra-targets.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/gyptest-lib-only.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/gyptest-none-traversal.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/lib_only.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/main.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependencies/none_traversal.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependency-copy/gyptest-copy.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependency-copy/src/copies.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependency-copy/src/file1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/dependency-copy/src/file2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/duplicate_basenames.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/duplicate_node.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/duplicate_rule.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/duplicate_targets.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/gyptest-errors.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/missing_dep.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/errors/missing_targets.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/escaping/colon/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/escaping/gyptest-colon.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/exclusion/exclusion.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/exclusion/gyptest-exclusion.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/exclusion/hello.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/gyptest-cross.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/bogus1.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/bogus2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/cross.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/cross_compile.gypi
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/fake_cross.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/program.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/test1.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/test2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/test3.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/test4.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/external-cross-compile/src/tochar.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/actions.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir1/actions-out/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir1/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir1/executable.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir1/make-prog1.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir1/make-prog2.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir1/program.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir2/actions-out/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir2/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir2/make-file.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/actions/subdir2/none.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/copies-out/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/copies.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/file1
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/file2
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/subdir/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/subdir/copies-out/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/subdir/file3
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/subdir/file4
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/copies/subdir/subdir.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-actions.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-copies.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-mac-bundle.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-relocate.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-rules.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-subdir2-deep.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/gyptest-top-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/mac-bundle/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/mac-bundle/app.order
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/mac-bundle/header.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/mac-bundle/main.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/mac-bundle/resource.sb
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/mac-bundle/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/copy-file.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/rules.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/define3.in0
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/define4.in0
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/executable.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/function1.in1
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/function2.in1
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir1/program.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/file1.in0
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/file2.in0
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/file3.in1
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/file4.in1
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/none.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/rules/subdir2/rules-out/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/inc.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/inc1/include1.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/prog1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/prog1.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/deeper/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/deeper/deeper.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/deeper/deeper.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/inc2/include2.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/prog2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir2/prog2.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir3/build/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir3/inc3/include3.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir3/prog3.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/subdir3/prog3.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/generator-output/src/symroot.gypi
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/gyp-defines/defines.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/gyp-defines/echo.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/gyp-defines/gyptest-multiple-values.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/gyp-defines/gyptest-regyp.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/a.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/a.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/b.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/b.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/c.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/c.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/d.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/emit.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hard_dependency/src/hard_dependency.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/gyptest-default.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/gyptest-disable-regyp.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/gyptest-regyp.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/gyptest-target.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/hello.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/hello.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/hello2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/hello/hello2.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/home_dot_gyp/gyptest-home-includes.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/home_dot_gyp/home/.gyp/include.gypi
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/home_dot_gyp/home2/.gyp/include.gypi
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/home_dot_gyp/src/all.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/home_dot_gyp/src/printfoo.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/gyptest-default.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/inc.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/inc1/include1.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/includes.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/includes.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/shadow1/shadow.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/shadow2/shadow.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/subdir/inc.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/subdir/inc2/include2.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/subdir/subdir_includes.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/include_dirs/src/subdir/subdir_includes.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/intermediate_dir/gyptest-intermediate-dir.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/intermediate_dir/src/script.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/intermediate_dir/src/shared_infile.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/intermediate_dir/src/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/intermediate_dir/src/test2.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/lib/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/lib/TestCmd.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/lib/TestCommon.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/lib/TestGyp.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/gyptest-shared-obj-install-path.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/gyptest-shared.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/gyptest-static.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/lib1.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/lib1_moveable.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/lib2.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/lib2_moveable.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/library.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/program.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/library/src/shared_dependency.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/link-objects/base.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/link-objects/extra.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/link-objects/gyptest-all.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/link-objects/link-objects.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/action-envvars/action/action.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/action-envvars/action/action.sh
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/TestApp/main.m
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/empty.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/app-bundle/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/archs/my_file.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/archs/my_main_file.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/archs/test-archs-x86_64.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/archs/test-no-archs.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/ccfile.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/ccfile_withcflags.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/cfile.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/cppfile.cpp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/cppfile_withcflags.cpp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/cxxfile.cxx
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/cxxfile_withcflags.cxx
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/mfile.m
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/mmfile.mm
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/mmfile_withcflags.mm
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/cflags/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/copy-dylib/empty.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/copy-dylib/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/debuginfo/file.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/debuginfo/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/depend-on-bundle/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/depend-on-bundle/bundle.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/depend-on-bundle/executable.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/depend-on-bundle/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework-dirs/calculate.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework-dirs/framework-dirs.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework-headers/myframework.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework-headers/myframework.m
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework-headers/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/TestFramework/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/TestFramework/ObjCVector.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/TestFramework/ObjCVector.mm
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/empty.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/framework/framework.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/global-settings/src/dir1/dir1.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/global-settings/src/dir2/dir2.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/global-settings/src/dir2/file.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-action-envvars.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-app.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-archs.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-cflags.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-copies.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-copy-dylib.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-debuginfo.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-depend-on-bundle.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-framework-dirs.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-framework-headers.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-framework.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-global-settings.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-infoplist-process.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-installname.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-ldflags.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-libraries.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-loadable-module.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-missing-cfbundlesignature.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-non-strs-flattened-to-env.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-objc-gc.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-postbuild-copy-bundle.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-postbuild-defaults.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-postbuild-fail.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-postbuild-multiple-configurations.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-postbuild-static-library.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-postbuild.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-prefixheader.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-rebuild.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-rpath.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-sdkroot.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-sourceless-module.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-strip.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-type-envvars.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-xcode-env-order.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/gyptest-xcode-gcc.py
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/infoplist-process/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/infoplist-process/main.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/infoplist-process/test1.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/infoplist-process/test2.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/infoplist-process/test3.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/installname/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/installname/file.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/installname/main.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/installname/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/ldflags-libtool/file.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/ldflags-libtool/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/ldflags/subdirectory/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/ldflags/subdirectory/file.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/ldflags/subdirectory/symbol_list.def
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/ldflags/subdirectory/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/libraries/subdir/README.txt
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/libraries/subdir/hello.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/libraries/subdir/mylib.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/libraries/subdir/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/loadable-module/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/loadable-module/module.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/loadable-module/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/missing-cfbundlesignature/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/missing-cfbundlesignature/file.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/missing-cfbundlesignature/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/non-strs-flattened-to-env/Info.plist
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/non-strs-flattened-to-env/main.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/non-strs-flattened-to-env/test.gyp
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/objc-gc/c-file.c
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/objc-gc/cc-file.cc
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/objc-gc/main.m
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/objc-gc/needs-gc-mm.mm
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/objc-gc/needs-gc.m
-lib/node_modules/npm/node_modules/node-gyp/gyp/test/mac/objc-gc/test.gyp

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308190844.r7J8iKAi029251>