[Pkg-javascript-commits] [node-stream-browserify] 44/44: First debianization

Bastien Roucariès rouca at moszumanska.debian.org
Sun Aug 13 14:18:45 UTC 2017


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

rouca pushed a commit to branch master
in repository node-stream-browserify.

commit 8c6bf612c25ecbf0e20a386c0fc9f83ceb388b05
Author: Bastien ROUCARIÈS <roucaries.bastien at gmail.com>
Date:   Mon Jun 12 15:24:40 2017 +0200

    First debianization
---
 debian/changelog          |  6 ++++++
 debian/compat             |  1 +
 debian/control            | 35 +++++++++++++++++++++++++++++++++++
 debian/copyright          | 38 ++++++++++++++++++++++++++++++++++++++
 debian/docs               |  1 +
 debian/install            |  2 ++
 debian/rules              | 21 +++++++++++++++++++++
 debian/tests/control      |  5 +++++
 debian/tests/require      |  3 +++
 debian/tests/runtestsuite | 14 ++++++++++++++
 debian/watch              |  5 +++++
 11 files changed, 131 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5a59732
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+node-stream-browserify (2.0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #861809)
+
+ -- Bastien Roucariès <rouca at debian.org>  Mon, 12 Jun 2017 14:59:00 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..26e0de8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,35 @@
+Source: node-stream-browserify
+Section: web
+Priority: optional
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Bastien Roucariès <rouca at debian.org>
+Build-Depends:
+ debhelper (>= 10)
+ , dh-buildinfo
+ , nodejs (>= 4.7)
+ , dpkg-dev (>= 1.17.14)
+ , node-inherits (>= 2.0.1) <!nocheck>
+ , node-readable-stream (>= 2.0.2) <!nocheck>
+ , node-tape (>= 4.2) <!nocheck>
+Standards-Version: 3.9.8
+Homepage: https://github.com/substack/stream-browserify
+Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-stream-browserify.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/node-stream-browserify.git
+
+Package: node-stream-browserify
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs (>= 4.7)
+ , node-inherits (>= 2.0.1)
+ , node-readable-stream (>= 2.0.2)
+Description: stream module from Node.js for browsers
+ This module implements the stream abstraction used in nodejs for browser context.
+ .
+ A stream is an abstract interface for working with streaming data in Node.js.
+ In Connection-oriented communication, a data stream is a sequence of 
+ digitally encoded coherent signals (packets of data or data packets)
+ used to transmit or receive information that is in the process of
+ being transmitted.
+ .
+ Node.js is an event-based server-side JavaScript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7cf9bd9
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: stream-browserify
+Upstream-Contact: https://github.com/substack/stream-browserify/issues
+Source: https://github.com/substack/stream-browserify
+
+Files: *
+Copyright: 2013-2015 James Halliday <mail at substack.net> (http://substack.net)
+License: Expat
+
+Files: index.js
+Copyright: 2013-2015 Joyent, Inc. and other Node contributors.
+License: Expat
+
+Files: debian/*
+Copyright: 2017 Bastien Roucariès <rouca at debian.org>
+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..2ab6412
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+package.json usr/lib/nodejs/stream-browserify/
+index.js usr/lib/nodejs/stream-browserify/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a76ca08
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,21 @@
+#!/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:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	tape test/*.js
+else
+	@echo '**********************************************************'
+	@echo 'Skip test suite                                           '
+	@echo '**********************************************************'
+endif
+
+
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..d6c9e8c
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,5 @@
+Tests: require
+Depends: node-stream-browserify
+
+Tests: runtestsuite
+Depends: node-stream-browserify, node-tape (>= 4.2)
diff --git a/debian/tests/require b/debian/tests/require
new file mode 100644
index 0000000..2533b59
--- /dev/null
+++ b/debian/tests/require
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+nodejs -e "require('stream-browserify');"
diff --git a/debian/tests/runtestsuite b/debian/tests/runtestsuite
new file mode 100755
index 0000000..2684992
--- /dev/null
+++ b/debian/tests/runtestsuite
@@ -0,0 +1,14 @@
+#!/bin/sh
+set -e
+# notice the / at end in order to load this module
+PACKAGE='stream-browserify'
+SEDCMD="s,require\s*[(]\s*'[.][.],require('$PACKAGE,g"
+
+tmpdir=$(mktemp -d)
+trap 'rm -rf "$tmpdir"' EXIT INT TERM HUP
+
+cp -r test $tmpdir/test
+find test/ -maxdepth 1 -name '*.js' -print0 | \
+    xargs -0 -n1  \
+	  sh -c 'set -e; echo "TESTING: $3"; sed "$1" < "$3" > "$2/$3"' sedtape "$SEDCMD" "$tmpdir"
+tape $tmpdir/test/*.js
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..8dedcb1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+version=4
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\
+filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-stream-browserify-$1.tar.gz/ \
+ https://github.com/substack/stream-browserify/tags .*/archive/v?([\d\.]+).tar.gz

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



More information about the Pkg-javascript-commits mailing list