Hi Alastair,

Étienne Mollier, on 2024-08-15:
> The build failure on i386 causes a sprawl of autoremoval
> notifications in reverse dependencies, so if you're caught by
> time, I'm considering the option of proceeding to an NMU.

As #1078738 is blocking the migration of the fix for #1074892,
I thought appropriate to upload to DELAYED/2.  Let me know if
you prefer it to be rescheduled to sooner or later.

The full diff is in attachment so you can integrate it to your
tree.  I may also provide a formal merge request over Salsa if
you prefer it that way.

Have a nice day,  :)
-- 
  .''`.  Étienne Mollier <emoll...@debian.org>
 : :' :  pgp: 8f91 b227 c7d6 f2b1 948c  8236 793c f67e 8f0d 11da
 `. `'   sent from /dev/pts/2, please excuse my verbosity
   `-
diff -Nru csh-20240808/debian/changelog csh-20240808/debian/changelog
--- csh-20240808/debian/changelog       2024-08-08 13:02:13.000000000 +0200
+++ csh-20240808/debian/changelog       2024-08-15 12:48:30.000000000 +0200
@@ -1,3 +1,10 @@
+csh (20240808-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * g++-14.patch: fixup type mismatch. (Closes: #1078738)
+
+ -- Étienne Mollier <emoll...@debian.org>  Thu, 15 Aug 2024 12:48:30 +0200
+
 csh (20240808-1) unstable; urgency=medium
 
   * New git snapshot. Includes timespec changes needed for clean g++14
diff -Nru csh-20240808/debian/patches/g++-14.patch 
csh-20240808/debian/patches/g++-14.patch
--- csh-20240808/debian/patches/g++-14.patch    2024-08-08 13:02:13.000000000 
+0200
+++ csh-20240808/debian/patches/g++-14.patch    2024-08-15 12:47:18.000000000 
+0200
@@ -3,6 +3,7 @@
 Bug-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074892
 Last-Updated: 2024-08-08
 Forwarded: not-needed
+Reviewed-By: Étienne Mollier <emoll...@debian.org>
 
 --- a/csh.c
 +++ b/csh.c
@@ -22,7 +23,7 @@
 -static off_t
 -seekf(void *oreo, off_t off, int whence)
 +static int
-+seekf(void *oreo, off_t *off, int whence)
++seekf(void *oreo, off64_t *off, int whence)
  {
 -    return lseek(DESC(oreo), off, whence);
 +    return lseek(DESC(oreo), *off, whence);

Attachment: signature.asc
Description: PGP signature

Reply via email to