[Pkg-javascript-commits] [gitgraph.js] 02/06: Initial packaging.

Michael Lustfield mtecknology at debian.org
Sun Aug 27 04:09:30 UTC 2017


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

mtecknology pushed a commit to branch master
in repository gitgraph.js.

commit 149f983e5f3ea70aa36372581c6cf5cbdd25d2e4
Author: Michael Lustfield <michael at lustfield.net>
Date:   Sat Aug 26 22:45:20 2017 -0500

    Initial packaging.
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 17 +++++++++++++++++
 debian/copyright     | 37 +++++++++++++++++++++++++++++++++++++
 debian/examples      |  3 +++
 debian/gbp.conf      |  3 +++
 debian/install       |  3 +++
 debian/rules         | 11 +++++++++++
 debian/source/format |  1 +
 debian/watch         |  8 ++++++++
 10 files changed, 89 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..df9147c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+gitgraph.js (0.0~git20170511.0.5fcc26b-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #860356)
+
+ -- Michael Lustfield <michael at lustfield.net>  Sat, 26 Aug 2017 22:09:49 -0500
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..d628629
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: gitgraph.js
+Section: javascript
+Priority: optional
+Maintainer: Debian JavaScript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Michael Lustfield <michael at lustfield.net>
+Build-Depends: debhelper (>= 10), uglifyjs
+Standards-Version: 4.0.0
+Homepage: https://github.com/bluef/gitgraph.js
+Vcs-Git: https://anonscm.debian.org/pkg-javascript/gitgraph.js.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/gitgraph.js.git
+
+Package: libjs-jquery-gitgraph
+Architecture: all
+Depends: libjs-jquery, ${misc:Depends}
+Description: convert git log --graph to image with HTML5 canvas
+ This jQuery library provides methods for converting the output of
+ "git log --graph" to an image using HTML5 canvas.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7ebba82
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,37 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: gitgraph.js
+Source: https://github.com/bluef/gitgraph.js
+
+Files: *
+Copyright: 2011 Terrence Lee <kill889 at gmail.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017 Michael Lustfield <michael at lustfield.net>
+License: BSD-3-clause
+
+License: BSD-3-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.
+ * Neither the name of the fgdev 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 <COPYRIGHT HOLDER> 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/examples b/debian/examples
new file mode 100644
index 0000000..9c38b59
--- /dev/null
+++ b/debian/examples
@@ -0,0 +1,3 @@
+canvas.html
+draw.js
+example.php
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..4eb8a51
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+pristine-tar = True
+#sign-tags = True
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..439b646
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,3 @@
+gitgraph.js usr/share/javascript/jquery-gitgraph
+gitgraph.min.js usr/share/javascript/jquery-gitgraph
+gitgraph.css usr/share/javascript/jquery-gitgraph
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e689404
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+%:
+	dh $@
+
+override_dh_auto_clean:
+	rm -f gitgraph.min.js
+	dh_auto_clean
+
+override_dh_auto_build:
+	uglifyjs -o gitgraph.min.js gitgraph.js
+	dh_auto_build
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..a56a73a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,8 @@
+# uscan(1) configuration file.
+version=4
+
+opts="\
+pgpmode=none,\
+repack,compression=xz,\
+"  https://github.com/bluef/gitgraph.js/releases \
+   .*/archive/v?(\d[\d.]+)\.tar\.gz

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



More information about the Pkg-javascript-commits mailing list