[Pkg-javascript-commits] [node-coffeeify] 02/14: Intial npm2deb debianisation

Ross Gammon ross-guest at moszumanska.debian.org
Thu Apr 2 17:10:07 UTC 2015


This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository node-coffeeify.

commit aa6d2cf81a9f8037b3416d3795523cc8e8eaa139
Author: Ross Gammon <rossgammon at mail.dk>
Date:   Thu Apr 2 15:36:56 2015 +0200

    Intial npm2deb debianisation
---
 debian/TODO          |  3 +++
 debian/changelog     |  6 ++++++
 debian/compat        |  1 +
 debian/control       | 28 ++++++++++++++++++++++++++++
 debian/copyright     | 34 ++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/install       |  2 ++
 debian/rules         | 15 +++++++++++++++
 debian/source/format |  1 +
 debian/tests/control |  2 ++
 debian/tests/require |  3 +++
 debian/watch         |  5 +++++
 12 files changed, 101 insertions(+)

diff --git a/debian/TODO b/debian/TODO
new file mode 100644
index 0000000..27514b7
--- /dev/null
+++ b/debian/TODO
@@ -0,0 +1,3 @@
+Warnings occured:
+ [warning] through: through2 is better maintained, see node-jsonstream
+ for a patch
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a47ed0c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+node-coffeeify (1.0.0-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #nnnn)
+
+ -- Ross Gammon <rossgammon at mail.dk>  Thu, 02 Apr 2015 14:37:07 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..44292b9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: node-coffeeify
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Ross Gammon <rossgammon at mail.dk>
+Build-Depends:
+ debhelper (>= 8)
+ , dh-buildinfo
+ , nodejs
+Standards-Version: 3.9.6
+Homepage: https://github.com/jnordberg/coffeeify
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-coffeeify.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-coffeeify.git
+XS-Testsuite: autopkgtest
+
+Package: node-coffeeify
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs
+ , coffeescript (^1.8.0)
+ , node-through2 (^2.3.6)
+ , node-convert-source-map (^0.4.1)
+Description: browserify plugin for coffee-script
+ This plugin allows you to mix and match .js and .coffee files in the same
+ project.
+ .
+ Node.js is an event-based server-side JavaScript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..69adc69
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: coffeeify
+Upstream-Contact: https://github.com/jnordberg/coffeeify/issues
+Source: https://github.com/jnordberg/coffeeify
+
+Files: *
+Copyright: 2015, Johan Nordberg <hi at johan-nordberg.com>
+License: Expat
+
+Files: debian/*
+Copyright: 2015, Ross Gammon <rossgammon at mail.dk>
+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.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..3a89ff9
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+readme.markdown
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..f32b2a7
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+package.json usr/lib/nodejs/coffeeify/
+index.js usr/lib/nodejs/coffeeify/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..de57af0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/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:
+
+
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..2c3dc91
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: require
+Depends: node-coffeeify
diff --git a/debian/tests/require b/debian/tests/require
new file mode 100644
index 0000000..7d97d34
--- /dev/null
+++ b/debian/tests/require
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+nodejs -e "require('coffeeify');"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..4323a7f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\
+filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-coffeeify-$1.tar.gz/ \
+ https://github.com/jnordberg/coffeeify/tags .*/archive/v?([\d\.]+).tar.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-coffeeify.git



More information about the Pkg-javascript-commits mailing list