[Pkg-javascript-commits] [node-mocha-lcov-reporter] 02/02: Initial packaging work

Julien Puydt julien.puydt at laposte.net
Fri Jun 26 06:02:56 UTC 2015


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

jpuydt-guest pushed a commit to branch master
in repository node-mocha-lcov-reporter.

commit 77d555a8374d4da4fdbfdbd271d86282484b73d3
Author: Julien Puydt <julien.puydt at laposte.net>
Date:   Fri Jun 26 07:52:49 2015 +0200

    Initial packaging work
---
 debian/changelog     |  6 ++++++
 debian/compat        |  1 +
 debian/control       | 23 +++++++++++++++++++++++
 debian/copyright     | 36 ++++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/gbp.conf      |  2 ++
 debian/install       |  3 +++
 debian/rules         | 10 ++++++++++
 debian/source/format |  1 +
 debian/tests/control |  2 ++
 debian/tests/require |  3 +++
 debian/watch         |  5 +++++
 12 files changed, 93 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7998789
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+node-mocha-lcov-reporter (0.0.2-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #761443)
+
+ -- Julien Puydt <julien.puydt at laposte.net>  Thu, 25 Jun 2015 09:43:04 +0200
+
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..076063f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: node-mocha-lcov-reporter
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Julien Puydt <julien.puydt at laposte.net>
+Build-Depends:
+ debhelper (>= 9), dh-buildinfo, nodejs
+Standards-Version: 3.9.6
+Homepage: https://github.com/StevenLooman/mocha-lcov-reporter
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-mocha-lcov-reporter.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-mocha-lcov-reporter.git
+Testsuite: autopkgtest
+
+Package: node-mocha-lcov-reporter
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs
+Description: LCOV reporter for Mocha
+ The package provides a reporter for the Mocha JavaScript
+ test framework in the LCOV format.
+ .
+ Node.js is an event-based server-side JavaScript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..48f92f0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: mocha-lcov-reporter
+Upstream-Contact: https://github.com/StevenLooman/mocha-lcov-reporter/issues
+Source: https://github.com/StevenLooman/mocha-lcov-reporter
+
+Files: *
+Copyright: 2015 Steven Looman <steven.looman at gmail.com>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2015 Julien Puydt <julien.puydt at laposte.net>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ All rights reserved.
+ .
+ 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/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..29b1459
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[pristine-tar]
+pristine-tar = True
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..647a6f0
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,3 @@
+package.json usr/lib/nodejs/mocha-lcov-reporter/
+lib usr/lib/nodejs/mocha-lcov-reporter/
+index.js usr/lib/nodejs/mocha-lcov-reporter/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b478ebd
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# 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/tests/control b/debian/tests/control
new file mode 100644
index 0000000..2d72b03
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: require
+Depends: node-mocha-lcov-reporter
diff --git a/debian/tests/require b/debian/tests/require
new file mode 100644
index 0000000..612d7e7
--- /dev/null
+++ b/debian/tests/require
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+nodejs -e "require('mocha-lcov-reporter');"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..4f70097
--- /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-mocha-lcov-reporter-$1.tar.gz/ \
+ https://github.com/StevenLooman/mocha-lcov-reporter/tags .*/archive/v?([\d\.]+).tar.gz

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



More information about the Pkg-javascript-commits mailing list