Browse Source

deps: upgraded to node-gyp@3.0.3 in npm

PR-URL: https://github.com/nodejs/node/pull/2958
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
v4.x
Kat Marchán 9 years ago
committed by Jeremiah Senkpiel
parent
commit
2600fb8ae6
  1. 1
      deps/npm/node_modules/.bin/node-gyp
  2. 9
      deps/npm/node_modules/node-gyp/CHANGELOG.md
  3. 2
      deps/npm/node_modules/node-gyp/README.md
  4. 5
      deps/npm/node_modules/node-gyp/lib/process-release.js
  5. 3
      deps/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json
  6. 3
      deps/npm/node_modules/node-gyp/node_modules/minimatch/package.json
  7. 4
      deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/.jshintrc
  8. 3
      deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/.jshintrc
  9. 3
      deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/package.json
  10. 3
      deps/npm/node_modules/node-gyp/node_modules/path-array/package.json
  11. 3
      deps/npm/node_modules/node-gyp/node_modules/tar/package.json
  12. 19
      deps/npm/node_modules/node-gyp/package.json
  13. 27
      deps/npm/node_modules/node-gyp/test/test-process-release.js
  14. 2
      deps/npm/package.json

1
deps/npm/node_modules/.bin/node-gyp

@ -0,0 +1 @@
../node-gyp/bin/node-gyp.js

9
deps/npm/node_modules/node-gyp/CHANGELOG.md

