[med-svn] [partitionfinder] 02/06: Initial dh_make templates filled in

Kevin Murray daube-guest at moszumanska.debian.org
Tue Nov 10 10:05:04 UTC 2015


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

daube-guest pushed a commit to branch master
in repository partitionfinder.

commit 8f5187123e3b47b1c1b0c26c6d6ebe6ac3628ea1
Author: Kevin Murray <spam at kdmurray.id.au>
Date:   Tue Nov 10 17:56:29 2015 +1100

    Initial dh_make templates filled in
---
 debian/.gitignore    |  1 +
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 22 ++++++++++++++++++++++
 debian/copyright     | 45 +++++++++++++++++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/rules         | 32 ++++++++++++++++++++++++++++++++
 debian/source/format |  1 +
 8 files changed, 108 insertions(+)

diff --git a/debian/.gitignore b/debian/.gitignore
new file mode 100644
index 0000000..1377554
--- /dev/null
+++ b/debian/.gitignore
@@ -0,0 +1 @@
+*.swp
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7f1bc60
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+partitionfinder (2.0.0-pre9-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)
+
+ -- Kevin Murray <spam at kdmurray.id.au>  Tue, 10 Nov 2015 17:31:04 +1100
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..3003dd0
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: partitionfinder
+Section: science
+Priority: optional
+Maintainer: Kevin Murray <spam at kdmurray.id.au>
+Build-Depends: debhelper (>= 9),
+               dh_python,
+               python-all
+Standards-Version: 3.9.6
+Homepage: https://github.com/brettc/partitionfinder
+#Vcs-Git: git://anonscm.debian.org/collab-maint/partitionfinder.git
+#Vcs-Browser: https://anonscm.debian.org/gitweb/?p=collab-maint/partitionfinder.git;a=summary
+
+Package: partitionfinder
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: choses partitioning schemes and models of molecular evolution for sequence data
+ PartitionFinder and PartitionFinderProtein are Python programs for
+ simultaneously choosing partitioning schemes and models of molecular evolution
+ for sequence data.  You can use them before running a phylogenetic analysis,
+ in order to decide how to divide up your sequence data into separate blocks
+ before analysis, and to simultaneously perform model selection on each of
+ those blocks.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e9fa26e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,45 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: partitionfinder
+Source: https://github.com/brettc/partitionfinder
+Files-Excluded: programs
+
+Files: *
+Copyright: 2012 Robert Lanfear and Brett Calcott
+License: GPL-3+
+ 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 3 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 <https://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
+
+
+Files: debian/*
+Copyright: 2015 Kevin Murray <spam at kdmurray.id.au>
+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/rules b/debian/rules
new file mode 100755
index 0000000..5c1cebc
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,32 @@
+#!/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 EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+# 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
+
+
+# main packaging script based on dh7 syntax
+%:
+	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)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/partitionfinder.git



More information about the debian-med-commit mailing list