[Pkg-javascript-commits] [node-lcov-parse] 43/45: First debian directory

Bastien Roucariès rouca at moszumanska.debian.org
Wed Sep 6 09:46:19 UTC 2017


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

rouca pushed a commit to branch master
in repository node-lcov-parse.

commit c76c80d8bc8776b458c5a9a975a86025ee7eb25a
Author: Bastien ROUCARIÈS <roucaries.bastien at gmail.com>
Date:   Fri Aug 25 14:10:58 2017 +0200

    First debian directory
---
 debian/changelog     |  6 ++++++
 debian/compat        |  1 +
 debian/control       | 23 +++++++++++++++++++++++
 debian/copyright     | 40 ++++++++++++++++++++++++++++++++++++++++
 debian/dirs          |  1 +
 debian/docs          |  1 +
 debian/install       |  3 +++
 debian/links         |  1 +
 debian/rules         | 15 +++++++++++++++
 debian/tests/control |  2 ++
 debian/tests/require |  3 +++
 debian/watch         |  9 +++++++++
 12 files changed, 105 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3abd11a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+node-lcov-parse (1.0.0~-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #nnnn)
+
+ -- Bastien Roucariès <rouca at debian.org>  Thu, 24 Aug 2017 23:08:38 +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..dd29844
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: node-lcov-parse
+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 (>= 9)
+ , dh-buildinfo
+ , nodejs
+Standards-Version: 3.9.8
+Homepage: https://github.com/davglass/lcov-parse#readme
+Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-lcov-parse.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/node-lcov-parse.git
+
+Package: node-lcov-parse
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs
+Description: Parse lcov results files and return JSON
+ FIX_ME long description
+ .
+ Node.js is an event-based server-side JavaScript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..fafc5a7
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,40 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: lcov-parse
+Upstream-Contact: http://github.com/davglass/lcov-parse/issues
+Source: https://github.com/davglass/lcov-parse#readme
+Files-Excluded: coverage/*
+Comment: Data that FTBFS
+
+Files: *
+Copyright: 2017 Dav Glass <davglass at gmail.com>
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2017 Bastien Roucariès <rouca at debian.org>
+License: BSD-3-Clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. 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.
+ 3. Neither the name of the University nor the names of its contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+ .
+ 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 HOLDERS 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/dirs b/debian/dirs
new file mode 100644
index 0000000..e772481
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/bin
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..a019f0e
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,3 @@
+package.json usr/lib/nodejs/lcov-parse/
+bin usr/lib/nodejs/lcov-parse/
+lib usr/lib/nodejs/lcov-parse/
diff --git a/debian/links b/debian/links
new file mode 100644
index 0000000..3404f14
--- /dev/null
+++ b/debian/links
@@ -0,0 +1 @@
+usr/lib/nodejs/lcov-parse/bin/cli.js usr/bin/lcov-parse
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..de57af0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/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/tests/control b/debian/tests/control
new file mode 100644
index 0000000..2451308
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: require
+Depends: node-lcov-parse
diff --git a/debian/tests/require b/debian/tests/require
new file mode 100644
index 0000000..47b3ef6
--- /dev/null
+++ b/debian/tests/require
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+nodejs -e "require('lcov-parse');"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..9a9f2a1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,9 @@
+version=3
+# It is not recommended use fakeupstream. Please investigate more.
+# Origin url: https://github.com/davglass/lcov-parse
+# Take a look at https://wiki.debian.org/debian/watch/
+# See also fakeupstream: http://anonscm.debian.org/viewvc/qa/trunk/cgi-bin/fakeupstream.cgi?view=markup
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\
+filenamemangle=s/.*=// \
+ http://qa.debian.org/cgi-bin/fakeupstream.cgi?upstream=npmjs/lcov-parse .*=lcov-parse-(\d.*)\.(?:tgz|tar\.(?:gz|bz2|xz))

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



More information about the Pkg-javascript-commits mailing list