[node-rbush] 02/02: Initial debian files (from npm2deb)

Johan Van de Wauw johanvdw-guest at moszumanska.debian.org
Sat Jan 17 11:28:13 UTC 2015


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

johanvdw-guest pushed a commit to branch master
in repository node-rbush.

commit 89e3e9e5ef156fb8a8410a0111ffdb6663bbf577
Author: Johan Van de Wauw <johan.vandewauw at gmail.com>
Date:   Fri Jan 16 22:27:23 2015 +0100

    Initial debian files (from npm2deb)
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 31 +++++++++++++++++++++++++++++++
 debian/copyright     | 34 ++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/install       |  2 ++
 debian/rules         | 15 +++++++++++++++
 debian/source/format |  1 +
 debian/tests/control |  2 ++
 debian/tests/require |  3 +++
 debian/watch         |  5 +++++
 11 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1e78316
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+node-rbush (1.3.4-2) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #774568)
+
+ -- Johan Van de Wauw <johan.vandewauw at gmail.com>  Fri, 16 Jan 2015 22:27:01 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5ee4d93
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,31 @@
+Source: node-rbush
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Johan Van de Wauw <johan.vandewauw at gmail.com>
+Build-Depends:
+ debhelper (>= 8)
+ , dh-buildinfo
+ , nodejs
+Standards-Version: 3.9.6
+Homepage: https://github.com/mourner/rbush
+Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-rbush.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-rbush.git
+XS-Testsuite: autopkgtest
+
+Package: node-rbush
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs
+Description: High-performance 2D spatial index for rectangles
+ RBush is a high-performance JavaScript library for 2D spatial indexing
+ of points and rectangles by Vladimir Agafonkin, based on an optimized
+ R-tree data structure with bulk insertion support.
+ .
+ Spatial index is a special data structure for points and rectangles that
+ allows you to perform queries like "all items within this bounding box"
+ very efficiently (e.g. hundreds of times faster than looping over all
+ items). It's most commonly used in maps and data visualizations.
+ .
+ Node.js is an event-based server-side JavaScript engine.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e67600b
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: rbush
+Upstream-Contact: https://github.com/mourner/rbush/issues
+Source: https://github.com/mourner/rbush
+
+Files: *
+Copyright: 2015 Vladimir Agafonkin
+License: MIT
+
+Files: debian/*
+Copyright: 2015 Johan Van de Wauw <johan.vandewauw at gmail.com>
+License: MIT
+
+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/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..93d23f3
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,2 @@
+package.json usr/lib/nodejs/rbush/
+rbush.js usr/lib/nodejs/rbush/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..de57af0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@
+
+#override_dh_auto_build:
+
+#override_dh_auto_test:
+
+
+
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/tests/control b/debian/tests/control
new file mode 100644
index 0000000..e921800
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: require
+Depends: node-rbush
diff --git a/debian/tests/require b/debian/tests/require
new file mode 100644
index 0000000..cf87414
--- /dev/null
+++ b/debian/tests/require
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+nodejs -e "require('rbush');"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..19ab1fd
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+version=3
+opts=\
+dversionmangle=s/\+(debian|dfsg|ds|deb)(\.\d+)?$//,\
+filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-rbush-$1.tar.gz/ \
+ https://github.com/mourner/rbush/tags .*/archive/v?([\d\.]+).tar.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/node-rbush.git



More information about the Pkg-grass-devel mailing list