[Pkg-javascript-commits] [node-through2] 04/04: initial debian commit

Leo Iannacone l3on-guest at moszumanska.debian.org
Mon Jun 16 15:50:40 UTC 2014


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

l3on-guest pushed a commit to branch master
in repository node-through2.

commit 8720e8c3724fcfd537c704af695aa32f6108f58e
Author: Leo Iannacone <l3on at ubuntu.com>
Date:   Mon Jun 16 17:50:08 2014 +0200

    initial debian commit
---
 debian/changelog                                 |  6 +++++
 debian/compat                                    |  1 +
 debian/control                                   | 29 ++++++++++++++++++++
 debian/copyright                                 | 34 ++++++++++++++++++++++++
 debian/docs                                      |  1 +
 debian/install                                   |  2 ++
 debian/patches/0001_remove-readable-stream.patch | 16 +++++++++++
 debian/patches/0002_not-use-xtend.patch          | 19 +++++++++++++
 debian/patches/series                            |  2 ++
 debian/rules                                     | 12 +++++++++
 debian/source/format                             |  1 +
 debian/watch                                     |  5 ++++
 12 files changed, 128 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e8afc18
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+node-through2 (1.0.0-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #nnnn)
+
+ -- Leo Iannacone <l3on at ubuntu.com>  Mon, 16 Jun 2014 16:58:48 +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..31d714c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: node-through2
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Leo Iannacone <l3on at ubuntu.com>
+Build-Depends:
+ debhelper (>= 8)
+ , dh-buildinfo
+ , nodejs
+Standards-Version: 3.9.5
+Homepage: https://github.com/rvagg/through2
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-through2.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-through2.git
+
+Package: node-through2
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs
+ , node-utils-merge
+Description: streams.Transorms wrapper - Node.js module
+ This package provide a tiny wrapper around Node streams.Transform
+ to avoid explicit subclassing noise.
+ .
+ Inspired by Dominic Tarr's through module in that it's so much easier
+ to make a stream out of a function than it is to set up the prototype
+ chain properly: `through(function (chunk) { ... })`.
+ .
+ Node.js is an event-based server-side JavaScript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f06eebc
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: through2
+Upstream-Contact: https://github.com/rvagg/through2/issues
+Source: https://github.com/rvagg/through2
+
+Files: *
+Copyright: 2013 Rod Vagg <r at va.gg>
+License: Expat
+
+Files: debian/*
+Copyright: 2014 Leo Iannacone <l3on at ubuntu.com>
+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..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..6c41ca6
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+package.json usr/lib/nodejs/through2/
+through2.js usr/lib/nodejs/through2/
diff --git a/debian/patches/0001_remove-readable-stream.patch b/debian/patches/0001_remove-readable-stream.patch
new file mode 100644
index 0000000..bf677bf
--- /dev/null
+++ b/debian/patches/0001_remove-readable-stream.patch
@@ -0,0 +1,16 @@
+Description: readable-stream is only needed for nodejs 0.8 compat
+Author: Leo Iannacone <l3on at ubuntu.com>
+Forwarded: not-needed
+
+---
+ through2.js |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/through2.js
++++ b/through2.js
+@@ -1,4 +1,4 @@
+-var Transform = require('readable-stream/transform')
++var Transform = require('stream').Transform
+   , inherits  = require('util').inherits
+   , xtend     = require('xtend')
+
diff --git a/debian/patches/0002_not-use-xtend.patch b/debian/patches/0002_not-use-xtend.patch
new file mode 100644
index 0000000..11aac4b
--- /dev/null
+++ b/debian/patches/0002_not-use-xtend.patch
@@ -0,0 +1,19 @@
+Description: xtend module is not in Debian and it does more or less
+ the same job of utils-merge.
+Author: Leo Iannacone <l3on at ubuntu.com>
+Forwarded: not-needed
+
+---
+ through2.js |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/through2.js
++++ b/through2.js
+@@ -1,6 +1,6 @@
+ var Transform = require('stream').Transform
+   , inherits  = require('util').inherits
+-  , xtend     = require('xtend')
++  , xtend     = require('utils-merge')
+
+
+ // a noop _transform function
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..b828ec6
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+0001_remove-readable-stream.patch
+0002_not-use-xtend.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ef7a64c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/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/watch b/debian/watch
new file mode 100644
index 0000000..416ac98
--- /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-through2-$1.tar.gz/ \
+ https://github.com/rvagg/through2/tags .*/archive/v?([\d\.]+).tar.gz

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



More information about the Pkg-javascript-commits mailing list