[Pkg-javascript-commits] [node-throttleit] 02/03: Initial Debian packaging.
Sebastiaan Couwenberg
sebastic at moszumanska.debian.org
Sat Mar 21 20:39:48 UTC 2015
This is an automated email from the git hooks/post-receive script.
sebastic pushed a commit to branch master
in repository node-throttleit.
commit 5e16892647e54017343ee93efb8311d5b9a98147
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date: Sat Mar 21 21:12:37 2015 +0100
Initial Debian packaging.
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 24 ++++++++++++++++++++++++
debian/copyright | 39 +++++++++++++++++++++++++++++++++++++++
debian/docs | 1 +
debian/gbp.conf | 16 ++++++++++++++++
debian/install | 2 ++
debian/rules | 19 +++++++++++++++++++
debian/source/format | 1 +
debian/tests/control | 2 ++
debian/tests/require | 3 +++
debian/upstream/metadata | 6 ++++++
debian/watch | 6 ++++++
13 files changed, 125 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5090084
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+node-throttleit (1.0.0-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #780922)
+
+ -- Bas Couwenberg <sebastic at debian.org> Sat, 21 Mar 2015 19:15:21 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..73db2af
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: node-throttleit
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Bas Couwenberg <sebastic at debian.org>
+Section: web
+Priority: extra
+Build-Depends: debhelper (>= 9),
+ dh-buildinfo,
+ nodejs,
+ mocha
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/cgit/pkg-javascript/node-throttleit.git
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-throttleit.git
+Homepage: https://github.com/component/throttle
+XS-Testsuite: autopkgtest
+
+Package: node-throttleit
+Architecture: all
+Depends: ${misc:Depends},
+ nodejs
+Description: Throttle a function in Node.js
+ throttle is a Node.js module to throttle a JavaScript function.
+ .
+ Node.js is an event-based server-side JavaScript engine.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..992fc18
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: throttleit
+Upstream-Contact: https://github.com/component/throttle/issues
+Source: https://github.com/component/throttle
+
+Files: *
+Copyright: 2013, TJ Holowaychuk <tj at vision-media.ca>
+ 2013-2014, Nathan Rajlich <nathan at tootallnate.net>
+ 2014, Calvin French-Owen (http://calv.info)
+ 2014, Julian Gruber <julian at juliangruber.com>
+ 2014, darsain (http://darsa.in)
+ 2015, Dominic Barnes (dominic at dbarnes.info)
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Bas Couwenberg <sebastic 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..ad1245d
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+Readme.md
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..21d0417
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,16 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = master
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..7926ad6
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+package.json usr/lib/nodejs/throttleit/
+index.js usr/lib/nodejs/throttleit/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4751a82
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
+override_dh_auto_build:
+ # Ignore upstream Makefile
+
+override_dh_auto_test:
+ mocha --reporter spec
+
+override_dh_installchangelogs:
+ dh_installchangelogs -k History.md
+
+
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..de3f9ca
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: require
+Depends: node-throttleit
diff --git a/debian/tests/require b/debian/tests/require
new file mode 100644
index 0000000..5524da4
--- /dev/null
+++ b/debian/tests/require
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+nodejs -e "require('throttleit');"
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..d93022e
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,6 @@
+---
+Bug-Database: https://github.com/component/throttle/issues
+Bug-Submit: https://github.com/component/throttle/issues/new
+Name: throttle
+Repository: https://github.com/component/throttle.git
+Repository-Browse: https://github.com/component/throttle
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..42ead00
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,6 @@
+version=3
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\
+filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-throttleit-$1.tar.gz/ \
+https://github.com/component/throttle/tags \
+.*/archive/v?(0\.[\d\.]+).tar.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-throttleit.git
More information about the Pkg-javascript-commits
mailing list