@ -1,3 +1,12 @@
v3.0.3 2015-09-14
* [[`ad827cda30`](https://github.com/nodejs/node-gyp/commit/ad827cda30)] - tarballUrl global and && when checking for iojs (Lars-Magnus Skog) [#729](https://github.com/nodejs/node-gyp/pull/729)
v3.0.2 2015-09-12
* [[`6e8c3bf3c6`](https://github.com/nodejs/node-gyp/commit/6e8c3bf3c6)] - add back support for passing additional cmdline args (Rod Vagg) [#723](https://github.com/nodejs/node-gyp/pull/723)
* [[`ff82f2f3b9`](https://github.com/nodejs/node-gyp/commit/ff82f2f3b9)] - fixed broken link in docs to Visual Studio 2013 download (simon-p-r) [#722](https://github.com/nodejs/node-gyp/pull/722)
v3.0.1 2015-09-08 v3.0.1 2015-09-08
* [[`846337e36b`](https://github.com/nodejs/node-gyp/commit/846337e36b)] - normalise versions for target == this comparison (Rod Vagg) [#716](https://github.com/nodejs/node-gyp/pull/716) * [[`846337e36b`](https://github.com/nodejs/node-gyp/commit/846337e36b)] - normalise versions for target == this comparison (Rod Vagg) [#716](https://github.com/nodejs/node-gyp/pull/716)

2
deps/npm/node_modules/node-gyp/README.md

@ -187,6 +187,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[windows-python]: http://www.python.org/getit/windows [windows-python]: http://www.python.org/getit/windows
[windows-python-v2.7.3]: http://www.python.org/download/releases/2.7.3#download [windows-python-v2.7.3]: http://www.python.org/download/releases/2.7.3#download
[msvc2013]: http://www.visualstudio.com/en-us/downloads/download-visual-studio-vs [msvc2013]: http://www.microsoft.com/en-gb/download/details.aspx?id=44914
[win7sdk]: http://www.microsoft.com/en-us/download/details.aspx?id=8279 [win7sdk]: http://www.microsoft.com/en-us/download/details.aspx?id=8279
[compiler update for the Windows SDK 7.1]: http://www.microsoft.com/en-us/download/details.aspx?id=4422 [compiler update for the Windows SDK 7.1]: http://www.microsoft.com/en-us/download/details.aspx?id=4422

5
deps/npm/node_modules/node-gyp/lib/process-release.js

@ -10,7 +10,7 @@ var semver = require('semver')
// file names. Inputs come from command-line switches (--target, --dist-url), // file names. Inputs come from command-line switches (--target, --dist-url),
// `process.version` and `process.release` where it exists. // `process.version` and `process.release` where it exists.
function processRelease (argv, gyp, defaultVersion, defaultRelease) { function processRelease (argv, gyp, defaultVersion, defaultRelease) {
var version = argv[0] || gyp.opts.target || defaultVersion var version = (semver.valid(argv[0]) && argv[0]) || gyp.opts.target || defaultVersion
, versionSemver = semver.parse(version) , versionSemver = semver.parse(version)
, overrideDistUrl = gyp.opts['dist-url'] || gyp.opts.disturl , overrideDistUrl = gyp.opts['dist-url'] || gyp.opts.disturl
, isDefaultVersion , isDefaultVersion
@ -20,6 +20,7 @@ function processRelease (argv, gyp, defaultVersion, defaultRelease) {
, baseUrl , baseUrl
, libUrl32 , libUrl32
, libUrl64 , libUrl64
, tarballUrl
if (!versionSemver) { if (!versionSemver) {
// not a valid semver string, nothing we can do // not a valid semver string, nothing we can do
@ -42,7 +43,7 @@ function processRelease (argv, gyp, defaultVersion, defaultRelease) {
} else { } else {
// old node or alternative --target= // old node or alternative --target=
// semver.satisfies() doesn't like prerelease tags so test major directly // semver.satisfies() doesn't like prerelease tags so test major directly
isIojs = versionSemver.major >= 1 & versionSemver.major < 4 isIojs = versionSemver.major >= 1 && versionSemver.major < 4
name = isIojs ? 'iojs' : 'node' name = isIojs ? 'iojs' : 'node'
} }

3
deps/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json

@ -78,6 +78,5 @@
} }
], ],
"_shasum": "d8a96bd77fd68df7793a73036a3ba0d5405d477b", "_shasum": "d8a96bd77fd68df7793a73036a3ba0d5405d477b",
"_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"readme": "ERROR: No README data found!"
} }

3
deps/npm/node_modules/node-gyp/node_modules/minimatch/package.json

@ -53,5 +53,6 @@
"tarball": "http://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz" "tarball": "http://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz"
}, },
"directories": {}, "directories": {},
"_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz" "_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz",
"readme": "ERROR: No README data found!"
} }

4
deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/.jshintrc

@ -0,0 +1,4 @@
{
"asi": true,
"laxcomma": true
}

3
deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/.jshintrc

@ -0,0 +1,3 @@
{
"laxbreak": true
}

3
deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/package.json

@ -53,5 +53,6 @@
"tarball": "http://registry.npmjs.org/array-index/-/array-index-0.1.1.tgz" "tarball": "http://registry.npmjs.org/array-index/-/array-index-0.1.1.tgz"
}, },
"directories": {}, "directories": {},
"_resolved": "https://registry.npmjs.org/array-index/-/array-index-0.1.1.tgz" "_resolved": "https://registry.npmjs.org/array-index/-/array-index-0.1.1.tgz",
"readme": "ERROR: No README data found!"
} }

3
deps/npm/node_modules/node-gyp/node_modules/path-array/package.json

@ -51,5 +51,6 @@
"tarball": "http://registry.npmjs.org/path-array/-/path-array-1.0.0.tgz" "tarball": "http://registry.npmjs.org/path-array/-/path-array-1.0.0.tgz"
}, },
"directories": {}, "directories": {},
"_resolved": "https://registry.npmjs.org/path-array/-/path-array-1.0.0.tgz" "_resolved": "https://registry.npmjs.org/path-array/-/path-array-1.0.0.tgz",
"readme": "ERROR: No README data found!"
} }

3
deps/npm/node_modules/node-gyp/node_modules/tar/package.json

@ -56,5 +56,6 @@
"tarball": "http://registry.npmjs.org/tar/-/tar-1.0.3.tgz" "tarball": "http://registry.npmjs.org/tar/-/tar-1.0.3.tgz"
}, },
"directories": {}, "directories": {},
"_resolved": "https://registry.npmjs.org/tar/-/tar-1.0.3.tgz" "_resolved": "https://registry.npmjs.org/tar/-/tar-1.0.3.tgz",
"readme": "ERROR: No README data found!"
} }

19
deps/npm/node_modules/node-gyp/package.json

