[Pkg-javascript-commits] [node-dequeue] 02/12: initial packaging

Mike Gabriel sunweaver at debian.org
Tue Aug 19 17:49:51 UTC 2014


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

sunweaver pushed a commit to branch master
in repository node-dequeue.

commit e10eaf00ca5285f3738ec9dbafaceaf23537119a
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Fri May 10 01:45:15 2013 +0200

    initial packaging
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 25 +++++++++++++++++++++++++
 debian/copyright     | 36 ++++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/install       |  1 +
 debian/rules         |  8 ++++++++
 debian/source/format |  1 +
 debian/watch         |  4 ++++
 9 files changed, 82 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..32727a9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+node-dequeue (1.0.3-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #707656).
+
+ -- Mike Gabriel <sunweaver at debian.org>  Tue, 07 May 2013 18:25:42 +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..5186232
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: node-dequeue
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders:
+ Mike Gabriel <sunweaver at debian.org>,
+Build-Depends:
+ debhelper (>= 8.0.0),
+ dh-buildinfo,
+Standards-Version: 3.9.4
+Homepage: https://github.com/lleo/node-dequeue/
+Vcs-Git: git://git.debian.org/collab-maint/node-dequeue.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/node-dequeue.git
+
+Package: node-dequeue
+Architecture: all
+Depends:
+ ${misc:Depends},
+ nodejs (>= 0.6.19~dfsg-1-3~),
+Description: Simple Double Ended Queue Datastructure for Node.js
+ Dequeue is implemented as a doubly linked circular list with a titular
+ head node--an empty node to designate the beginning and the end of the
+ circularly linked list.
+ .
+ It is a drop-in replacement for javascript-arrays-as-fifo.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..76fa9c0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: node-dequeue
+Upstream-Contact: Sean (lleo) M. Egan <lleoem at gmail.com>
+Source: https://github.com/lleo/node-dequeue
+
+Files: *
+Copyright:
+ 2012, Sean M. Egan <lleoem at gmail.com>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright:
+ 2013, Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ * Redistributions of source code must retain the above copyright notice, this
+   list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice,
+   this list of conditions and the following disclaimer in the documentation
+   and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
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..89b4d3a
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+lib/* usr/lib/nodejs/dequeue/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..218df65
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@
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..f72e897
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-dequeue-$1.tar.gz/ \
+https://github.com/lleo/node-dequeue/tags .*/archive/v?([\d\.]+).tar.gz
+

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



More information about the Pkg-javascript-commits mailing list