[opengm] 01/08: initial debianization

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Sun Nov 1 17:14:53 UTC 2015


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

ghisvail-guest pushed a commit to branch debian/sid
in repository opengm.

commit 78e44de622a774b817edb5a84bea90a9fd94f914
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Tue Oct 20 18:56:52 2015 +0100

    initial debianization
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 49 +++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules         | 13 ++++++++++++
 debian/source/format |  1 +
 6 files changed, 128 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..864485e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+opengm (2.3.5-1) UNRELEASED; urgency=low
+
+  * Initial release. Closes: #801971
+
+ -- Ghislain Antony Vaillant <ghisvail at gmail.com>  Tue, 20 Oct 2015 18:20:38 +0100
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..2f2ecbd
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,49 @@
+Source: opengm
+Section: unknown
+Priority: extra
+Maintainer: Ghislain Antony Vaillant <ghisvail at gmail.com>
+Build-Depends: cmake, debhelper (>=9), python-all
+Standards-Version: 3.9.6
+Homepage: http://hci.iwr.uni-heidelberg.de/opengm2/
+X-Python-Version: >= 2.6
+
+Package: libopengm-bin
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: auto-generated package by debmake: bin
+ This package contains the compiled binary executable.
+ .
+ This Debian binary package was auto-generated by the
+ debmake(1) command provided by the debmake package.
+
+Package: libopengm-dev
+Section: libdevel
+Architecture: any
+Multi-Arch: same
+Depends: ${misc:Depends}
+Description: auto-generated package by debmake: dev
+ This package contains the development files.
+
+Package: libopengm-doc
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}
+Description: auto-generated package by debmake: doc
+ This package contains the documentation files.
+
+Package: python-opengm
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: auto-generated package by debmake: python
+ This package contains the python program.
+
+Package: python-opengm-doc
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends}
+Description: auto-generated package by debmake: data
+ This package contains the architecture independent data.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a2b2021
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,59 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: opengm
+Upstream-Contact: opengm at hci.iwr.uni-heidelberg.de
+Source: https://github.com/opengm/opengm
+
+Files: *
+Copyright: 2012-2013 Bjoern Andres,Thorsten Beier and Joerg H. Kappes
+License: Expat
+
+Files: cmake/modules/UseLATEX.cmake
+Copyright: 2004 Sandia Corporation.
+License: Sandia-Permissive
+
+Files: cmake/modules/__FindNUMPY2
+Copyright: 2012 Continuum Analytics, Inc.
+License: Expat
+
+Files: debian/*
+Copyright: 2015 Ghislain Antony Vaillant
+License: Expat
+
+Files: include/opengm/inference/fix-fusion/*
+Copyright: 2012 Alexander Fix
+License: Expat
+
+License: Expat
+ The MIT License
+ .
+ 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.
+
+License: Sandia-Permissive
+ Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
+ license for use of this work by or on behalf of the U.S. Government.
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that this Notice and any statement
+ of authorship are reproduced on all copies.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c536edb
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# You must remove unused comment lines for the released package.
+#export DH_VERBOSE = 1
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+%:
+	dh $@ --with python2 
+
+#override_dh_auto_configure:
+#	dh_auto_configure -- \
+#	      -DCMAKE_LIBRARY_ARCHITECTURE="$(DEB_TARGET_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)

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



More information about the debian-science-commits mailing list