@ -11,7 +11,7 @@
"bindings", "bindings",
"gyp" "gyp"
], ],
"version": "3.0.1", "version": "3.0.3",
"installVersion": 9, "installVersion": 9,
"author": { "author": {
"name": "Nathan Rajlich", "name": "Nathan Rajlich",
@ -52,16 +52,16 @@
"scripts": { "scripts": {
"test": "tape test/test-*" "test": "tape test/test-*"
}, },
"gitHead": "112afb4466eafe8bf9d7c72cfac94222d952c370", "gitHead": "d6b03851d366c7fa78e7d2f57c61bb074ea45ea3",
"bugs": { "bugs": {
"url": "https://github.com/nodejs/node-gyp/issues" "url": "https://github.com/nodejs/node-gyp/issues"
}, },
"homepage": "https://github.com/nodejs/node-gyp", "homepage": "https://github.com/nodejs/node-gyp",
"_id": "node-gyp@3.0.1", "_id": "node-gyp@3.0.3",
"_shasum": "597a2069786a443add5eecffc160f5d6c7045cd7", "_shasum": "9b004219f4fa9efbfd78c5fc674aa12e58fb8694",
"_from": "node-gyp@3.0.1", "_from": "node-gyp@3.0.3",
"_npmVersion": "2.14.2", "_npmVersion": "2.14.2",
"_nodeVersion": "4.0.0-rc.4", "_nodeVersion": "4.0.0",
"_npmUser": { "_npmUser": {
"name": "rvagg", "name": "rvagg",
"email": "rod@vagg.org" "email": "rod@vagg.org"
@ -89,9 +89,10 @@
} }
], ],
"dist": { "dist": {
"shasum": "597a2069786a443add5eecffc160f5d6c7045cd7", "shasum": "9b004219f4fa9efbfd78c5fc674aa12e58fb8694",
"tarball": "http://registry.npmjs.org/node-gyp/-/node-gyp-3.0.1.tgz" "tarball": "http://registry.npmjs.org/node-gyp/-/node-gyp-3.0.3.tgz"
}, },
"directories": {}, "directories": {},
"_resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.0.1.tgz" "_resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.0.3.tgz",
"readme": "ERROR: No README data found!"
} }

27
deps/npm/node_modules/node-gyp/test/test-process-release.js

@ -421,3 +421,30 @@ test('test process release - process.release ~ node@4.0.0-rc.4 passed as argv[0]
}) })
}) })
test('test process release - process.release ~ node@4.0.0-rc.4 - bogus string passed as argv[0]', function (t) {
t.plan(2)
// additional arguments can be passed in on the commandline that should be ignored if they
// are not specifying a valid version @ position 0
var release = processRelease([ 'this is no version!' ], { opts: {} }, 'v4.0.0-rc.4', {
name: 'node',
headersUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz'
})
t.equal(release.semver.version, '4.0.0-rc.4')
delete release.semver
t.deepEqual(release, {
version: '4.0.0-rc.4',
name: 'node',
baseUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/',
tarballUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/node-v4.0.0-rc.4-headers.tar.gz',
shasumsUrl: 'https://nodejs.org/download/rc/v4.0.0-rc.4/SHASUMS256.txt',
versionDir: '4.0.0-rc.4',
libUrl32: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x86/node.lib',
libUrl64: 'https://nodejs.org/download/rc/v4.0.0-rc.4/win-x64/node.lib',
libPath32: 'win-x86/node.lib',
libPath64: 'win-x64/node.lib'
})
})

2
deps/npm/package.json

@ -62,7 +62,7 @@
"lru-cache": "~2.6.5", "lru-cache": "~2.6.5",
"minimatch": "~2.0.10", "minimatch": "~2.0.10",
"mkdirp": "~0.5.1", "mkdirp": "~0.5.1",
"node-gyp": "~3.0.1", "node-gyp": "~3.0.3",
"nopt": "~3.0.4", "nopt": "~3.0.4",
"normalize-git-url": "~3.0.1", "normalize-git-url": "~3.0.1",
"normalize-package-data": "~2.3.2", "normalize-package-data": "~2.3.2",

Loading…
Cancel
Save