debian/0000755000000000000000000000000012365744770007205 5ustar debian/manpages0000644000000000000000000000002112364732151010701 0ustar debian/express.1 debian/docs0000644000000000000000000000001212364732151010036 0ustar README.md debian/watch0000644000000000000000000000025112364732151010221 0ustar version=3 opts=filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-express-generator-$1.tar.gz/ \ https://github.com/expressjs/generator/tags .*/archive/v?([\d\.]+).tar.gz debian/copyright0000644000000000000000000000264012364732151011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: express-generator Upstream-Contact: https://github.com/expressjs/generator/issues Source: https://github.com/expressjs/generator Files: * Copyright: 2009-2014 TJ Holowaychuk License: Expat Files: debian/* Copyright: 2014 Leo Iannacone License: Expat License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/changelog0000644000000000000000000000054012365744770011056 0ustar node-express-generator (4.0.0-2) unstable; urgency=medium * Relax node-express conflict version (Closes: #755993) -- Leo Iannacone Tue, 29 Jul 2014 18:21:04 +0200 node-express-generator (4.0.0-1) unstable; urgency=low * Initial release (Closes: #746281) -- Leo Iannacone Mon, 28 Apr 2014 18:46:37 +0200 debian/links0000644000000000000000000000007512364732151010237 0ustar usr/lib/nodejs/express-generator/bin/express usr/bin/express debian/dirs0000644000000000000000000000000712364732151010053 0ustar usr/bindebian/control0000644000000000000000000000166212365744650010612 0ustar Source: node-express-generator Section: web Priority: extra Maintainer: Debian Javascript Maintainers Uploaders: Leo Iannacone Build-Depends: debhelper (>= 9) , dh-buildinfo , nodejs Standards-Version: 3.9.5 Homepage: https://github.com/expressjs/generator Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-express-generator.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-express-generator.git Package: node-express-generator Architecture: all Depends: ${misc:Depends} , nodejs , node-mkdirp , node-commander Recommends: node-express (>= 4) Replaces: node-express (<< 4) Breaks: node-express (<< 4) Description: express applications generator This package provides the `express` executable, a simple tool to quickly setup an express application from a list of common templates. . Node.js is an event-based server-side JavaScript engine. debian/compat0000644000000000000000000000000212364732151010370 0ustar 9 debian/rules0000755000000000000000000000024712364732151010255 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ #override_dh_auto_build: #override_dh_auto_test: debian/install0000644000000000000000000000020112364732151010554 0ustar package.json usr/lib/nodejs/express-generator/ bin usr/lib/nodejs/express-generator/ templates usr/lib/nodejs/express-generator/ debian/source/0000755000000000000000000000000012364732151010472 5ustar debian/source/format0000644000000000000000000000001412364732151011700 0ustar 3.0 (quilt) debian/express.10000644000000000000000000000143012364732151010743 0ustar .TH EXPRESS 1 .SH NAME .B express - the quickest way to start using express framework .SH DESCRIPTION Applications generator for .B express framework. Generate your first web application in express starting from common templates. .SH OPTIONS .TP \fB\-h\fR, \fB\-\-help\fR output usage information .TP \fB\-V\fR, \fB\-\-version\fR output the version number .TP \fB\-e\fR, \fB\-\-ejs\fR add ejs engine support (defaults to jade) .TP \fB\-H\fR, \fB\-\-hogan\fR add hogan.js engine support .TP \fB\-c\fR, \fB\-\-css\fR add stylesheet support (less|stylus|compass) (defaults to plain css) .TP \fB\-f\fR, \fB\-\-force\fR force on non\-empty directory .SH AUTHOR This manual page was written by Leo Iannacone for the Debian system (but may be used by others). debian/patches/0000755000000000000000000000000012364732151010621 5ustar debian/patches/series0000644000000000000000000000003412364732151012033 0ustar 01-fix_nodejs_shebang.patch debian/patches/01-fix_nodejs_shebang.patch0000644000000000000000000000134012364732151015675 0ustar Description: Fix nodejs shebang. Author: Leo Iannacone Forwarded: not-needed --- a/bin/express +++ b/bin/express @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/nodejs var program = require('commander'); var mkdirp = require('mkdirp'); @@ -156,7 +156,7 @@ name: 'application-name' , version: '0.0.1' , private: true - , scripts: { start: 'node ./bin/www' } + , scripts: { start: 'nodejs ./bin/www' } , dependencies: { 'express': '~4.0.0', 'static-favicon': '~1.0.0', --- a/templates/js/www +++ b/templates/js/www @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#!/usr/bin/nodejs var debug = require('debug')('my-application'); var app = require('../app');