diff -Nru librostlab-1.0.20/debian/changelog librostlab-1.0.20/debian/changelog --- librostlab-1.0.20/debian/changelog 2019-12-10 08:26:31.000000000 +0000 +++ librostlab-1.0.20/debian/changelog 2020-02-25 07:30:40.000000000 +0000 @@ -1,3 +1,18 @@ +librostlab (1.0.20-10) unstable; urgency=medium + + [ Nilesh Patra ] + * Modify test to print values + * Use AUTOPKGTEST_TMP + * Add "Rules-Requires-Root:no" + * Switch to https + + [ Andreas Tille ] + * Standards-Version: 4.5.0 (routine-update) + * Add salsa-ci file (routine-update) + * Unique name run-unit-test for autopkgtest script + + -- Andreas Tille Tue, 25 Feb 2020 08:30:40 +0100 + librostlab (1.0.20-9) unstable; urgency=medium [ Helmut Grohne ] diff -Nru librostlab-1.0.20/debian/control librostlab-1.0.20/debian/control --- librostlab-1.0.20/debian/control 2019-12-10 08:26:31.000000000 +0000 +++ librostlab-1.0.20/debian/control 2020-02-25 07:30:40.000000000 +0000 @@ -14,10 +14,11 @@ texlive-latex-extra, texlive-plain-generic, sphinx-common -Standards-Version: 4.4.1 +Standards-Version: 4.5.0 Vcs-Browser: https://salsa.debian.org/med-team/librostlab Vcs-Git: https://salsa.debian.org/med-team/librostlab.git Homepage: https://rostlab.org/ +Rules-Requires-Root: no Package: librostlab3 Architecture: any diff -Nru librostlab-1.0.20/debian/copyright librostlab-1.0.20/debian/copyright --- librostlab-1.0.20/debian/copyright 2019-12-10 08:26:31.000000000 +0000 +++ librostlab-1.0.20/debian/copyright 2020-02-25 07:30:40.000000000 +0000 @@ -24,7 +24,7 @@ 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 . + along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. @@ -41,7 +41,7 @@ GNU Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . + along with this program. If not, see . . On Debian systems, the complete text of the GNU Lesser General Public License version 3 can be found in `/usr/share/common-licenses/LGPL-3'. diff -Nru librostlab-1.0.20/debian/examples/blosum62_test.cpp librostlab-1.0.20/debian/examples/blosum62_test.cpp --- librostlab-1.0.20/debian/examples/blosum62_test.cpp 2019-12-10 08:26:31.000000000 +0000 +++ librostlab-1.0.20/debian/examples/blosum62_test.cpp 2020-02-25 07:30:40.000000000 +0000 @@ -5,6 +5,8 @@ #include #include +const signed char rostlab::blosum62[27][27] = {}; + int main() { for (int i = 0; i < 27; i++) { for (int j = 0; j < 27; j++) { diff -Nru librostlab-1.0.20/debian/salsa-ci.yml librostlab-1.0.20/debian/salsa-ci.yml --- librostlab-1.0.20/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ librostlab-1.0.20/debian/salsa-ci.yml 2020-02-25 07:30:40.000000000 +0000 @@ -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 diff -Nru librostlab-1.0.20/debian/tests/installation-test librostlab-1.0.20/debian/tests/installation-test --- librostlab-1.0.20/debian/tests/installation-test 2019-12-10 08:26:31.000000000 +0000 +++ librostlab-1.0.20/debian/tests/installation-test 2020-02-25 07:30:40.000000000 +0000 @@ -6,12 +6,12 @@ pkg=librostlab3-dev -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 \{\} \;