1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Merge pull request #2061 from brendandahl/relicense

Change to the Apache v2 license.
This commit is contained in:
Yury Delendik 2012-09-04 11:04:00 -07:00
commit 5901f1e832
43 changed files with 773 additions and 36 deletions

21
make.js
View file

@ -213,12 +213,14 @@ target.bundle = function() {
'pattern.js',
'stream.js',
'worker.js',
'../external/jpgjs/jpg.js',
'jpx.js',
'jbig2.js',
'bidi.js',
'metadata.js'];
var EXT_SRC_FILES = [
'../external/jpgjs/jpg.js'];
if (!test('-d', BUILD_DIR))
mkdir(BUILD_DIR);
@ -229,6 +231,13 @@ target.bundle = function() {
crlfchecker.checkIfCrlfIsPresent(SRC_FILES);
// Strip out all the vim/license headers.
var reg = /\n\/\* -\*- Mode(.|\n)*?Mozilla Foundation(.|\n)*?'use strict';/g;
bundle = bundle.replace(reg, '');
// Append external files last since we don't want to modify them.
bundle += cat(EXT_SRC_FILES);
// This just preprocesses the empty pdf.js file, we don't actually want to
// preprocess everything yet since other build targets use this file.
builder.preprocess('pdf.js', ROOT_DIR + BUILD_TARGET,
@ -274,8 +283,8 @@ target.pagesrepo = function() {
// Extension stuff
//
var EXTENSION_BASE_VERSION = 'fad38f8286acc0a23b10cc95dda800530adaf160',
EXTENSION_VERSION_PREFIX = '0.4.',
var EXTENSION_BASE_VERSION = '11a341b1277be3a882274cb9f94295af310c6b62',
EXTENSION_VERSION_PREFIX = '0.5.',
EXTENSION_BUILD_NUMBER,
EXTENSION_VERSION;
@ -297,10 +306,10 @@ target.buildnumber = function() {
echo();
echo('### Getting extension build number');
var lines = exec('git log --format=oneline ' +
EXTENSION_BASE_VERSION + '..', {silent: true}).output;
// Build number is the number of commits since base version
EXTENSION_BUILD_NUMBER = exec('git log --format=oneline ' +
EXTENSION_BASE_VERSION + '..', {silent: true})
.output.match(/\n/g).length; // get # of lines in git output
EXTENSION_BUILD_NUMBER = lines ? lines.match(/\n/g).length : 0;
echo('Extension build number: ' + EXTENSION_BUILD_NUMBER);