pulsar/script/utils/verify-requirements.js

71 lines
2.2 KiB
JavaScript
Raw Normal View History

2014-05-30 20:36:29 +04:00
var path = require('path');
var fs = require('fs');
var cp = require('child_process');
var execFile = cp.execFile;
2014-06-04 22:09:50 +04:00
var pythonExecutable = process.env.PYTHON;
2014-05-30 20:36:29 +04:00
module.exports = function(cb) {
2014-05-30 20:21:26 +04:00
verifyNode();
verifyPython27(cb);
2014-05-30 20:21:26 +04:00
};
function verifyNode() {
var nodeVersion = process.versions.node.split('.');
var nodeMajorVersion = +nodeVersion[0];
var nodeMinorVersion = +nodeVersion[1];
if (nodeMajorVersion === 0 && nodeMinorVersion < 10) {
console.warn("node v0.10 is required to build Atom.");
process.exit(1);
}
}
function verifyPython27(cb) {
if (false && process.platform !== 'win32') {
cb();
}
else {
2014-06-04 22:09:50 +04:00
if (!pythonExecutable) {
2014-05-30 20:21:26 +04:00
var systemDrive = process.env.SystemDrive || 'C:\\';
pythonExecutable = path.join(systemDrive, 'Python27', 'python.exe');
if (!fs.existsSync(pythonExecutable)) {
pythonExecutable = 'python';
}
}
2014-05-30 20:21:26 +04:00
checkPythonVersion(pythonExecutable, cb);
}
}
function checkPythonVersion (python, cb) {
2014-06-04 22:10:14 +04:00
var pythonHelpMessage = "Set the PYTHON env var to '/path/to/Python27/python.exe' if your python is installed in a non-default location.";
execFile(python, ['-c', 'import platform; print(platform.python_version());'], { env: process.env }, function (err, stdout) {
if (err) {
2014-06-04 22:10:14 +04:00
console.log("Python 2.7 is required to build Atom. An error occured when checking for python '" + err + "'");
console.log(pythonHelpMessage);
2014-05-30 20:21:26 +04:00
process.exit(1);
}
2014-06-04 22:10:14 +04:00
var version = stdout.trim();
if (~version.indexOf('+')) {
2014-06-04 22:10:14 +04:00
version = version.replace(/\+/g, '');
}
if (~version.indexOf('rc')) {
2014-06-04 22:10:14 +04:00
version = version.replace(/rc(.*)$/ig, '');
}
2014-06-04 22:10:14 +04:00
// Atom requires python 2.7 or higher (but not python 3) for node-gyp
var versionArray = version.split('.').map(function(num) { return +num; });
2014-06-04 22:10:14 +04:00
var goodPythonVersion = (versionArray[0] === 2 && versionArray[1] >= 7);
if (!goodPythonVersion) {
2014-06-04 22:10:14 +04:00
console.log("Python 2.7 is required to build Atom. '" + python + "' returns version " + version);
console.log(pythonHelpMessage);
process.exit(1);
}
// Finally, if we've gotten this far, callback to resume the install process.
cb();
});
2014-05-30 20:21:26 +04:00
}