Your message dated Sun, 05 Nov 2023 12:04:03 +0000
with message-id <[email protected]>
and subject line Bug#1000453: fixed in debomatic 0.26-3
has caused the Debian Bug report #1000453,
regarding debomatic: Reduce dependency in test scripts
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1000453: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1000453
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: debomatic
Severity: wishlist
Tags: patch
Hello.
In #983538, the maintainer has requested a patch improving all
tests instead of a single one.
Such a suggestion is attached.
>From 91c5a43e121b8eb2cd68c32d01165ef4cadf2abc Mon Sep 17 00:00:00 2001
From: Nicolas Boulenguez <[email protected]>
Date: Sun, 21 Feb 2021 11:40:25 +0100
Subject: Reduce redundancy in test scripts
diff --git a/debian/tests/build b/debian/tests/build
index 82dea60..9aa7c52 100755
--- a/debian/tests/build
+++ b/debian/tests/build
@@ -1,39 +1,7 @@
#!/bin/sh
-set -e
+. debian/tests/debomatictest.sh
-cd "$AUTOPKGTEST_TMP"
-
-sed -i 's/modules: True/modules: False/' /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "modules: False" || exit 1
-sed -i "s|incoming: /incoming|incoming: $AUTOPKGTEST_TMP/incoming|"
/etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "incoming: $AUTOPKGTEST_TMP/incoming" ||
exit 1
-sed -i "s|loglevel: info|loglevel: debug|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "loglevel: debug" || exit 1
-
-mkdir -p $HOME/.dput.d/profiles
-cat > $HOME/.dput.d/profiles/local.json << EOF
-{
- "meta": "debomatic",
- "incoming": "$AUTOPKGTEST_TMP/incoming",
- "method": "local",
- "check-debs": {
- "skip": true
- }
-}
-EOF
-
-mkdir "$AUTOPKGTEST_TMP"/incoming
-version=$(rmadison -u debian -a source -s unstable hello | cut -d"|" -f 2 |
xargs)
-upstream=$(echo $version | cut -d"-" -f1 | xargs)
-component=$(rmadison -u debian -a source -s unstable hello | cut -d"|" -f 3 |
cut -d"/" -f2 | sed 's/unstable/main/' | xargs)
-dget -u http://deb.debian.org/debian/pool/$component/h/hello/hello_$version.dsc
-cd hello-$upstream/
-debuild -S -d -uc -us
-dput local ../hello_"$version"_source.changes
-debomatic -c /etc/debomatic/debomatic.conf -o
"$AUTOPKGTEST_TMP"/incoming/hello_"$version"_source.changes -i
-cat
"$AUTOPKGTEST_TMP"/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-grep
"$AUTOPKGTEST_TMP"/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Status: successful" || exit 1
-
-rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-*
-rm -fr /etc/sbuild/chroot/unstable-*-debomatic
-rm -fr /$AUTOPKGTEST_TMP/incoming/unstable/unstable
+debomatictest_rebuild
+debomatictest_create_conf
+debomatic -c $conf -o incoming/${pkg}_${version}_source.changes -i
+debomatictest_check_log
diff --git a/debian/tests/command-binnmu b/debian/tests/command-binnmu
index f19a72e..05d424f 100755
--- a/debian/tests/command-binnmu
+++ b/debian/tests/command-binnmu
@@ -1,26 +1,13 @@
#!/bin/sh
-set -e
-
-cd "$AUTOPKGTEST_TMP"
-
-sed -i 's/modules: True/modules: False/' /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "modules: False" || exit 1
-sed -i "s|incoming: /incoming|incoming: $AUTOPKGTEST_TMP/incoming|"
/etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "incoming: $AUTOPKGTEST_TMP/incoming" ||
exit 1
-sed -i "s|loglevel: info|loglevel: debug|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "loglevel: debug" || exit 1
-
-mkdir "$AUTOPKGTEST_TMP"/incoming
-version=$(rmadison -u debian -a source -s unstable hello | cut -d"|" -f 2 |
xargs)
-echo "binnmu hello_$version unstable 1 \"Deb-o-Matic test suite\" Luca
Falavigna <[email protected]>" > "$AUTOPKGTEST_TMP"/incoming/binnmu.commands
-debomatic -c /etc/debomatic/debomatic.conf -o
/$AUTOPKGTEST_TMP/incoming/binnmu.commands -i
-cat
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Status: successful" || exit 1
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Maintainer: Luca Falavigna <[email protected]>" || exit 1
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "hello ($version+b1) unstable" || exit 1
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "* Binary-only non-maintainer upload for" || exit 1
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "* Deb-o-Matic test suite" || exit 1
-
-rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-*
-rm -fr /etc/sbuild/chroot/unstable-*-debomatic
-rm -fr /$AUTOPKGTEST_TMP/incoming/unstable/unstable
+. debian/tests/debomatictest.sh
+
+commands=incoming/binnmu.commands
+maintainer='Luca Falavigna <[email protected]>'
+desc='Deb-o-Matic test suite'
+echo "binnmu ${pkg}_$version unstable 1 \"$desc\" $maintainer" > $commands
+debomatictest_create_conf
+debomatic -c $conf -o $commands -i
+debomatictest_check_log "Maintainer: $maintainer" \
+ "$pkg ($version+b1) unstable" \
+ '* Binary-only non-maintainer upload for' \
+ "* $desc"
diff --git a/debian/tests/command-builddep b/debian/tests/command-builddep
index 8712c7f..2058e2f 100755
--- a/debian/tests/command-builddep
+++ b/debian/tests/command-builddep
@@ -1,24 +1,9 @@
#!/bin/sh
-set -e
-
-cd "$AUTOPKGTEST_TMP"
-
-sed -i 's/modules: True/modules: False/' /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "modules: False" || exit 1
-sed -i "s|incoming: /incoming|incoming: $AUTOPKGTEST_TMP/incoming|"
/etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "incoming: $AUTOPKGTEST_TMP/incoming" ||
exit 1
-sed -i "s|loglevel: info|loglevel: debug|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "loglevel: debug" || exit 1
-
-mkdir "$AUTOPKGTEST_TMP"/incoming
-version=$(rmadison -u debian -a source -s unstable hello | cut -d"|" -f 2 |
xargs)
-bdversion=$(rmadison -u debian -a source -s unstable lintian | cut -d"|" -f 2
| xargs)
-echo "builddep hello_$version unstable lintian (>= $bdversion)" >
"$AUTOPKGTEST_TMP"/incoming/builddep.commands
-debomatic -c /etc/debomatic/debomatic.conf -o
/$AUTOPKGTEST_TMP/incoming/builddep.commands -i
-cat
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Status: successful" || exit 1
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Setting up lintian ($bdversion)" || exit 1
-
-rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-*
-rm -fr /etc/sbuild/chroot/unstable-*-debomatic
-rm -fr /$AUTOPKGTEST_TMP/incoming/unstable/unstable
+. debian/tests/debomatictest.sh
+
+commands=incoming/builddep.commands
+bdversion=$(debomatictest_version lintian)
+echo "builddep ${pkg}_$version unstable lintian (>= $bdversion)" > $commands
+debomatictest_create_conf
+debomatic -c $conf -o $commands -i
+debomatictest_check_log "Setting up lintian ($bdversion)"
diff --git a/debian/tests/command-porter b/debian/tests/command-porter
index ac48a20..fbf9091 100755
--- a/debian/tests/command-porter
+++ b/debian/tests/command-porter
@@ -1,23 +1,9 @@
#!/bin/sh
-set -e
-
-cd "$AUTOPKGTEST_TMP"
-
-sed -i 's/modules: True/modules: False/' /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "modules: False" || exit 1
-sed -i "s|incoming: /incoming|incoming: $AUTOPKGTEST_TMP/incoming|"
/etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "incoming: $AUTOPKGTEST_TMP/incoming" ||
exit 1
-sed -i "s|loglevel: info|loglevel: debug|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "loglevel: debug" || exit 1
-
-mkdir "$AUTOPKGTEST_TMP"/incoming
-version=$(rmadison -u debian -a source -s unstable hello | cut -d"|" -f 2 |
xargs)
-echo "porter hello_$version unstable Luca Falavigna <[email protected]>" >
"$AUTOPKGTEST_TMP"/incoming/porter.commands
-debomatic -c /etc/debomatic/debomatic.conf -o
/$AUTOPKGTEST_TMP/incoming/porter.commands -i
-cat
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Status: successful" || exit 1
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Maintainer: Luca Falavigna <[email protected]>" || exit 1
-
-rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-*
-rm -fr /etc/sbuild/chroot/unstable-*-debomatic
-rm -fr /$AUTOPKGTEST_TMP/incoming/unstable/unstable
+. debian/tests/debomatictest.sh
+
+commands=incoming/porter.commands
+maintainer='Luca Falavigna <[email protected]>'
+echo "porter ${pkg}_$version unstable $maintainer" > $commands
+debomatictest_create_conf
+debomatic -c $conf -o $commands -i
+debomatictest_check_log "Maintainer: $maintainer"
diff --git a/debian/tests/command-rebuild b/debian/tests/command-rebuild
index 1978014..d4bcd9f 100755
--- a/debian/tests/command-rebuild
+++ b/debian/tests/command-rebuild
@@ -1,22 +1,8 @@
#!/bin/sh
-set -e
+. debian/tests/debomatictest.sh
-cd "$AUTOPKGTEST_TMP"
-
-sed -i 's/modules: True/modules: False/' /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "modules: False" || exit 1
-sed -i "s|incoming: /incoming|incoming: $AUTOPKGTEST_TMP/incoming|"
/etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "incoming: $AUTOPKGTEST_TMP/incoming" ||
exit 1
-sed -i "s|loglevel: info|loglevel: debug|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "loglevel: debug" || exit 1
-
-mkdir "$AUTOPKGTEST_TMP"/incoming
-version=$(rmadison -u debian -a source -s unstable hello | cut -d"|" -f 2 |
xargs)
-echo "rebuild hello_$version unstable" >
"$AUTOPKGTEST_TMP"/incoming/rebuild.commands
-debomatic -c /etc/debomatic/debomatic.conf -o
/$AUTOPKGTEST_TMP/incoming/rebuild.commands -i
-cat
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-grep
/$AUTOPKGTEST_TMP/incoming/unstable/pool/hello_$version/hello_$version.buildlog
-e "Status: successful" || exit 1
-
-rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-*
-rm -fr /etc/sbuild/chroot/unstable-*-debomatic
-rm -fr /$AUTOPKGTEST_TMP/incoming/unstable/unstable
+commands=incoming/rebuild.commands
+echo "rebuild ${pkg}_$version unstable" > $commands
+debomatictest_create_conf
+debomatic -c $conf -o $commands -i
+debomatictest_check_log
diff --git a/debian/tests/control b/debian/tests/control
index 495d20f..226b7e4 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -10,31 +10,10 @@ Depends: debomatic,
dput-ng
Restrictions: needs-root, allow-stderr
-Tests: command-rebuild
-Depends: debomatic,
- devscripts,
- wget,
- liburi-perl,
- ca-certificates
-Restrictions: needs-root, allow-stderr
-
-Tests: command-porter
-Depends: debomatic,
- devscripts,
- wget,
- liburi-perl,
- ca-certificates
-Restrictions: needs-root, allow-stderr
-
Tests: command-binnmu
-Depends: debomatic,
- devscripts,
- wget,
- liburi-perl,
- ca-certificates
-Restrictions: needs-root, allow-stderr
-
-Tests: command-builddep
+ command-builddep
+ command-porter
+ command-rebuild
Depends: debomatic,
devscripts,
wget,
diff --git a/debian/tests/crossbuild b/debian/tests/crossbuild
index 01d8448..ba04786 100755
--- a/debian/tests/crossbuild
+++ b/debian/tests/crossbuild
@@ -1,55 +1,15 @@
#!/bin/sh
-set -e
-cd "$AUTOPKGTEST_TMP"
-
-sed -i 's/modules: True/modules: False/' /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "modules: False" || exit 1
-sed -i "s|incoming: /incoming|incoming: $AUTOPKGTEST_TMP/incoming|"
/etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "incoming: $AUTOPKGTEST_TMP/incoming" ||
exit 1
-sed -i "s|loglevel: info|loglevel: debug|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "loglevel: debug" || exit 1
-sed -i "s|crossbuild: False|crossbuild: True|" /etc/debomatic/debomatic.conf
-grep /etc/debomatic/debomatic.conf -e "crossbuild: True" || exit 1
-if [ $(dpkg-architecture -qDEB_HOST_ARCH) = "arm64" ]
-then
- sed -i "s|hostarchitecture: None|hostarchitecture: amd64|"
/etc/debomatic/debomatic.conf
- grep /etc/debomatic/debomatic.conf -e "hostarchitecture: amd64" || exit
1
+if [ $(dpkg-architecture -qDEB_HOST_ARCH) = arm64 ]; then
+ hostarchitecture=amd64
else
- sed -i "s|hostarchitecture: None|hostarchitecture: arm64|"
/etc/debomatic/debomatic.conf
- grep /etc/debomatic/debomatic.conf -e "hostarchitecture: arm64" || exit
1
+ hostarchitecture=arm64
fi
+pkg=hello-traditional
-mkdir -p $HOME/.dput.d/profiles
-cat > $HOME/.dput.d/profiles/local.json << EOF
-{
- "meta": "debomatic",
- "incoming": "$AUTOPKGTEST_TMP/incoming",
- "method": "local",
- "check-debs": {
- "skip": true
- }
-}
-EOF
-
-mkdir "$AUTOPKGTEST_TMP"/incoming
-version=$(rmadison -u debian -a source -s unstable hello-traditional | cut
-d"|" -f 2 | xargs)
-upstream=$(echo $version | cut -d"-" -f1 | xargs)
-component=$(rmadison -u debian -a source -s unstable hello-traditional | cut
-d"|" -f 3 | cut -d"/" -f2 | sed 's/unstable/main/' | xargs)
-dget -u
http://deb.debian.org/debian/pool/$component/h/hello-traditional/hello-traditional_$version.dsc
-cd hello-traditional-$upstream/
-debuild -S -d -uc -us
-dput local ../hello-traditional_"$version"_source.changes
-debomatic -c /etc/debomatic/debomatic.conf -o
"$AUTOPKGTEST_TMP"/incoming/hello-traditional_"$version"_source.changes -i
-cat
"$AUTOPKGTEST_TMP"/incoming/unstable/pool/hello-traditional_$version/hello-traditional_$version.buildlog
-grep
"$AUTOPKGTEST_TMP"/incoming/unstable/pool/hello-traditional_$version/hello-traditional_$version.buildlog
-e "Status: successful" || exit 1
-if [ $(dpkg-architecture -qDEB_HOST_ARCH) = "arm64" ]
-then
- grep
"$AUTOPKGTEST_TMP"/incoming/unstable/pool/hello-traditional_$version/hello-traditional_$version.buildlog
-e "hello-traditional_"$version"_amd64.changes:$" || exit 1
-else
- grep
"$AUTOPKGTEST_TMP"/incoming/unstable/pool/hello-traditional_$version/hello-traditional_$version.buildlog
-e "hello-traditional_"$version"_arm64.changes:$" || exit 1
-fi
+. debian/tests/debomatictest.sh
-rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-*
-rm -fr /etc/sbuild/chroot/unstable-*-debomatic
-rm -fr /$AUTOPKGTEST_TMP/incoming/unstable/unstable
+debomatictest_rebuild
+debomatictest_create_conf
+debomatic -c $conf -o incoming/${pkg}_${version}_source.changes -i
+debomatictest_check_log ${pkg}_${version}_$hostarchitecture.changes:
diff --git a/debian/tests/debomatictest.sh b/debian/tests/debomatictest.sh
new file mode 100644
index 0000000..ca8e79d
--- /dev/null
+++ b/debian/tests/debomatictest.sh
@@ -0,0 +1,100 @@
+# Helper for the debomatic tests in this directory.
+set -Ceu
+
+# Environment variables: AUTOPKGTEST_TMP HOME
+
+debomatictest_version() {
+ # 1: source package name
+ # -> currently available version
+ rmadison -u debian -a source -s unstable $1 \
+ | cut -d\| -f2 \
+ | xargs
+}
+debomatictest_rebuild() {
+ # Get the source.
+ local component=$(rmadison -u debian -a source -s unstable $pkg \
+ | cut -d\| -f3 \
+ | cut -d/ -f2 \
+ | sed s/unstable/main/ \
+ | xargs)
+ local initial=${pkg%${pkg#?}}
+ local dsc=${pkg}_$version.dsc
+ dget -u http://deb.debian.org/debian/pool/$component/$initial/$pkg/$dsc
+
+ # Rebuild it.
+ cd $pkg-${version%%-*}
+ debuild -S -d -uc -us
+ cd ..
+
+ # Add to local repository.
+ local profiles="$HOME"/.dput.d/profiles
+
+ mkdir -p "$profiles"
+ cat >| "$profiles"/local.json << EOF
+{
+ "meta": "debomatic",
+ "incoming": "$AUTOPKGTEST_TMP/incoming",
+ "method": "local",
+ "check-debs": {
+ "skip": true
+ }
+}
+EOF
+
+ dput local ${pkg}_${version}_source.changes
+}
+debomatictest_create_conf() {
+ if [ $hostarchitecture = None ]; then
+ local crossbuild=False
+ else
+ local crossbuild=True
+ fi
+
+ sed /etc/debomatic/debomatic.conf \
+ -e 's/^modules: True/modules: False/' \
+ -e "s|^incoming: .*|incoming: $AUTOPKGTEST_TMP/incoming|" \
+ -e 's|^loglevel: .*|loglevel: debug|' \
+ -e "s|^crossbuild: .*|crossbuild: $crossbuild|" \
+ -e "s|^hostarchitecture: .*|hostarchitecture: $hostarchitecture|" \
+ > $conf
+
+ grep -F 'modules: False' $conf
+ grep -F "incoming: $AUTOPKGTEST_TMP/incoming" $conf
+ grep -F 'loglevel: debug' $conf
+ grep -F "crossbuild: $crossbuild" $conf
+ grep -F "hostarchitecture: $hostarchitecture" $conf
+}
+debomatictest_check_log() {
+ # Check status in the log. Each argument is also checked.
+ local log=incoming/unstable/pool/${pkg}_$version/${pkg}_$version.buildlog
+ local line
+
+ cat $log
+
+ for line in 'Status: successful' "$@"; do
+ grep -F "$line" $log
+ done
+}
+debomatictest_clean() {
+ rm -fr /etc/schroot/chroot.d/unstable-*-debomatic-* \
+ /etc/sbuild/chroot/unstable-*-debomatic
+}
+
+# Common initialization
+
+# Files created by tests outside AUTOPKGTEST_TMP must be removed both
+# before the test (in case another test run manually has just failed
+# without cleaning) and after the test (in case the test is not run in
+# a throwable chroot).
+debomatictest_clean
+trap debomatictest_clean EXIT
+
+cd "$AUTOPKGTEST_TMP"
+mkdir incoming
+
+# Non-default values may be set *before* inclusion of this file.
+hostarchitecture=${hostarchitecture:-None}
+pkg=${pkg:-hello}
+
+version=`debomatictest_version $pkg`
+conf=debomatic.conf
--- End Message ---
--- Begin Message ---
Source: debomatic
Source-Version: 0.26-3
Done: Luca Falavigna <[email protected]>
We believe that the bug you reported is fixed in the latest version of
debomatic, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Luca Falavigna <[email protected]> (supplier of updated debomatic package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sun, 05 Nov 2023 12:22:24 +0100
Source: debomatic
Binary: debomatic
Architecture: source
Version: 0.26-3
Distribution: unstable
Urgency: medium
Maintainer: Luca Falavigna <[email protected]>
Changed-By: Luca Falavigna <[email protected]>
Description:
debomatic - automatic build machine for Debian source packages
Closes: 1000453 1054862
Changes:
debomatic (0.26-3) unstable; urgency=medium
.
[ Debian Janitor ]
* Remove constraints unnecessary since buster:
+ Build-Depends: Drop versioned constraint on python3.
+ debomatic: Drop versioned constraint on lsb-base, sbuild and schroot in
Depends.
+ debomatic: Drop versioned constraint on autopkgtest and piuparts in
Suggests.
+ debomatic: Drop versioned constraint on python3-pyinotify in Recommends.
.
[ Luca Falavigna ]
* debian/clean:
- Remove egg-info content at build time.
* debian/control:
* Compliant with Debian Policy 4.6.2.
- Drop lsb-base from Depends.
- Drop ubuntu-archive-keyring and ubuntu-keyring from Suggests.
* debian/copyright:
* Update copyright years.
* debian/NEWS:
- Remove NEWS file, versions are no longer in oldstable.
* debian/rules:
- Handle case when egg-info directory is not empty (Closes: #1054862).
.
[ Nicolas Boulenguez ]
* debian/tests/*:
- Reduce dependency in test scripts (Closes: #1000453).
Checksums-Sha1:
694590733f5101adc9fed2e0441a23555db09700 2272 debomatic_0.26-3.dsc
b57f029667ad4d693caa068682492456c34e7dd8 8696 debomatic_0.26-3.debian.tar.xz
032a08332fefaec5b1b6973c68f0068f1962162c 9336 debomatic_0.26-3_amd64.buildinfo
Checksums-Sha256:
831a0891eb8a554f1e987ee3030d909353f7e9d046fc2f00892f44dc21f2de53 2272
debomatic_0.26-3.dsc
35b0afc1468c1ef6d7dbd0d64fe9f344f3475c22949fbbf738ac87181c2a1d45 8696
debomatic_0.26-3.debian.tar.xz
cea44a6c0a060a889249912ab07212ea1125c3d41e1d4d4779567093f00db363 9336
debomatic_0.26-3_amd64.buildinfo
Files:
12a29e5cc3eacb2bf38fe8ac0d497dcb 2272 devel optional debomatic_0.26-3.dsc
45c55856e963ac4d5fbcf6affd03c5cd 8696 devel optional
debomatic_0.26-3.debian.tar.xz
123140488d9b0a13ba8c41b322ef88bd 9336 devel optional
debomatic_0.26-3_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEE3cU+UTD9CCI/mJRWSQhq0+vi8x8FAmVHgUMACgkQSQhq0+vi
8x+lyBAAmxslAbJmohMi0qcO9BRg17LVce/avye3oIHiHnQsOjq4TwleC9Obb4GJ
O3Bblm3BfbrHrJI/gSxMz9OfriInjT+ptdLpV6auGpUh89XJ6VTG0XErEx5P0AH4
H4eNTdrHlkBVTGwhDAR5Fd+7bUbEOrJb5fzz4GvnCNMGlH3mZaH9zYsfa3T2R+qA
XGLyXb5YDZK0ufqJd3OPFkSEPHlbm1Aq03uWG4QxGnC95EPpWbhZaI1ZQ/gsYnXK
z+5ktSeIxbmSkZ/uqfFFgkw6ev/eWCVgtrE7toSGXPYqwzB1ElIW5twgygiAtWkT
Ht3aUXPWmUZAHsL+I+RoOc0NQAj/PgAVImQnG+5jK8Sq3fN9cXZRSfABu+283/4u
25eG9lTD5dZCR1/DwDx94ZHGktp6U4QNUInHXD8JscvqHFNdFbmYt5wk0PlxREiU
VYcQ1/kX5Bwm+UNSmFGqjqTIfK+nxAAhW9X0Q7yevN9osKjzyZOUpATqDlwidT9u
sKg6PHeI050cU05mdhiBtkQJ36YPgH59ySYIrsGjSm9VS4t7PEVEASfbZ/yFT27m
YzT42wwDspePk1shY9Aiu+4iaysez4up6oM88a0MAXMa9jOw27Hzl3gaUS5RrQa8
THmDXYiROewvdypkezojcGfenWHxui0362vbjUIWXvFUj8OI3og=
=BDp5
-----END PGP SIGNATURE-----
--- End Message ---