Codebase list ssshtest / cff2ef6
Import Debian changes 0.0+git20190416.6f5438a-1 ssshtest (0.0+git20190416.6f5438a-1) UNRELEASED; urgency=medium . * Initial release (Closes: #<bug>) Nilesh Patra 3 years ago
11 changed file(s) with 124 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Notes on how this package can be tested.
1 ────────────────────────────────────────
2
3 This package can be tested by running the provided test:
4
5 sh run-unit-test
6
7 in order to confirm its integrity.
0 ssshtest (0.0+git20190416.6f5438a-1) UNRELEASED; urgency=medium
1
2 * Initial release (Closes: #<bug>)
3
4 -- Nilesh Patra <nilesh@debian.org> Mon, 29 Mar 2021 15:34:30 +0530
0 Source: ssshtest
1 Section: science
2 Priority: optional
3 Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
4 Uploaders: Nilesh Patra <nilesh@debian.org>
5 Build-Depends: debhelper-compat (= 13)
6 Standards-Version: 4.5.1
7 Vcs-Browser: https://salsa.debian.org/med-team/ssshtest
8 Vcs-Git: https://salsa.debian.org/med-team/ssshtest.git
9 Homepage: https://github.com/ryanlayer/ssshtest
10 Rules-Requires-Root: no
11
12 Package: ssshtest
13 Architecture: all
14 Depends: ${shlibs:Depends}, ${misc:Depends}
15 Description: <short_description>
16 <long_description>
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: ssshtest
2 Source: <path_to_download>
3 Comment: **** Before manually editing this file you should give ****
4 scan-copyrights
5 **** available in cme + lib-config-model-dpkg-perl ****
6 **** package a try. For existing copyright files try ****
7 cme update dpkg-copyright
8
9 Files: *
10 Copyright: 20xx-20yy <upstream>
11 License: <license>
12
13 Files: debian/*
14 Copyright: 2020 Nilesh Patra <nilesh@debian.org>
15 License: <license>
0 #!/usr/bin/make -f
1
2 # DH_VERBOSE := 1
3 export LC_ALL=C.UTF-8
4
5 include /usr/share/dpkg/default.mk
6 # this provides:
7 # DEB_SOURCE: the source package name
8 # DEB_VERSION: the full version of the package (epoch + upstream vers. + revision)
9 # DEB_VERSION_EPOCH_UPSTREAM: the package's version without the Debian revision
10 # DEB_VERSION_UPSTREAM_REVISION: the package's version without the Debian epoch
11 # DEB_VERSION_UPSTREAM: the package's upstream version
12 # DEB_DISTRIBUTION: the distribution(s) listed in the current entry of debian/changelog
13 # SOURCE_DATE_EPOCH: the source release date as seconds since the epoch, as
14 # specified by <https://reproducible-builds.org/specs/source-date-epoch/>
15
16 # for hardening you might like to uncomment this:
17 # export DEB_BUILD_MAINT_OPTIONS=hardening=+all
18
19 %:
20 dh $@
21
22 ### When overriding auto_test make sure DEB_BUILD_OPTIONS will be respected
23 #override_dh_auto_test:
24 #ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
25 # do_stuff_for_testing
26 #endif
27
28 ### If you **really** can not use uscan (even not with mode=git) use a debian/get-orig-script
29 #get-orig-source:
30 # . debian/get-orig-source
0 ---
1 include:
2 - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
3 - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
0 3.0 (quilt)
0 Tests: run-unit-test
1 Depends: @
2 Restrictions: allow-stderr
0 #!/bin/bash
1 set -e
2
3 pkg=#PACKAGENAME#
4
5 export LC_ALL=C.UTF-8
6 if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
7 AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
8 trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
9 fi
10
11 cp -a /usr/share/doc/${pkg}/examples/* "${AUTOPKGTEST_TMP}"
12
13 cd "${AUTOPKGTEST_TMP}"
14
15 #do_stuff_to_test_package#
0 Reference:
1 - Author:
2 Title:
3 Journal:
4 Year:
5 Volume:
6 Number:
7 Pages:
8 DOI:
9 PMID:
10 URL:
11 eprint:
12 Registry:
13 - Name: conda:bioconda
14 Entry:
15 - Name: SciCrunch
16 Entry:
17 - Name: bio.tools
18 Entry:
0 version=4
1
2 opts="mode=git,pretty=0.0+git%cd.%h" \
3 https://github.com/ryanlayer/ssshtest.git HEAD