[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1053634: marked as done (Fix for failing autopkgtest)



Your message dated Sun, 08 Oct 2023 07:34:31 +0000
with message-id <E1qpOJ5-00FnkE-50@fasolo.debian.org>
and subject line Bug#1053634: fixed in ocaml-odoc 2.2.1-2
has caused the Debian Bug report #1053634,
regarding Fix for failing autopkgtest
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 owner@bugs.debian.org
immediately.)


-- 
1053634: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1053634
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Source: ocaml-odoc
Version: 2.2.1-1
Severity: normal
Tags: patch
Affects: quilt

Dear Ocaml-Team,

I've uploaded the latest release of quilt, v0.67. In that version, quilt has changed the returned error code of the push and pop commands. If the series file is missing or empty, both commands previously returned the error code 2. Now, the error code in this situation is 1.

In your autopkgtest, you call quilt push and check for the error code 2. However, there is no debian/patches/series in ocaml-odoc, so quilt now returns error code 1 which results in a failing autopkgtest of ocaml-odoc.

This, in turn, results in blocking the testing migration of quilt.

I think it would help to check for the existence of the series file before calling quilt, like in the attached patch.

Please consider applying that patch (or similar code).

Regards,
Tobias
--- a/odoc-on-odoc	2023-10-07 17:22:59.113417298 +0200
+++ b/odoc-on-odoc	2023-10-07 17:22:34.537344295 +0200
@@ -12,7 +12,9 @@
 cd ${outdir}
 
 set +e
-QUILT_PATCHES=debian/patches quilt push -a 2>&1
+if [ -f debian/patches/series ]; then
+        QUILT_PATCHES=debian/patches quilt push -a 2>&1
+fi
 # quilt exit status is 2 when series is already fully applied
 if [ $? -eq 1 ]; then exit 1; fi
 set -e

Attachment: OpenPGP_signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: ocaml-odoc
Source-Version: 2.2.1-2
Done: Stéphane Glondu <glondu@debian.org>

We believe that the bug you reported is fixed in the latest version of
ocaml-odoc, 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 1053634@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stéphane Glondu <glondu@debian.org> (supplier of updated ocaml-odoc 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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 08 Oct 2023 09:04:17 +0200
Source: ocaml-odoc
Architecture: source
Version: 2.2.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Changed-By: Stéphane Glondu <glondu@debian.org>
Closes: 1053634
Changes:
 ocaml-odoc (2.2.1-2) unstable; urgency=medium
 .
   [ Stéphane Glondu ]
   * Team upload
 .
   [ Dr. Tobias Quathamer ]
   * Check for existence of debian/patches/series in autopkgtest (Closes:
     #1053634)
Checksums-Sha1:
 56e2e6773d0846e83fd73b73d43bd9c9a3b2eb0a 2182 ocaml-odoc_2.2.1-2.dsc
 8c535856656de79bbad01629449b02f1d364c5de 4740 ocaml-odoc_2.2.1-2.debian.tar.xz
Checksums-Sha256:
 e5f8346d5a462d9caf06c86f04aba197630a961acbe7b6894b1cd8ff5579e90f 2182 ocaml-odoc_2.2.1-2.dsc
 ed1b9d6566a66cab59f5a773d5e190352077bc13f0d7c669698e8ed8694fcf43 4740 ocaml-odoc_2.2.1-2.debian.tar.xz
Files:
 6a2146db411ebab33e40dcb2c81344c6 2182 ocaml optional ocaml-odoc_2.2.1-2.dsc
 79de135155362448c6f5606f6278ebfd 4740 ocaml optional ocaml-odoc_2.2.1-2.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQFGBAEBCgAwFiEEbeJOl+yohsxW5iUOIbju8bGJMIEFAmUiViwSHGdsb25kdUBk
ZWJpYW4ub3JnAAoJECG47vGxiTCB3XMIAKkJz+Cwnmtvs+OBSonz0eUh826SjKfZ
MGvuhqZlOgiiBtIx8b9MzUryAffSPgNbxh08sKHjUzHjoXoRYZMMiev5RYBbk4q3
t/82gpD7QVuQ+k3IT6+23a/KtRJYFMWAuZOKp45pGrJhM/UcJDYmnFK7Q+Js4PNc
AVNk7rxxEfO6wtDtJvs2ySkInexgm6rvOVBo56HPxpAikvcPWhIeK1TrxZrmtV31
QjZQup6TmrMLGf2MpHhIMOntlFO5jl5lSBc4Y1jwlN8NwzKxWwrMtX/LCOPr70Os
q13AUdr1npBvm0BlcWdn16KtNTO3+6PX6Sl34VnPJk8fHckq9XEkdF0=
=Ga40
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: