debian/0000755000000000000000000000000012241623166007171 5ustar debian/changelog0000644000000000000000000000357412241415667011061 0ustar node-jake (0.7.4-1) unstable; urgency=low * New upstream release. * Update Standards-Version to 3.9.5 . -- Laszlo Boszormenyi (GCS) Fri, 15 Nov 2013 13:01:53 +0000 node-jake (0.7.2-1) unstable; urgency=low * New upstream release. -- Laszlo Boszormenyi (GCS) Mon, 30 Sep 2013 19:24:53 +0200 node-jake (0.6.12-1) unstable; urgency=low * New upstream release. -- Laszlo Boszormenyi (GCS) Mon, 16 Sep 2013 13:40:43 +0200 node-jake (0.6.10-1) unstable; urgency=low * New upstream release (closes: #719373). * New maintainer, but leave David in for now. -- Laszlo Boszormenyi (GCS) Sat, 24 Aug 2013 21:15:24 +0200 node-jake (0.2.32-2) unstable; urgency=low * Migrate from node to nodejs (Closes: #686891) * Standards-Version bump to 3.9.4, no changes needed -- David Paleino Thu, 20 Sep 2012 12:09:59 +0200 node-jake (0.2.32-1) unstable; urgency=low * New upstream version -- David Paleino Sun, 08 Apr 2012 22:25:07 +0200 node-jake (0.2.31-1) unstable; urgency=low * New upstream version -- David Paleino Sun, 25 Mar 2012 12:41:16 +0200 node-jake (0.2.28-1) unstable; urgency=low * New upstream version * Standards-Version bump to 3.9.3, no changes needed * Update debian/copyright -- David Paleino Thu, 22 Mar 2012 21:57:30 +0100 node-jake (0.1.22-1) unstable; urgency=low * New upstream version -- David Paleino Sat, 31 Dec 2011 12:02:37 +0100 node-jake (0.1.19-2) unstable; urgency=low * Fixed one require in program.js * Added dependencies on coffeescript and node-glob -- David Paleino Sat, 29 Oct 2011 01:53:44 +0200 node-jake (0.1.19-1) unstable; urgency=low * Initial release -- David Paleino Sat, 29 Oct 2011 01:06:01 +0200 debian/compat0000644000000000000000000000000212026565575010401 0ustar 8 debian/control0000644000000000000000000000167512241415642010603 0ustar Source: node-jake Section: devel Priority: extra Maintainer: Debian Javascript Maintainers Uploaders: Laszlo Boszormenyi (GCS) , David Paleino Build-Depends: debhelper (>= 8~) Standards-Version: 3.9.5 Homepage: https://github.com/mde/jake Vcs-Git: git://git.debian.org/collab-maint/node-jake.git Vcs-Browser: http://git.debian.org/?p=collab-maint/node-jake.git;a=summary Package: node-jake Architecture: all Depends: ${misc:Depends}, nodejs (>= 0.6.19~dfsg1-3~), node-minimatch, node-utilities Recommends: coffeescript , node-glob Description: JavaScript build tool for Node.js Jake is a JavaScript build tool for the Node.js framework, with capabilities similar to the regular make or rake commands. . Jake has the following features: - Jakefiles are in standard JavaScript syntax - tasks with prerequisites - namespaces for tasks - async task execution debian/copyright0000644000000000000000000000174112206206036011121 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Files: * Copyright: ©, Matthew Eernisse License: Apache-2.0 Files: debian/* Copyright: © 2013- , Laszlo Boszormenyi (GCS) , © 2011-2012, David Paleino License: Apache-2.0 License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". debian/docs0000644000000000000000000000001212026565575010047 0ustar README.md debian/install0000644000000000000000000000012212206205116010545 0ustar bin/cli.js usr/bin/ lib/* usr/lib/nodejs/jake/ package.json usr/lib/nodejs/jake/ debian/links0000644000000000000000000000007112026565575010244 0ustar usr/lib/nodejs/jake/jake.js usr/lib/nodejs/jake/index.js debian/patches/0000755000000000000000000000000012206206220010605 5ustar debian/patches/00-fix_requires.patch0000644000000000000000000000267312206206220014560 0ustar Description: fix requires Use full paths, not relative ones. Author: Laszlo Boszormenyi (GCS) Last-Update: 2013-08-24 --- --- node-jake-0.6.10.orig/bin/cli.js +++ node-jake-0.6.10/bin/cli.js @@ -18,7 +18,7 @@ */ // Load `jake` global -require('../lib/jake'); +require('jake'); var args = process.argv.slice(2); --- node-jake-0.6.10.orig/lib/jake.js +++ node-jake-0.6.10/lib/jake.js @@ -32,7 +32,7 @@ var fs = require('fs') , utils = require('./utils') , Program = require('./program').Program , Loader = require('./loader').Loader - , pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json').toString()); + , pkg = JSON.parse(fs.readFileSync(__dirname + '/package.json').toString()); var MAX_RULE_RECURSION_LEVEL = 16; --- node-jake-0.6.10.orig/lib/task/file_task.js +++ node-jake-0.6.10/lib/task/file_task.js @@ -3,7 +3,7 @@ var fs = require('fs') , FileTask , FileBase , DirectoryTask - , utils = require('../utils'); + , utils = require('jake/utils'); FileBase = new (function () { var isFileOrDirectory = function (t) { --- node-jake-0.6.10.orig/lib/task/task.js +++ node-jake-0.6.10/lib/task/task.js @@ -3,8 +3,8 @@ var util = require('util') // Native Nod , EventEmitter = require('events').EventEmitter , Task , TaskBase - , utils = require('../utils') - , rule = require('../rule'); + , utils = require('jake/utils') + , rule = require('jake/rule'); var UNDEFINED_VALUE; debian/patches/01-migrate_to_nodejs.patch0000644000000000000000000000056512026565575015573 0ustar From: David Paleino Subject: migrate from node to nodejs Forwarded: not-needed --- bin/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- node-jake.orig/bin/cli.js +++ node-jake/bin/cli.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/nodejs /* * Jake JavaScript build tool * Copyright 2112 Matthew Eernisse (mde@fleegix.org) debian/patches/series0000644000000000000000000000006112206205354012026 0ustar 00-fix_requires.patch 01-migrate_to_nodejs.patch debian/rules0000755000000000000000000000051112241622276010247 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ override_dh_install: dh_install mv $(CURDIR)/debian/node-jake/usr/bin/cli.js \ $(CURDIR)/debian/node-jake/usr/bin/jake override_dh_auto_install: # nothing .PHONY: override_dh_install override_dh_auto_install debian/source/0000755000000000000000000000000012026565575010503 5ustar debian/source/format0000644000000000000000000000001412026565575011711 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000016312026565575010234 0ustar version=3 https://alioth.debian.org/~dapal/npmjs.php?id=jake \ http://registry.npmjs.org/jake/-/jake-(\d+.*)\.tgz