[edge-addition-planarity-suite] 02/03: Initial packaging
Julien Puydt
julien.puydt at laposte.net
Sat Oct 17 19:43:27 UTC 2015
This is an automated email from the git hooks/post-receive script.
jpuydt-guest pushed a commit to branch master
in repository edge-addition-planarity-suite.
commit 123a27ee764b8d59f85e663f2253a13726638256
Author: Julien Puydt <julien.puydt at laposte.net>
Date: Sun Oct 11 22:35:41 2015 +0200
Initial packaging
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 45 +++++++++++++++++++++++++++++++++++++++++
debian/copyright | 38 ++++++++++++++++++++++++++++++++++
debian/gbp.conf | 2 ++
debian/libplanarity-dev.install | 3 +++
debian/libplanarity0.install | 2 ++
debian/libplanarity0.shlibs | 1 +
debian/planarity.install | 2 ++
debian/rules | 11 ++++++++++
debian/watch | 3 +++
11 files changed, 113 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..39bd4ce
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+edge-addition-planarity-suite (3.0.0.4-1) UNRELEASED; urgency=medium
+
+ * Initial release (Closes: #798493).
+
+ -- Julien Puydt <julien.puydt at laposte.net> Wed, 09 Sep 2015 11:40:51 +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..b1c3210
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,45 @@
+Source: edge-addition-planarity-suite
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Julien Puydt <julien.puydt at laposte.net>
+Section: math
+Priority: optional
+Standards-Version: 3.9.6
+Homepage: https://github.com/graph-algorithms/edge-addition-planarity-suite
+Build-Depends: debhelper (>= 9), dh-autoreconf (>= 4~)
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/planarity.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/planarity.git
+
+Package: libplanarity0
+Section: libs
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: Library of planarity-related graph algorithms
+ This library contains the reference implementation of the
+ Edge Addition Planarity Algorithm, which is the best
+ linear-time method to embed a planar graph and isolate
+ planarity obstructions.
+ .
+ This package contains the library.
+
+Package: libplanarity-dev
+Architecture: any
+Section: libdevel
+Depends: ${misc:Depends}, libplanarity0 (= ${binary:Version})
+Description: Library of planarity-related graph algorithms (devel files)
+ This library contains the reference implementation of the
+ Edge Addition Planarity Algorithm, which is the best
+ linear-time method to embed a planar graph and isolate
+ planarity obstructions.
+ .
+ This package contains the development files.
+
+Package: planarity
+Architecture: any
+Depends: libplanarity0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: Program for planarity-related graph algorithms
+ This package contains a command-line reference implementation of the
+ Edge Addition Planarity Algorithm, which is the best linear-time
+ method to embed a planar graph and isolate planarity obstructions.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6f51d72
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: edge-addition-planarity-suite
+Upstream-Contact: John M. Boyer
+Source: https://github.com/graph-algorithms/edge-addition-planarity-suite
+
+Files: *
+Copyright: 1997-2015 John M. Boyer
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: Julien Puydt
+License: BSD-3-clause
+
+License: BSD-3-clause
+ 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 Edge Addition Planarity Suite 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 THE COPYRIGHT HOLDER OR CONTRIBUTORS 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/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/libplanarity-dev.install b/debian/libplanarity-dev.install
new file mode 100644
index 0000000..342f658
--- /dev/null
+++ b/debian/libplanarity-dev.install
@@ -0,0 +1,3 @@
+/usr/include/*
+/usr/lib/*/*.so
+
diff --git a/debian/libplanarity0.install b/debian/libplanarity0.install
new file mode 100644
index 0000000..a84230a
--- /dev/null
+++ b/debian/libplanarity0.install
@@ -0,0 +1,2 @@
+/usr/lib/*/*.so.*
+
diff --git a/debian/libplanarity0.shlibs b/debian/libplanarity0.shlibs
new file mode 100644
index 0000000..7589d8e
--- /dev/null
+++ b/debian/libplanarity0.shlibs
@@ -0,0 +1 @@
+libplanarity 0 libplanarity0
diff --git a/debian/planarity.install b/debian/planarity.install
new file mode 100644
index 0000000..099917b
--- /dev/null
+++ b/debian/planarity.install
@@ -0,0 +1,2 @@
+/usr/bin/planarity
+/usr/share/man/man1/planarity.1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..02923b3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+DEB_CONFIGURE_EXTRA_FLAGS += --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH)
+
+export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed
+export ACLOCAL_M4=.
+
+%:
+ dh $@ --with autoreconf --parallel
+
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..a5a8a62
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s|.*/Version_([\d\.-]+)\.tar\.gz|edge-addition-planarity-suite-$1.tar.gz| \
+https://github.com/graph-algorithms/edge-addition-planarity-suite/tags .*/Version_(\d[\d\.]*)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/edge-addition-planarity-suite.git
More information about the debian-science-commits
mailing list