[med-svn] [Git][med-team/profphd-utils][master] 10 commits: routine-update: Standards-Version: 4.5.1
Andreas Tille
gitlab at salsa.debian.org
Thu Nov 26 16:41:20 GMT 2020
Andreas Tille pushed to branch master at Debian Med / profphd-utils
Commits:
fc5e3f30 by Andreas Tille at 2020-11-26T17:36:45+01:00
routine-update: Standards-Version: 4.5.1
- - - - -
2fd589e4 by Andreas Tille at 2020-11-26T17:36:45+01:00
routine-update: debhelper-compat 13
- - - - -
187d5570 by Andreas Tille at 2020-11-26T17:36:48+01:00
routine-update: Remove trailing whitespace in debian/changelog
- - - - -
ca220e29 by Andreas Tille at 2020-11-26T17:36:48+01:00
routine-update: Remove trailing whitespace in debian/copyright
- - - - -
a331f2ba by Andreas Tille at 2020-11-26T17:36:48+01:00
routine-update: Add salsa-ci file
- - - - -
0127c01a by Andreas Tille at 2020-11-26T17:36:48+01:00
routine-update: Rules-Requires-Root: no
- - - - -
39fddfc0 by Andreas Tille at 2020-11-26T17:36:55+01:00
Use secure URI in Homepage field.
Changes-By: lintian-brush
Fixes: lintian: homepage-field-uses-insecure-uri
See-also: https://lintian.debian.org/tags/homepage-field-uses-insecure-uri.html
- - - - -
1f28535e by Andreas Tille at 2020-11-26T17:36:58+01:00
Replace use of deprecated $ADTTMP with $AUTOPKGTEST_TMP.
Changes-By: lintian-brush
Fixes: lintian: uses-deprecated-adttmp
See-also: https://lintian.debian.org/tags/uses-deprecated-adttmp.html
- - - - -
d798daf5 by Andreas Tille at 2020-11-26T17:36:58+01:00
routine-update: watch file standard 4
- - - - -
2e95010d by Andreas Tille at 2020-11-26T17:39:04+01:00
routine-update: Ready to upload to unstable
- - - - -
8 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- + debian/salsa-ci.yml
- debian/tests/convert-seq-test
- debian/tests/filter-hssp-test
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,17 @@
+profphd-utils (1.0.10-6) unstable; urgency=medium
+
+ * Standards-Version: 4.5.1 (routine-update)
+ * debhelper-compat 13 (routine-update)
+ * Remove trailing whitespace in debian/changelog (routine-update)
+ * Remove trailing whitespace in debian/copyright (routine-update)
+ * Add salsa-ci file (routine-update)
+ * Rules-Requires-Root: no (routine-update)
+ * Use secure URI in Homepage field.
+ * Replace use of deprecated $ADTTMP with $AUTOPKGTEST_TMP.
+ * watch file standard 4 (routine-update)
+
+ -- Andreas Tille <tille at debian.org> Thu, 26 Nov 2020 17:36:58 +0100
+
profphd-utils (1.0.10-5) unstable; urgency=medium
* Drop unneeded get-orig-source target
@@ -21,7 +35,7 @@ profphd-utils (1.0.10-3) unstable; urgency=medium
* add debian/examples/ to use with testsuite
* add profphd-utils.examples
* add testsuite for autopkgtest
- * add files in debian/examples/ to debian/copyright,
+ * add files in debian/examples/ to debian/copyright,
* run cme fix dpkg-copyright
* add debian/docs
* add debian/README.test
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11
=====================================
debian/control
=====================================
@@ -4,12 +4,13 @@ Uploaders: Laszlo Kajan <lkajan at rostlab.org>,
Andreas Tille <tille at debian.org>
Section: science
Priority: optional
-Build-Depends: debhelper (>= 11~),
+Build-Depends: debhelper-compat (= 13),
gfortran
-Standards-Version: 4.2.1
+Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/med-team/profphd-utils
Vcs-Git: https://salsa.debian.org/med-team/profphd-utils.git
-Homepage: http://www.rostlab.org/
+Homepage: https://www.rostlab.org/
+Rules-Requires-Root: no
Package: profphd-utils
Architecture: any
=====================================
debian/copyright
=====================================
@@ -27,7 +27,7 @@ Copyright:
2009-2013 L. Kajan <lkajan at rostlab.org> Laszlo Kajan <lkajan at rostlab.org> Technical University Munich (Munich, DE)
License: GPL-2+
Comment: example files are used in testsuite for autopkgtest. They were taken
- from `profphd` source package to remove profphd package dependency in
+ from `profphd` source package to remove profphd package dependency in
debian/control.
.
In profphd upstream these files were found in the following locations:
=====================================
debian/salsa-ci.yml
=====================================
@@ -0,0 +1,4 @@
+---
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
=====================================
debian/tests/convert-seq-test
=====================================
@@ -6,12 +6,12 @@ set -e
pkg=profphd-utils
-if [ "$ADTTMP" = "" ] ; then
- ADTTMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
- trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
+if [ "$AUTOPKGTEST_TMP" = "" ] ; then
+ AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
+ trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi
-cd $ADTTMP
+cd $AUTOPKGTEST_TMP
cp -a /usr/share/doc/${pkg}/examples/* .
find . -type f -name "*.gz" -exec gunzip \{\} \;
=====================================
debian/tests/filter-hssp-test
=====================================
@@ -6,12 +6,12 @@ set -e
pkg=profphd-utils
-if [ "$ADTTMP" = "" ] ; then
- ADTTMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
- trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
+if [ "$AUTOPKGTEST_TMP" = "" ] ; then
+ AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
+ trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi
-cd $ADTTMP
+cd $AUTOPKGTEST_TMP
cp -a /usr/share/doc/${pkg}/examples/* .
find . -type f -name "*.gz" -exec gunzip \{\} \;
=====================================
debian/watch
=====================================
@@ -1,2 +1,2 @@
-version=3
+version=4
ftp://rostlab.org/profphd-utils/profphd-utils-([0-9.]+)\.tar\.gz
View it on GitLab: https://salsa.debian.org/med-team/profphd-utils/-/compare/2a0bf44d2825329794730473dfe9058b93716445...2e95010d686b314cd164085db11e621ccf403f61
--
View it on GitLab: https://salsa.debian.org/med-team/profphd-utils/-/compare/2a0bf44d2825329794730473dfe9058b93716445...2e95010d686b314cd164085db11e621ccf403f61
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20201126/d0c6bbcb/attachment-0001.html>
More information about the debian-med-commit
mailing list