[Pkg-javascript-commits] [qtip2.js] 02/02: initial packaging
Alexandre Viau
aviau at moszumanska.debian.org
Tue Dec 29 21:48:06 UTC 2015
This is an automated email from the git hooks/post-receive script.
aviau pushed a commit to branch master
in repository qtip2.js.
commit 8d96018f054fe937ca2d91bea5e44b5cf25f8f52
Author: aviau <alexandre at alexandreviau.net>
Date: Tue Dec 29 16:45:04 2015 -0500
initial packaging
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 19 +++++++++++++++++++
debian/copyright | 39 +++++++++++++++++++++++++++++++++++++++
debian/gbp.conf | 2 ++
debian/install | 8 ++++++++
debian/rules | 16 ++++++++++++++++
debian/source/format | 1 +
debian/watch | 3 +++
9 files changed, 94 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2efee0e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+qtip2.js (3.0.2~dfsg1-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #809366)
+
+ -- Alexandre Viau <aviau at debian.org> Tue, 29 Dec 2015 16:44:00 -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..4f2e8b4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: qtip2.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), yui-compressor
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/qtip2.js.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/qtip2.js.git
+Homepage: https://github.com/qTip2/qTip2
+
+Package: libjs-qtip2
+Architecture: all
+Depends: ${misc:Depends}
+Recommends: javascript-common
+Description: powerful tooltips library for the jQuery framework
+ qTip is a tooltip plugin for the jQuery framework. Building 1.0's user
+ friendly, yet feature rich base, qTip2 provides you with tonnes of
+ features like speech bubble tips and imagemap support.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ed844a9
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: qTip2
+Source: https://github.com/qTip2/qTip2
+Files-Excluded: dist/*.min.js
+ dist/*.min.css
+ dist/basic/*.min.css
+ dist/basic/*.min.js
+
+
+Files: *
+Copyright: 2012 Craig Michael Thompson <craig at craigsworks.com>
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Alexandre Viau <aviau at debian.org>
+License: Expat
+Comment: Debian packaging is licensed under the same terms as upstream
+
+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..9b9b4bf
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,8 @@
+dist/jquery.qtip.js usr/share/javascript/qtip2
+dist/jquery.qtip.css usr/share/javascript/qtip2
+dist/jquery.qtip.min.js usr/share/javascript/qtip2
+dist/jquery.qtip.min.css usr/share/javascript/qtip2
+dist/basic/jquery.qtip.js usr/share/javascript/qtip2/basic
+dist/basic/jquery.qtip.css usr/share/javascript/qtip2/basic
+dist/basic/jquery.qtip.min.js usr/share/javascript/qtip2/basic
+dist/basic/jquery.qtip.min.css usr/share/javascript/qtip2/basic
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c44820a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_build:
+ yui-compressor -o dist/jquery.qtip.min.js dist/jquery.qtip.js
+ yui-compressor -o dist/jquery.qtip.min.css dist/jquery.qtip.css
+ yui-compressor -o dist/basic/jquery.qtip.min.js dist/basic/jquery.qtip.js
+ yui-compressor -o dist/basic/jquery.qtip.min.css dist/basic/jquery.qtip.css
+
+override_dh_auto_clean:
+ dh_clean
+ rm -f dist/jquery.qtip.min.js
+ rm -f dist/jquery.qtip.min.css
+ rm -f dist/basic/jquery.qtip.min.js
+ rm -f dist/basic/jquery.qtip.min.css
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..b9db469
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/qtip2.js-$1\.tar\.gz/,repacksuffix=~dfsg1,dversionmangle=s/\~dfsg\d*$// \
+ https://github.com/qTip2/qTip2/releases .*/archive/v?(\d[\d\.]+)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/qtip2.js.git
More information about the Pkg-javascript-commits
mailing list