[Pkg-javascript-commits] [libjs-webrtc-adapter] 02/02: Import Debian changes 4.1.0+dfsg1-1

Johannes Schauer josch at moszumanska.debian.org
Wed Jul 5 19:05:49 UTC 2017


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

josch pushed a commit to branch master
in repository libjs-webrtc-adapter.

commit 74e2b35f147d557db8be0add9014bea4daf2ffb8
Author: Johannes Schauer <josch at debian.org>
Date:   Tue Jul 4 18:52:33 2017 +0200

    Import Debian changes 4.1.0+dfsg1-1
    
    libjs-webrtc-adapter (4.1.0+dfsg1-1) UNRELEASED; urgency=low
    
      * Initial release (Closes: #867274)
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 21 +++++++++++++++++++++
 debian/copyright     | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/install       |  1 +
 debian/rules         | 12 ++++++++++++
 debian/source/format |  1 +
 debian/watch         |  8 ++++++++
 9 files changed, 92 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e7485d3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libjs-webrtc-adapter (4.1.0+dfsg1-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #867274)
+
+ -- Johannes Schauer <josch at debian.org>  Tue, 04 Jul 2017 18:52:33 +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..8547eff
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: libjs-webrtc-adapter
+Section: javascript
+Priority: optional
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Johannes Schauer <josch at debian.org>
+Build-Depends: debhelper (>= 10), node-browserify-lite (>= 0.5.0), libjs-sdp
+Standards-Version: 4.0.0
+Homepage: https://github.com/webrtc/adapter#readme
+Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/libjs-webrtc-adapter.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/libjs-webrtc-adapter.git
+
+Package: libjs-webrtc-adapter
+Architecture: all
+Depends: ${misc:Depends}, libjs-sdp (>= 2.1.0)
+Description: shim to insulate apps from WebRTC spec changes and browser prefix differences
+ JavaScript client-side library providing a common wrapper around
+ differences in WebRTC implementations by different browser vendors.
+ Supports Google Chrome, Microsoft Edge, Mozilla Firefox and Apple Safari
+ browsers. WebRTC ("Web Real-Time Communication") is a collection of
+ communications protocols and application programming interfaces that
+ enable real-time communication over peer-to-peer connections.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2db3020
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: webrtc-adapter
+Upstream-Contact: https://github.com/webrtc/adapter/issues
+Source: https://github.com/webrtc/adapter#readme
+Files-Excluded:
+ release
+
+Files: *
+Copyright:
+ 2017 Philipp Hancke <philipp.hancke at googlemail.com>
+ 2014 The WebRTC project authors
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2017 Johannes Schauer <josch 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:
+  * 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.
+  * Neither the name of Google 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 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..a83804e
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+adapter.js usr/share/javascript/webrtc-adapter/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ab7589a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@
+
+override_dh_auto_build:
+	dh_auto_build
+	NODE_PATH=$(CURDIR):/usr/share/javascript/sdp browserify-lite src/js/adapter_core.js --outfile adapter.js --standalone adapter
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..f8523a2
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,8 @@
+version=3
+opts=\
+repack,\
+compression=xz,\
+dversionmangle=s/\+dfsg\d*$//,\
+repacksuffix=+dfsg1,\
+filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/libjs-webrtc-adapter-$1.tar.gz/ \
+ https://github.com/webrtc/adapter/tags .*/archive/v?([\d\.]+).tar.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/libjs-webrtc-adapter.git



More information about the Pkg-javascript-commits mailing list