[Pkg-javascript-commits] [moxie.js] 02/02: initial release

Alexandre Viau aviau at moszumanska.debian.org
Tue Jan 5 01:42:55 UTC 2016


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

aviau pushed a commit to branch master
in repository moxie.js.

commit c01f03343a4bdb28b4f5bb7069ba15989c14e034
Author: aviau <alexandre at alexandreviau.net>
Date:   Mon Jan 4 12:31:24 2016 -0500

    initial release
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 19 +++++++++++++++++
 debian/copyright     | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/gbp.conf      |  2 ++
 debian/install       |  2 ++
 debian/rules         | 10 +++++++++
 debian/source/format |  1 +
 debian/watch         |  3 +++
 9 files changed, 101 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f719332
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+moxie.js (1.4.1~dfsg1-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #809853)
+
+ -- Alexandre Viau <aviau at debian.org>  Mon, 04 Jan 2016 12:21:30 -0500
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..24fcf40
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: moxie.js
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Alexandre Viau <aviau at debian.org>
+Build-Depends: debhelper (>= 9), uglifyjs
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/moxie.js.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/moxie.js.git
+Homepage: https://github.com/moxiecode/moxie
+
+Package: libjs-moxie
+Architecture: all
+Depends: ${misc:Depends}
+Recommends: javascript-common
+Description: pollyfills for XHR2 and File API
+ mOxie provides pollyfills for the XHR2 and File API. It is the
+ combined name for XHR2 and File API pollyfills from Plupload,
+ which is a multi-runtime file uploader.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3fb2675
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,58 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: moxie
+Source: https://github.com/moxiecode/moxie
+Files-Excluded: bin/silverlight
+                bin/flash
+                bin/js/*.min.js
+
+Files: *
+Copyright: 2012 Moxiecode Systems AB
+License: GPL-2.0
+
+Files: bin/js/moxie.js
+Copyright: 2013 Moxiecode Systems AB
+           2012 Shinichi Tomita <shinichi.tomita at gmail.com>
+License: GPL-2.0 and Expat
+Comment: The file embeds a copy of MegaPixel.js, which is licensed
+ under Expat. The rest is all licensed under GPL-2.0.
+
+Files: debian/*
+Copyright: 2015 Alexandre Viau <aviau at debian.org>
+License: GPL-2.0
+Comment: Debian packaging is licensed under the same terms as upstream
+
+License: GPL-2.0
+ This program is free software; you can redistribute it
+ and/or modify it under the terms of the GNU General Public
+ License as published by the Free Software Foundation, version
+ 2 of the License.
+ .
+ This program is distributed in the hope that it will be
+ useful, but WITHOUT ANY WARRANTY; without even the implied
+ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE.  See the GNU General Public License for more
+ details.
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'
+
+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/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..cec628c
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..bded311
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+bin/js/moxie.js usr/share/javascript/moxie
+bin/js/moxie.min.js usr/share/javascript/moxie
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5105019
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+%:
+	dh $@
+
+override_dh_auto_build:
+	uglifyjs -o bin/js/moxie.min.js bin/js/moxie.js
+
+override_dh_auto_clean:
+	dh_clean
+	rm -f bin/js/moxie.min.js
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..6f2d6e7
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/moxie.js-$1\.tar\.gz/,repacksuffix=~dfsg1,dversionmangle=s/\~dfsg\d*$// \
+ https://github.com/moxiecode/moxie/releases .*/archive/v?(\d[\d\.]+)\.tar\.gz

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



More information about the Pkg-javascript-commits mailing list