b5b95dba63
6.0.1: CTRL-C OUT DURING PACKAGE EXTRACTION AS MUCH AS YOU WANT! lockfile@1.0.4: Switches to signal-exit to detect abnormal exits and remove locks. SHRONKWRAPS AND LACKFILES If a published modules had legacy npm-shrinkwrap.json we were saving ordinary registry dependencies (name@version) to your package-lock.json as https:// URLs instead of versions. * When saving the lock-file compute how the dependency is being required instead of using _resolved in the package.json. This fixes the bug that was converting registry dependencies into https:// dependencies. * When encountering a https:// URL in our lockfiles that point at our default registry, extract the version and use them as registry dependencies. This lets us heal package-lock.json files produced by 6.0.0 AUDIT AUDIT EVERYWHERE You can't use it quite yet, but we do have a few last moment patches to npm audit to make it even better when it is turned on!
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2018/05/11 09:37:13 adam Exp $
|
|
|
|
DISTNAME= npm-6.0.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=npm/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= filip@joyent.com
|
|
HOMEPAGE= https://github.com/npm/npm/
|
|
COMMENT= Package manager for JavaScript
|
|
LICENSE= artistic-2.0
|
|
|
|
# Pre-fetch marked so that man pages can be built offline
|
|
MARKED= marked-0.3.19
|
|
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} ${MARKED}.tar.gz
|
|
SITES.${MARKED}.tar.gz= -https://github.com/markedjs/marked/archive/v${MARKED:S/marked-//}.tar.gz
|
|
|
|
USE_TOOLS+= gmake perl
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # required by gyp scripts included
|
|
|
|
REPLACE_INTERPRETER+= node
|
|
REPLACE.node.old= .*node
|
|
REPLACE.node.new= ${PREFIX}/bin/node
|
|
REPLACE_FILES.node= bin/npm-cli.js
|
|
REPLACE_FILES.node+= bin/npx-cli.js
|
|
|
|
SUBST_CLASSES+= python
|
|
SUBST_STAGE.python= pre-configure
|
|
SUBST_FILES.python= node_modules/node-gyp/lib/configure.js
|
|
SUBST_MESSAGE.python= Fixing path to Python
|
|
SUBST_VARS.python= PYTHONBIN
|
|
|
|
CHECK_INTERPRETER_SKIP+=lib/node_modules/npm/*
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && node bin/npm-cli.js install ${WRKDIR}/${MARKED} --no-global --no-timing --no-save
|
|
|
|
do-install:
|
|
${FIND} ${WRKSRC} -type f -name '*.orig' -delete
|
|
cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ${PREFIX}/bin/node \
|
|
bin/npm-cli.js pack
|
|
cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ${PREFIX}/bin/node \
|
|
bin/npm-cli.js install -g -f ${DISTNAME}.tgz
|
|
.if ${PKGMANDIR} != "share/man"
|
|
${RM} -f -r ${DESTDIR}${PREFIX}/${PKGMANDIR}
|
|
${MV} ${DESTDIR}${PREFIX}/share/man ${DESTDIR}${PREFIX}/${PKGMANDIR}
|
|
.endif
|
|
|
|
.include "../../lang/nodejs/nodeversion.mk"
|
|
.include "../../lang/python/pyversion.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|