[flann] 01/54: initial work on flann

Leopold Palomo-Avellaneda leo at alaxarxa.net
Fri Jul 15 10:42:39 UTC 2016


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

lepalom-guest pushed a commit to branch master
in repository flann.

commit fb37aa4b9bb24c4cb0c5b21f97e47831110c0e9b
Author: Mathieu Malaterre <malat at debian.org>
Date:   Wed Apr 27 08:57:58 2011 +0000

    initial work on flann
---
 debian/README.Debian     |  6 ++++++
 debian/README.source     |  9 +++++++++
 debian/changelog         |  5 +++++
 debian/compat            |  1 +
 debian/control           | 22 ++++++++++++++++++++++
 debian/copyright         |  9 +++++++++
 debian/docs              |  2 ++
 debian/flann-doc.docs    |  1 +
 debian/flann-doc.install |  1 +
 debian/rules             | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/source/format     |  1 +
 debian/watch             |  3 +++
 12 files changed, 102 insertions(+)

diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..79370d4
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,6 @@
+flann for Debian
+----------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Mathieu Malaterre <mathieu.malaterre at gmail.com>  Wed, 27 Apr 2011 10:41:23 +0200
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..64334ed
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,9 @@
+flann for Debian
+----------------
+
+<this file describes information about the source package, see Debian policy
+manual section 4.14. You WILL either need to modify or delete this file>
+
+
+
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..aee32d5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+flann (1.6.8-1) unstable; urgency=low
+
+  * Initial release (Closes: #581903)
+
+ -- Mathieu Malaterre <mathieu.malaterre at gmail.com>  Wed, 27 Apr 2011 10:41:23 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..72c8cb5
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: flann
+Section: libs
+Priority: optional
+Maintainer: Debian Science Team <debian-science-maintainers at lists.alioth.debian.org>
+DM-Upload-Allowed: yes
+Uploaders: Mathieu Malaterre <mathieu.malaterre at gmail.com>
+Build-Depends: debhelper (>= 7.0.50~), cmake
+Standards-Version: 3.9.1
+Homepage: http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN
+Vcs-Browser: http://svn.debian.org/wsvn/debian-science/packages/flann/trunk/?rev=0&sc=0
+Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/flann/trunk/
+
+Package: flann
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>
+
+Package: flann-doc
+Architecture: all
+Description: documentation for flann
+ <insert long description, indented with spaces>
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ff6d7d0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,9 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Name: flann
+Maintainer: Mathieu Malaterre
+Source: http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN
+
+Files: *
+Copyright: © 1999 University of Chicago.  All rights reserved
+License: BSD
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..634f57b
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+CMakeLists.txt
+README
diff --git a/debian/flann-doc.docs b/debian/flann-doc.docs
new file mode 100644
index 0000000..d4f4542
--- /dev/null
+++ b/debian/flann-doc.docs
@@ -0,0 +1 @@
+#DOCS#
diff --git a/debian/flann-doc.install b/debian/flann-doc.install
new file mode 100644
index 0000000..d4f4542
--- /dev/null
+++ b/debian/flann-doc.install
@@ -0,0 +1 @@
+#DOCS#
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e65351d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,42 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
+
+
+%:
+	dh --parallel --with quilt --buildsystem=cmake $@ 
+
+VER_MAJOR = 1
+VER_MINOR = 6
+VER_PATCH = 8
+VER_FULL = $(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)
+
+UPSTREAM_SRC = flann-$(VER_FULL)-src
+DEBIAN_SRC_DIR = flann-$(VER_FULL)
+DEBIAN_SRC_TAR = flann_$(VER_FULL).orig.tar.gz
+
+$(UPSTREAM_SRC).zip:
+	#uscan --verbose --force-download --repack --rename
+	wget -c http://people.cs.ubc.ca/~mariusm/uploads/FLANN/$@
+
+get-orig-source: $(UPSTREAM_SRC).zip
+	rm -rf $(DEBIAN_SRC_DIR)
+	unzip -q $(UPSTREAM_SRC).zip
+	mv $(UPSTREAM_SRC) $(DEBIAN_SRC_DIR)
+	GZIP="--best --no-name" tar czf $(DEBIAN_SRC_TAR) $(DEBIAN_SRC_DIR)
+	rm -rf $(DEBIAN_SRC_DIR)
+	rm $(UPSTREAM_SRC).zip
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..21b20c6
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+#http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-(.*)-src.zip
+version=3
+http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN flann-(.*)-src.zip

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/flann.git



More information about the debian-science-commits mailing list