diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..52116cc --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,11 @@ +jquery-flot-tooltip for Debian +----------------------------- + +In order to make use of this flot plugin in your html, include the +following line in your html header + + + + + + -- Antoine R. Dumont (@ardumont) , Wed, 13 Jul 2016 15:55:53 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..df5285f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,17 @@ +jquery-flot-tooltip (0.8.7-1~bpo8~swh+1) jessie-backports-swh; urgency=medium + + * Rebuild for jessie-backports-swh + + -- Antoine R. Dumont (@ardumont) Wed, 13 Jul 2016 17:04:31 +0200 + +jquery-flot-tooltip (0.8.7-1) unstable-swh; urgency=medium + + * Deploy 0.8.7-1 + + -- Antoine R. Dumont (@ardumont) Wed, 13 Jul 2016 17:04:07 +0200 + +jquery-flot-tooltip (0.8.7-1) unstable; urgency=medium + + * Initial release (Closes: #nnnn) + + -- Antoine R. Dumont (@ardumont) Wed, 13 Jul 2016 15:47:16 +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..b0f92bf --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: jquery-flot-tooltip +Priority: optional +Maintainer: Antoine R. Dumont (@ardumont) +Build-Depends: debhelper (>=9) +Standards-Version: 3.9.8 +Section: libs +Homepage: https://github.com/krzysu/flot.tooltip +#Vcs-Git: git://anonscm.debian.org/collab-maint/jquery-flot-tooltip.git +#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/jquery-flot-tooltip.git + +Package: libjs-jquery-flot-tooltip +Section: web +Architecture: all +Depends: libjs-jquery-flot, ${misc:Depends} +Description: Tooltip plugin for wonderful Flot plotting library + Flot is a pure JavaScript plotting library for jQuery. + It produces graphical plots of arbitrary datasets + on-the-fly client-side. The focus is on simple usage (all + settings are optional), attractive looks and interactive + features like zooming and mouse tracking. + This is a plugin to extend flot with tooltip ability. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..48ae6d8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,47 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: flot.tooltip +Source: https://github.com/krzysu/flot.tooltip + +Files: * +Copyright: 2011-2016 Krzysztof Urbas (@krzysu) + 2011-1016 Evan Steinkerchner (@Roundaround). +License: MIT + 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. + +Files: debian/* +Copyright: 2016 Antoine R. Dumont (@ardumont) +License: GPL-2+ + This package 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; either version 2 of the License, or + (at your option) any later version. + . + This package 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. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/libjs-jquery-flot-tooltip-docs.docs b/debian/libjs-jquery-flot-tooltip-docs.docs new file mode 100644 index 0000000..59c38e4 --- /dev/null +++ b/debian/libjs-jquery-flot-tooltip-docs.docs @@ -0,0 +1,2 @@ +README.Debian + diff --git a/debian/libjs-jquery-flot-tooltip.docs b/debian/libjs-jquery-flot-tooltip.docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/libjs-jquery-flot-tooltip.docs @@ -0,0 +1 @@ +README.md diff --git a/debian/libjs-jquery-flot-tooltip.examples b/debian/libjs-jquery-flot-tooltip.examples new file mode 100644 index 0000000..e39721e --- /dev/null +++ b/debian/libjs-jquery-flot-tooltip.examples @@ -0,0 +1 @@ +examples/* diff --git a/debian/libjs-jquery-flot-tooltip.install b/debian/libjs-jquery-flot-tooltip.install new file mode 100644 index 0000000..c668591 --- /dev/null +++ b/debian/libjs-jquery-flot-tooltip.install @@ -0,0 +1 @@ +js/jquery.flot.tooltip.min.js usr/share/javascript/jquery-flot/ \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..d760a82 --- /dev/null +++ b/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#export DH_VERBOSE = 1 + + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +%: + dh $@ + + +# dh_make generated override targets +# This is example for Cmake (See https://bugs.debian.org/641051 ) +#override_dh_auto_configure: +# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) 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)