Commit c48da61f authored by Andreas Tille's avatar Andreas Tille
Browse files

Initial packaging

parent 8784540b
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
genometester (4.0-1) UNRELEASED; urgency=medium

  * Initial release (Closes: #<bug>)

 -- Andreas Tille <tille@debian.org>  Tue, 29 May 2018 16:15:40 +0200

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
11

debian/control

0 → 100644
+24 −0
Original line number Diff line number Diff line
Source: genometester
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/genometester
Vcs-Git: https://salsa.debian.org/med-team/genometester.git
Homepage: https://github.com/bioinfo-ut/GenomeTester4

Package: genometester
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: toolkit for performing set operations on k-mer lists
 Toolkit for performing set operations - union, intersection and
 complement - on k-mer lists.
 .
 GenomeTester4 toolkit, which contains a novel tool GListCompare for
 performing union, intersection and complement (difference) set
 operations on k-mer lists. It contains examples of how these
 general operations can be combined to solve a variety of biological
 analysis tasks.

debian/copyright

0 → 100644
+16 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: <pkg>
Source: <path_to_download>
Comment: **** Before manually editing this file you should give ****
           scan-copyrights
         **** available in cme + lib-config-model-dpkg-perl     ****
         **** package a try.  For existing copyright files try  ****
           cme update dpkg-copyright

Files: *
Copyright: © 20xx-20yy <upstream>
License: <license>

Files: debian/*
Copyright: © 2018 maintainername <maintainer@e.mail>
License: <license>

debian/rules

0 → 100755
+19 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

# DH_VERBOSE := 1
export LC_ALL=C.UTF-8

include /usr/share/dpkg/default.mk
# this provides:
# DEB_SOURCE: the source package name
# DEB_VERSION: the full version of the package (epoch + upstream vers. + revision)
# DEB_VERSION_EPOCH_UPSTREAM: the package's version without the Debian revision
# DEB_VERSION_UPSTREAM_REVISION: the package's version without the Debian epoch
# DEB_VERSION_UPSTREAM: the package's upstream version
# DEB_DISTRIBUTION: the distribution(s) listed in the current entry of debian/changelog

# for hardening you might like to uncomment this:
# export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@
Loading