Commit 7f1f76da authored by Shayan Doust's avatar Shayan Doust
Browse files

Add debian directory

parent 9dcef212
Loading
Loading
Loading
Loading

debian/README.test

0 → 100644
+8 −0
Original line number Diff line number Diff line
Notes on how this package can be tested.
────────────────────────────────────────

This package can be tested by running the provided test:

    sh run-unit-test

in order to confirm its integrity.

debian/changelog

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

  * Initial release (Closes: #<bug>)

 -- Shayan Doust <hello@shayandoust.me>  Sun, 08 Sep 2019 22:20:14 +0100

debian/control

0 → 100644
+19 −0
Original line number Diff line number Diff line
Source: simka
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Shayan Doust <hello@shayandoust.me>
Section: science
Priority: optional
Build-Depends: debhelper-compat (= 12)
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/simka
Vcs-Git: https://salsa.debian.org/med-team/simka.git
Homepage: https://github.com/GATB/simka

Package: simka
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: comparative metagenomics method dedicated to NGS datasets
 Simka is a de novo comparative metagenomics tool. Simka represents each
 dataset as a k-mer spectrum and compute several classical ecological
 distances between them.

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: simka
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: 2019 Shayan Doust <hello@shayandoust.me>
License: <license>

debian/rules

0 → 100755
+31 −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
# SOURCE_DATE_EPOCH: the source release date as seconds since the epoch, as
#                    specified by <https://reproducible-builds.org/specs/source-date-epoch/>

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

%:
	dh $@

### When overriding auto_test make sure DEB_BUILD_OPTIONS will be respected
#override_dh_auto_test:
#ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
#	do_stuff_for_testing
#endif

### If you **really** can not use uscan (even not with mode=git) use a debian/get-orig-script
#get-orig-source:
#	. debian/get-orig-source
Loading