Bug#1067957: [[maude-bugs]] [EXTERNAL] Re: Maude fails to build on armhf

2024-04-10 Thread Andreas Tille
Hi,

Am Wed, Apr 10, 2024 at 03:33:53PM -0700 schrieb Steven Eker:
> I like that solution since I believe there are 64-bit platforms where long
> is 32-bits. I've updated my development version thus:
> 
>   //
>   //    timeValue.tv_sec is 64-bit since Linux kernel 5.6 but GMP doesn't
> yet have support
>   //    for long long which is a problem on platforms where long is less
> than 8 bytes.
>   //
> #if SIZEOF_LONG < 8
>   double seconds = timeValue.tv_sec;
> #else
>   long seconds = timeValue.tv_sec;
> #endif
>   mpz_class nanoSeconds(seconds);

Sounds like some working solution.  It would help if you could tag a new
released to enable us fetching a fresh tarball incorporatinig this
change.
 
> Of course I expect to drop support for 32-bit before 2038 - certainly when
> one our dependencies drops support. But I've gotten a bug report for
> building Maude on a Raspberry Pi.

Raspian is based on Debian and if the 32bit ARM architectures fail here
Raspian people have a problem.

Kind regards
   Andreas. 

-- 
https://fam-tille.de



Processed: Re: nvi: FTBFS: ../dist/../common/options_f.c:324:16: error: implicit declaration of function 'conv_enc' [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066285 [src:nvi] nvi: FTBFS: ../dist/../common/options_f.c:324:16: error: 
implicit declaration of function 'conv_enc' 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066285: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066285
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066285: nvi: FTBFS: ../dist/../common/options_f.c:324:16: error: implicit declaration of function 'conv_enc' [-Werror=implicit-function-declaration]

2024-04-10 Thread Michael Hudson-Doyle
Package: nvi
Followup-For: Bug #1066285
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
X-Debbugs-Cc: michael.hud...@ubuntu.com
Control: tags -1 patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * d/patches/add-prototypes.h: add includes and prototypes for some functions
(including prototypes for some standard functions that are only accessible
if _XOPEN_SOURCE is defined, but lots of other stuff breaks if that is
defined :/).

Thanks for considering the patch.

Cheers,
mwh

-- System Information:
Debian Release: trixie/sid
  APT prefers mantic-updates
  APT policy: (500, 'mantic-updates'), (500, 'mantic-security'), (500, 
'mantic'), (100, 'mantic-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-27-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_NZ.UTF-8:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru nvi-1.81.6/debian/control nvi-1.81.6/debian/control
--- nvi-1.81.6/debian/control   2024-03-03 09:35:03.0 +1300
+++ nvi-1.81.6/debian/control   2024-04-11 14:45:28.0 +1200
@@ -1,8 +1,7 @@
 Source: nvi
 Section: editors
 Priority: optional
-Maintainer: Ubuntu Developers 
-XSBC-Original-Maintainer: Tobias Heider 
+Maintainer: Tobias Heider 
 Standards-Version: 4.6.2
 Build-Depends:
  debhelper-compat (= 13),
diff -Nru nvi-1.81.6/debian/patches/add-prototypes.patch 
nvi-1.81.6/debian/patches/add-prototypes.patch
--- nvi-1.81.6/debian/patches/add-prototypes.patch  1970-01-01 
12:00:00.0 +1200
+++ nvi-1.81.6/debian/patches/add-prototypes.patch  2024-04-11 
14:45:28.0 +1200
@@ -0,0 +1,53 @@
+--- a/common/conv.h
 b/common/conv.h
+@@ -21,3 +21,6 @@
+   char2wchar_tinput2int;
+   wchar2char_tint2disp;
+ };
++
++extern int conv_enc (SCR *sp, int option, char *enc);
++extern void conv_init (SCR *orig, SCR *sp);
+--- a/cl/cl.h
 b/cl/cl.h
+@@ -26,6 +26,11 @@
+ #endif
+ #endif
+ 
++/*
++ * for setupterm()
++ */
++#include 
++
+ typedef struct _cl_private {
+   char ibuf[256]; /* Input keys. */
+ 
+--- a/common/multibyte.h
 b/common/multibyte.h
+@@ -5,6 +5,12 @@
+ #include 
+ #include 
+ 
++/*
++ * This is declared by wchar.h, but only if _XOPEN_SOURCE is set and lots of
++ * other things break if we define that.
++ */
++extern int wcwidth (wchar_t c);
++
+ typedef   wchar_t RCHAR_T;
+ #define RCHAR_T_MAX   ((1 << 24)-1)
+ typedef   wchar_t CHAR_T;
+--- a/cl/cl_funcs.c
 b/cl/cl_funcs.c
+@@ -31,6 +31,12 @@
+ #include "../vi/vi.h"
+ #include "cl.h"
+ 
++/*
++ * This is declared by ncurses.h, but only if _XOPEN_SOURCE is set and lots of
++ * other things break if we define that.
++ */
++extern int waddnwstr (WINDOW *,const wchar_t *,int);
++
+ static void cl_rdiv __P((SCR *));
+ 
+ static int 
diff -Nru nvi-1.81.6/debian/patches/series nvi-1.81.6/debian/patches/series
--- nvi-1.81.6/debian/patches/series2024-02-14 02:52:27.0 +1300
+++ nvi-1.81.6/debian/patches/series2024-04-11 14:44:02.0 +1200
@@ -36,3 +36,4 @@
 upstream/0036-Fix-how-keywords-are-picked-up.patch
 upstream/0037-New-macro-MEMPCPY.patch
 upstream/0038-Fix-A-word-search-for-keywords-starting-with-a-non-w.patch
+add-prototypes.patch


Bug#1066694: netdiag: FTBFS: getservent.c:121:38: error: implicit declaration of function ‘atoi’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Zixing Liu
Package: netdiag
Followup-For: Bug #1066694
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * debian/patches/gcc13.patch: Add multiple missing headers and
function prototypes.  Closes LP: #2060901.


Thanks for considering the patch.


-- System Information:
Debian Release: bookworm/sid
  APT prefers jammy-updates
  APT policy: (500, 'jammy-updates'), (500, 'jammy-security'), (500, 'jammy'), 
(100, 'jammy-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-26-generic (SMP w/10 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_CA:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -u netdiag-1.2/debian/patches/series netdiag-1.2/debian/patches/series
--- netdiag-1.2/debian/patches/series
+++ netdiag-1.2/debian/patches/series
@@ -9,3 +9,4 @@
 gcc-10.diff
 pcap_init.diff
 gcc12.patch
+gcc13.patch
only in patch2:
unchanged:
--- netdiag-1.2.orig/debian/patches/gcc13.patch
+++ netdiag-1.2/debian/patches/gcc13.patch
@@ -0,0 +1,106 @@
+Description: Add multiple missing headers and function prototypes
+Author: Zixing Liu 
+Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066694
+Bug-Ubuntu: https://bugs.launchpad.net/debian/+source/netdiag/+bug/2060901
+Forwarded: no
+Last-Update: 2024-04-10
+Index: netdiag/netwatch-1.3.1-2/netwatch.h
+===
+--- netdiag.orig/netwatch-1.3.1-2/netwatch.h
 netdiag/netwatch-1.3.1-2/netwatch.h
+@@ -38,6 +38,10 @@
+ #define SN_PROT_LOOP  164 /* Pseudo protocol for Loopback */
+ 
+ #include 
++#include 
++#include 
++#include 
++#include 
+ #include "config.h"
+ /*
+ #ifdef NETINET_SUPP_socket
+@@ -84,6 +88,11 @@ typedef unsigned short  sa_family_t;
+ 
+ 
+ #include "core.h"
++int dokeyin(int force);
++int doeth();
++int gh (int opt);
++void setuphelp();
++void uthread_wait(long usec);
+ void dispdata(int errnum);
+ void services();
+ void usage(char *arg);
+Index: netdiag/statnet-3.8/statnet.c
+===
+--- netdiag.orig/statnet-3.8/statnet.c
 netdiag/statnet-3.8/statnet.c
+@@ -7,7 +7,6 @@
+ #define MAIN_LINE 1
+ 
+ #include 
+-#include "stat.h"
+ 
+ #include "curs.h"
+ #include 
+@@ -33,6 +32,8 @@
+ #endif
+ 
+ #include 
++#include 
++#include "stat.h"
+ 
+ #define Stringify(X)  #X
+ #define Quoteify(X)   Stringify(X)
+Index: netdiag/statnet-3.8/getservent.c
+===
+--- netdiag.orig/statnet-3.8/getservent.c
 netdiag/statnet-3.8/getservent.c
+@@ -43,7 +43,7 @@ static char sccsid[] = "@(#)getservent.c
+ #endif /* LIBC_SCCS and not lint */
+ 
+ #include "inetprivate.h"
+-
++#include 
+ #define   MAXALIASES  35
+ 
+ static char SERVDB[] = _PATH_SERVICES;
+Index: netdiag/statnet-3.8/itstime.c
+===
+--- netdiag.orig/statnet-3.8/itstime.c
 netdiag/statnet-3.8/itstime.c
+@@ -8,7 +8,7 @@
+ #include "stat.h"
+ #include 
+ #include 
+-
++#include 
+ extern struct StatMemStruct *StatMem; /* pointer to shared memory segment */
+ 
+ void itstime (int errnum)
+Index: netdiag/statnet-3.8/stat.h
+===
+--- netdiag.orig/statnet-3.8/stat.h
 netdiag/statnet-3.8/stat.h
+@@ -197,7 +197,7 @@ void set_null ( struct StatMemStruct *St
+ void services ();
+ void stat_delta ( struct StatMemStruct *New, struct StatMemStruct *Prev, 
struct StatMemStruct *Delta );
+ void usage (char *arg);
+-#ifdef WINDOW
++#if CURSES_H
+ void win_show_stat( WINDOW *win, int X, int Y, int noframes, struct Tally 
*Now_ts, struct Tally *Prev_ts, struct Tally *Delta_ts, short rewrite_labels, 
short *update_labels, void *show_labels );
+ #endif
+ 
+@@ -226,10 +226,10 @@ void tally_ntoh ( int bytecode,
+ struct Tally *New_t, 
+ struct Tally *Prev_t );
+ 
+-#ifdef WINDOW
++#if CURSES_H
+ void tally_label ( struct Tally *Now_ts, WINDOW *win, int width, int height );
+ #endif
+-
++int tally (int type_wanted, struct Tally *tally);
+ 
+ /* Now some redefinitions of  stuff.  With the Berkeley notice... */
+ 


Processed: Re: netdiag: FTBFS: getservent.c:121:38: error: implicit declaration of function ‘atoi’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066694 [src:netdiag] netdiag: FTBFS: getservent.c:121:38: error: implicit 
declaration of function ‘atoi’ [-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066694: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066694
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1067911: marked as done (FTBFS: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is not valid for C++ [-Werror])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Thu, 11 Apr 2024 02:38:36 +
with message-id 
and subject line Bug#1067911: fixed in zeroc-ice 3.7.10-2.2
has caused the Debian Bug report #1067911,
regarding FTBFS:  error: ‘-Werror=’ argument 
‘-Werror=implicit-function-declaration’ is not valid for C++ [-Werror]
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 ow...@bugs.debian.org
immediately.)


-- 
1067911: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067911
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: zeroc-ice
Version: 3.7.10-2.1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=zeroc-
ice=armhf=3.7.10-2.1=1711639887=0

arm-linux-gnueabihf-g++ -g -O2 -ffile-prefix-map=/<>=. -fstack-
protector-strong -fstack-clash-protection -Wformat -Werror=format-security -MT
modules/IcePy/build/arm-linux-gnueabihf/shared/pic/Grammar.o -MMD -MP -MF
modules/IcePy/build/arm-linux-gnueabihf/shared/pic/Grammar.Td -Wall -Wextra
-Wshadow -Wdeprecated -Werror -pthread -DNDEBUG -Imodules/IcePy
-I../cpp/include -I../cpp/include/generated -I../cpp/src
-I/usr/include/python3.11 -I/usr/include/python3.11 -Wsign-compare -g
-Werror=implicit-function-declaration -fstack-protector-strong -fstack-clash-
protection -Wformat -Werror=format-security -DNDEBUG -g -fwrapv -O2 -Wall -Wno-
missing-field-initializers -Wno-psabi -fPIC -fvisibility=hidden
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -Wdate-time
-D_FORTIFY_SOURCE=2 -c ../cpp/src/Slice/Grammar.cpp -o modules/IcePy/build/arm-
linux-gnueabihf/shared/pic/Grammar.o
cc1plus: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is
not valid for C++ [-Werror]
cc1plus: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is
not valid for C++ [-Werror]
cc1plus: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is
not valid for C++ [-Werror]
cc1plus: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is
not valid for C++ [-Werror]




-- System Information:
Debian Release: trixie/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing-debug'), (500, 
'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.7.9-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---
Source: zeroc-ice
Source-Version: 3.7.10-2.2
Done: Christopher Knadle 

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

Debian distribution maintenance software
pp.
Christopher Knadle  (supplier of updated zeroc-ice 
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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 10:48:17 -0400
Source: zeroc-ice
Architecture: source
Version: 3.7.10-2.2
Distribution: unstable
Urgency: medium
Maintainer: José Gutiérrez de la Concha 
Changed-By: Christopher Knadle 
Closes: 1067911
Changes:
 zeroc-ice (3.7.10-2.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/patches:
 - Add remove-Werror-build-option.patch to fix FTBFS bug due to injection
   of "inplicit-function-declaration" flag during time_t 64bit transition
   (Closes: #1067911)
Checksums-Sha1:
 b4be87da47092fd31086f45eaedb8a243841a13e 3543 zeroc-ice_3.7.10-2.2.dsc
 f1a2d8e230a98b3fcb69397d8c3413bede29ec9a 6414856 zeroc-ice_3.7.10.orig.tar.xz
 6d2716e1c8ab4f7a7f53c10637bebf6cb22792da 29292 
zeroc-ice_3.7.10-2.2.debian.tar.xz
 4b12d61ea0e2ced0c86214321a2d0e70785e4cf3 6238 
zeroc-ice_3.7.10-2.2_source.buildinfo
Checksums-Sha256:
 277c69aea7b44c651eaba8a9efa039da293bd363548955eef3e95a6bcec954a0 3543 
zeroc-ice_3.7.10-2.2.dsc
 eb1c545cf679facdd07ab45e85ad9f87f2ffc84d72687a2e4e490a6d31c8 6414856 
zeroc-ice_3.7.10.orig.tar.xz
 f236a727bcbafb50a7272594c0048bfffe785264f8262b7cf5a66b1db7560b11 29292 

Bug#1067911: Diff for fix of FTBFS bug

2024-04-10 Thread Chris Knadle
Attached is the NMUdiff for fixing FTBFS Bug #1067911 which would keep 
zeroc-ice from migrating to Testing.


   -- Chris

--
Chris Knadle
chris.kna...@coredump.us
diff -Nru zeroc-ice-3.7.10/debian/changelog zeroc-ice-3.7.10/debian/changelog
--- zeroc-ice-3.7.10/debian/changelog	2024-02-29 19:14:45.0 -0500
+++ zeroc-ice-3.7.10/debian/changelog	2024-04-10 10:48:17.0 -0400
@@ -1,3 +1,13 @@
+zeroc-ice (3.7.10-2.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/patches:
+- Add remove-Werror-build-option.patch to fix FTBFS bug due to injection
+  of "inplicit-function-declaration" flag during time_t 64bit transition
+  (Closes: #1067911)
+
+ -- Christopher Knadle   Wed, 10 Apr 2024 10:48:17 -0400
+
 zeroc-ice (3.7.10-2.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru zeroc-ice-3.7.10/debian/patches/remove-Werror-build-option.patch zeroc-ice-3.7.10/debian/patches/remove-Werror-build-option.patch
--- zeroc-ice-3.7.10/debian/patches/remove-Werror-build-option.patch	1969-12-31 19:00:00.0 -0500
+++ zeroc-ice-3.7.10/debian/patches/remove-Werror-build-option.patch	2024-04-10 10:32:22.0 -0400
@@ -0,0 +1,18 @@
+Description: remove -Werror build option to fix FSBFS issue
+ During the time_t 64bit transition the "implicit-function-declaration" build
+ flag is injected and this breaks the build when -Werror is set
+Author: Christopher Knadle 
+Bug: https://bugs.debian.org/1067911
+Last-Update: 2024-04-10
+
+--- a/config/Make.rules.Linux
 b/config/Make.rules.Linux
+@@ -137,7 +137,7 @@
+ -pie $(if $(filter yes,$(new_dtags)),-Wl$(comma)--enable-new-dtags,-Wl$(comma)--disable-new-dtags) \
+ $$(call unique,$$(foreach d,$($4_dependencies),$$(call make-rpath-link-ldflags,$$d,$($4_dependencies)
+ 
+-cppflags= -Wall -Wextra -Wredundant-decls -Wshadow -Wdeprecated -Werror -pthread $(if $(filter yes,$(OPTIMIZE)),-DNDEBUG,-g)
++cppflags= -Wall -Wextra -Wredundant-decls -Wshadow -Wdeprecated -pthread $(if $(filter yes,$(OPTIMIZE)),-DNDEBUG,-g)
+ ldflags = -pthread
+ 
+ # -Wshadow is too strict with gcc 4
diff -Nru zeroc-ice-3.7.10/debian/patches/series zeroc-ice-3.7.10/debian/patches/series
--- zeroc-ice-3.7.10/debian/patches/series	2023-11-07 04:45:43.0 -0500
+++ zeroc-ice-3.7.10/debian/patches/series	2024-04-10 10:27:07.0 -0400
@@ -1 +1,2 @@
 java-build.patch
+remove-Werror-build-option.patch


Processed: closing 1067267

2024-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> close 1067267
Bug #1067267 [src:coq-deriving] coq-deriving: FTBFS: unsatisfiable 
build-dependencies
Marked Bug as done
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1067267: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067267
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1065761: marked as done (m4api: FTBFS on arm{el,hf}: /<>/m4api.c:413:10: error: implicit declaration of function ‘m4SetBinary’ [-Werror=implicit-function-declaration])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Thu, 11 Apr 2024 01:04:54 +
with message-id 
and subject line Bug#1065761: fixed in m4api 0.3~0.9646fd-3
has caused the Debian Bug report #1065761,
regarding m4api: FTBFS on arm{el,hf}: /<>/m4api.c:413:10: error: 
implicit declaration of function ‘m4SetBinary’ 
[-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1065761: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065761
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: m4api
Version: 0.3~0.9646fd-2.1
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: sramac...@debian.org

https://buildd.debian.org/status/fetch.php?pkg=m4api=armel=0.3%7E0.9646fd-2.1=1709541630=0

[ 33%] Building C object CMakeFiles/m4api-static.dir/m4api.c.o
/usr/bin/cc   -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -Wdate-time -D_FORTIFY_SOURCE=2 -MD -MT 
CMakeFiles/m4api-static.dir/m4api.c.o -MF 
CMakeFiles/m4api-static.dir/m4api.c.o.d -o 
CMakeFiles/m4api-static.dir/m4api.c.o -c "/<>/m4api.c"
/<>/m4api.c: In function ‘m4GetVal’:
/<>/m4api.c:280:39: warning: format ‘%lu’ expects argument of type 
‘long unsigned int’, but argument 3 has type ‘size_t’ {aka ‘unsigned int’} 
[-Wformat=]
  280 |   printf("ERROR: typeLen(%d) == %lu!\n", type, m4TypeLengths[type]);
  | ~~^~~~
  |   | |
  |   long unsigned int size_t 
{aka unsigned int}
  | %u
/<>/m4api.c: In function ‘m4SetFloat’:
/<>/m4api.c:413:10: error: implicit declaration of function 
‘m4SetBinary’ [-Werror=implicit-function-declaration]
  413 |   return m4SetBinary(dev, field, binary);
  |  ^~~
/<>/m4api.c: In function ‘m4GetVal’:
/<>/m4api.c:280:39: warning: format ‘%lu’ expects argument of type 
‘long unsigned int’, but argument 3 has type ‘size_t’ {aka ‘unsigned int’} 
[-Wformat=]
  280 |   printf("ERROR: typeLen(%d) == %lu!\n", type, m4TypeLengths[type]);
  | ~~^~~~
  |   | |
  |   long unsigned int size_t 
{aka unsigned int}
  | %u
/<>/m4api.c: In function ‘m4SetFloat’:
/<>/m4api.c:413:10: error: implicit declaration of function 
‘m4SetBinary’ [-Werror=implicit-function-declaration]
  413 |   return m4SetBinary(dev, field, binary);
  |  ^~~
cc1: some warnings being treated as errors
make[3]: *** [CMakeFiles/m4api.dir/build.make:79: 
CMakeFiles/m4api.dir/m4api.c.o] Error 1

Cheers
-- 
Sebastian Ramacher
--- End Message ---
--- Begin Message ---
Source: m4api
Source-Version: 0.3~0.9646fd-3
Done: Vagrant Cascadian 

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

Debian distribution maintenance software
pp.
Vagrant Cascadian  (supplier of updated m4api 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 17:53:23 -0700
Source: m4api
Architecture: source
Version: 0.3~0.9646fd-3
Distribution: unstable
Urgency: medium
Maintainer: Vagrant Cascadian 
Changed-By: Vagrant Cascadian 
Closes: 1046230 1065761
Changes:
 m4api (0.3~0.9646fd-3) unstable; urgency=medium
 .
   [ Nick Rosbrook ]
   * debian/patches: fix several implicit declarations (LP: #2060847)
 (Closes: #1065761)
 .
   [ Vagrant Cascadian ]
   * debian/control: Use default branch for Vcs-Git.
   * debian/rules: Add override for dh_auto_clean to remove extra cruft.
 (Closes: #1046230)
   * Update lintian override to match new lintian syntax.
   * debian/control: Update 

Bug#1060795: marked as done (bluez: Troubles with bluetooth after upgrade from bookworm to testing (trixie): br-connection-unknown)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Thu, 11 Apr 2024 00:49:16 +
with message-id 
and subject line Bug#1060795: fixed in bluez 5.73-1
has caused the Debian Bug report #1060795,
regarding bluez: Troubles with bluetooth after upgrade from bookworm to testing 
(trixie): br-connection-unknown
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 ow...@bugs.debian.org
immediately.)


-- 
1060795: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1060795
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bluez
Version: 5.71-1
Severity: important

Since the upgrade to testing, the following happens when connecting to a bt
headset:

* Not paired, not trusted: can pair and trust and use the device.
* When disconnecting, rebooting the machine, connection to bt device fails with
'br-connection-unknown'
* After removing the bt device again and re-pair, it is possible to connect to
it again.

Further info: I am using pipewire instead of pulseaudio.

Following a transscript of a session with the error and how to fix it:

user@laptop1:~$ bluetoothctl
Waiting to connect to bluetoothd...[bluetooth]# Agent registered
[bluetooth]# devices
Device 8C:57:9B:18:C3:A7 h.ear go (SRS-HG1)
Device 60:AB:D2:43:BB:9C Bose QC35 II
[bluetooth]# connect 60:AB:D2:43:BB:9C
Attempting to connect to 60:AB:D2:43:BB:9C
[CHG] Device 60:AB:D2:43:BB:9C Connected: yes
[Bose QC35 II]# Failed to connect: org.bluez.Error.Failed br-connection-unknown
[CHG] Device 60:AB:D2:43:BB:9C Connected: no
[bluetooth]# info 60:AB:D2:43:BB:9C
Device 60:AB:D2:43:BB:9C (public)
Name: Bose QC35 II
Alias: Bose QC35 II
Class: 0x00240418 (2360344)
Icon: audio-headphones
Paired: yes
Bonded: yes
Trusted: yes
Blocked: no
Connected: no
LegacyPairing: no
UUID: Vendor specific   (-deca-fade-deca-deafdecacaff)
UUID: Serial Port   (1101--1000-8000-00805f9b34fb)
UUID: Headset   (1108--1000-8000-00805f9b34fb)
UUID: Audio Source  (110a--1000-8000-00805f9b34fb)
UUID: Audio Sink(110b--1000-8000-00805f9b34fb)
UUID: A/V Remote Control Target (110c--1000-8000-00805f9b34fb)
UUID: Advanced Audio Distribu.. (110d--1000-8000-00805f9b34fb)
UUID: A/V Remote Control(110e--1000-8000-00805f9b34fb)
UUID: A/V Remote Control Cont.. (110f--1000-8000-00805f9b34fb)
UUID: Handsfree (111e--1000-8000-00805f9b34fb)
UUID: Phonebook Access Client   (112e--1000-8000-00805f9b34fb)
UUID: Phonebook Access Server   (112f--1000-8000-00805f9b34fb)
UUID: Phonebook Access  (1130--1000-8000-00805f9b34fb)
UUID: Headset HS(1131--1000-8000-00805f9b34fb)
UUID: PnP Information   (1200--1000-8000-00805f9b34fb)
UUID: Bose Corporation  (fdd2--1000-8000-00805f9b34fb)
UUID: Amazon.com Services, Inc. (fe03--1000-8000-00805f9b34fb)
UUID: Google(fe26--1000-8000-00805f9b34fb)
UUID: Google(fe2c--1000-8000-00805f9b34fb)
UUID: Bose Corporation  (febe--1000-8000-00805f9b34fb)
UUID: Vendor specific   (81c2e72a-0591-443e-a1ff-05f988593351)
UUID: Vendor specific   (931c7e8a-540f-4686-b798-e8df0a2ad9f7)
UUID: Vendor specific   (f8d1fbe4-7966-4334-8024-ff96c9330e15)
Modalias: bluetooth:v009Ep4020d0481
[bluetooth]#

The info I can find in the logfiles (journalctl):

Jan 14 09:58:20 laptop1 blueman-manager[3388]: blueman-manager 09.58.20 WARNING
ManagerDeviceMenu:145 fail  : fail g-dbus-error-quark:
GDBus.Error:org.freedesktop.DBus.Error.Failed: blueman.bluez.errors.DB>
Jan 14 09:58:20 laptop1 blueman-manager[3388]:  (0)

I can get the device connecting again using the following procedure:

Remove the device:

[bluetooth]# remove 60:AB:D2:43:BB:9C
[bluetooth]# [DEL] Device 60:AB:D2:43:BB:9C Bose QC35 II
[bluetooth]# Device has been removed

Scan for devices:

[bluetooth]# scan bredr
[bluetooth]# SetDiscoveryFilter success
[bluetooth]# Discovery started
[bluetooth]# [CHG] Controller 28:16:AD:16:D9:FF Discovering: yes
[bluetooth]# [NEW] Device 60:AB:D2:43:BB:9C Bose QC35 II
[bluetooth]# [CHG] Device 60:AB:D2:43:BB:9C RSSI: 0xffd7 (-41)
scan off
[bluetooth]# Discovery stopped

Pair and trust device:

[bluetooth]# pair 60:AB:D2:43:BB:9C
Attempting to 

Bug#1066654: mlpcap: FTBFS: utils.c:184:3: error: implicit declaration of function ‘camlidl_ml2c_pcap_pcap_handle’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Steve Langasek
Package: mlpcap
Followup-For: Bug #1066654
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue that has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru mlpcap-0.9/debian/patches/no-implicit-declarations.patch 
mlpcap-0.9/debian/patches/no-implicit-declarations.patch
--- mlpcap-0.9/debian/patches/no-implicit-declarations.patch1969-12-31 
16:00:00.0 -0800
+++ mlpcap-0.9/debian/patches/no-implicit-declarations.patch2024-04-10 
16:59:47.0 -0700
@@ -0,0 +1,22 @@
+Description: add missing prototype
+ This function is code generated by camlidl from the .idl input file;
+ unfortunately it does not emit a header including the prototype.
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1066654
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: mlpcap-0.9/utils.c
+===
+--- mlpcap-0.9.orig/utils.c
 mlpcap-0.9/utils.c
+@@ -33,6 +33,9 @@
+ #include 
+ #include "utils.h"
+ 
++extern void camlidl_ml2c_pcap_pcap_handle(value _v1, pcap_handle * _c2,
++  camlidl_ctx _ctx);
++
+ void
+ _pcap_callback (void *cback, va_alist alist)
+ {
diff -Nru mlpcap-0.9/debian/patches/series mlpcap-0.9/debian/patches/series
--- mlpcap-0.9/debian/patches/series2023-09-11 22:50:01.0 -0700
+++ mlpcap-0.9/debian/patches/series2024-04-10 16:57:47.0 -0700
@@ -5,3 +5,4 @@
 03_correct_META.diff
 07_dll_with_camlidl.diff
 08_ffcall.diff
+no-implicit-declarations.patch


Processed: Re: mlpcap: FTBFS: utils.c:184:3: error: implicit declaration of function ‘camlidl_ml2c_pcap_pcap_handle’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066654 [src:mlpcap] mlpcap: FTBFS: utils.c:184:3: error: implicit 
declaration of function ‘camlidl_ml2c_pcap_pcap_handle’ 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066654: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066654
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Re: kcemu: FTBFS with -Werror=implicit-function-declaration

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1067141 [src:kcemu] kcemu: FTBFS with -Werror=implicit-function-declaration
Added tag(s) patch.

-- 
1067141: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067141
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1067141: kcemu: FTBFS with -Werror=implicit-function-declaration

2024-04-10 Thread Zixing Liu
Package: kcemu
Followup-For: Bug #1067141
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * debian/patches/add-missing-includes.patch: Add missing includes.
Closes LP: #2060887.


Thanks for considering the patch.


-- System Information:
Debian Release: bookworm/sid
  APT prefers jammy-updates
  APT policy: (500, 'jammy-updates'), (500, 'jammy-security'), (500, 'jammy'), 
(100, 'jammy-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-26-generic (SMP w/10 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_CA:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru kcemu-0.5.2+dfsg/debian/control kcemu-0.5.2+dfsg/debian/control
--- kcemu-0.5.2+dfsg/debian/control 2024-03-07 22:13:42.0 -0700
+++ kcemu-0.5.2+dfsg/debian/control 2024-04-10 17:17:16.0 -0600
@@ -1,8 +1,7 @@
 Source: kcemu
 Section: contrib/otherosfs
 Priority: optional
-Maintainer: Ubuntu Developers 
-XSBC-Original-Maintainer: John Paul Adrian Glaubitz 

+Maintainer: John Paul Adrian Glaubitz 
 Build-Depends: debhelper-compat (= 13), libz80ex-dev, libsdl1.2-dev, 
libsndfile-dev, libvncserver-dev, libtheora-dev,
libgtk2.0-dev, automake, autoconf, libxmu-dev, libncurses5-dev, 
netpbm, imagemagick, dh-autoreconf
 Standards-Version: 4.6.1
diff -Nru kcemu-0.5.2+dfsg/debian/patches/add-missing-includes.patch 
kcemu-0.5.2+dfsg/debian/patches/add-missing-includes.patch
--- kcemu-0.5.2+dfsg/debian/patches/add-missing-includes.patch  1969-12-31 
17:00:00.0 -0700
+++ kcemu-0.5.2+dfsg/debian/patches/add-missing-includes.patch  2024-04-10 
17:17:01.0 -0600
@@ -0,0 +1,18 @@
+Description: Add missing includes
+Author: Zixing Liu 
+Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067141
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/kcemu/+bug/2060887
+Forwarded: no
+Last-Update: 2024-04-10
+Index: kcemu/src/sys/unix/sys_socket_create.c
+===
+--- kcemu.orig/src/sys/unix/sys_socket_create.c
 kcemu/src/sys/unix/sys_socket_create.c
+@@ -23,6 +23,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "kc/config.h"
+ #include "sys/sysdep.h"
diff -Nru kcemu-0.5.2+dfsg/debian/patches/series 
kcemu-0.5.2+dfsg/debian/patches/series
--- kcemu-0.5.2+dfsg/debian/patches/series  1969-12-31 17:00:00.0 
-0700
+++ kcemu-0.5.2+dfsg/debian/patches/series  2024-04-10 17:06:09.0 
-0600
@@ -0,0 +1 @@
+add-missing-includes.patch


Bug#1067621: FTBFS on 32-bit time64 architectures: error: implicit declaration of function ‘gzopen64’

2024-04-10 Thread Zixing Liu
Package: berkeley-abc
Followup-For: Bug #1067621
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * Fix the build failure caused by missing function prototypes.

  * debian/patches/add-missing-include.patch: Add missing headers to
Glucose components.  Closes LP: #2060873.


Thanks for considering the patch.


-- System Information:
Debian Release: bookworm/sid
  APT prefers jammy-updates
  APT policy: (500, 'jammy-updates'), (500, 'jammy-security'), (500, 'jammy'), 
(100, 'jammy-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-26-generic (SMP w/10 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_CA:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/control 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/control
--- berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/control2024-03-31 
23:33:27.0 -0600
+++ berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/control2024-04-10 
14:45:54.0 -0600
@@ -1,8 +1,7 @@
 Source: berkeley-abc
 Section: electronics
 Priority: optional
-Maintainer: Ubuntu Developers 
-XSBC-Original-Maintainer: Debian Science Maintainers 

+Maintainer: Debian Science Maintainers 

 Uploaders: Ruben Undheim ,
Daniel Gröber 
 Build-Depends: debhelper-compat (= 13),
diff -Nru 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/add-missing-include.patch
 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/add-missing-include.patch
--- 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/add-missing-include.patch
  1969-12-31 17:00:00.0 -0700
+++ 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/add-missing-include.patch
  2024-04-10 14:45:54.0 -0600
@@ -0,0 +1,30 @@
+Description: Add missing headers to Glucose components
+Author: Zixing Liu 
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/berkeley-abc/+bug/2060873
+Forwarded: no
+Last-Update: 2024-04-10
+Index: berkeley-abc/src/sat/glucose/Glucose.cpp
+===
+--- berkeley-abc.orig/src/sat/glucose/Glucose.cpp
 berkeley-abc/src/sat/glucose/Glucose.cpp
+@@ -34,6 +34,7 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR
+ #include "sat/glucose/Constants.h"
+ #include "sat/glucose/System.h"
+ 
++#include "misc/util/abc_global.h"
+ ABC_NAMESPACE_IMPL_START
+ 
+ using namespace Gluco;
+Index: berkeley-abc/src/sat/glucose2/Glucose2.cpp
+===
+--- berkeley-abc.orig/src/sat/glucose2/Glucose2.cpp
 berkeley-abc/src/sat/glucose2/Glucose2.cpp
+@@ -34,7 +34,7 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR
+ #include "sat/glucose2/Solver.h"
+ 
+ #include "sat/glucose2/CGlucose.h"
+-
++#include "misc/util/abc_global.h"
+ ABC_NAMESPACE_IMPL_START
+ 
+ using namespace Gluco2;
diff -Nru 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/remove_bzlib_convenience.patch
 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/remove_bzlib_convenience.patch
--- 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/remove_bzlib_convenience.patch
 2024-03-31 23:33:27.0 -0600
+++ 
berkeley-abc-1.01+20230625git01b1bd1+dfsg/debian/patches/remove_bzlib_convenience.patch
 2024-04-10 14:45:54.0 -0600
@@ -12,10 +12,10 @@
  src/base/io/ioWriteAiger.c | 2 +-
  3 files changed, 5 insertions(+), 3 deletions(-)
 
-diff --git a/Makefile b/Makefile
-index 3976cf7..bb3fbc2 100644
 a/Makefile
-+++ b/Makefile
+Index: berkeley-abc/Makefile
+===
+--- berkeley-abc.orig/Makefile
 berkeley-abc/Makefile
 @@ -22,7 +22,7 @@ MODULES := \
src/map/mapper src/map/mio src/map/super src/map/if \
src/map/amap src/map/cov src/map/scl src/map/mpm \
@@ -25,7 +25,7 @@
src/misc/mem src/misc/bar src/misc/bbl src/misc/parse \
src/opt/cut src/opt/fxu src/opt/fxch src/opt/rwr src/opt/mfs 
src/opt/sim \
src/opt/ret src/opt/fret src/opt/res src/opt/lpk src/opt/nwk 
src/opt/rwt \
-@@ -145,6 +145,8 @@ ifneq ($(findstring Darwin, $(shell uname)), Darwin)
+@@ -145,6 +145,8 @@ ifneq ($(findstring Darwin, $(shell unam
 LIBS += -lrt
  endif
  
@@ -34,10 +34,10 @@
  ifdef ABC_USE_LIBSTDCXX
 LIBS += -lstdc++
 $(info $(MSG_PREFIX)Using explicit -lstdc++)
-diff --git a/src/base/io/ioReadAiger.c b/src/base/io/ioReadAiger.c
-index 9cf4141..8be6d21 100644
 a/src/base/io/ioReadAiger.c
-+++ b/src/base/io/ioReadAiger.c
+Index: berkeley-abc/src/base/io/ioReadAiger.c
+===
+--- 

Processed: Re: FTBFS on 32-bit time64 architectures: error: implicit declaration of function ‘gzopen64’

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1067621 [src:berkeley-abc] FTBFS on 32-bit time64 architectures: error: 
implicit declaration of function ‘gzopen64’
Added tag(s) patch.

-- 
1067621: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067621
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Re: libdigidoc: FTBFS on arm{el,hf}: /<>/libdigidoc/DigiDocService.c:327:19: error: implicit declaration of function ‘ddocAddSignatureFromMemory’ [-Werror=implicit-function-dec

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1065774 [src:libdigidoc] libdigidoc: FTBFS on arm{el,hf}: 
/<>/libdigidoc/DigiDocService.c:327:19: error: implicit 
declaration of function ‘ddocAddSignatureFromMemory’ 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1065774: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065774
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1065774: libdigidoc: FTBFS on arm{el,hf}: /<>/libdigidoc/DigiDocService.c:327:19: error: implicit declaration of function ‘ddocAddSignatureFromMemory’ [-Werror=implicit-function-decla

2024-04-10 Thread Steve Langasek
Package: libdigidoc
Followup-For: Bug #1065774
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue that has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru libdigidoc-3.10.5/debian/patches/no-implicit-declarations.patch 
libdigidoc-3.10.5/debian/patches/no-implicit-declarations.patch
--- libdigidoc-3.10.5/debian/patches/no-implicit-declarations.patch 
1969-12-31 16:00:00.0 -0800
+++ libdigidoc-3.10.5/debian/patches/no-implicit-declarations.patch 
2024-04-10 16:10:25.0 -0700
@@ -0,0 +1,30 @@
+Description: add missing define and includes required for prototypes
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1065774
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: libdigidoc-3.10.5/libdigidoc/DigiDocVerify.c
+===
+--- libdigidoc-3.10.5.orig/libdigidoc/DigiDocVerify.c
 libdigidoc-3.10.5/libdigidoc/DigiDocVerify.c
+@@ -20,6 +20,7 @@
+ //  Creation
+ //==
+ 
++#define WITH_DEPRECATED_FUNCTIONS
+ #include "DigiDocVerify.h"
+ #include "DigiDocError.h"
+ #include "DigiDocLib.h"
+Index: libdigidoc-3.10.5/libdigidoc/DigiDocService.c
+===
+--- libdigidoc-3.10.5.orig/libdigidoc/DigiDocService.c
 libdigidoc-3.10.5/libdigidoc/DigiDocService.c
+@@ -26,6 +26,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
diff -Nru libdigidoc-3.10.5/debian/patches/series 
libdigidoc-3.10.5/debian/patches/series
--- libdigidoc-3.10.5/debian/patches/series 2022-07-10 19:12:11.0 
-0700
+++ libdigidoc-3.10.5/debian/patches/series 2024-04-10 16:08:47.0 
-0700
@@ -1,3 +1,4 @@
 versioninfo.cmake-set-build_date-using-u.patch
 build-with-openssl-v3.patch
 fix-national-encoding.patch
+no-implicit-declarations.patch


Bug#1066512: latencytop: FTBFS: fsync.c:330:17: error: implicit declaration of function ‘gettimeofday’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Steve Langasek
Package: latencytop
Followup-For: Bug #1066512
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue which has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru latencytop-0.5.0/debian/patches/no-implicit-declarations.patch 
latencytop-0.5.0/debian/patches/no-implicit-declarations.patch
--- latencytop-0.5.0/debian/patches/no-implicit-declarations.patch  
1969-12-31 16:00:00.0 -0800
+++ latencytop-0.5.0/debian/patches/no-implicit-declarations.patch  
2024-04-10 16:02:15.0 -0700
@@ -0,0 +1,18 @@
+Description: add missing include
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1066512
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: latencytop-0.5.0/fsync.c
+===
+--- latencytop-0.5.0.orig/fsync.c
 latencytop-0.5.0/fsync.c
+@@ -32,6 +32,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ 
diff -Nru latencytop-0.5.0/debian/patches/series 
latencytop-0.5.0/debian/patches/series
--- latencytop-0.5.0/debian/patches/series  2021-08-24 10:26:05.0 
-0700
+++ latencytop-0.5.0/debian/patches/series  2024-04-10 16:01:05.0 
-0700
@@ -1,3 +1,4 @@
 0001-Convert-to-autoconf.patch
 0002-Fix-FTBFS-in-fsync.c.patch
 0003-typo-fix.patch
+no-implicit-declarations.patch


Processed: Re: latencytop: FTBFS: fsync.c:330:17: error: implicit declaration of function ‘gettimeofday’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066512 [src:latencytop] latencytop: FTBFS: fsync.c:330:17: error: 
implicit declaration of function ‘gettimeofday’ 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066512: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066512
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Re: kdrill: FTBFS: init.c:171:12: error: implicit declaration of function ‘isMapped’; did you mean ‘IsUnmapped’? [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066689 [src:kdrill] kdrill: FTBFS: init.c:171:12: error: implicit 
declaration of function ‘isMapped’; did you mean ‘IsUnmapped’? 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066689: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066689
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066689: kdrill: FTBFS: init.c:171:12: error: implicit declaration of function ‘isMapped’; did you mean ‘IsUnmapped’? [-Werror=implicit-function-declaration]

2024-04-10 Thread Steve Langasek
Package: kdrill
Followup-For: Bug #1066689
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue which has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru kdrill-6.5deb2/debian/patches/no-implicit-declarations.patch 
kdrill-6.5deb2/debian/patches/no-implicit-declarations.patch
--- kdrill-6.5deb2/debian/patches/no-implicit-declarations.patch
1969-12-31 16:00:00.0 -0800
+++ kdrill-6.5deb2/debian/patches/no-implicit-declarations.patch
2024-04-10 15:56:58.0 -0700
@@ -0,0 +1,18 @@
+Description: add missing include
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1066689
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: kdrill-6.5deb2/init.c
+===
+--- kdrill-6.5deb2.orig/init.c
 kdrill-6.5deb2/init.c
+@@ -24,6 +24,7 @@
+ #include "searchwidgets.h"
+ #include "widgets.h"
+ #include "timeout.h"
++#include "utils.h"
+ 
+ #include "icon_xbm"
+ 
diff -Nru kdrill-6.5deb2/debian/patches/series 
kdrill-6.5deb2/debian/patches/series
--- kdrill-6.5deb2/debian/patches/series2021-10-20 10:11:20.0 
-0700
+++ kdrill-6.5deb2/debian/patches/series2024-04-10 15:55:23.0 
-0700
@@ -12,3 +12,4 @@
 use-env-flags.diff
 warning-fixes.diff
 rename-getline.diff
+no-implicit-declarations.patch


Processed: Re: jabberd2: FTBFS: make[3]: *** [Makefile:538: libsx_la-websocket.lo] Error 1

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1067259 [src:jabberd2] jabberd2: FTBFS: make[3]: *** [Makefile:538: 
libsx_la-websocket.lo] Error 1
Added tag(s) patch.

-- 
1067259: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067259
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1067259: jabberd2: FTBFS: make[3]: *** [Makefile:538: libsx_la-websocket.lo] Error 1

2024-04-10 Thread Steve Langasek
Package: jabberd2
Followup-For: Bug #1067259
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue that has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru jabberd2-2.7.0/debian/patches/no-implicit-declarations.patch 
jabberd2-2.7.0/debian/patches/no-implicit-declarations.patch
--- jabberd2-2.7.0/debian/patches/no-implicit-declarations.patch
1969-12-31 16:00:00.0 -0800
+++ jabberd2-2.7.0/debian/patches/no-implicit-declarations.patch
2024-04-10 15:03:46.0 -0700
@@ -0,0 +1,81 @@
+Description: add missing includes and disable conflicting crypt_r()
+ Nothing uses crypt_r() externally, it should use the glibc one; so disable
+ the conflicting prototype in the internal header.
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1067259
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: jabberd2-2.7.0/storage/authreg_sqlite.c
+===
+--- jabberd2-2.7.0.orig/storage/authreg_sqlite.c
 jabberd2-2.7.0/storage/authreg_sqlite.c
+@@ -32,6 +32,7 @@
+ #define _XOPEN_SOURCE 500
+ #include "c2s.h"
+ #include 
++#include 
+ 
+ /* Windows does not have the crypt() function, let's take DES_crypt from 
OpenSSL instead */
+ #if defined(HAVE_OPENSSL_CRYPTO_H) && defined(_WIN32)
+Index: jabberd2-2.7.0/storage/authreg_pgsql.c
+===
+--- jabberd2-2.7.0.orig/storage/authreg_pgsql.c
 jabberd2-2.7.0/storage/authreg_pgsql.c
+@@ -32,6 +32,7 @@
+ #else
+ #ifdef HAVE_CRYPT
+ #include 
++#include 
+ #endif
+ #endif
+ 
+Index: jabberd2-2.7.0/storage/authreg_ldapfull.c
+===
+--- jabberd2-2.7.0.orig/storage/authreg_ldapfull.c
 jabberd2-2.7.0/storage/authreg_ldapfull.c
+@@ -35,6 +35,7 @@
+ #ifdef STORAGE_LDAP
+ #ifdef HAVE_CRYPT
+ #include 
++#include 
+ #endif
+ 
+ #ifdef HAVE_SSL
+Index: jabberd2-2.7.0/util/crypt_blowfish.c
+===
+--- jabberd2-2.7.0.orig/util/crypt_blowfish.c
 jabberd2-2.7.0/util/crypt_blowfish.c
+@@ -54,6 +54,8 @@
+ /* Just to make sure the prototypes match the actual definitions */
+ #include "crypt_blowfish.h"
+ 
++char *crypt_r(__const char *key, __const char *setting, void *data);
++
+ #if defined(__i386__) || defined(__x86_64__) || defined(__alpha__) || 
defined(__hppa__)
+ #define BF_SCALE  1
+ #else
+Index: jabberd2-2.7.0/util/crypt_blowfish.h
+===
+--- jabberd2-2.7.0.orig/util/crypt_blowfish.h
 jabberd2-2.7.0/util/crypt_blowfish.h
+@@ -23,7 +23,6 @@
+ #endif
+ 
+ extern char *bcrypt(__const char *key, __const char *setting);
+-extern char *crypt_r(__const char *key, __const char *setting, void *data);
+ 
+ #ifndef __SKIP_OW
+ extern char *crypt_rn(__const char *key, __const char *setting,
+Index: jabberd2-2.7.0/storage/authreg_mysql.c
+===
+--- jabberd2-2.7.0.orig/storage/authreg_mysql.c
 jabberd2-2.7.0/storage/authreg_mysql.c
+@@ -35,6 +35,7 @@
+ #else
+ #ifdef HAVE_CRYPT
+ #include 
++#include 
+ #endif
+ #endif
+ 
diff -Nru jabberd2-2.7.0/debian/patches/series 
jabberd2-2.7.0/debian/patches/series
--- jabberd2-2.7.0/debian/patches/series2023-09-05 14:07:00.0 
-0700
+++ jabberd2-2.7.0/debian/patches/series2024-04-10 15:00:33.0 
-0700
@@ -7,3 +7,4 @@
 systemd-alias.diff
 m4-ax_check_compile_flag.diff
 mysql8_my_bool.patch
+no-implicit-declarations.patch


Bug#1067957: [[maude-bugs]] [EXTERNAL] Re: Maude fails to build on armhf

2024-04-10 Thread Steven Eker
I like that solution since I believe there are 64-bit platforms where 
long is 32-bits. I've updated my development version thus:


  //
  //    timeValue.tv_sec is 64-bit since Linux kernel 5.6 but GMP 
doesn't yet have support
  //    for long long which is a problem on platforms where long is 
less than 8 bytes.

  //
#if SIZEOF_LONG < 8
  double seconds = timeValue.tv_sec;
#else
  long seconds = timeValue.tv_sec;
#endif
  mpz_class nanoSeconds(seconds);

Of course I expect to drop support for 32-bit before 2038 - certainly 
when one our dependencies drops support. But I've gotten a bug report 
for building Maude on a Raspberry Pi.


Steven

On 4/10/24 14:59, Aaron M. Ucko wrote:


Steven Eker  writes:


This is harmless on 64-bit architectures since Index will be a signed
64-bit integer and if it works on 32-bit architectures, it's a work
around until GMP is fixed (hopefully before 2038).

I know this suggestion is unorthodox, and quite possibly moot at this
point in the context of official Debian packages -- but you might want
to consider formally going through double here, at least on the relevant
platforms.  Precision loss shouldn't be a concern for another 140
million years or so by my reckoning, and I expect the additional
conversion overhead would be negligible in practice.

Thanks!





Bug#1068737: marked as done (locales fails to install: locales failed to preconfigure, with exit status 2)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 22:07:02 +
with message-id 
and subject line Bug#1068737: fixed in glibc 2.37-17
has caused the Debian Bug report #1068737,
regarding locales fails to install: locales failed to preconfigure, with exit 
status 2
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 ow...@bugs.debian.org
immediately.)


-- 
1068737: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068737
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: locales
Version: 2.37-16
Severity: grave

A fresh `debootstrap unstable' chroot plus `apt install locales`:

 Preconfiguring packages ...
 locales failed to preconfigure, with exit status 2
 dpkg: error processing package locales (--configure):
  installed locales package post-installation script subprocess returned error 
exit status 2
 Errors were encountered while processing:
  locales

This is coming from this line in locales.config:

 DEFAULT_ENVIRONMENT="$(sed -En -e '/^LANG="?([^"]+)"?/h; g; $s//\1/p' 
/etc/default/locale /etc/locale.conf 2>/dev/null)"  

/etc/locale.conf does not exist (and it doesn't exist on my regular
system too), so sed fails with "can't read: No such file or directory"
error message (which is sent to /dev/null), and since whole script is
run under `set -e', it exits here.

This is caused by "debian/debhelper.in/locales.config: Extract default
environment LANG using only sed" change in 2.37-16.

Do we really need /etc/locale.conf at this time?  I think it's unused for
a very long time.  Also see EE= assignment at the very beginning of this
script.
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.37-17
Done: Aurelien Jarno 

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

Debian distribution maintenance software
pp.
Aurelien Jarno  (supplier of updated glibc 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 23:43:53 +0200
Source: glibc
Architecture: source
Version: 2.37-17
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Closes: 1068737
Changes:
 glibc (2.37-17) unstable; urgency=medium
 .
   * debian/debhelper.in/locales.config: revert to the version that has been
 working for 20+ years.  Closes: #1068737.
   * debian/debhelper.in/locales.config: define LEGACY_EE and use $EE and
 $LEGACY_EE to refer the the locales config files, as done in the postinst.
Checksums-Sha1:
 c6b0873331a62e1d020bb2c5d8c008fe13ce8803 9043 glibc_2.37-17.dsc
 836d0a57a9dc91bc583dd9f094a7b71f8a70b6c7 412292 glibc_2.37-17.debian.tar.xz
 b8f3f13f1f4e182ba4690fd332dd248ae85a0596 10094 glibc_2.37-17_source.buildinfo
Checksums-Sha256:
 1b05b94f0d7bbdd79e4bb622d459fab83c65efbf01d0415125bc0c9db00c7030 9043 
glibc_2.37-17.dsc
 e9f78eb7d437ab7fc8a45524099b3965f43ca93fa9000253984f47877d99a282 412292 
glibc_2.37-17.debian.tar.xz
 392433642da88f48ee16431be541d24a1dfd3c03425e3a827a9355dc9761b41d 10094 
glibc_2.37-17_source.buildinfo
Files:
 0f29d810e9f5fdf01482379c2f55a22b 9043 libs required glibc_2.37-17.dsc
 feed3e116b0b58b0a0b57205bd3008d6 412292 libs required 
glibc_2.37-17.debian.tar.xz
 581368f9aba9658640a4c57de370d518 10094 libs required 
glibc_2.37-17_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEUryGlb40+QrX1Ay4E4jA+JnoM2sFAmYXCWYACgkQE4jA+Jno
M2uJ9hAAhOlv3P0UzDdkwZByg9OIo5Bkj8AhOwjnbX+GDCp+TSn4yguu5nEV/Tmk
GRiX5YrsCUZekIoZuxXQ+POK0XqDZZB23eRHJjC/VlXDwbVMJzg4UA+jXfPNwhq9
JAATMsAojW96yjcsvS//d5fOwus8jT964zAzZfxTYBy1VHxIspbEq9+/VLkjQEr8
KQgSTBhJEoqR/9+/O736N1zMVT7l0POzOosdKV3s9JXbf4QDenaxkZ5VIy9bE+Pb
bXjIr73TxM5jC9lnRfB/W1Naf2uy2pjXnE3I1P4lfNnskRlH5oKQxv4Kj6vnEtmJ
JU5Qos030JTySc8Ygq+SeEKbigWDPh/Pmvf7T63y5MVBNwBz84Bn3QkB5H2pCwrN
vP08TxI8GFE4gk5iOPTww0CB0zOqz2VuGHKdB/CBpl3sOgai8etT0ZPze7Y/BFqm
ATsd8jFXMWNWTO0pHXjedzWws8kIJcUS6TKVXOlw8HSjkncdxZ9VeIXXoYfP23QW
oMGVOttlaiXcYRvzZc8wR/74qM8q/ax5WXRHZoiPpLlRsk5uaYoaG0UiptAtuIK9
ByhPnORyT/zAWGsM8LyZaLHf6L0pOpoD8YrbnJ9qxNCZNtohxUH80UgL7pDowEFK
CZoSx1R1nfrK9DnXbT8Gnt3HX09pompOLl6sS2ZKiWafeiZFwaQ=
=BKkU
-END 

Bug#1067957: [[maude-bugs]] [EXTERNAL] Re: Maude fails to build on armhf

2024-04-10 Thread Aaron M. Ucko
Steven Eker  writes:

> This is harmless on 64-bit architectures since Index will be a signed
> 64-bit integer and if it works on 32-bit architectures, it's a work 
> around until GMP is fixed (hopefully before 2038).

I know this suggestion is unorthodox, and quite possibly moot at this
point in the context of official Debian packages -- but you might want
to consider formally going through double here, at least on the relevant
platforms.  Precision loss shouldn't be a concern for another 140
million years or so by my reckoning, and I expect the additional
conversion overhead would be negligible in practice.

Thanks!

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
http://www.mit.edu/~amu/ | http://stuff.mit.edu/cgi/finger/?a...@monk.mit.edu



Processed: Re: epic5: FTBFS: functions.c:7547:15: error: implicit declaration of function ‘strptime’; did you mean ‘strftime’? [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066505 [src:epic5] epic5: FTBFS: functions.c:7547:15: error: implicit 
declaration of function ‘strptime’; did you mean ‘strftime’? 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066505: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066505
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1068737: marked as pending in glibc

2024-04-10 Thread Aurelien Jarno
Control: tag -1 pending

Hello,

Bug #1068737 in glibc reported by you has been fixed in the
Git repository and is awaiting an upload. You can see the commit
message below and you can check the diff of the fix at:

https://salsa.debian.org/glibc-team/glibc/-/commit/e4d86ee27cbefa6fa55f965c15b629170d60f302


debian/debhelper.in/locales.config: revert to the version that has been working 
for 20+ years.  Closes: #1068737.


(this message was generated automatically)
-- 
Greetings

https://bugs.debian.org/1068737



Processed: Bug#1068737 marked as pending in glibc

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1068737 [locales] locales fails to install: locales failed to 
preconfigure, with exit status 2
Added tag(s) pending.

-- 
1068737: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068737
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066505: epic5: FTBFS: functions.c:7547:15: error: implicit declaration of function ‘strptime’; did you mean ‘strftime’? [-Werror=implicit-function-declaration]

2024-04-10 Thread Michael Hudson-Doyle
Package: epic5
Followup-For: Bug #1066505
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
X-Debbugs-Cc: michael.hud...@ubuntu.com
Control: tags -1 patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * d/patches/define-xopen-bsd-source.patch: #define _XOPEN_SOURCE and
_BSD_SOURCE to get access to the declaration of strptime, strlcat and some
other symbols.

Thanks for considering the patch.

Cheers,
mwh

-- System Information:
Debian Release: trixie/sid
  APT prefers mantic-updates
  APT policy: (500, 'mantic-updates'), (500, 'mantic-security'), (500, 
'mantic'), (100, 'mantic-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-27-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_NZ.UTF-8:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru epic5-2.1.6/debian/patches/define-xopen-bsd-source.patch 
epic5-2.1.6/debian/patches/define-xopen-bsd-source.patch
--- epic5-2.1.6/debian/patches/define-xopen-bsd-source.patch1970-01-01 
12:00:00.0 +1200
+++ epic5-2.1.6/debian/patches/define-xopen-bsd-source.patch2024-04-10 
14:07:56.0 +1200
@@ -0,0 +1,17 @@
+--- a/include/irc_std.h
 b/include/irc_std.h
+@@ -12,6 +12,14 @@
+ #include "defs.h"
+ 
+ /*
++ * Define _XOPEN_SOURCE to get access to prototype of strptime() and
++ * _BSD_SOURCE to get access to prototype of strl{cat,cpy} and declaration of
++ * h_errno.
++ */
++#define _XOPEN_SOURCE 700
++#define _BSD_SOURCE
++
++/*
+  * Try to turn back the IPv6 monster at the gate
+  */
+ #ifdef DO_NOT_USE_IPV6
diff -Nru epic5-2.1.6/debian/patches/series epic5-2.1.6/debian/patches/series
--- epic5-2.1.6/debian/patches/series   2021-10-10 00:04:08.0 +1300
+++ epic5-2.1.6/debian/patches/series   2024-04-10 14:07:56.0 +1200
@@ -2,3 +2,4 @@
 manual.patch
 path.patch
 reproducible-build.patch
+define-xopen-bsd-source.patch


Bug#1068723: marked as done (quickflux: binary-any FTBFS)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 21:49:19 +
with message-id 
and subject line Bug#1068723: fixed in quickflux 1.1.3+git20201110.2a37acf-2
has caused the Debian Bug report #1068723,
regarding quickflux: binary-any FTBFS
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 ow...@bugs.debian.org
immediately.)


-- 
1068723: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068723
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: quickflux
Version: 1.1.3+git20201110.2a37acf-1
Severity: serious
Tags: ftbfs
X-Debbugs-Cc: Debian UBports Team 

https://buildd.debian.org/status/logs.php?pkg=quickflux=1.1.3%2Bgit20201110.2a37acf-1

...
   debian/rules override_dh_installexamples
make[1]: Entering directory '/<>'
dh_installexamples
rm 
debian/quickflux-doc/usr/share/doc/quickflux-doc/examples/middleware/.gitignore
rm: cannot remove 
'debian/quickflux-doc/usr/share/doc/quickflux-doc/examples/middleware/.gitignore':
 No such file or directory
make[1]: *** [debian/rules:33: override_dh_installexamples] Error 1
--- End Message ---
--- Begin Message ---
Source: quickflux
Source-Version: 1.1.3+git20201110.2a37acf-2
Done: Mike Gabriel 

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

Debian distribution maintenance software
pp.
Mike Gabriel  (supplier of updated quickflux 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 10 Apr 2024 23:17:41 +0200
Source: quickflux
Architecture: source
Version: 1.1.3+git20201110.2a37acf-2
Distribution: unstable
Urgency: medium
Maintainer: Debian UBports Team 
Changed-By: Mike Gabriel 
Closes: 1068723
Changes:
 quickflux (1.1.3+git20201110.2a37acf-2) unstable; urgency=medium
 .
   * debian/patches:
 + Improve patch as suggested by @OPNA2608.
   * debian/rules:
 + Ignore failures when removing installed example files during 
bin:arch-only
   builds. (Closes: #1068723).
 + Adjust CMake build option (quickflux_BUILD_SHARED -> BUILD_SHARED_LIBS).
Checksums-Sha1:
 b67ffdd9e3c13677706c103af93b041ddafe 2362 
quickflux_1.1.3+git20201110.2a37acf-2.dsc
 a1439f09161daa72f68e0b7317bd92c23ccb2994 4436 
quickflux_1.1.3+git20201110.2a37acf-2.debian.tar.xz
 b17f6d6f91d94750d5d4deba4a5e18536035c842 12039 
quickflux_1.1.3+git20201110.2a37acf-2_source.buildinfo
Checksums-Sha256:
 1f580da6a9edc359bd7d2662897f653e9658ca2524cace011c5b7c4f76bbb4ac 2362 
quickflux_1.1.3+git20201110.2a37acf-2.dsc
 8e509f359b2eab09b662cb588f9eef75a059042a86c6888f67d1adb4afc3be74 4436 
quickflux_1.1.3+git20201110.2a37acf-2.debian.tar.xz
 643e1d1985beb3e1f0df0d465c918e9b586abaf394723e854c11e72f1afb00a8 12039 
quickflux_1.1.3+git20201110.2a37acf-2_source.buildinfo
Files:
 6c429d9c108c78913c79d52e9e0553e2 2362 libs optional 
quickflux_1.1.3+git20201110.2a37acf-2.dsc
 b364101c400c65d6804acb4052f93ac7 4436 libs optional 
quickflux_1.1.3+git20201110.2a37acf-2.debian.tar.xz
 924928e3864fe244afcdd678d9e36b8d 12039 libs optional 
quickflux_1.1.3+git20201110.2a37acf-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAmYXBgIVHHN1bndlYXZl
ckBkZWJpYW4ub3JnAAoJEJr0azAldxsxIw0P/jR7awCP0rVnsL8abvxT+6i9+kas
KwBKdIsI+xjlxdj73gzPn0itFF2+H2I5o/Aec12JmzdlEtpCliLaND1jT6+7ow/R
qkZRT3NNUhrFiaRPDmeLrre6TKTyOaRP9wlcGMhRVFkp5JVLJglQ2+WJVwaENaDv
bYYHAkfNn7iQnd3rsrb8S5cahhCO4ANHRZxSvAMaDdlVN6mBcPHugNq5yaxj3gbb
9BXqr2oXRzI8D6cMyafhC6jB3N2yam0Je6CGagEW/XUpUiHcofsXoViehnViqPLy
HADNG1vv6t5EQ404uLgftfcxIgxx+NP58pTeWmZQC89jX3FdDGwHX/hGHJ5LC/nW
Ue+zVqtjNXZb2F2UGty+jVyMZIiNhLWMYSgWkZKvGNfbuc3IxmYjSGn+GIsNh9t6
XN10T3TBpzUGEfwwoeIbxw/TjYki+gYP5PZ/2vG/w51NjeGBu2RkV8PmkA4PUWfP
dtgTUKaarZLVxyjBqr7L52hUPAJ7w24cfAQmm+GD89P+D5WWXeGb8tZxfC98G/fp
CgG+DVSI0c2mljieQF1iMxDn+bjso8BtFH7fFTT6y+PkBf6PKnxvQN4dEH3/TAKm
zB6B8d7w3pKXC0F0cjF4CKO9S1pxN4F2IA0KTWaUdAVE5FGVMq09jXYxyjcYYeIE
OjVOZNI7jfoVg05V
=OxPi
-END PGP SIGNATURE-



pgpWtqapgfZF6.pgp
Description: PGP signature
--- End Message ---


Bug#1065969: ike-scan: FTBFS on arm{el,hf}: configure: error: cannot determine snprintf format string for long long int

2024-04-10 Thread Steve Langasek
Package: ike-scan
Followup-For: Bug #1065969
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue that has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru ike-scan-1.9.5/debian/patches/no-implicit-declarations.patch 
ike-scan-1.9.5/debian/patches/no-implicit-declarations.patch
--- ike-scan-1.9.5/debian/patches/no-implicit-declarations.patch
1969-12-31 16:00:00.0 -0800
+++ ike-scan-1.9.5/debian/patches/no-implicit-declarations.patch
2024-04-10 14:34:34.0 -0700
@@ -0,0 +1,18 @@
+Description: add missing include
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1065969
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: ike-scan-1.9.5/acinclude.m4
+===
+--- ike-scan-1.9.5.orig/acinclude.m4
 ike-scan-1.9.5/acinclude.m4
+@@ -180,6 +180,7 @@
+ AC_CACHE_VAL(pgac_cv_snprintf_long_long_int_format,
+ [for pgac_format in '%lld' '%qd' '%I64d'; do
+ AC_TRY_RUN([#include 
++#include 
+ typedef long long int int64;
+ #define INT64_FORMAT "$pgac_format"
+ 
diff -Nru ike-scan-1.9.5/debian/patches/series 
ike-scan-1.9.5/debian/patches/series
--- ike-scan-1.9.5/debian/patches/series2021-10-18 02:12:52.0 
-0700
+++ ike-scan-1.9.5/debian/patches/series2024-04-10 14:03:18.0 
-0700
@@ -1,2 +1,3 @@
 disable_aggressive_in_v2.patch
 skip-malformed-comp.patch
+no-implicit-declarations.patch


Processed: Re: ike-scan: FTBFS on arm{el,hf}: configure: error: cannot determine snprintf format string for long long int

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1065969 [src:ike-scan] ike-scan: FTBFS on arm{el,hf}: configure: error: 
cannot determine snprintf format string for long long int
Added tag(s) patch.

-- 
1065969: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065969
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1068723: marked as pending in quickflux

2024-04-10 Thread Mike Gabriel
Control: tag -1 pending

Hello,

Bug #1068723 in quickflux reported by you has been fixed in the
Git repository and is awaiting an upload. You can see the commit
message below and you can check the diff of the fix at:

https://salsa.debian.org/ubports-team/quickflux/-/commit/1a2491bf17913a97074cb0bb54385b5bec2ff886


debian/rules: Ignore failures when removing installed example files during 
bin:arch-only builds. (Closes: #1068723).


(this message was generated automatically)
-- 
Greetings

https://bugs.debian.org/1068723



Processed: Bug#1068723 marked as pending in quickflux

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1068723 [src:quickflux] quickflux: binary-any FTBFS
Added tag(s) pending.

-- 
1068723: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068723
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1068655: lomiri-telephony-service FTBFS with abseil 20230802.1

2024-04-10 Thread Adrian Bunk
On Wed, Apr 10, 2024 at 09:02:50PM +, Mike Gabriel wrote:
> Hi Adrian,

Hi Mike,

>...
> I'd appreciate if you could take a look and shed some light on this.
>...

I would have mentioned if I had a clue about this, but I don't.

In places like #debian-devel there might be people who understand at 
first sight what the problem might be.

> Thanks!
> Mike

cu
Adrian



Bug#1068030: marked as done (FTBFS on armel: undefined reference to `__atomic_load_8')

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 21:19:20 +
with message-id 
and subject line Bug#1068030: fixed in maildir-utils 1.12.3-1
has caused the Debian Bug report #1068030,
regarding FTBFS on armel: undefined reference to `__atomic_load_8'
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 ow...@bugs.debian.org
immediately.)


-- 
1068030: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068030
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: maildir-utils
Version: 1.10.8-2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=maildir-
utils=armel=1.10.8-2%2Bb2=1711722478=0

/usr/bin/ld: lib/index/libmu-index.a.p/mu-indexer.cc.o: in function
`std::__atomic_base::store(long long, std::memory_order)':
/usr/include/c++/13/bits/atomic_base.h:481:(.text+0xb14): undefined reference
to `__atomic_store_8'
/usr/bin/ld: lib/index/libmu-index.a.p/mu-indexer.cc.o: in function
`std::__atomic_base::load(std::memory_order) const':
/usr/include/c++/13/bits/atomic_base.h:505:(.text+0x1384): undefined reference
to `__atomic_load_8'


-- System Information:
Debian Release: trixie/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing-debug'), (500, 
'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.7.9-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---
Source: maildir-utils
Source-Version: 1.12.3-1
Done: Jeremy Sowden 

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

Debian distribution maintenance software
pp.
Jeremy Sowden  (supplier of updated maildir-utils 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 20:18:09 +0100
Source: maildir-utils
Architecture: source
Version: 1.12.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Emacsen team 
Changed-By: Jeremy Sowden 
Closes: 1067809 1068030
Changes:
 maildir-utils (1.12.3-1) unstable; urgency=medium
 .
   [ Xiyue Deng ]
   * Add locales-all to Build-Depends which is required by tests
 .
   [ Jeremy Sowden ]
   * New upstream version 1.12.3 (Closes: #1067809)
 - Significant speedups in both mu and mu4e
 - Reworked message composition, closer to its Gnus origins which adds
   many of its features
 - Overhauled the query parser; squashing a number of bugs/limitations,
   incl. dealing with CJK messages
 - Experimental folding of message threads
 - Better and faster indexing of HTML messages
 - Experimental search by (human) language with CLD2
   * d/control
 - update my e-mail address
 - add build-dep on libcld2-0-dev to enable language-search support
 - bump Standards-Version to 4.7.0
   * d/copyright
 - update copyright notice for Dirk-Jan C. Binnema
 - add missing copyright statements and licences
   * d/NEWS
 - add entry for 1.12.3-1 advising that the database needs to be
   reinitialized because of schema updates
   * d/patches
 - delete upstreamed patches
 - refresh patches
   * d/rules
 - fix tabulation in all man-pages containing tables
 - link against libatomic on armel (Closes: #1068030)
Checksums-Sha1:
 51efd0e9ca9d366631822597035ed5ebd8e477e7 2194 maildir-utils_1.12.3-1.dsc
 f6cf069cb54a70dc3f09eadc429fc10a0ca1c77b 958099 
maildir-utils_1.12.3.orig.tar.gz
 d078b2f846dfb40a1959ccc256759a5830cb4efa 12276 
maildir-utils_1.12.3-1.debian.tar.xz
 e0101cff66a2ceb47e57df3f167af2a728d0db76 12460 
maildir-utils_1.12.3-1_amd64.buildinfo
Checksums-Sha256:
 d86675258108cb0714304312d061eca983beaedca1db27e315af03804a5b6794 2194 
maildir-utils_1.12.3-1.dsc
 794da006ecb94063ee00ccea52fe945f0defdb22360686e728dbb4edb93cbb7c 958099 
maildir-utils_1.12.3.orig.tar.gz
 

Bug#1068655: lomiri-telephony-service FTBFS with abseil 20230802.1

2024-04-10 Thread Mike Gabriel

Hi Adrian,

On  Mo 08 Apr 2024 20:36:54 CEST, Adrian Bunk wrote:


Source: lomiri-telephony-service
Version: 0.5.3-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=lomiri-telephony-service=amd64=0.5.3-1%2Bb3=1712518065=0

...
/<>/libtelephonyservice/contactwatcher.cpp: In member  
function ‘void ContactWatcher::updateAlias()’:
/<>/libtelephonyservice/contactwatcher.cpp:157:21:  
error: ‘dgettext’ is not a member of ‘C’; did you mean ‘dgettext’?

  157 | setAlias(C::dgettext("telephony-service", "Private Number"));
  | ^~~~
In file included from  
/usr/include/x86_64-linux-gnu/c++/13/bits/messages_members.h:36,

 from /usr/include/c++/13/bits/locale_facets_nonio.h:2064,
 from /usr/include/c++/13/locale:43,
 from /usr/include/c++/13/iomanip:45,
 from /usr/include/absl/strings/internal/str_format/arg.h:23,
 from /usr/include/absl/strings/str_format.h:78,
 from /usr/include/absl/crc/crc32c.h:32,
 from /usr/include/absl/crc/internal/crc_cord_state.h:23,
 from /usr/include/absl/strings/cord.h:79,
 from  
/usr/include/absl/container/internal/hash_function_defaults.h:56,

 from /usr/include/absl/container/node_hash_set.h:42,
 from /usr/include/phonenumbers/phonenumberutil.h:33,
 from /<>/libtelephonyservice/phoneutils.h:27,
 from  
/<>/libtelephonyservice/contactwatcher.cpp:25:

/usr/include/libintl.h:44:14: note: ‘dgettext’ declared here
   44 | extern char *dgettext (const char *__domainname, const char *__msgid)
  |  ^~~~
/<>/libtelephonyservice/contactwatcher.cpp:159:21:  
error: ‘dgettext’ is not a member of ‘C’; did you mean ‘dgettext’?

  159 | setAlias(C::dgettext("telephony-service", "Unknown Number"));
  | ^~~~
/usr/include/libintl.h:44:14: note: ‘dgettext’ declared here
   44 | extern char *dgettext (const char *__domainname, const char *__msgid)
  |  ^~~~
...



I might need a hand with this. I have been staring at the code and see  
a construct like this:


```
namespace C {
#include 
}


... C::dgettext(...) ...
```

This works in many of the files of lomiri-telephony-service, but not  
in libtelephonyservice/contactwatcher.cpp. Neither in  
indicator/messagingmenu.cpp.


I can omit the "C::" namespace prefix in those files and then the  
build works. (But it used to work the way it is before the recent  
binNMU if lomiri-telephony-service).


I'd appreciate if you could take a look and shed some light on this.

Thanks in advance!!!

As a side note: shouldn't the libintl.h include in an 'extern "C" {  
#include <...> }' environment?


Thanks!
Mike


--

mike gabriel aka sunweaver (Debian Developer)
mobile: +49 (1520) 1976 148
landline: +49 (4351) 486 14 27

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: sunwea...@debian.org, http://sunweavers.net



pgpYMmDVKrc7t.pgp
Description: Digitale PGP-Signatur


Processed: Re: httest: FTBFS: socks_module.c:115:21: error: implicit declaration of function ‘atoi’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066672 [src:httest] httest: FTBFS: socks_module.c:115:21: error: implicit 
declaration of function ‘atoi’ [-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066672: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066672
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066672: httest: FTBFS: socks_module.c:115:21: error: implicit declaration of function ‘atoi’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Steve Langasek
Package: httest
Followup-For: Bug #1066672
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue which has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru httest-2.4.23/debian/patches/no-implicit-declarations.patch 
httest-2.4.23/debian/patches/no-implicit-declarations.patch
--- httest-2.4.23/debian/patches/no-implicit-declarations.patch 1969-12-31 
16:00:00.0 -0800
+++ httest-2.4.23/debian/patches/no-implicit-declarations.patch 2024-04-10 
13:45:54.0 -0700
@@ -0,0 +1,43 @@
+Description: add missing includes
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1066672
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: httest-2.4.23/src/socks_module.c
+===
+--- httest-2.4.23.orig/src/socks_module.c
 httest-2.4.23/src/socks_module.c
+@@ -25,6 +25,8 @@
+ /
+  * Includes
+  ***/
++#include 
++
+ #include "module.h"
+ #ifndef HAVE_NO_NETINET
+   #include 
+Index: httest-2.4.23/src/annotation_module.c
+===
+--- httest-2.4.23.orig/src/annotation_module.c
 httest-2.4.23/src/annotation_module.c
+@@ -25,6 +25,7 @@
+ /
+  * Includes
+  ***/
++#include 
+ #include "module.h"
+ 
+ /
+Index: httest-2.4.23/src/dbg_module.c
+===
+--- httest-2.4.23.orig/src/dbg_module.c
 httest-2.4.23/src/dbg_module.c
+@@ -24,6 +24,7 @@
+ /
+  * Includes
+  ***/
++#include 
+ #include "store.h"
+ #include "module.h"
+ 
diff -Nru httest-2.4.23/debian/patches/series 
httest-2.4.23/debian/patches/series
--- httest-2.4.23/debian/patches/series 2023-12-18 04:21:33.0 -0800
+++ httest-2.4.23/debian/patches/series 2024-04-10 13:45:05.0 -0700
@@ -4,3 +4,4 @@
 fix-gcc-10.patch
 autoconf-2.70.patch
 pcre2.patch
+no-implicit-declarations.patch


Bug#1065777: clblas: FTBFS on arm{el,hf}: /<>/src/library/blas/gens/symv.c:955:29: error: implicit declaration of function ‘abs’; did you mean ‘fabs’? [-Werror=implicit-function-declarati

2024-04-10 Thread Steve Langasek
Package: clblas
Followup-For: Bug #1065777
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Apologies, the patch I attached fixed a real missing include, but not the
one mentioned in this bug and the package still failed to build.  Attached
is a patch that has passed build testing locally with
DEB_CFLAGS_APPEND=-Werror=implicit-function-declaration in Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru clblas-2.12/debian/patches/no-implicit-declarations.patch 
clblas-2.12/debian/patches/no-implicit-declarations.patch
--- clblas-2.12/debian/patches/no-implicit-declarations.patch   1969-12-31 
16:00:00.0 -0800
+++ clblas-2.12/debian/patches/no-implicit-declarations.patch   2024-04-09 
14:42:11.0 -0700
@@ -0,0 +1,30 @@
+Description: Add missing stdlib.h includes
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1065777
+Last-Update: 2024-04-09
+Forwarded: no
+
+Index: clblas-2.12/src/library/blas/gens/gemv.c
+===
+--- clblas-2.12.orig/src/library/blas/gens/gemv.c
 clblas-2.12/src/library/blas/gens/gemv.c
+@@ -21,6 +21,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+Index: clblas-2.12/src/library/blas/gens/symv.c
+===
+--- clblas-2.12.orig/src/library/blas/gens/symv.c
 clblas-2.12/src/library/blas/gens/symv.c
+@@ -21,6 +21,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
diff -Nru clblas-2.12/debian/patches/series clblas-2.12/debian/patches/series
--- clblas-2.12/debian/patches/series   2023-09-28 16:21:54.0 -0700
+++ clblas-2.12/debian/patches/series   2024-04-09 14:40:35.0 -0700
@@ -9,3 +9,4 @@
 Fix-double-literals.patch
 Fix-null-pointer-crash.patch
 Fix-local-variables-not-declared-in-outermost-scope.patch
+no-implicit-declarations.patch


Bug#1067309: marked as done (xerces-c: FTBFS: Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/lib/jvm/java-17-openjdk-amd64/lib/libfontmanager.so: libharfbuzz.so.0: cannot open shared

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 20:35:14 +
with message-id 
and subject line Bug#1067309: fixed in xerces-c 3.2.4+debian-1.3
has caused the Debian Bug report #1067309,
regarding xerces-c: FTBFS: Exception in thread "main" 
java.lang.UnsatisfiedLinkError: 
/usr/lib/jvm/java-17-openjdk-amd64/lib/libfontmanager.so: libharfbuzz.so.0: 
cannot open shared object file: No such file or directory
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 ow...@bugs.debian.org
immediately.)


-- 
1067309: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067309
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: xerces-c
Version: 3.2.4+debian-1.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240319 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> mkdir -p doc/html
> java -Djava.awt.headless=true -classpath '/usr/share/java/*' \
>   org.apache.stylebook.StyleBook "targetDirectory=doc/html" \
>   doc/xerces-c_book.xml doc/style
> [StyleBook] Overriding targetDirectory="doc/html" (Old=".")
> [StyleBook] Project URL: "sbk:/sources/xerces-c_book.xml"
> [BasicEngine] Initializing
> [Loader] Parsing Project file
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/book2project.xsl"
> [Xalan2Processor] Applying XSL sheet 
> "sbk:/style/stylesheets/directory2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] Applying XSL sheet "sbk:/style/stylesheets/any2project.xsl"
> [Xalan2Processor] 

Processed: Re: clblas: FTBFS on arm{el,hf}: /<>/src/library/blas/gens/symv.c:955:29: error: implicit declaration of function ‘abs’; did you mean ‘fabs’? [-Werror=implicit-function-declara

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1065777 [src:clblas] clblas: FTBFS on arm{el,hf}: 
/<>/src/library/blas/gens/symv.c:955:29: error: implicit 
declaration of function ‘abs’; did you mean ‘fabs’? 
[-Werror=implicit-function-declaration]
Ignoring request to alter tags of bug #1065777 to the same tags previously set

-- 
1065777: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065777
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Tag patch for crmsh dep8 failure

2024-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 1068562 patch
Bug #1068562 [src:crmsh] crmsh: autopkgtest regression: unsupported operand 
type(s) for -: 'NoneType' and 'int'
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1068562: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068562
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1068562: Upstream proposed fix for unit test failure

2024-04-10 Thread Athos Ribeiro

Hi,

I submitted a salsa MR at
https://salsa.debian.org/ha-team/crmsh/-/merge_requests/7 with a fix
for this one.

--
Athos Ribeiro



Bug#1067309: xerces-c: FTBFS: Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/lib/jvm/java-17-openjdk-amd64/lib/libfontmanager.so: libharfbuzz.so.0: cannot open shared object file: No

2024-04-10 Thread Bastian Germann

I am uploading a NMU to fix this.
The debdiff is attached.diff -Nru xerces-c-3.2.4+debian/debian/changelog 
xerces-c-3.2.4+debian/debian/changelog
--- xerces-c-3.2.4+debian/debian/changelog  2024-02-29 07:28:56.0 
+
+++ xerces-c-3.2.4+debian/debian/changelog  2024-04-10 20:08:55.0 
+
@@ -1,3 +1,10 @@
+xerces-c (3.2.4+debian-1.3) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Remove default-jre-headless B-D alternative. Closes: #1067309
+
+ -- Bastian Germann   Wed, 10 Apr 2024 20:08:55 +
+
 xerces-c (3.2.4+debian-1.2) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru xerces-c-3.2.4+debian/debian/control 
xerces-c-3.2.4+debian/debian/control
--- xerces-c-3.2.4+debian/debian/control2024-02-29 07:28:56.0 
+
+++ xerces-c-3.2.4+debian/debian/control2024-04-10 20:08:42.0 
+
@@ -5,7 +5,7 @@
libcurl4-gnutls-dev,
libicu-dev
 Build-Depends-Indep: doxygen,
- default-jre-headless | default-jre,
+ default-jre,
  libatk-wrapper-java,
  libstylebook-java,
  libxalan2-java,


Processed: Re: i2pd: FTBFS on armel: Host compiler appears to require libatomic for 64-bit operations, but cannot find it.

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> forwarded -1 
> https://github.com/PurpleI2P/i2pd/commit/6b33250c599f138d8834fb00bfe9f936bc9d8894
Bug #1060787 [src:i2pd] i2pd: FTBFS on armel: Host compiler appears to require 
libatomic for 64-bit operations, but cannot find it.
Set Bug forwarded-to-address to 
'https://github.com/PurpleI2P/i2pd/commit/6b33250c599f138d8834fb00bfe9f936bc9d8894'.

-- 
1060787: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1060787
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1060787: i2pd: FTBFS on armel: Host compiler appears to require libatomic for 64-bit operations, but cannot find it.

2024-04-10 Thread Bastian Germann

Control: forwarded -1 
https://github.com/PurpleI2P/i2pd/commit/6b33250c599f138d8834fb00bfe9f936bc9d8894

This is fixed with upstream v2.50. See forwarded URL.



Bug#1068770: linux-image-6.1.0-18-amd64: Local privilege escalation vulnerability in kernel n_gsm driver

2024-04-10 Thread Salvatore Bonaccorso
Control: tags -1 + confirmed pending
Control: found -1 6.1.82-1

Hi,

On Wed, Apr 10, 2024 at 12:16:21PM -0700, LW wrote:
> Package: src:linux
> Version: 6.1.76-1
> Severity: critical
> Tags: upstream security
> Justification: root security hole
> X-Debbugs-Cc: lw-deb-...@greyskydesigns.com, Debian Security Team 
> 
> 
> Dear Maintainer,
> 
> A Reddit thread[1] linked to a Github page[2] with a local root
> escalation exploit.  This exploit works on the current "bookworm"
> stable kernel, 6.1.0-18-amd64.
> 
> It can be worked around by blocking the n_gsm driver:
> 
> echo 'blacklist n_gsm' | sudo tee -a /etc/modprobe.d/blacklist-gsm.conf
> sudo rmmod n_gsm
> 
> 
> [1] 
> https://old.reddit.com/r/linux/comments/1c0i7tx/someone_found_a_kernel_0day/
> [2] https://github.com/YuriiCrimson/ExploitGSM/

Thanks we are already aware of the issue.

Upstream is going to apply a mitigation for the issue:
https://lore.kernel.org/stable/2024041054-asleep-replace-96e8@gregkh/T/#m3a8ce43359ad57e447faa4db6ecf4f4c1b60c498

Regards,
Salvatore



Processed: Re: Bug#1068770: linux-image-6.1.0-18-amd64: Local privilege escalation vulnerability in kernel n_gsm driver

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed pending
Bug #1068770 [src:linux] linux-image-6.1.0-18-amd64: Local privilege escalation 
vulnerability in kernel n_gsm driver
Added tag(s) pending and confirmed.
> found -1 6.1.82-1
Bug #1068770 [src:linux] linux-image-6.1.0-18-amd64: Local privilege escalation 
vulnerability in kernel n_gsm driver
Marked as found in versions linux/6.1.82-1.

-- 
1068770: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068770
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: severity of 1068770 is grave

2024-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 1068770 grave
Bug #1068770 [src:linux] linux-image-6.1.0-18-amd64: Local privilege escalation 
vulnerability in kernel n_gsm driver
Severity set to 'grave' from 'critical'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1068770: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068770
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1068770: linux-image-6.1.0-18-amd64: Local privilege escalation vulnerability in kernel n_gsm driver

2024-04-10 Thread LW
Package: src:linux
Version: 6.1.76-1
Severity: critical
Tags: upstream security
Justification: root security hole
X-Debbugs-Cc: lw-deb-...@greyskydesigns.com, Debian Security Team 


Dear Maintainer,

A Reddit thread[1] linked to a Github page[2] with a local root escalation 
exploit.  This exploit works on the current "bookworm" stable kernel, 
6.1.0-18-amd64.

It can be worked around by blocking the n_gsm driver:

echo 'blacklist n_gsm' | sudo tee -a /etc/modprobe.d/blacklist-gsm.conf
sudo rmmod n_gsm


[1] https://old.reddit.com/r/linux/comments/1c0i7tx/someone_found_a_kernel_0day/
[2] https://github.com/YuriiCrimson/ExploitGSM/


-- Package-specific info:
** Version:
Linux version 6.1.0-18-amd64 (debian-ker...@lists.debian.org) (gcc-12 (Debian 
12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP 
PREEMPT_DYNAMIC Debian 6.1.76-1 (2024-02-01)

** Command line:
BOOT_IMAGE=/@rootfs/boot/vmlinuz-6.1.0-18-amd64 root=UUID=403bad0f-[snip] ro 
rootflags=subvol=@rootfs panic=5

** Not tainted

** Kernel log:
[2.783100] at24 0-0051: supply vcc not found, using dummy regulator
[2.784137] at24 0-0051: 256 byte spd EEPROM, read-only
[2.789726] usb 2-1.3: FTDI USB Serial Device converter now attached to 
ttyUSB1
[2.806774] ipmi_si: IPMI System Interface driver
[2.810971] usbcore: registered new interface driver usbhid
[2.811095] usbhid: USB HID core driver
[2.811363] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[2.811489] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 1 irq 0
[2.811630] ipmi_si: Adding SMBIOS-specified kcs state machine
[2.811813] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[2.812069] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca8] regsize 1 
spacing 4 irq 0
[2.818248] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state 
machine in favor of ACPI
[2.818400] ipmi_si: Adding ACPI-specified kcs state machine
[2.818581] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 
0xca8, slave address 0x20, irq 0
[2.825415] input: American Megatrends Inc. Virtual Keyboard and Mouse as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/0003:046B:FF10.0001/input/input3
[2.832623] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 
Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on 
usb-:00:1a.0-1.5.1/input0
[2.832950] input: American Megatrends Inc. Virtual Keyboard and Mouse as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.1/0003:046B:FF10.0002/input/input4
[2.834908] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 
Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on 
usb-:00:1a.0-1.5.1/input1
[2.842988] ast :0a:00.0: vgaarb: deactivate vga console
[2.844608] Console: switching to colour dummy device 80x25
[2.846274] ast :0a:00.0: [drm] Using P2A bridge for configuration
[2.846281] ast :0a:00.0: [drm] AST 1100 detected
[2.846293] ast :0a:00.0: [drm] Using analog VGA
[2.846303] ast :0a:00.0: [drm] dram MCLK=204 Mhz type=0 bus_width=16
[2.850155] [drm] Initialized ast 0.1.0 20120228 for :0a:00.0 on minor 0
[2.855445] fbcon: astdrmfb (fb0) is primary device
[2.896398] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 
0x0019fd, prod_id: 0x1588, dev_id: 0x20)
[2.956975] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms 
ovfl timer
[2.956979] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[2.956980] RAPL PMU: hw unit of domain package 2^-16 Joules
[2.962273] cfg80211: Loading compiled-in X.509 certificates for regulatory 
database
[2.962515] cfg80211: Loaded X.509 cert 'b...@debian.org: 
577e021cb980e0e820821ba7b54b4961b8b4fadf'
[2.962782] cfg80211: Loaded X.509 cert 'romain.per...@gmail.com: 
3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[2.963083] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[2.963382] cfg80211: Loaded X.509 cert 'wens: 
61c038651aabdcf94bd0ac7ff06c7248db18c600'
[2.964803] platform regulatory.0: firmware: direct-loading firmware 
regulatory.db
[2.964836] platform regulatory.0: firmware: direct-loading firmware 
regulatory.db.p7s
[2.965857] cryptd: max_cpu_qlen set to 1000
[2.968485] Console: switching to colour frame buffer device 128x48
[2.970095] ast :0a:00.0: [drm] fb0: astdrmfb frame buffer device
[2.985684] AVX version of gcm_enc/dec engaged.
[2.985759] AES CTR mode by8 optimization enabled
[3.09] ipmi_si IPI0001:00: IPMI kcs interface initialized
[3.015582] ipmi_ssif: IPMI SSIF Interface driver
[3.171484] bond1: (slave enp6s0): Enslaving as a backup interface with a 
down link
[3.190106] random: crng init done
[3.315374] bond1: (slave enp5s0): Enslaving as a backup interface with a 
down link
[3.377310] intel_rapl_common: Found RAPL domain package
[3.377890] 

Bug#1066359: aview: FTBFS: main.c:30:86: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Gianfranco Costamagna

control: tags -1 patch

diff -Nru aview-1.3.0rc1/debian/changelog aview-1.3.0rc1/debian/changelog
--- aview-1.3.0rc1/debian/changelog 2024-04-01 05:32:50.0 +
+++ aview-1.3.0rc1/debian/changelog 2024-04-10 18:19:03.0 +
@@ -1,3 +1,10 @@
+aview (1.3.0rc1-9.2ubuntu1) noble; urgency=medium
+
+  * debian/patches/no-implicit-declarations.patch: add missing includes.
+Closes: #1066359.
+
+ -- Steve Langasek   Wed, 10 Apr 2024 18:19:03 +
+
 aview (1.3.0rc1-9.2build1) noble; urgency=medium
 
   * No-change rebuild for CVE-2024-3094

diff -Nru aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch 
aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch
--- aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch
1970-01-01 00:00:00.0 +
+++ aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch
2024-04-10 18:18:59.0 +
@@ -0,0 +1,15 @@
+Description: add missing includes
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1066359
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: aview-1.3.0rc1/main.c
+===
+--- aview-1.3.0rc1.orig/main.c
 aview-1.3.0rc1/main.c
+@@ -1,3 +1,4 @@
++#include 
+ #include 
+ #include 
+ #include "image.h"
diff -Nru aview-1.3.0rc1/debian/patches/series 
aview-1.3.0rc1/debian/patches/series
--- aview-1.3.0rc1/debian/patches/series2024-02-17 23:14:52.0 
+
+++ aview-1.3.0rc1/debian/patches/series2024-04-10 18:18:13.0 
+
@@ -2,3 +2,4 @@
 01_manpages.patch
 02_tmp_creation.patch
 03_missing_library.patch
+no-implicit-declarations.patch

G.
On Wed, 13 Mar 2024 12:48:02 +0100 Lucas Nussbaum  wrote:

Source: aview
Version: 1.3.0rc1-9.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I. -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
-Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
-fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security 
-fcf-protection -I/usr/include -c main.c
> main.c: In function ‘parse_cmdline’:
> main.c:30:86: error: implicit declaration of function ‘exit’ 
[-Werror=implicit-function-declaration]
>30 |   if (!strcmp(argv[i], "--help") || !strcmp(argv[i], "-h")) { 
showhelp(argv[0]); exit(0); }
>   |   
   ^~~~
> main.c:6:1: note: include ‘’ or provide a declaration of ‘exit’
> 5 | #include "config.h"
>   +++ |+#include 
> 6 | 
> main.c:30:86: warning: incompatible implicit declaration of built-in function ‘exit’ [-Wbuiltin-declaration-mismatch]

>30 |   if (!strcmp(argv[i], "--help") || !strcmp(argv[i], "-h")) { 
showhelp(argv[0]); exit(0); }
>   |   
   ^~~~
> main.c:30:86: note: include ‘’ or provide a declaration of ‘exit’
> main.c:31:66: warning: incompatible implicit declaration of built-in function 
‘exit’ [-Wbuiltin-declaration-mismatch]
>31 |   if (!strcmp(argv[i], "--version")) { showversion(argv[0]); 
exit(0); }
>   |  ^~~~
> main.c:31:66: note: include ‘’ or provide a declaration of ‘exit’
> main.c:33:7: warning: incompatible implicit declaration of built-in function 
‘exit’ [-Wbuiltin-declaration-mismatch]
>33 |   exit(-1);
>   |   ^~~~
> main.c:33:7: note: include ‘’ or provide a declaration of ‘exit’
> main.c: In function ‘main’:
> main.c:49:9: warning: incompatible implicit declaration of built-in function 
‘exit’ [-Wbuiltin-declaration-mismatch]
>49 | exit(-1);
>   | ^~~~
> main.c:49:9: note: include ‘’ or provide a declaration of ‘exit’
> main.c:52:9: warning: incompatible implicit declaration of built-in function 
‘exit’ [-Wbuiltin-declaration-mismatch]
>52 | exit(-1);
>   | ^~~~
> main.c:52:9: note: include ‘’ or provide a declaration of ‘exit’
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:187: main.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/aview_1.3.0rc1-9.2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results



OpenPGP_signature.asc
Description: 

Processed: Re: aview: FTBFS: main.c:30:86: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066359 [src:aview] aview: FTBFS: main.c:30:86: error: implicit 
declaration of function ‘exit’ [-Werror=implicit-function-declaration]
Ignoring request to alter tags of bug #1066359 to the same tags previously set

-- 
1066359: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066359
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066359: aview: FTBFS: main.c:30:86: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Steve Langasek
Package: aview
Followup-For: Bug #1066359
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Please find attached a patch for this issue which has been uploaded to
Ubuntu.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developer   https://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch 
aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch
--- aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch
1969-12-31 16:00:00.0 -0800
+++ aview-1.3.0rc1/debian/patches/no-implicit-declarations.patch
2024-04-10 11:18:59.0 -0700
@@ -0,0 +1,15 @@
+Description: add missing includes
+Author: Steve Langasek 
+Bug-Debian: https://bugs.debian.org/1066359
+Last-Update: 2024-04-10
+Forwarded: no
+
+Index: aview-1.3.0rc1/main.c
+===
+--- aview-1.3.0rc1.orig/main.c
 aview-1.3.0rc1/main.c
+@@ -1,3 +1,4 @@
++#include 
+ #include 
+ #include 
+ #include "image.h"
diff -Nru aview-1.3.0rc1/debian/patches/series 
aview-1.3.0rc1/debian/patches/series
--- aview-1.3.0rc1/debian/patches/series2024-02-17 15:14:52.0 
-0800
+++ aview-1.3.0rc1/debian/patches/series2024-04-10 11:18:13.0 
-0700
@@ -2,3 +2,4 @@
 01_manpages.patch
 02_tmp_creation.patch
 03_missing_library.patch
+no-implicit-declarations.patch


Processed: Re: aview: FTBFS: main.c:30:86: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066359 [src:aview] aview: FTBFS: main.c:30:86: error: implicit 
declaration of function ‘exit’ [-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066359: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066359
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1065904: marked as done (nim: hardcoded (build-)dependencies on libssl3)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 18:20:56 +
with message-id 
and subject line Bug#1065904: fixed in nim 1.6.14-2
has caused the Debian Bug report #1065904,
regarding nim: hardcoded (build-)dependencies on libssl3
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 ow...@bugs.debian.org
immediately.)


-- 
1065904: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065904
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: nim
Version: 1.6.14-1
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: sramac...@debian.org

nim has hardcoded Build-Depends and Depends on libssl3. Since libssl3 is
involved in the time_t transition, the package was renamed. Please drop
the explicit mention of libssl3 in the dependencies. For the binary
package, ELF binaries linking to shared libraries of openssl will make
libssl3 to be appended to shlibs:Depends. For Build-Dependencies, it is
preferable to mention only the -dev package.

Cheers
-- 
Sebastian Ramacher
--- End Message ---
--- Begin Message ---
Source: nim
Source-Version: 1.6.14-2
Done: Federico Ceratto 

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

Debian distribution maintenance software
pp.
Federico Ceratto  (supplier of updated nim 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 18:18:55 +0200
Source: nim
Binary: nim nim-dbgsym nim-doc
Architecture: source amd64 all
Version: 1.6.14-2
Distribution: unstable
Urgency: medium
Maintainer: Federico Ceratto 
Changed-By: Federico Ceratto 
Description:
 nim- Nim programming language - compiler
 nim-doc- Nim programming language - documentation
Closes: 1065904
Changes:
 nim (1.6.14-2) unstable; urgency=medium
 .
   [ Samuel Thibault ]
   * control: Add hurd-amd64 case.
 .
   [ Federico Ceratto ]
   * Drop libssl3 build dep (Closes: #1065904)
Checksums-Sha1:
 b90a85373f1befa3d7a4730eaebdf68ac61d313d 2216 nim_1.6.14-2.dsc
 7336af32a85f8fb67007c7f8698d28bef8b818ee 11828 nim_1.6.14-2.debian.tar.xz
 f5ff9f8b303ba991271c61a8de67d4899848df84 12413100 nim-dbgsym_1.6.14-2_amd64.deb
 f4cce966a25e5ac8259481c6b93f64557c27f923 1405688 nim-doc_1.6.14-2_all.deb
 677983e156af4b55d15190e0529e2d8612d55d16 6585 nim_1.6.14-2_amd64.buildinfo
 f81823e5a2e484294572dc05aaa9d6a4ad19b162 4164752 nim_1.6.14-2_amd64.deb
Checksums-Sha256:
 e76707525717c9b845fc76935cdb4f616390e972111f6a3f87353d03fdce665c 2216 
nim_1.6.14-2.dsc
 64eaa20c1fa4bfb6dc6b5079b57f3b2b8fa512cd097edd39b1083bf13280f3a9 11828 
nim_1.6.14-2.debian.tar.xz
 a75798a065b37b7a8974f20ff55630b40d04e753bdb46ace57ed48570f77211f 12413100 
nim-dbgsym_1.6.14-2_amd64.deb
 3c0fdee5e02dd73ac887feaf6abf4c169fb4853f1b5941637cb2c5d84f1f1a55 1405688 
nim-doc_1.6.14-2_all.deb
 0d108fa90eae5f0ee496c5402f5fa6ed0e9e109e68ade156de36769880773352 6585 
nim_1.6.14-2_amd64.buildinfo
 03677ecc4549a5b4d9bf1176d6dd51319834040a6bbfe8c2231c6ce8996aa1b9 4164752 
nim_1.6.14-2_amd64.deb
Files:
 45f5e664f80210aad8e122eea0c3698f 2216 devel optional nim_1.6.14-2.dsc
 44f57532ee86e3ef7cec75e7cea4b5f3 11828 devel optional 
nim_1.6.14-2.debian.tar.xz
 4dd1e3cb8c77e291125a2d82b0a29ab4 12413100 debug optional 
nim-dbgsym_1.6.14-2_amd64.deb
 4b23073ffc1d2ef8e493d4a38cb864a9 1405688 doc optional nim-doc_1.6.14-2_all.deb
 58ebc4aa07a071478e5d68d792b1f064 6585 devel optional 
nim_1.6.14-2_amd64.buildinfo
 c11a62071e3f44a81e6b66fd42ea1f61 4164752 devel optional nim_1.6.14-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfKfd+zM5IUCMbyuWbzG8RPUXfaoFAmYW0TgACgkQbzG8RPUX
faoDtw//V4NMqAAB0FBOPJe5267BIFaqmUCGGNX4/Eruypiw+H9Chmed0IRdds+k
SCyVNsPIPit3lXnKOGnGmMv3CpcmAbLKxJm43NePlD6tO9q9rCjZgGkYLcJ+1rbw
fRQs7NhWEkIUP9Z+Nt7ykzyP0mjK/kZGURk/E/SvKEpd7XSLSBun/F2hzGfeOKq+
U2A2nAesK2pLklv/cGOn//c4ZvDaXEekoreb3Qx0xME5c88voV8BTYoBlK2JNKVO
nHTtHxfvPQBxC81Q9XGuRbd+Jdd5k3ZMEWKaw9ZCJJq7LI8snAlEJO6gArV+nG57
YmP1ymBVYGODrRetcX/szmTOVwDP8UjxmGZi3K/uoDKjjDDG0TPH1rfsB4HxRWl8
ZbjXZYEZcZrEV73rsb0nfSlGsQ/BmeGB9D7lh4OgDZvPGL8KnuBkbn1ts+oPCOmx

Bug#1065761: m4api: FTBFS on arm{el,hf}: /<>/m4api.c:413:10: error: implicit declaration of function ‘m4SetBinary’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Nick Rosbrook
Package: m4api
Followup-For: Bug #1065761
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Dear Maintainer,

In Ubuntu, the attached patch was applied to fix the implicit
declarations.

  * debian/patches: fix several implicit declarations (LP: #2060847)


Thanks for considering the patch.

-Nick
diff -Nru 
m4api-0.3~0.9646fd/debian/patches/fix-several-implicit-declarations.patch 
m4api-0.3~0.9646fd/debian/patches/fix-several-implicit-declarations.patch
--- m4api-0.3~0.9646fd/debian/patches/fix-several-implicit-declarations.patch   
1969-12-31 19:00:00.0 -0500
+++ m4api-0.3~0.9646fd/debian/patches/fix-several-implicit-declarations.patch   
2024-04-10 13:41:11.0 -0400
@@ -0,0 +1,27 @@
+Description: Fix several implicit declarations
+Author: Nick Rosbrook 
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/2060847
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066290
+Last-Update: 2024-04-10
+--- a/m4api.c
 b/m4api.c
+@@ -391,6 +391,8 @@
+   return 0;
+ }
+ 
++int m4SetBinary(m4Handle *dev, struct m4ConfigField *field, char const *val);
++
+ int m4SetFloat(m4Handle *dev, enum m4FieldID fid, float val) {
+   char binary[2];
+   int ival;
+--- a/m4ctl.c
 b/m4ctl.c
+@@ -17,6 +17,8 @@
+  */
+ 
+ #include 
++#include 
++#include 
+ #include 
+ 
+ #include "m4api.h"
diff -Nru m4api-0.3~0.9646fd/debian/patches/series 
m4api-0.3~0.9646fd/debian/patches/series
--- m4api-0.3~0.9646fd/debian/patches/series1969-12-31 19:00:00.0 
-0500
+++ m4api-0.3~0.9646fd/debian/patches/series2024-04-10 13:40:41.0 
-0400
@@ -0,0 +1 @@
+fix-several-implicit-declarations.patch


Processed: Re: m4api: FTBFS on arm{el,hf}: /<>/m4api.c:413:10: error: implicit declaration of function ‘m4SetBinary’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1065761 [src:m4api] m4api: FTBFS on arm{el,hf}: 
/<>/m4api.c:413:10: error: implicit declaration of function 
‘m4SetBinary’ [-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1065761: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065761
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066872: marked as done (mozjs102: Fails to build with Python 3.12)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 17:59:41 +
with message-id 
and subject line Bug#1066872: fixed in mozjs102 102.15.1-4
has caused the Debian Bug report #1066872,
regarding mozjs102: Fails to build with Python 3.12
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 ow...@bugs.debian.org
immediately.)


-- 
1066872: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066872
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mozjs102
Version: 102.15.1-3
Severity: serious
Tags: ftbfs sid
X-Debbugs-CC: c...@packages.debian.org
Control: affects -1 src:cjs

mozjs102 fails to build with Python 3.12 as default. We fixed similar
issues with mozjs115. Could we please convince cjs to switch to
mozjs115?

https://launchpad.net/ubuntu/+source/mozjs102/102.15.1-3

Thank you,
Jeremy Bícha
--- End Message ---
--- Begin Message ---
Source: mozjs102
Source-Version: 102.15.1-4
Done: Jeremy Bícha 

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

Debian distribution maintenance software
pp.
Jeremy Bícha  (supplier of updated mozjs102 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 13:22:46 -0400
Source: mozjs102
Built-For-Profiles: noudeb
Architecture: source
Version: 102.15.1-4
Distribution: unstable
Urgency: medium
Maintainer: Ubuntu Developers 
Changed-By: Jeremy Bícha 
Closes: 1066872
Launchpad-Bugs-Fixed: 2058787
Changes:
 mozjs102 (102.15.1-4) unstable; urgency=medium
 .
   [ Steve Langasek ]
   * debian/patches/python3.12-compat.patch: distutils is obsolete, use
 supported replacements.
 .
   [ Aaron Rainbolt ]
   * Fix an entire mountain of Python 3.12 incompatibilities. (LP: #2058787)
 (Closes: #1066872)
Checksums-Sha1:
 2b2dbcca93a45ed76bf52f0baf96c3c8ffbe1501 2488 mozjs102_102.15.1-4.dsc
 d4997e982826a479fae03e39228cbef8e46144f3 72428 
mozjs102_102.15.1-4.debian.tar.xz
 dc516aa8119e48464bfc1a8b308866010c95d499 14945 
mozjs102_102.15.1-4_source.buildinfo
Checksums-Sha256:
 419059c1f35c7d7062180f15e00d1d17060b1e10728187a1eb72518093ed3493 2488 
mozjs102_102.15.1-4.dsc
 585fd0fe2d31ae83ac990e7da8533dc612d6968bd5a5aad9e78a96674cd5d112 72428 
mozjs102_102.15.1-4.debian.tar.xz
 4ff731074442bf9401114735c9a3b958e57af04264d6d9a5b5c08471912f5341 14945 
mozjs102_102.15.1-4_source.buildinfo
Files:
 411d1b94bd5a3b923ebf45bf1964ee91 2488 libs optional mozjs102_102.15.1-4.dsc
 dcc6468346180b393c4a3956ff0a4c28 72428 libs optional 
mozjs102_102.15.1-4.debian.tar.xz
 5ef094c79d06ffb8e21ddc77cacf94e9 14945 libs optional 
mozjs102_102.15.1-4_source.buildinfo
Original-Maintainer: Debian GNOME Maintainers 


-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEETQvhLw5HdtiqzpaW5mx3Wuv+bH0FAmYWzrEACgkQ5mx3Wuv+
bH3Ksw/+JB/Rl+CSZ8nUEj7r40hS+fdNtQglCDyexk2rN3fcMSEiFCKG+SOrmo5P
GEqHRZMFY1QIstK86PBmna6egcc2xENJxPUay9oJsxfPwUKx2Q2gvs0TeMmCNbNJ
RL/kBzdpp5sVmjhV90Xmr38I7gilmuTW+lQhEWuDZ9Hq6OPt62joj/e20N9qaSx4
hxatPlAtL4qpScZP9UHDyfhkBNdGboXvKmHkG+F0uWVtpr2tzyg6JAWjSj9I6d9C
TgQ6ZLrz0CHBFoRAkb0vscXhE/HwIa4CbU/xSHiheGps+owX1no5qXiZy4ZXBwlf
n9QBNhWfH7TSKcvm6vVpniRPZ2F581QA1GeMKppYKWVGOn1LlC3IOdJvsIUljbhc
zlzEtY9oN1kwcswqZUZvnluJBZahzL+kxYuXOEeUv+HUmnTtuHR4L5j2xqB4m746
mV0r7yVM4dPfAIh4eXJSZ9Kk0kIApEjvgLT4rujlIe1H7tHdd90oml1YjA6rJkVj
n7M8rnCRhBGkxEA63awyNacQ0gNThiXFyose305CCfxoXjdYSDgLu9mfQ0YEBLsq
lVGlnkStG9bVqOFd2CG6Z6tQx6T8dYPeK9+nWmpePimvMRGqNMpkJyoPSlbJlzSl
ji+hKCkkQDYWrPiXB00waHedGxgbWdXGS2du75+1v9ov5SD/a74=
=1ATk
-END PGP SIGNATURE-



pgpLJBhapVbPt.pgp
Description: PGP signature
--- End Message ---


Bug#1039034: marked as done (ruby-arel: obsolete, integrated into ruby-activerecord, incompatible with ruby-activerecord 6.1.x)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:40:09 +
with message-id 
and subject line Bug#1068712: Removed package(s) from unstable
has caused the Debian Bug report #1039034,
regarding ruby-arel: obsolete, integrated into ruby-activerecord, incompatible 
with ruby-activerecord 6.1.x
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 ow...@bugs.debian.org
immediately.)


-- 
1039034: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1039034
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: schleuder
Version: 4.0.3-7
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'buster' to 'bullseye' to 'bookworm'.
It installed fine in 'buster', and upgraded to 'bullseye' successfully,
but then the upgrade to 'bookworm' failed.

>From the attached log (scroll to the bottom...):

  Setting up schleuder (4.0.3-7) ...
  Installing new version of config file /etc/postfix/schleuder_sqlite.cf ...
  Installing new version of config file /etc/schleuder/schleuder.yml ...
  rake aborted!
  NoMethodError: undefined method `preparable=' for 
#, 
@right=#>

  collector.preparable = true
   ^
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/connection_adapters/abstract/database_statements.rb:27:in
 `to_sql_and_binds'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/connection_adapters/abstract/database_statements.rb:64:in
 `select_all'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/connection_adapters/abstract/query_cache.rb:103:in
 `select_all'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/relation/calculations.rb:200:in
 `block in pluck'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/relation.rb:861:in
 `skip_query_cache_if_necessary'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/relation/calculations.rb:196:in
 `pluck'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/schema_migration.rb:46:in
 `all_versions'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1282:in
 `load_migrated'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1278:in
 `migrated'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1314:in
 `ran?'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1260:in
 `block in runnable'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1260:in
 `reject'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1260:in
 `runnable'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1302:in
 `migrate_without_lock'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1253:in
 `migrate'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1086:in
 `up'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/migration.rb:1061:in
 `migrate'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/tasks/database_tasks.rb:237:in
 `migrate'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/railties/databases.rake:92:in
 `block (3 levels) in '
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/railties/databases.rake:90:in
 `each'
  
/usr/share/rubygems-integration/all/gems/activerecord-6.1.7.3/lib/active_record/railties/databases.rake:90:in
 `block (2 levels) in '
  Tasks: TOP => db:migrate
  (See full trace by running task with --trace)
  dpkg: error processing package schleuder (--configure):
   installed schleuder package post-installation script subprocess returned 
error exit status 1

This does not happen on the bullseye -> bookworm upgrade path.

This is unrelated to bug #1036950: "schleuder: fails to upgrade from
'buster': insufficient dependency on ruby-activerecord (>= 2:6)", i.e.
it is reproducible even if that bug is fixed in bullseye.


cheers,

Andreas


schleuder_4.0.3-7.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Version: 9.0.0-2+rm

Dear submitter,

as the package ruby-arel has just been removed from the 

Bug#1025016: marked as done (onedrivesdk: (autopkgtest) needs update for python3.11: module 'asyncio' has no attribute 'coroutine')

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:38:41 +
with message-id 
and subject line Bug#1068472: Removed package(s) from unstable
has caused the Debian Bug report #1025016,
regarding onedrivesdk: (autopkgtest) needs update for python3.11: module 
'asyncio' has no attribute 'coroutine'
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 ow...@bugs.debian.org
immediately.)


-- 
1025016: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1025016
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Source: onedrivesdk
Version: 1.1.8-3
Severity: serious
Tags: sid bookworm
User: debian...@lists.debian.org
Usertags: needs-update
User: debian-pyt...@lists.debian.org
Usertags: python3.11
Control: affects -1 src:python3-defaults

Dear maintainer(s),

We are in the transition of adding python3.11 as a supported Python 
version [0]. With a recent upload of python3-defaults the autopkgtest of 
onedrivesdk fails in testing when that autopkgtest is run with the 
binary packages of python3-defaults from unstable. It passes when run 
with only packages from testing. In tabular form:


   passfail
python3-defaults   from testing3.10.6-3
onedrivesdkfrom testing1.1.8-3
all others from testingfrom testing

I copied some of the output at the bottom of this report.

Currently this regression is blocking the migration of python3-defaults 
to testing [1]. https://docs.python.org/3/whatsnew/3.11.html lists 
what's new in Python3.11, it may help to identify what needs to be updated.


More information about this bug and the reason for filing it can be found on
https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation

Paul

[0] https://bugs.debian.org/1021984
[1] https://qa.debian.org/excuses.php?package=python3-defaults

https://ci.debian.net/data/autopkgtest/testing/amd64/o/onedrivesdk/28727756/log.gz

Testing with python3.11:
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python3/dist-packages/onedrivesdk/__init__.py", line 
42, in 

from .request.drive_request import DriveRequest
  File 
"/usr/lib/python3/dist-packages/onedrivesdk/request/drive_request.py", 
line 13, in 

class DriveRequest(RequestBase):
  File 
"/usr/lib/python3/dist-packages/onedrivesdk/request/drive_request.py", 
line 34, in DriveRequest

@asyncio.coroutine
 ^
AttributeError: module 'asyncio' has no attribute 'coroutine'. Did you 
mean: 'coroutines'?

autopkgtest [20:13:33]: test autodep8-python3



OpenPGP_signature
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Version: 1.1.8-3+rm

Dear submitter,

as the package onedrivesdk has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1068472

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#893023: marked as done (librsl FTBFS with flex 2.6.4-6)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:38:12 +
with message-id 
and subject line Bug#1068397: Removed package(s) from unstable
has caused the Debian Bug report #893023,
regarding librsl FTBFS with flex 2.6.4-6
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 ow...@bugs.debian.org
immediately.)


-- 
893023: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893023
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: librsl
Version: 1.43-1.2
Severity: serious

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/librsl.html

...
/bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 
-fstack-protector-strong -Wformat -Werror=format-security -static -Wl,-z,relro 
-o any_to_gif any_to_gif.o -L/usr/lib -lmfhdf -ldf -ljpeg -lz -lm -lfl 
../.libs/librsl.a  -L/usr/lib -lmfhdf -ldf -ljpeg -lz -lm -lfl
libtool: link: gcc -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wl,-z -Wl,relro -o any_to_gif any_to_gif.o  -L/usr/lib 
../.libs/librsl.a /usr/lib/libmfhdf.so /usr/lib/libdf.so -ljpeg -lz -lm -lfl
/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/libfl.so: undefined 
reference to `yylex'
collect2: error: ld returned 1 exit status
make[3]: *** [Makefile:487: any_to_gif] Error 1
--- End Message ---
--- Begin Message ---
Version: 1.43-1.2+rm

Dear submitter,

as the package librsl has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1068397

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1068359: marked as done (gir1.2-keybinder-0.0 still depends on libkeybinder0 on most architectures.)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:36:47 +
with message-id 
and subject line Bug#1067870: Removed package(s) from unstable
has caused the Debian Bug report #1068359,
regarding gir1.2-keybinder-0.0 still depends on libkeybinder0 on most 
architectures.
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 ow...@bugs.debian.org
immediately.)


-- 
1068359: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068359
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: gir1.2-keybinder-0.0
Version: 0.3.1-2.3
Severity: grave
User: debian-...@lists.debian.org
Usertag: time-t

libkeybinder0 has been renamed to libkeybinder0t64, however gir1.2keybinder0.0
still depends on the former on most architectures. As a result it is
uninstallable on architectures subject to the time64 transition (armel, armhf
and several debian-ports architectures).

I see the following lines in debian/control which look like they may be
related.


override_dh_makeshlibs:
dh_makeshlibs -V 'libkeybinder0 (>= 0.3.0)'


What I don't get though is that on amd64 the package seems to have picked
up the correct dependency.
--- End Message ---
--- Begin Message ---
Version: 0.3.1-2.3+rm

Dear submitter,

as the package keybinder has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1067870

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1066895: marked as done (python-reactivex: duplicate of src:python-rx)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:35:15 +
with message-id 
and subject line Bug#1066901: Removed package(s) from unstable
has caused the Debian Bug report #1066895,
regarding python-reactivex: duplicate of src:python-rx
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 ow...@bugs.debian.org
immediately.)


-- 
1066895: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066895
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-reactivex
Version: 4.0.4-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts fileconflict
Control: affects -1 + src:python-rx

Hi,

during a test with piuparts I noticed your package failed to install
because it tries to overwrite other packages files.

python-reactivex seems to be a duplication of python-rx which is already
in the archive.

>From the attached log (scroll to the bottom...):

  Preparing to unpack .../python3-reactivex_4.0.4-1_all.deb ...
  Unpacking python3-reactivex (4.0.4-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/python3-reactivex_4.0.4-1_all.deb (--unpack):
   trying to overwrite '/usr/lib/python3/dist-packages/reactivex/__init__.py', 
which is also in package python3-rx 4.0.4-2
  Errors were encountered while processing:
   /var/cache/apt/archives/python3-reactivex_4.0.4-1_all.deb

List of duplicated files:

usr/lib/python3/dist-packages/reactivex-0.0.0.dist-info/METADATA
usr/lib/python3/dist-packages/reactivex-0.0.0.dist-info/WHEEL
usr/lib/python3/dist-packages/reactivex/__init__.py
usr/lib/python3/dist-packages/reactivex/_version.py
usr/lib/python3/dist-packages/reactivex/abc/__init__.py
usr/lib/python3/dist-packages/reactivex/abc/disposable.py
usr/lib/python3/dist-packages/reactivex/abc/observable.py
usr/lib/python3/dist-packages/reactivex/abc/observer.py
usr/lib/python3/dist-packages/reactivex/abc/periodicscheduler.py
usr/lib/python3/dist-packages/reactivex/abc/scheduler.py
usr/lib/python3/dist-packages/reactivex/abc/startable.py
usr/lib/python3/dist-packages/reactivex/abc/subject.py
usr/lib/python3/dist-packages/reactivex/disposable/__init__.py
usr/lib/python3/dist-packages/reactivex/disposable/booleandisposable.py
usr/lib/python3/dist-packages/reactivex/disposable/compositedisposable.py
usr/lib/python3/dist-packages/reactivex/disposable/disposable.py
usr/lib/python3/dist-packages/reactivex/disposable/multipleassignmentdisposable.py
usr/lib/python3/dist-packages/reactivex/disposable/refcountdisposable.py
usr/lib/python3/dist-packages/reactivex/disposable/scheduleddisposable.py
usr/lib/python3/dist-packages/reactivex/disposable/serialdisposable.py
usr/lib/python3/dist-packages/reactivex/disposable/singleassignmentdisposable.py
usr/lib/python3/dist-packages/reactivex/internal/__init__.py
usr/lib/python3/dist-packages/reactivex/internal/basic.py
usr/lib/python3/dist-packages/reactivex/internal/concurrency.py
usr/lib/python3/dist-packages/reactivex/internal/constants.py
usr/lib/python3/dist-packages/reactivex/internal/exceptions.py
usr/lib/python3/dist-packages/reactivex/internal/priorityqueue.py
usr/lib/python3/dist-packages/reactivex/internal/utils.py
usr/lib/python3/dist-packages/reactivex/notification.py
usr/lib/python3/dist-packages/reactivex/observable/__init__.py
usr/lib/python3/dist-packages/reactivex/observable/amb.py
usr/lib/python3/dist-packages/reactivex/observable/case.py
usr/lib/python3/dist-packages/reactivex/observable/catch.py
usr/lib/python3/dist-packages/reactivex/observable/combinelatest.py
usr/lib/python3/dist-packages/reactivex/observable/concat.py
usr/lib/python3/dist-packages/reactivex/observable/connectableobservable.py
usr/lib/python3/dist-packages/reactivex/observable/defer.py
usr/lib/python3/dist-packages/reactivex/observable/empty.py
usr/lib/python3/dist-packages/reactivex/observable/forkjoin.py
usr/lib/python3/dist-packages/reactivex/observable/fromcallback.py
usr/lib/python3/dist-packages/reactivex/observable/fromfuture.py
usr/lib/python3/dist-packages/reactivex/observable/fromiterable.py
usr/lib/python3/dist-packages/reactivex/observable/generate.py
usr/lib/python3/dist-packages/reactivex/observable/generatewithrelativetime.py
usr/lib/python3/dist-packages/reactivex/observable/groupedobservable.py
usr/lib/python3/dist-packages/reactivex/observable/ifthen.py
usr/lib/python3/dist-packages/reactivex/observable/interval.py
usr/lib/python3/dist-packages/reactivex/observable/marbles.py
usr/lib/python3/dist-packages/reactivex/observable/merge.py
usr/lib/python3/dist-packages/reactivex/observable/never.py
usr/lib/python3/dist-packages/reactivex/observable/observable.py

Bug#1066230: marked as done (tk707: FTBFS: tcl2c.c:57:21: error: implicit declaration of function ‘strcmp’ [-Werror=implicit-function-declaration])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:36:15 +
with message-id 
and subject line Bug#1068156: Removed package(s) from unstable
has caused the Debian Bug report #1066230,
regarding tk707: FTBFS: tcl2c.c:57:21: error: implicit declaration of function 
‘strcmp’ [-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066230: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066230
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: tk707
Version: 0.8-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I.   -I/usr/include/tcl  -I/usr/include/tcl   
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o tcl2c.o tcl2c.c
> tcl2c.c: In function ‘main’:
> tcl2c.c:57:21: error: implicit declaration of function ‘strcmp’ 
> [-Werror=implicit-function-declaration]
>57 | if (argc > 1 && strcmp(argv[1], "-c") == 0) {
>   | ^~
> tcl2c.c:47:1: note: include ‘’ or provide a declaration of ‘strcmp’
>46 | #include 
>   +++ |+#include 
>47 | 
> tcl2c.c:64:9: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>64 | exit(1);
>   | ^~~~
> tcl2c.c:47:1: note: include ‘’ or provide a declaration of ‘exit’
>46 | #include 
>   +++ |+#include 
>47 | 
> tcl2c.c:64:9: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>64 | exit(1);
>   | ^~~~
> tcl2c.c:64:9: note: include ‘’ or provide a declaration of ‘exit’
> tcl2c.c:93:5: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>93 | exit(0);
>   | ^~~~
> tcl2c.c:93:5: note: include ‘’ or provide a declaration of ‘exit’
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:780: tcl2c.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/tk707_0.8-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Version: 0.8-2+rm

Dear submitter,

as the package tk707 has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1068156

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1058814: marked as done (flint-arb: FTBFS: /<>/fmpz_extras.h:208:1: error: static declaration of ‘fmpz_ui_pow_ui’ follows non-static declaration)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:37:23 +
with message-id 
and subject line Bug#1068265: Removed package(s) from unstable
has caused the Debian Bug report #1058814,
regarding flint-arb: FTBFS: /<>/fmpz_extras.h:208:1: error: static 
declaration of ‘fmpz_ui_pow_ui’ follows non-static declaration
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 ow...@bugs.debian.org
immediately.)


-- 
1058814: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1058814
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: flint-arb
Version: 1:2.23.0-1
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: sramac...@debian.org

https://buildd.debian.org/status/fetch.php?pkg=flint-arb=amd64=1%3A2.23.0-1%2Bb2=1702719943=0

gcc -fPIC -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
-I/<> -I/usr/local/include -I/usr/local/include -I/usr/include -c 
add_si.c -o ../build/fmpr/add_si.lo -MMD -MP -MF "../build/fmpr/add_si.d" -MT 
"../build/fmpr/add_si.d" -MT "../build/fmpr/add_si.lo"
In file included from /<>/fmpr.h:30,
 from add_naive.c:12:
/<>/fmpz_extras.h:208:1: error: static declaration of 
‘fmpz_ui_pow_ui’ follows non-static declaration
  208 | fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e)
  | ^~
In file included from /<>/fmpr.h:23:
/usr/include/flint/fmpz.h:422:6: note: previous declaration of ‘fmpz_ui_pow_ui’ 
with type ‘void(fmpz *, mp_limb_t,  mp_limb_t)’ {aka ‘void(long int *, long 
unsigned int,  long unsigned int)’}
  422 | void fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e);
  |  ^~
/<>/fmpr.h: In function ‘fmpr_set_ui’:
/<>/fmpr.h:360:11: error: 'count_trailing_zeros' is deprecated. 
Use 'flint_ctz' instead.
  360 | count_trailing_zeros(b, c);
  |   ^ 
  
/<>/fmpr.h: In function ‘fmpr_set_si’:
/<>/fmpr.h:375:11: error: 'count_trailing_zeros' is deprecated. 
Use 'flint_ctz' instead.
  375 | count_trailing_zeros(b, c);
  |   ^ 
  
In file included from /<>/fmpr.h:30,
 from add_eps.c:12:
/<>/fmpz_extras.h:208:1: error: static declaration of 
‘fmpz_ui_pow_ui’ follows non-static declaration
  208 | fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e)
  | ^~
In file included from /<>/fmpr.h:30,
 from add_fmpz.c:12:
/<>/fmpz_extras.h:208:1: error: static declaration of 
‘fmpz_ui_pow_ui’ follows non-static declaration
  208 | fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e)
  | ^~
In file included from /<>/fmpr.h:23:
/usr/include/flint/fmpz.h:422:6: note: previous declaration of ‘fmpz_ui_pow_ui’ 
with type ‘void(fmpz *, mp_limb_t,  mp_limb_t)’ {aka ‘void(long int *, long 
unsigned int,  long unsigned int)’}
  422 | void fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e);
  |  ^~
In file included from /<>/fmpr.h:23:
/usr/include/flint/fmpz.h:422:6: note: previous declaration of ‘fmpz_ui_pow_ui’ 
with type ‘void(fmpz *, mp_limb_t,  mp_limb_t)’ {aka ‘void(long int *, long 
unsigned int,  long unsigned int)’}
  422 | void fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e);
  |  ^~
In file included from /<>/fmpr.h:30,
 from add.c:12:
/<>/fmpz_extras.h:208:1: error: static declaration of 
‘fmpz_ui_pow_ui’ follows non-static declaration
  208 | fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e)
  | ^~
In file included from /<>/fmpr.h:23:
/usr/include/flint/fmpz.h:422:6: note: previous declaration of ‘fmpz_ui_pow_ui’ 
with type ‘void(fmpz *, mp_limb_t,  mp_limb_t)’ {aka ‘void(long int *, long 
unsigned int,  long unsigned int)’}
  422 | void fmpz_ui_pow_ui(fmpz_t x, ulong b, ulong e);
  |  ^~
/<>/fmpr.h: In function ‘fmpr_set_ui’:
/<>/fmpr.h: In function ‘fmpr_set_ui’:
/<>/fmpr.h:360:11: error: 'count_trailing_zeros' is deprecated. 
Use 'flint_ctz' instead.
  360 | count_trailing_zeros(b, c);
  |   ^ 
  
/<>/fmpr.h:360:11: error: 'count_trailing_zeros' is deprecated. 
Use 'flint_ctz' instead.
  360 | count_trailing_zeros(b, c);
  |   ^ 
  
/<>/fmpr.h: In function ‘fmpr_set_si’:
/<>/fmpr.h:375:11: error: 'count_trailing_zeros' is deprecated. 
Use 'flint_ctz' instead.
  375 | 

Bug#1066288: marked as done (libauthen-krb5-perl: FTBFS: Krb5.xs:499:15: error: implicit declaration of function ‘krb5_gen_portaddr’ [-Werror=implicit-function-declaration])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:26:47 +
with message-id 
and subject line Bug#1068258: Removed package(s) from unstable
has caused the Debian Bug report #1065768,
regarding libauthen-krb5-perl: FTBFS: Krb5.xs:499:15: error: implicit 
declaration of function ‘krb5_gen_portaddr’ 
[-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1065768: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065768
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libauthen-krb5-perl
Version: 1.9-6
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -c  -isystem /usr/include/mit-krb5 -D_REENTRANT 
> -D_GNU_SOURCE -DDEBIAN -fwrapv -fno-strict-aliasing -pipe 
> -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2   
> -DVERSION=\"1.9\" -DXS_VERSION=\"1.9\" -fPIC 
> "-I/usr/lib/x86_64-linux-gnu/perl/5.38/CORE"   Krb5.c
> In file included from /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/perl.h:4530,
>  from Krb5.xs:5:
> Krb5.xs: In function ‘XS_Authen__Krb5_mk_req’:
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv.h:1952:31: warning: passing 
> argument 3 of ‘Perl_SvPV_helper’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>  1952 |Perl_SvPV_helper(aTHX_ sv, , flags, SvPVnormal_type_,  
>   \
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv.h:1972:37: note: in expansion of 
> macro ‘SvPV_flags’
>  1972 | #define SvPV(sv, len)   SvPV_flags(sv, len, SV_GMAGIC)
>   | ^~
> Krb5.xs:460:24: note: in expansion of macro ‘SvPV’
>   460 | in_data.data = SvPV(in,in_data.length);
>   |^~~~
> In file included from /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/perl.h:7812:
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv_inline.h:908:33: note: expected 
> ‘STRLEN * const’ {aka ‘long unsigned int * const’} but argument is of type 
> ‘unsigned int *’
>   908 |  STRLEN * const lp,
>   |  ~~~^~
> Krb5.xs: In function ‘XS_Authen__Krb5_rd_req’:
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv.h:1952:31: warning: passing 
> argument 3 of ‘Perl_SvPV_helper’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>  1952 |Perl_SvPV_helper(aTHX_ sv, , flags, SvPVnormal_type_,  
>   \
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv.h:1972:37: note: in expansion of 
> macro ‘SvPV_flags’
>  1972 | #define SvPV(sv, len)   SvPV_flags(sv, len, SV_GMAGIC)
>   | ^~
> Krb5.xs:482:24: note: in expansion of macro ‘SvPV’
>   482 | in_data.data = SvPV(in,in_data.length);
>   |^~~~
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv_inline.h:908:33: note: expected 
> ‘STRLEN * const’ {aka ‘long unsigned int * const’} but argument is of type 
> ‘unsigned int *’
>   908 |  STRLEN * const lp,
>   |  ~~~^~
> Krb5.xs: In function ‘XS_Authen__Krb5_gen_portaddr’:
> Krb5.xs:499:15: error: implicit declaration of function ‘krb5_gen_portaddr’ 
> [-Werror=implicit-function-declaration]
>   499 | err = 
> krb5_gen_portaddr(context,addr,(krb5_pointer),);
>   |   ^
> Krb5.xs: In function ‘XS_Authen__Krb5_gen_replay_name’:
> Krb5.xs:526:15: error: implicit declaration of function 
> ‘krb5_gen_replay_name’; did you mean ‘krb5_set_real_time’? 
> [-Werror=implicit-function-declaration]
>   526 | err = krb5_gen_replay_name(context,addr,uniq,);
>   |   ^~~~
>   |   krb5_set_real_time
> Krb5.xs: In function ‘XS_Authen__Krb5_mk_priv’:
> /usr/lib/x86_64-linux-gnu/perl/5.38/CORE/sv.h:1952:31: warning: passing 
> argument 3 of ‘Perl_SvPV_helper’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>  1952 |

Bug#1065768: marked as done (libauthen-krb5-perl: FTBFS on arm{el,hf}: Krb5.xs:1040:17: error: implicit declaration of function ‘krb5_free_address’; did you mean ‘krb5_free_addresses’? [-Werror=implic

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:26:47 +
with message-id 
and subject line Bug#1068258: Removed package(s) from unstable
has caused the Debian Bug report #1065768,
regarding libauthen-krb5-perl: FTBFS on arm{el,hf}: Krb5.xs:1040:17: error: 
implicit declaration of function ‘krb5_free_address’; did you mean 
‘krb5_free_addresses’? [-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1065768: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065768
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libauthen-krb5-perl
Version: 1.9-6
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: sramac...@debian.org

https://buildd.debian.org/status/fetch.php?pkg=libauthen-krb5-perl=armhf=1.9-6%2Bb3=1709893977=0

Krb5.xs:1040:17: error: implicit declaration of function ‘krb5_free_address’; 
did you mean ‘krb5_free_addresses’? [-Werror=implicit-function-declaration]
 1040 | krb5_free_address(context,addr);
  | ^
  | krb5_free_addresses

Cheers
-- 
Sebastian Ramacher
--- End Message ---
--- Begin Message ---
Version: 1.9-6+rm

Dear submitter,

as the package libauthen-krb5-perl has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1068258

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#1066379: loqui: FTBFS: loqui-core-gtk.gob:256:25: error: implicit declaration of function ‘account_list_dialog_open_for_connect’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Nick Rosbrook
Package: loqui
Followup-For: Bug #1066379
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
Control: tags -1 patch

Dear Maintainer,

This FTBFS is due to a missing include of account_list_dialog.h. In
Ubuntu we applied this patch to fix it.

  * debian/patches: fix implicit declaration of
account_list_dialog_open_for_connect


Thanks for considering the patch.

-Nick
diff -Nru 
loqui-0.7.0/debian/patches/0002-add-missing-include-account_list_dialog.h.patch 
loqui-0.7.0/debian/patches/0002-add-missing-include-account_list_dialog.h.patch
--- 
loqui-0.7.0/debian/patches/0002-add-missing-include-account_list_dialog.h.patch 
1969-12-31 19:00:00.0 -0500
+++ 
loqui-0.7.0/debian/patches/0002-add-missing-include-account_list_dialog.h.patch 
2024-04-10 11:51:39.0 -0400
@@ -0,0 +1,16 @@
+Description: Fix implicit declaration of account_list_dialog_open_for_connect
+ The account_list_dialog.h header needs to be included for this.
+Author: Nick Rosbrook 
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/loqui/+bug/2060834
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066379
+Last-Update: 2024-04-10
+--- a/src/loqui-core-gtk.gob
 b/src/loqui-core-gtk.gob
+@@ -63,6 +63,7 @@
+ #include "loqui_stock.h"
+ #include "prefs_general_upgrader.h"
+ #include "loqui-notifier-gtk.h"
++#include "account_list_dialog.h"
+ 
+ %}
+ 
diff -Nru loqui-0.7.0/debian/patches/series loqui-0.7.0/debian/patches/series
--- loqui-0.7.0/debian/patches/series   2021-08-14 23:24:56.0 -0400
+++ loqui-0.7.0/debian/patches/series   2024-04-10 11:47:31.0 -0400
@@ -1 +1,2 @@
 0001-Add-missing-Makefile.in.patch
+0002-add-missing-include-account_list_dialog.h.patch


Processed: Re: loqui: FTBFS: loqui-core-gtk.gob:256:25: error: implicit declaration of function ‘account_list_dialog_open_for_connect’ [-Werror=implicit-function-declaration]

2024-04-10 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 patch
Bug #1066379 [src:loqui] loqui: FTBFS: loqui-core-gtk.gob:256:25: error: 
implicit declaration of function ‘account_list_dialog_open_for_connect’ 
[-Werror=implicit-function-declaration]
Added tag(s) patch.

-- 
1066379: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066379
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066860: marked as done (libprelude ftbfs on time_t64 archs)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 15:50:37 +
with message-id 
and subject line Bug#1066860: fixed in libprelude 5.2.0-5.4
has caused the Debian Bug report #1066860,
regarding libprelude ftbfs on time_t64 archs
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 ow...@bugs.debian.org
immediately.)


-- 
1066860: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066860
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: src:libprelude
Version: 5.2.0-5.3
Severity: serious
Tags: sid trixie ftbfs patch

libprelude ftbfs on time_t64 archs with symbols file mismatches.  I 
don't know why some changes are only limited to arc and x32, but I made 
these all optional.


patch at
http://launchpadlibrarian.net/719321091/libprelude_5.2.0-5.3build2_5.2.0-5.3ubuntu1.diff.gz
--- End Message ---
--- Begin Message ---
Source: libprelude
Source-Version: 5.2.0-5.4
Done: Benjamin Drung 

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

Debian distribution maintenance software
pp.
Benjamin Drung  (supplier of updated libprelude 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 17:34:43 +0200
Source: libprelude
Built-For-Profiles: noudeb
Architecture: source
Version: 5.2.0-5.4
Distribution: unstable
Urgency: medium
Maintainer: Pierre Chifflier 
Changed-By: Benjamin Drung 
Closes: 1066860
Launchpad-Bugs-Fixed: 2060796
Changes:
 libprelude (5.2.0-5.4) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * configure: Fix va_copy check for -Wimplicit-function-declaration
 (Closes: #1066860, LP: #2060796)
Checksums-Sha1:
 6021244cb432eda74fa84800efd06f98dd4813f8 3172 libprelude_5.2.0-5.4.dsc
 8c65f204294a943b33b69a1ac3a51c41fc4b82a6 29892 
libprelude_5.2.0-5.4.debian.tar.xz
 f58ee5cfde36a8777dc7b0c6904966f3c4c6c862 8049 
libprelude_5.2.0-5.4_source.buildinfo
Checksums-Sha256:
 802b98fed28c8a7bdb9aa6b3c577a2213cd8522bc43e963a57a87d17ac235537 3172 
libprelude_5.2.0-5.4.dsc
 6963c734634e9f5f2e20eb7fa26d01b79ef31119a64189b56dbc022aa209c5db 29892 
libprelude_5.2.0-5.4.debian.tar.xz
 e5b32db8dac6863d9e23fe62eb3b41ddebb8332146133d38b39c839d27a855e0 8049 
libprelude_5.2.0-5.4_source.buildinfo
Files:
 4d0229c4a523ba96870c75be42cf4d1e 3172 libs optional libprelude_5.2.0-5.4.dsc
 fa37cc8482f84cebed9cc87c67b7c7a8 29892 libs optional 
libprelude_5.2.0-5.4.debian.tar.xz
 b40d0d8d46030cf6995c7b2e8d2be6a3 8049 libs optional 
libprelude_5.2.0-5.4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEpi0s+9ULm1vzYNVLFZ61xO/Id0wFAmYWscMACgkQFZ61xO/I
d0zDjxAAiXCEnOLNURx5lZRYJ95GltM8LwazA87spJko5p2PJlJbDNlDw/dBDHeq
MP6zq2BSKNnyAjK2cz/jajoD8IRJB546HxGdAQrq0qizRH+i6QLz4vFSJkWy7rwM
RTm07UQovh443VC0EU1QNjVm9ozo241MuHbpSOqIFN7tVYCyDjZgL3Y7FKO8zN8S
RN0VNn3iRdpn1+2uxYLe9o5LdiM4UAGLhHqyCwvfCpz1Em0gJ7aF2nTkHn0NJu9K
5NSq1KnSLoiohaufOJ7KSJSqh2jrsSz7OId6a0qIqjtNmb0g6/kYOSsTM8Uwc+WM
QGZlAL5QkA5uv9vZzTjgyCDTl3s61hX39xoVfPxCon8rt48nFDJdPaOqKg6yrwhn
EeIGut4n+KsaUtptCPBGXMg54+Mknc1vQqXgJTV0PTHMqIwZi+4qO3SDIUTOK6wm
hCLQlKIRNMyQJt4UjxNXd0Oqek3VSg6nqN6hS+gNT/XrMnIVECUMXqdhFr09a/CJ
+iKEpMs1aUGOH+a9Xp8ZAMhKIZ4ThzssdfNZQ66ZCyCKizNGord2arTULiR6C1yt
H8G9ovu2w/h0BKCfO8nfkVkj8OwRRWaiinG4/5TlZlnDgbDI17ma6ElQ5ZwMpq9P
RdDovoKREr7dKJ0j+HGCWnUWEiSkrvXQQC73L7dJKYyLrAAcAzQ=
=jmfP
-END PGP SIGNATURE-



pgpImS6Nw4BHj.pgp
Description: PGP signature
--- End Message ---


Bug#1066507: closed by Debian FTP Masters (reply to Guillem Jover ) (Bug#1066507: fixed in kannel 1.4.5-14)

2024-04-10 Thread Guillem Jover
Hi!

On Sat, 2024-03-16 at 01:12:07 +, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> which was filed against the src:kannel package:
> 
> #1066507: kannel: FTBFS: configure: error: Either get a multithread-enabled 
> SSL or configure with --disable-ssl
> 
> It has been closed by Debian FTP Masters  
> (reply to Guillem Jover ).

Just sending keep-alive mail to avoid the auto-removal, as the bug is
already fixed in sid, but not migrating due to the time64 transition.

Thanks,
Guillem



Bug#1067911: FTBFS: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is not valid for C++ [-Werror]

2024-04-10 Thread Chris Knadle



On 4/10/24 10:02, Andrey Rakhmatullin wrote:

On Wed, Apr 10, 2024 at 09:52:44AM -0400, Chris Knadle wrote:

Removing -Werror looks like it would be a simple patch, it seems to be set
here:

config/Make.rules.Linux:cppflags    = -Wall -Wextra -Wredundant-decls
-Wshadow -Wdeprecated -Werror -pthread $(if $(filter
yes,$(OPTIMIZE)),-DNDEBUG,-g)

... but this also doesn't sound like the right answer.

Yes, it just turns the error into a warning, it's still better to remove
the problem that causes this warning, but it's *also* better to not use
-Werror when building Debian packages.


That's probably true.

I've made a patch to do this, I'll do a test build and then upload an NMU.

   -- Chris

--
Chris Knadle
chris.kna...@coredump.us



Bug#1067957: [[maude-bugs]] [EXTERNAL] Re: Maude fails to build on armhf

2024-04-10 Thread Andreas Tille
Hi,

I'd suggest to set

  Build-Depends: architecture-is-64-bit, architecture-is-little-endian

and remove 32bit architectures of maude.

Kind regards
   Andreas.

-- 
https://fam-tille.de



Bug#1066532: marked as done (microbiomeutil: FTBFS: NAST-iEr.c:106:15: error: implicit declaration of function ‘isprint’ [-Werror=implicit-function-declaration])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 14:37:56 +
with message-id 
and subject line Bug#1066532: fixed in microbiomeutil 20101212+dfsg1-6
has caused the Debian Bug report #1066532,
regarding microbiomeutil: FTBFS: NAST-iEr.c:106:15: error: implicit declaration 
of function ‘isprint’ [-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066532: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066532
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: microbiomeutil
Version: 20101212+dfsg1-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wl,-z,relro -Wl,-z,now NAST-iEr.c -o 
> NAST-iEr
> NAST-iEr.c: In function ‘main’:
> NAST-iEr.c:106:15: error: implicit declaration of function ‘isprint’ 
> [-Werror=implicit-function-declaration]
>   106 |   if (isprint (optopt)) {
>   |   ^~~
> NAST-iEr.c:5:1: note: include ‘’ or provide a declaration of 
> ‘isprint’
> 4 | #include 
>   +++ |+#include 
> 5 | 
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:6: NAST-iEr] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/microbiomeutil_20101212+dfsg1-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Source: microbiomeutil
Source-Version: 20101212+dfsg1-6
Done: Andreas Tille 

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

Debian distribution maintenance software
pp.
Andreas Tille  (supplier of updated microbiomeutil 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 16:03:07 +0200
Source: microbiomeutil
Architecture: source
Version: 20101212+dfsg1-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 

Changed-By: Andreas Tille 
Closes: 1066532
Changes:
 microbiomeutil (20101212+dfsg1-6) unstable; urgency=medium
 .
   * Fix implicit declaration of function isprint
 Closes: #1066532
   * Standards-Version: 4.7.0 (routine-update)
   * Use secure URI in Homepage field.
   * Lintian-overrides (see lintian bug #1017966)
   * Add DEP3 field "Forwarded: no (upstream is dead)"
Checksums-Sha1:
 7690cce6dacf2310e06f32fdf0cc31fd41a69227 2410 
microbiomeutil_20101212+dfsg1-6.dsc
 92e6591838ef8f4ecab720158b74a5c737054dcc 10708 
microbiomeutil_20101212+dfsg1-6.debian.tar.xz
 5e23997a103f103b9549e146b27bf4467456105a 8204 
microbiomeutil_20101212+dfsg1-6_amd64.buildinfo
Checksums-Sha256:
 79debb696efcd685d5d73b7782389455ee5554ad0ad925a1b07ddde3405f24e7 2410 
microbiomeutil_20101212+dfsg1-6.dsc
 65d7aed0b0fa1ce4af79cf0010029b629b14c0f3b8be52290ae71b3918cfeb05 10708 
microbiomeutil_20101212+dfsg1-6.debian.tar.xz
 

Bug#1060311: marked as done (vitrage: Please Build-Depends: python3-asn1)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:27:12 +0200
with message-id <0bd4ffb5-2d8e-4d0d-9ba0-893bffc69...@debian.org>
and subject line Fixed
has caused the Debian Bug report #1060311,
regarding vitrage: Please Build-Depends: python3-asn1
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 ow...@bugs.debian.org
immediately.)


-- 
1060311: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1060311
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vitrage
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)

Version 11 of vitrage depends on a package that I just uploaded to debian,
which is great !
But vitrage still needs to depend on it :)

Jérémy


-- System Information:
Debian Release: trixie/sid
  APT prefers testing
  APT policy: (101, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.5.0-5-amd64 (SMP w/4 CPU threads; PREEMPT)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---

Hi,

I'm not sure why you wrote that bug, and why vitrage would need to 
build-depends on asn1, but 12.0.0-1 built without error in Unstable. 
Therefore, closing this bug.


Cheers,

Thomas Goirand (zigo)--- End Message ---


Bug#1064038: marked as done (masakari: fails TestObjectVersions.test_versions)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 16:25:23 +0200
with message-id <6e12dd5e-bc10-4243-a9bb-ce63cbb2e...@debian.org>
and subject line fixed
has caused the Debian Bug report #1064038,
regarding masakari: fails TestObjectVersions.test_versions
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 ow...@bugs.debian.org
immediately.)


-- 
1064038: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064038
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: masakari
Version: 16.0.0-2
Severity: serious
Justification: debci
Control: affects -1 src:sphinx src:python-skbio src:scipy

masakari has started failing tests:

229s FAIL: 
masakari.tests.unit.objects.test_objects.TestObjectVersions.test_versions
229s masakari.tests.unit.objects.test_objects.TestObjectVersions.test_versions
229s --
229s testtools.testresult.real._StringException: Traceback (most recent call 
last):
229s   File 
"/tmp/autopkgtest-lxc.qzstlq9s/downtmp/build.m9a/src/masakari/tests/unit/objects/test_objects.py",
 line 721, in test_versions
229s self.assertEqual(expected, actual,
229s   File "/usr/lib/python3/dist-packages/testtools/testcase.py", line 394, 
in assertEqual
229s self.assertThat(observed, matcher, message)
229s   File "/usr/lib/python3/dist-packages/testtools/testcase.py", line 481, 
in assertThat
229s raise mismatch_error
229s testtools.matchers._impl.MismatchError: !=:
229s reference = {'FailoverSegmentList': '1.0-dfc5c6f5704d24dcaa37b0bbb03cbe60',
229s  'HostList': '1.0-25ebe1b17fbd9f114fae8b6a10d198c0',
229s  'NotificationList': '1.0-25ebe1b17fbd9f114fae8b6a10d198c0',
229s  'VMoveList': '1.0-63fff36dee683c7a1555798cb233ad3f'}
229s actual= {'FailoverSegmentList': '1.0-d4308727e4695fb16ecb451c81ab46e8',
229s  'HostList': '1.0-347911fa6ac5ae880a64e7bb4d89a71f',
229s  'NotificationList': '1.0-347911fa6ac5ae880a64e7bb4d89a71f',
229s  'VMoveList': '1.0-25a6ab4249e4a10cb33929542ff3c745'}
229s : Some objects have changed; please make sure the versions have been 
bumped, and then update their hashes here.


The test failure is preventing sphinx migration to testing,
which in turn is blocking other packages from migrating
(python-skbio, which blocks scipy)
--- End Message ---
--- Begin Message ---

This was fixed by the upload of masakari 17.0.0-1 in Unstable.

Thomas--- End Message ---


Bug#1067911: FTBFS: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is not valid for C++ [-Werror]

2024-04-10 Thread Andrey Rakhmatullin
On Wed, Apr 10, 2024 at 09:52:44AM -0400, Chris Knadle wrote:
> > > Apparently this new bug got introduced with the time_t 64bit transition:
> > Yes, but it's a valid bug in the package, not a bad thing accidentally
> > introduced by the transition.
> That doesn't sound right.
> The zeroc-ice source code does not set the
> '-Werror=implicit-function-declaration' build option.
Yes, Debian sets that.

> I think these two lines in debian/rules in the package are where CFLAGS get
> set:
> 
> 
>    DPKG_EXPORT_BUILDFLAGS = 1
>    include /usr/share/dpkg/default.mk
> 
> In other words, whatever bug this is seems to be due to a change in
> reasonable default configs from Debian, not in the source.
The change that led to this FTBFS is of course a change in Debian, not in
the package, but the FTBFS happens because flags from CFLAGS set by Debian
are used to compile C++ code.
Compare `dpkg-buildflags --get CFLAGS` and
`dpkg-buildflags --get CXXFLAGS`.

> From examining the source, zeroc-ice doesn't set CFLAGS when building with
> Linux.The source of CFLAGS being set seems to be set by dpkg-buildflags
Of course.

> Removing -Werror looks like it would be a simple patch, it seems to be set
> here:
> 
> config/Make.rules.Linux:cppflags    = -Wall -Wextra -Wredundant-decls
> -Wshadow -Wdeprecated -Werror -pthread $(if $(filter
> yes,$(OPTIMIZE)),-DNDEBUG,-g)
> 
> ... but this also doesn't sound like the right answer.
Yes, it just turns the error into a warning, it's still better to remove
the problem that causes this warning, but it's *also* better to not use
-Werror when building Debian packages.

> But clearing CFLAGS seems like it would be reasonable.
I cannot call that reasonable.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1067911: FTBFS: error: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ is not valid for C++ [-Werror]

2024-04-10 Thread Chris Knadle

On 4/10/24 04:32, Andrey Rakhmatullin wrote:

On Tue, Apr 09, 2024 at 09:50:37PM -0400, Chris Knadle wrote:

Apparently this new bug got introduced with the time_t 64bit transition:

Yes, but it's a valid bug in the package, not a bad thing accidentally
introduced by the transition.

That doesn't sound right.
The zeroc-ice source code does not set the 
'-Werror=implicit-function-declaration' build option.
I think these two lines in debian/rules in the package are where CFLAGS 
get set:



   DPKG_EXPORT_BUILDFLAGS = 1
   include /usr/share/dpkg/default.mk

In other words, whatever bug this is seems to be due to a change in 
reasonable default configs from Debian, not in the source.



(?) Can the CFLAGS be cleared with:

   DEB_CFLAGS_SET=""


What I don't know is what has to be done now to get zeroc-ice fixed. Does
this require an upload to disable the implict-function-declaration flag

Please don't disable it.

I see two options here: either fix the package to not use $CFLAGS to build
C++ code or fix the package to not use -Werror.
From examining the source, zeroc-ice doesn't set CFLAGS when building 
with Linux.The source of CFLAGS being set seems to be set by 
dpkg-buildflags


Removing -Werror looks like it would be a simple patch, it seems to be 
set here:


config/Make.rules.Linux:cppflags    = -Wall -Wextra 
-Wredundant-decls -Wshadow -Wdeprecated -Werror -pthread $(if $(filter 
yes,$(OPTIMIZE)),-DNDEBUG,-g)


... but this also doesn't sound like the right answer.

But clearing CFLAGS seems like it would be reasonable.


I need to fix this to allow zeroc-ice to transition to Testing, in order to
allow mumble to transition to Testing.

Note that it won't transition to testing before the time64 transition to
to testing is allowed.


--
Chris Knadle
chris.kna...@coredump.us



Bug#1068713: closing 1068713

2024-04-10 Thread Vincent Danjean
close 1068713 2.5.10-1
thanks

This bug is already fixed in upstream release 2.5.10



Processed: closing 1068713

2024-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> close 1068713 2.5.10-1
Bug #1068713 [oar-common] oar-common: Submitting jobs does not work on a fresh 
installation of OAR
Ignoring request to alter fixed versions of bug #1068713 to the same values 
previously set
Bug #1068713 [oar-common] oar-common: Submitting jobs does not work on a fresh 
installation of OAR
Marked Bug as done
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1068713: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068713
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: fixed 1068713 in 2.5.10-1

2024-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> fixed 1068713 2.5.10-1
Bug #1068713 [oar-common] oar-common: Submitting jobs does not work on a fresh 
installation of OAR
Marked as fixed in versions oar/2.5.10-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1068713: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068713
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1061869: marked as done (sssd: Drop -extensions from openssl command if there is no -x509.)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 13:20:33 +
with message-id 
and subject line Bug#1061869: fixed in sssd 2.9.4-2
has caused the Debian Bug report #1061869,
regarding sssd: Drop -extensions from openssl command if there is no -x509.
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 ow...@bugs.debian.org
immediately.)


-- 
1061869: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1061869
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:sssd
Version: 2.9.4-1
Severity: important
Tags: sid patch
control: affects -1 src:openssl
control: forwarded -1 https://github.com/SSSD/sssd/pull/7151
User: pkg-openssl-de...@lists.alioth.debian.org
Usertags: openssl-3.2

tests: Drop -extensions from openssl command if there is no -x509

The 'openssl req' ignores the '-extensions' option without '-x509'.
OpenSSL versions prior 3.2 simply ignored it. Starting with version 3.2
an error is generated.

There are two patches attached: One against sssd and one against
debian/tests for debci.

Sebastian
From: Sebastian Andrzej Siewior 
Date: Wed, 24 Jan 2024 23:03:04 +0100
Subject: [PATCH] tests: Drop -extensions from openssl command if there is no
 -x509
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The 'openssl req' ignores the '-extensions' option without '-x509'.
OpenSSL versions prior 3.2 simply ignored it. Starting with version 3.2
an error is generated:

| /usr/bin/openssl req -batch -config
| ../../../../../src/tests/test_CA/intermediate_CA/SSSD_test_intermediate_CA.config
| -new -nodes -key
| …/build/../src/tests/test_CA/intermediate_CA/SSSD_test_intermediate_CA_key.pem
-sha256 -extensions v3_ca -out SSSD_test_intermediate_CA_req.pem
| Error adding request extensions from section v3_ca
| 003163BAB27F:error:1179:X509 V3 routines:v2i_AUTHORITY_KEYID:no issuer certificate:../crypto/x509/v3_akid.c:156:
| 003163BAB27F:error:1180:X509 V3 routines:X509V3_EXT_nconf_int:error in extension:../crypto/x509/v3_conf.c:48:section=v3_ca, name=authorityKeyIdentifier, value=keyid:always,issuer:always
|

Remove the '-extensions' option.

Signed-off-by: Sebastian Andrzej Siewior 
---
 src/tests/test_CA/intermediate_CA/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/test_CA/intermediate_CA/Makefile.am b/src/tests/test_CA/intermediate_CA/Makefile.am
index b439f82cb03e5..50fcddb8d2221 100644
--- a/src/tests/test_CA/intermediate_CA/Makefile.am
+++ b/src/tests/test_CA/intermediate_CA/Makefile.am
@@ -33,7 +33,7 @@ ca_all: clean SSSD_test_intermediate_CA.pem SSSD_test_intermediate_CA_full_db.pe
 	ln -s $(builddir)/../$@
 
 SSSD_test_intermediate_CA_req.pem: $(openssl_intermediate_ca_key) $(openssl_intermediate_ca_config) SSSD_test_CA.pem
-	$(OPENSSL) req -batch -config ${openssl_intermediate_ca_config} -new -nodes -key $< -sha256 -extensions v3_ca -out $@
+	$(OPENSSL) req -batch -config ${openssl_intermediate_ca_config} -new -nodes -key $< -sha256 -out $@
 
 SSSD_test_intermediate_CA.pem: SSSD_test_intermediate_CA_req.pem $(openssl_root_ca_config) $(openssl_root_ca_key)
 	cd .. && $(OPENSSL) ca -config ${openssl_root_ca_config} -batch -notext -keyfile $(openssl_root_ca_key) -in $(abs_builddir)/$< -days 200 -extensions v3_intermediate_ca -out $(abs_builddir)/$@
-- 
2.43.0

From: Sebastian Andrzej Siewior 
Date: Mon, 29 Jan 2024 23:18:39 +0100
Subject: [PATCH] debian: tests: Drop -extensions from openssl command if there
 is no -x509.

The 'openssl req' ignores the '-extensions' option without '-x509'.
OpenSSL versions prior 3.2 simply ignored it. Starting with version 3.2
an error is generated.

Remove the '-extensions' option.

Signed-off-by: Sebastian Andrzej Siewior 
---
 debian/tests/sssd-softhism2-certificates-tests.sh | 2 --
 1 file changed, 2 deletions(-)

diff --git a/debian/tests/sssd-softhism2-certificates-tests.sh b/debian/tests/sssd-softhism2-certificates-tests.sh
index a0676740e11d..2c3d167414a6 100644
--- a/debian/tests/sssd-softhism2-certificates-tests.sh
+++ b/debian/tests/sssd-softhism2-certificates-tests.sh
@@ -222,7 +222,6 @@ openssl req \
   -key "$tmpdir/test-intermediate-CA-key.pem" \
   -passout "$root_ca_key_pass" \
   -sha256 \
-  -extensions v3_ca \
   -out "$tmpdir/test-intermediate-CA-certificate-request.pem"
 
 openssl req -text -noout -in "$tmpdir/test-intermediate-CA-certificate-request.pem"
@@ -311,7 +310,6 @@ openssl req \
   -key "$tmpdir/test-sub-intermediate-CA-key.pem" \
   -passout "$intermediate_ca_key_pass" \
   -sha256 \
-  -extensions v3_ca \
   -out "$tmpdir/test-sub-intermediate-CA-certificate-request.pem"
 
 

Bug#1067570: marked as done (freeipa: [time_t] Replace hardcoded librpm9 depends)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 13:19:54 +
with message-id 
and subject line Bug#1067570: fixed in freeipa 4.11.1-1
has caused the Debian Bug report #1067570,
regarding freeipa: [time_t] Replace hardcoded librpm9 depends
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 ow...@bugs.debian.org
immediately.)


-- 
1067570: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067570
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: freeipa
Version: 4.10.2-2
Severity: serious
Tags: patch
X-Debbugs-Cc: juli...@ubuntu.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch


*** /tmp/tmpy02tel37/bug_body

In Ubuntu, the attached patch was applied to achieve the following:

  * Replace hardcoded librpm9 depends

This is librpm9t64 now, and this makes the package binNMUable (well
don't know if Arch: all is binNMUable, anyway, this is better than
hardcoding)

Thanks for considering the patch.

*** /tmp/tmpy02tel37/freeipa_4.10.2-2ubuntu1.debdiff
diff -Nru freeipa-4.10.2/debian/control freeipa-4.10.2/debian/control
--- freeipa-4.10.2/debian/control   2024-03-04 18:55:50.0 +0100
+++ freeipa-4.10.2/debian/control   2024-03-23 20:45:20.0 +0100
@@ -1,8 +1,7 @@
 Source: freeipa
 Section: net
 Priority: optional
-Maintainer: Ubuntu Developers 
-XSBC-Original-Maintainer: Debian FreeIPA Team 

+Maintainer: Debian FreeIPA Team 
 Uploaders: Timo Aaltonen 
 Standards-Version: 4.5.0
 Vcs-Git: https://salsa.debian.org/freeipa-team/freeipa.git
@@ -23,6 +22,7 @@
  libldap2-dev,
  libnspr4-dev,
  libpopt-dev,
+ librpm-dev,
  libsasl2-dev,
  libssl-dev,
  libtalloc-dev,
@@ -172,7 +172,6 @@
  gpg,
  gpg-agent,
  keyutils,
- librpm9,
  python3-cffi,
  python3-cryptography,
  python3-dbus,
@@ -194,6 +193,7 @@
  ${misc:Depends},
  ${python3:Depends},
  ${shlibs:Depends},
+ ${lib:Depends},
 Description: FreeIPA centralized identity framework -- shared Python3 modules
  FreeIPA is an integrated solution to provide centrally managed Identity
  (machine, user, virtual machines, groups, authentication credentials), Policy
diff -Nru freeipa-4.10.2/debian/rules freeipa-4.10.2/debian/rules
--- freeipa-4.10.2/debian/rules 2023-10-18 11:46:40.0 +0200
+++ freeipa-4.10.2/debian/rules 2024-03-23 20:45:18.0 +0100
@@ -126,6 +126,11 @@
chmod 0700 $(CURDIR)/debian/freeipa-server/var/lib/ipa/backup; \
fi
 
+override_dh_gencontrol:
+   dh_gencontrol -- \
+ -Vlib:Depends=$(shell dpkg-query -W -f '$${Depends}' librpm-dev \
+   | sed -E 's/.*(librpm[[:alnum:].-]+).*/\1/')
+
 %:
dh $@ --with python3
 #  --builddirectory=build


-- System Information:
Debian Release: trixie/sid
  APT prefers noble
  APT policy: (500, 'noble'), (500, 'mantic-security')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.8.0-11-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

-- 
debian developer - deb.li/jak | jak-linux.org - free software dev
ubuntu core developer  i speak de, en
--- End Message ---
--- Begin Message ---
Source: freeipa
Source-Version: 4.11.1-1
Done: Timo Aaltonen 

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

Debian distribution maintenance software
pp.
Timo Aaltonen  (supplier of updated freeipa 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 15:59:30 +0300
Source: freeipa
Built-For-Profiles: noudeb
Architecture: source
Version: 4.11.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian FreeIPA Team 
Changed-By: Timo Aaltonen 
Closes: 1067570
Changes:
 freeipa (4.11.1-1) unstable; urgency=medium
 .
   * New upstream release.
   * control: Add sssd-passkey to freeipa-client Recommends.
   * control.server: Drop python3-paste from 

Processed: forwarded qrcode issue

2024-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 1068295 https://github.com/lincolnloop/python-qrcode/issues/361
Bug #1068295 [src:python-qrcode] qrcode fails its autopkg tests with pillow 10.3
Set Bug forwarded-to-address to 
'https://github.com/lincolnloop/python-qrcode/issues/361'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1068295: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068295
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1068758: strace fails to build it's tests on arm-linux-gnueabihf with 64bit time_t

2024-04-10 Thread Matthias Klose

Package: src:strace
Version: 6.5-0.1
Severity: serious
Tags: sid trixie ftbfs
Forwarded: https://github.com/strace/strace/issues/296

strace fails to build it's tests on arm-linux-gnueabihf with 64bit time_t:

make[5]: Entering directory '/<>/build/tests'
depbase=echo _newselect.o | sed 's|[^/]*$|.deps/&|;s|\.o$||';
gcc -DHAVE_CONFIG_H -I. -I../src/linux/arm -I../../src/linux/arm 
-I../src/linux/generic -I../../src/linux/generic -I../src -I../../src 
-I../../bundled/linux/arch/arm/include/uapi 
-I../../bundled/linux/include/uapi -DSTRACE_SIZEOF_KERNEL_LONG_T=4 
-DTESTS_SIZEOF_KERNEL_LONG_T=4 -DSTRACE_SIZEOF_LONG=4 
-DTESTS_SIZEOF_LONG=4 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 
-D_TIME_BITS=64 -Wdate-time -D_FORTIFY_SOURCE=3 
-I../bundled/linux/arch/arm/include/uapi -I../bundled/linux/include/uapi 
-Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter 
-Wdate-time -Wformat-security -Wimplicit-fallthrough=5 -Winit-self 
-Wlogical-op -Wmissing-prototypes -Wnested-externs 
-Wold-style-definition -Wtrampolines -Wundef -Wwrite-strings -Werror -g 
-O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
-fstack-protector-strong -Wformat -Werror=format-security 
-fno-stack-clash-protection 
-fdebug-prefix-map=/<>=/usr/src/strace-6.8-0ubuntu1 -Wall -g -O2 -MT 
_newselect.o -MD -MP -MF $depbase.Tpo -c -o _newselect.o 
../../tests/_newselect.c &&

mv -f $depbase.Tpo $depbase.Po
mv -f .deps/libstrace_a-xmalloc.Tpo .deps/libstrace_a-xmalloc.Po
In file included from ../../tests/_newselect.c:16:
../../tests/xselect.c: In function ‘main’:
gcc -DHAVE_CONFIG_H -I./linux/arm -I../../src/linux/arm 
-I./linux/generic -I../../src/linux/generic -I. -I../../src 
-I../../bundled/linux/arch/arm/include/uapi 
-I../../bundled/linux/include/uapi -DIN_STRACE=1 -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -Wdate-time -D_FORTIFY_SOURCE=3 
-I../bundled/linux/arch/arm/include/uapi -I../bundled/linux/include/uapi 
-Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter 
-Wdate-time -Wformat-security -Wimplicit-fallthrough=5 -Winit-self 
-Wlogical-op -Wmissing-prototypes -Wnested-externs 
-Wold-style-definition -Wtrampolines -Wundef -Wwrite-strings -Werror -g 
-O2 -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
-fstack-protector-strong -Wformat -Werror=format-security 
-fno-stack-clash-protection 
-fdebug-prefix-map=/<>=/usr/src/strace-6.8-0ubuntu1 -Wall -g -O2 -MT 
libstrace_a-bpf_attr_check.o -MD -MP -MF 
.deps/libstrace_a-bpf_attr_check.Tpo -c -o libstrace_a-bpf_attr_check.o 
test -f 'bpf_attr_check.c' || echo '../../src/'bpf_attr_check.c
../../tests/xselect.c:216:24: error: overflow in conversion from ‘long 
long int’ to ‘kernel_long_t’ {aka ‘long int’} changes value from 
‘-3819351491602432273’ to ‘-559038737’ [-Werror=overflow]

216 | tv_in.tv_sec = (time_t) 0xcafef00ddeadbeefLL;
| ^



Bug#1068757: python-musicpd: FTBFS: dh_installchangelogs: error: could not find changelog

2024-04-10 Thread Santiago Vila

Package: src:python-musicpd
Version: 0.8.0-1
Severity: serious
Tags: ftbfs

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build:


[...]
 debian/rules binary
dh binary --with python3,sphinxdoc --buildsystem=pybuild --name=musicpd
   dh_update_autotools_config -O--buildsystem=pybuild -O--name=musicpd
   dh_autoreconf -O--buildsystem=pybuild -O--name=musicpd
   dh_auto_configure -O--buildsystem=pybuild -O--name=musicpd
I: pybuild base:311: python3.11 setup.py config
/usr/lib/python3/dist-packages/setuptools/config/setupcfg.py:293: 
_DeprecatedConfig: Deprecated config in `setup.cfg`
!!



The license_file parameter is deprecated, use license_files instead.

This deprecation is overdue, please update your project and remove 
deprecated
calls to avoid build errors in the future.

See 
https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for 
details.



!!
  parsed = self.parsers.get(option_name, lambda x: x)(value)
running config
   dh_auto_build -O--buildsystem=pybuild -O--name=musicpd
I: pybuild base:311: /usr/bin/python3 setup.py build
/usr/lib/python3/dist-packages/setuptools/config/setupcfg.py:293: 
_DeprecatedConfig: Deprecated config in `setup.cfg`
!!



The license_file parameter is deprecated, use license_files instead.

This deprecation is overdue, please update your project and remove 
deprecated
calls to avoid build errors in the future.

See 
https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for 
details.



!!
  parsed = self.parsers.get(option_name, lambda x: x)(value)
running build
running build_py
copying musicpd.py -> /<>/.pybuild/cpython3_3.11/build
   dh_auto_test -O--buildsystem=pybuild -O--name=musicpd
I: pybuild base:311: cd /<>/.pybuild/cpython3_3.11/build; 
python3.11 -m unittest discover -v

--
Ran 0 tests in 0.000s

OK
   create-stamp debian/debhelper-build-stamp
   dh_testroot -O--buildsystem=pybuild -O--name=musicpd
   dh_prep -O--buildsystem=pybuild -O--name=musicpd
   dh_auto_install --destdir=debian/python3-musicpd/ -O--buildsystem=pybuild 
-O--name=musicpd
I: pybuild base:311: /usr/bin/python3 setup.py install --root 
/<>/debian/python3-musicpd
/usr/lib/python3/dist-packages/setuptools/config/setupcfg.py:293: 
_DeprecatedConfig: Deprecated config in `setup.cfg`
!!



The license_file parameter is deprecated, use license_files instead.

This deprecation is overdue, please update your project and remove 
deprecated
calls to avoid build errors in the future.

See 
https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for 
details.



!!
  parsed = self.parsers.get(option_name, lambda x: x)(value)
running install
/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py:66: 
SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!



Please avoid running ``setup.py`` directly.
Instead, use pypa/build, pypa/installer or other
standards-based tools.

See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html 
for details.



!!
  self.initialize_options()
running build
running build_py
running install_lib
creating /<>/debian/python3-musicpd/usr
creating /<>/debian/python3-musicpd/usr/lib
creating /<>/debian/python3-musicpd/usr/lib/python3.11
creating 
/<>/debian/python3-musicpd/usr/lib/python3.11/dist-packages
copying /<>/.pybuild/cpython3_3.11/build/musicpd.py -> 
/<>/debian/python3-musicpd/usr/lib/python3.11/dist-packages
byte-compiling 
/<>/debian/python3-musicpd/usr/lib/python3.11/dist-packages/musicpd.py
 to musicpd.cpython-311.pyc
running install_egg_info
running egg_info
creating python_musicpd.egg-info
writing python_musicpd.egg-info/PKG-INFO
writing dependency_links to python_musicpd.egg-info/dependency_links.txt
writing top-level names to python_musicpd.egg-info/top_level.txt
writing manifest file 'python_musicpd.egg-info/SOURCES.txt'
reading manifest file 'python_musicpd.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE.txt'
writing manifest file 

Bug#1068754: circe: FTBFS: failing tests

2024-04-10 Thread Santiago Vila

Package: src:circe
Version: 2.12-1
Severity: serious
Tags: ftbfs

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build:


[...]
 debian/rules build
dh build --with elpa
   dh_update_autotools_config
   dh_autoreconf
   debian/rules override_dh_auto_build
make[1]: Entering directory '/<>'
skipping upstream build
make[1]: Leaving directory '/<>'
   dh_elpa_test
buttercup -L .
Loading /etc/emacs/site-start.d/00debian.el (source)...
Loading /etc/emacs/site-start.d/50autoconf.el (source)...
Running 214 specs.

Circe chat mode
  creation function
should have circe-server-buffer set in the mode hook
should have circe-server-buffer set in the mode hook (1.93ms)

The `circe-version' command
  should display the current version
  should display the current version (0.07ms)

The `circe-duration-string' function
  should handle very short amounts of time
  should handle very short amounts of time (0.11ms)
  should support second granularity
  should support second granularity (0.17ms)
  should support minute granularity
  should support minute granularity (0.25ms)
  should support monthly granularity
  should support monthly granularity (0.11ms)

Circe's completion facility
  should complete nicks with colon at the beginning of the input
  should complete nicks with colon at the beginning of the input 
(10.16ms)
  should complete nicks without colon later in the input
  should complete nicks without colon later in the input (8.96ms)

Display of
  RPL_WHOISREPLY
should show idle time
should show idle time (0.15ms)
should show idle time and signon time
should show idle time and signon time (0.18ms)
  RPL_TOPICWHOTIME
should show current topic time
should show current topic time (0.19ms)
should show current topic time in a different channel
should show current topic time in a different channel (0.20ms)
  CTCP ACTION
should show a query in a query buffer
should show a query in a query buffer (0.12ms)
should show a query in the current buffer
should show a query in the current buffer (0.12ms)
should show a channel action
should show a channel action (0.12ms)
  CTCP PING
should display unknown seconds when passed nil for text
should display unknown seconds when passed nil for text (0.15ms)

The `irc-connect' function
  should return a process when using non-tls connections
  should return a process when using non-tls connections (0.12ms)
  should return a process when using tls connections
  should return a process when using tls connections (0.43ms)
  should not use nowait if it is not supported
  should not use nowait if it is not supported (0.21ms)
  should call the sentinel if nowait is not supported
  should call the sentinel if nowait is not supported (0.08ms)

Connection options
  should retrieve options set
  should retrieve options set (0.34ms)

The `irc--sentinel' function
  should emit conn.failed for a failed event
  should emit conn.failed for a failed event (0.12ms)
  should emit conn.connected on an open event
  should emit conn.connected on an open event (0.08ms)
  should emit conn.disconnected for a broken connection
  should emit conn.disconnected for a broken connection (0.08ms)
  should emit conn.disconnected for a finished process
  should emit conn.disconnected for a finished process (0.07ms)
  should emit conn.disconnected for an exiting process
  should emit conn.disconnected for an exiting process (0.07ms)
  should ignored killed processes
  should ignored killed processes (0.06ms)
  should ignore deleted processes
  should ignore deleted processes (0.06ms)
  should raise an error for unknown events
  should raise an error for unknown events (0.09ms)

The `irc--filter' function
  should handle single lines
  should handle single lines (0.31ms)
  should handle single lines even without CR
  should handle single lines even without CR (0.31ms)
  should handle multiple lines at once
  should handle multiple lines at once (0.36ms)
  should handle partial lines
  should handle partial lines (0.35ms)
  should not handle a line received while others are processed
  should not handle a line received while others are processed (0.37ms)

The `irc--handle-line' function
  should emit an event for the command
  should emit an event for the command (0.15ms)

The `irc--parse' function
  should parse a command without anything else
  should parse a command without anything else (0.11ms)
  should parse a command with a single argument
  should parse a command with a single argument (0.10ms)
 

Bug#1068711: marked as done (oar-web-status: the Monika CGI page does not work - missing dependency.)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 12:04:48 +
with message-id 
and subject line Bug#1068711: fixed in oar 2.5.10-2
has caused the Debian Bug report #1068711,
regarding oar-web-status: the Monika CGI page does not work - missing 
dependency.
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 ow...@bugs.debian.org
immediately.)


-- 
1068711: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068711
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: oar-web-status
Version: 2.5.9-1
Severity: serious
Tags: 
Justification: Monika requires libcgi-fast-perl
X-Debbugs-Cc: pierre.ney...@free.fr

Hello,

When installing the oar-web-status package only, without the oar-restful-api 
alongside (not dependency between then), the Monika CGI page does not work.

The problem does not arise when oar-restful-api is installed alongside as well, 
because it bring the required dependency: libcgi-fast-perl.

oar-web-status should require libcgi-fast-perl, like oar-restful-api.

Problem still occures in Debian testing with oar-web-status 2.5.10-1. 

-- System Information:
Debian Release: 12.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 'stable-security')
Architecture: amd64 (x86_64)

Kernel: Linux 6.1.0-18-amd64 (SMP w/1 CPU thread; PREEMPT)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages oar-web-status depends on:
ii  apache2 [httpd-cgi]   2.4.57-2
ii  libappconfig-perl 1.71-2.2
ii  libdbd-pg-perl3.16.0-2
ii  libdbi-perl   1.643-4
ii  libsort-naturally-perl1.03-4
ii  libtie-ixhash-perl1.23-4
ii  perl  5.36.0-7+deb12u1
ii  php   2:8.2+93
ii  php-pgsql 2:8.2+93
ii  php8.2 [php]  8.2.7-1~deb12u1
ii  php8.2-pgsql [php-pgsql]  8.2.7-1~deb12u1

oar-web-status recommends no packages.

Versions of packages oar-web-status suggests:
pn  oar-doc  

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: oar
Source-Version: 2.5.10-2
Done: Vincent Danjean 

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

Debian distribution maintenance software
pp.
Vincent Danjean  (supplier of updated oar 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 10 Apr 2024 13:41:34 +0200
Source: oar
Architecture: source
Version: 2.5.10-2
Distribution: unstable
Urgency: medium
Maintainer: Pierre Neyron 
Changed-By: Vincent Danjean 
Closes: 1068711
Changes:
 oar (2.5.10-2) unstable; urgency=medium
 .
   [ Pierre Neyron ]
   * oar-web-status: Fix missing dependency to libcgi-fast-perl (Closes:
 #1068711)
Checksums-Sha1:
 38bda76ff726a140df158e75ddaeb305be485ed7 2488 oar_2.5.10-2.dsc
 42128fbf0e6f9f1c27563fb6dbd9929532657cbb 11524 oar_2.5.10-2.debian.tar.xz
 f30b799027c0d612c2daab7513a27f08c8fc428d 9027 oar_2.5.10-2_source.buildinfo
Checksums-Sha256:
 dad01bb24236a7ade40fce373a5b9f8a3ac75543f93a6f54b45b4cfd3e131445 2488 
oar_2.5.10-2.dsc
 b7bfab2f579763d64595d21c25868526e1a451621ba649802b4ec19420b70159 11524 
oar_2.5.10-2.debian.tar.xz
 a5a190400083dadd54de060bd981f325507fdf7b72cab7eff54926aa6af93a26 9027 
oar_2.5.10-2_source.buildinfo
Files:
 2a7c472c72f5c5ead629e56b164d7990 2488 utils optional oar_2.5.10-2.dsc
 13f494002eee9d0e880635c04d19d54b 11524 utils optional 
oar_2.5.10-2.debian.tar.xz
 5a8041059a79887f1d12a70588808a99 9027 utils optional 
oar_2.5.10-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEE+JeSXDEY4vnrLgRlkfeY37Ht1EFAmYWfdkACgkQlkfeY37H
t1Ha3Q//a85Y48wf/CY3nFYx37JfR2Hm0/Z0mBSQD8jCygX2L153Fy+Y+DsZqcZB
6GNtrcaj1r2Kl0RZoeFQlzGSpp97CN/ppdax7uPYB54x1r+IXUeiI5X8f5sBfEHK
TfLUtr13YEKllj2MZB3xaAxCU+87TpH9g/2ixmjgtsK+5XXoQyWIvdwi+brd9OCb
PzzYJ1QLN6HftnRt6Cx98BjJN3RrHAXcQ9ixkZu6lRSjO1fAywKBpDtQbk+V1nhs
0DIpswBrLjdQ28mJXh6Z4hnBTjy83coiLEtb46eRSXEhOxOK7YpQRd8/g6RoOU+p
bXs99DgKUkhPq6xppFL/RZgzggvrXxK8tls5niCGvLpc9OtErXkXY02JJhTK7Jj5

Bug#1068045: [Pkg-openssl-devel] Bug#1068045: libssl3: breaks YAPET

2024-04-10 Thread Sean Whitton
Hello,

On Mon 08 Apr 2024 at 07:15pm +02, Salvatore Bonaccorso wrote:

> Hi Sebastian,
>
> On Mon, Apr 08, 2024 at 06:43:01PM +0200, Sebastian Andrzej Siewior wrote:
>> control: tags -1 patch
>> control: reassign -1 yapet 2.6-1
>>
>> On 2024-04-08 08:32:58 [+0200], Kurt Roeckx wrote:
>> > There might be a related change that doesn't allow restarting the
>> > operation with the same context without setting things up again.
>>
>> Yapet is broken and the openssl update revealed the problem. I
>> reassigned it to yapet 2.6 but probably affects earlier versions.
>> But then the 1.1.1 series is no longer maintained so…
>>
>> Patches attached and they hold the details of why and such.
>>
>> This needs to be applied to unstable and Bookworm.
>> The testsuite passes and I can open Sean's test file.
>> Further testing is welcome by actual users ;)
>
> Thanks for the investigation and bringing the fixes to upstream
> already: https://github.com/RafaelOstertag/yapet/pull/29
>>
>> I can NMU if needed just yell.
>
> No need for that, will take it with my maintainers hat on from here.

Many thanks both.

-- 
Sean Whitton



Bug#1066385: marked as done (file-kanji: FTBFS: file2.c:52:9: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 11:49:32 +
with message-id 
and subject line Bug#1066385: fixed in file-kanji 1.1-21
has caused the Debian Bug report #1066385,
regarding file-kanji: FTBFS: file2.c:52:9: error: implicit declaration of 
function ‘exit’ [-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066385: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: file-kanji
Version: 1.1-20
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o file2.o file2.c
> file2.c:44:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>44 | main(argc,argv)
>   | ^~~~
> file2.c: In function ‘main’:
> file2.c:52:9: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>52 | exit(1);
>   | ^~~~
> file2.c:17:1: note: include ‘’ or provide a declaration of ‘exit’
>16 | #include 
>   +++ |+#include 
>17 | 
> file2.c:52:9: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>52 | exit(1);
>   | ^~~~
> file2.c:52:9: note: include ‘’ or provide a declaration of ‘exit’
> file2.c:55:15: error: implicit declaration of function ‘check’ 
> [-Werror=implicit-function-declaration]
>55 | (void)check(argv[i]);
>   |   ^
> file2.c: In function ‘check’:
> file2.c:85:16: error: implicit declaration of function ‘check_detail’ 
> [-Werror=implicit-function-declaration]
>85 | kind = check_detail(buff, n);
>   |^~~~
> file2.c:94:13: error: implicit declaration of function ‘strcpy’ 
> [-Werror=implicit-function-declaration]
>94 | strcpy(work, "JIS text");
>   | ^~
> file2.c:17:1: note: include ‘’ or provide a declaration of ‘strcpy’
>16 | #include 
>   +++ |+#include 
>17 | 
> file2.c:94:13: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
>94 | strcpy(work, "JIS text");
>   | ^~
> file2.c:94:13: note: include ‘’ or provide a declaration of ‘strcpy’
> file2.c:96:17: error: implicit declaration of function ‘strcat’ 
> [-Werror=implicit-function-declaration]
>96 | strcat(work, " (KI=ESC-$-B");
>   | ^~
> file2.c:96:17: note: include ‘’ or provide a declaration of ‘strcat’
> file2.c:96:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
> file2.c:96:17: note: include ‘’ or provide a declaration of ‘strcat’
> file2.c:98:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
>98 | strcat(work, " (KI=ESC-$-@");
>   | ^~
> file2.c:98:17: note: include ‘’ or provide a declaration of ‘strcat’
> file2.c:100:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
>   100 | strcat(work, ",KO=ESC-(-B)");
>   | ^~
> file2.c:100:17: note: include ‘’ or provide a declaration of 
> ‘strcat’
> file2.c:102:17: warning: incompatible implicit declaration of built-in 
> function ‘strcat’ [-Wbuiltin-declaration-mismatch]
>   102 | strcat(work, ",KO=ESC-(-J)");
>   | ^~
> file2.c:102:17: note: include ‘’ or provide a declaration of 
> ‘strcat’
> file2.c:112:27: error: implicit declaration of function ‘fork’ 
> [-Werror=implicit-function-declaration]
>   112 | if ( (pid=fork()) < 0 ) {
>   |   ^~~~
> file2.c:117:21: error: implicit declaration of function ‘execl’ 
> [-Werror=implicit-function-declaration]
>   117 | execl("/usr/bin/file", 

Bug#1066243: Patch for FTBFS

2024-04-10 Thread Miriam Espana Acebal
Hi,

In ubuntu we applied the upstream's patch at
https://sourceforge.net/p/bristol/patches/3/ that I'll attach here for
fixing this FTBFS.

I am sending this for your consideration, and I hope that it helps.

Best,

Miriam

-- 
[image: Canonical-20th-anniversary]

Miriam España Acebal

Software Engineer II - Ubuntu Public Cloud/Server

Email:

miriam.esp...@canonical.com

Location:

Spain

canonical.com

ubuntu.com
Author: Florian Weimer 
Origin: https://sourceforge.net/p/bristol/patches/3/attachment/bristol-c99.patch
Bug-Ubuntu:  https://bugs.launchpad.net/bugs/2060784
Forwarded:   no
Last-Update: 2024-04-17
Description: Avoid implicit ints and implicit function declarations, to prevent
build failures with future compilers which do not support them.

--- a/bristol/bristolmemorymoog.c
+++ b/bristol/bristolmemorymoog.c
@@ -33,6 +33,7 @@
 #include "bristolmemorymoog.h"
 
 extern int buildCurrentTable(Baudio *, float);
+extern void doPitchWheel(Baudio *);
 
 /*
  * Use of these memorymoog global buffers will be an issue with use of multiple
--- a/libbrightonC11/bRoutines.c
+++ b/libbrightonC11/bRoutines.c
@@ -24,6 +24,7 @@
 
 void *
 brightonX11malloc(size)
+int size;
 {
 	void *mem;
 
--- a/libbrightonX11/bRoutines.c
+++ b/libbrightonX11/bRoutines.c
@@ -25,6 +25,7 @@
 
 void *
 brightonX11malloc(size)
+int size;
 {
 	void *mem;
 
--- a/libbristol/bristolcdefs.c
+++ b/libbristol/bristolcdefs.c
@@ -25,6 +25,7 @@
 
 void *
 bristolmalloc(size)
+int size;
 {
 	char *mem;
 
@@ -39,6 +40,7 @@
 
 void *
 bristolmalloc0(size)
+int size;
 {
 	char *mem;
 
--- a/libbristolaudio/audioEngine.c
+++ b/libbristolaudio/audioEngine.c
@@ -85,6 +85,7 @@
 initAudioDevice2(audioDev, devID, fragSize)
 duplexDev *audioDev;
 int devID;
+int fragSize;
 {
 	/*
 	 * The device is basically just opened for the first call of this routine.
@@ -118,6 +119,7 @@
 int
 setAudioStart2(audioDev, devID)
 duplexDev *audioDev;
+int devID;
 {
 	int enable;
 
@@ -162,6 +164,7 @@
 int
 setAudioStop2(audioDev, devID)
 duplexDev *audioDev;
+int devID;
 {
 	int enable;
 
--- a/libbristolaudio/audioEngineOSS.c
+++ b/libbristolaudio/audioEngineOSS.c
@@ -49,6 +49,7 @@
 ossAudioInit(audioDev, devID, fragSize)
 duplexDev *audioDev;
 int devID;
+int fragSize;
 {
 #if (BRISTOL_HAS_OSS == 1)
 	int results, data = 0, mode;
--- a/libbristolaudio/audioGUI.c
+++ b/libbristolaudio/audioGUI.c
@@ -161,6 +161,7 @@
 char *
 getControllerName(audioDev, controller)
 duplexDev *audioDev;
+int controller;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
@@ -173,6 +174,8 @@
 int
 setRecordSource(audioDev, controller, position)
 duplexDev *audioDev;
+int controller;
+int position;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
@@ -185,6 +188,7 @@
 int
 getRecordability(audioDev, controller)
 duplexDev *audioDev;
+int controller;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
@@ -197,6 +201,7 @@
 int
 getMutability(audioDev, controller)
 duplexDev *audioDev;
+int controller;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
@@ -211,6 +216,7 @@
 int
 getStereoStatus(audioDev, controller)
 duplexDev *audioDev;
+int controller;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
@@ -222,6 +228,8 @@
 int
 getValue(audioDev, controller, side)
 duplexDev *audioDev;
+int controller;
+int side;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
@@ -233,6 +241,9 @@
 int
 setAudioValue(audioDev, controller, side, value)
 duplexDev *audioDev;
+int controller;
+int side;
+int value;
 {
 	if (audioDev->cflags & SLAB_AUDIODBG)
 		printf("setAudioValue(%p, %i, %i, %i)\n", audioDev, controller, side, value); 
@@ -251,6 +262,8 @@
 int
 setAudioMute(audioDev, controller, value)
 duplexDev *audioDev;
+int controller;
+int value;
 {
 	if (audioDev->cflags & SLAB_AUDIODBG)
 		printf("setAudioMute()\n");
@@ -280,6 +293,7 @@
 int
 getAudioCapability(audioDev, controller)
 duplexDev *audioDev;
+int controller;
 {
 	if (audioDev->cflags & SLAB_AUDIODBG)
 		printf("getAudioCapability(%s, %i)\n", audioDev->devName, controller);
@@ -296,6 +310,7 @@
 int
 validDev(audioDev, index)
 duplexDev *audioDev;
+int index;
 {
 #if (BRISTOL_HAS_ALSA == 1)
 	if ((audioDev->flags & AUDIO_ALSA) != 0)
--- a/libbristolaudio/audioGUIOSS.c
+++ b/libbristolaudio/audioGUIOSS.c
@@ -91,7 +91,11 @@
  */
 static int
 setAudioOSS(fd, audioDev, param, valueL, valueR)
+int fd;
 duplexDev *audioDev;
+int param;
+int valueL;
+int valueR;
 {
 #if (BRISTOL_HAS_OSS == 1)
 	int value, command;
@@ -259,6 +263,7 @@
 int
 getOSSCapability(audioDev, controller)
 duplexDev *audioDev;
+int controller;
 {
 	if ((audioDev->stereoCaps | audioDev->monoCaps) & (1 << controller))
 		return controller;
@@ -268,6 +273,7 @@
 int
 getOSSRecordability(audioDev, cont)
 duplexDev *audioDev;
+int cont;
 {
 	if (audioDev->cflags & SLAB_AUDIODBG)
 		printf("getOSSRecordability(%i, %i)\n", 

Bug#1068040: marked as done (Update Build-Depends for the time64 library renames)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 10:49:03 +
with message-id 
and subject line Bug#1068040: fixed in deepin-deb-installer 5.12.4-2
has caused the Debian Bug report #1068040,
regarding Update Build-Depends for the time64 library renames
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 ow...@bugs.debian.org
immediately.)


-- 
1068040: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068040
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: deepin-deb-installer
Version: 5.12.4-1
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libqt5concurrent5, libqt5widgets5, these
need to be changed to libfoot64 if they are needed at all.


-- System Information:
Debian Release: trixie/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing-debug'), (500, 
'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.7.9-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
--- End Message ---
--- Begin Message ---
Source: deepin-deb-installer
Source-Version: 5.12.4-2
Done: Nisha Pariyar 

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

Debian distribution maintenance software
pp.
Nisha Pariyar  (supplier of updated 
deepin-deb-installer 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 06 Apr 2024 13:37:35 +0545
Source: deepin-deb-installer
Architecture: source
Version: 5.12.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Deepin Packaging Team 

Changed-By: Nisha Pariyar 
Closes: 1044681 1068040
Changes:
 deepin-deb-installer (5.12.4-2) unstable; urgency=medium
 .
   * debian/control:
 + update libqt5concurrent5 and libqt5widgets5 to
   libqt5concurrent5t64 and libqt5widgets5t64.
   (Closes: #1068040)
 + Bump Standards-Version to 4.6.2.
 + Change build dependency pkg-config to pkgconf.
 + Add myself to uploader list.
   * debian/clean:
 + Clean .qm files to fix ftbfs-source-after-build.
   (Closes: #1044681)
Checksums-Sha1:
 5ccbf2031949033c01b51795137e95b69107fbba 2390 deepin-deb-installer_5.12.4-2.dsc
 853afa78b571eb070f5eb2c700413be8eed5e5eb 5044 
deepin-deb-installer_5.12.4-2.debian.tar.xz
 6ce8f482b722523d2087fe32d5726fa10839631c 15324 
deepin-deb-installer_5.12.4-2_amd64.buildinfo
Checksums-Sha256:
 c71182b0393466f18f0b3d33be10e2293d257287a89d32d78859542d743c3e65 2390 
deepin-deb-installer_5.12.4-2.dsc
 7d1c66a27564811a0147a1ba9943f29708e0dfda54b3fcf5c3ad89fb3e478c62 5044 
deepin-deb-installer_5.12.4-2.debian.tar.xz
 d89fa5ff00326908a97a494beec69d7db41e71fe652ae217e2cde35693cc5309 15324 
deepin-deb-installer_5.12.4-2_amd64.buildinfo
Files:
 8a2712598f925fbc33bf0fc186301854 2390 utils optional 
deepin-deb-installer_5.12.4-2.dsc
 de0be2a3c07caca66c0a8ca9b6c40c0a 5044 utils optional 
deepin-deb-installer_5.12.4-2.debian.tar.xz
 9891707e7973dd6e598baefed25f3077 15324 utils optional 
deepin-deb-installer_5.12.4-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE2lMFjb4VS9/L8WutS1Qq9wT3RRYFAmYWaToACgkQS1Qq9wT3
RRb3VA//aE7tBcruqe9cj9f0dyLw344jRwfuny8bhGbBXXiWlmFUuMrF+h17T3iO
FHuAjTzQTmN3WdjSRLJP97tOzicC9FuYtiEE/DsKL6oIAsmXyTXWPe+CHbCibBb0
TTaTS8JJxKLJWx7lueFCMjRNoUhD+G9sfSq3P8buL8ToKGOXaHOsIuWhcW3jeXV+
/DnY6RsDGDcC/74EZps9A0oGhanCMOn3bTpHDYISncXPhhJoPMFscHwsAJ9pZ804
gUX8iErozjOr8u9U3ACbQeiSukKUOAA90NviFJDJACEwpT0efaHPVIHR6vtc/ngq
MG82Tkuz1h4LrhvxfoNcGWgtTe3CgD/vOniyLOSR6dH4QV3sU17a9tFfLKV/Hg0k
bxi0u5pT0aTrQZfh4WjqMyxgzVR866PsTmepXG5Hi8/iS6RWnMk3e3csKjdqLGEe
AJxE6bFIwiXeM0GCX36CnpwrQ5Fopq9MIRg79dihgRj3Hddn5/zXpEQrlbIEC5xo
pvwnEVj/b7LDMZeZoMbBExxvZBPBWx8pk3k+MX9Y0fUaEyrtF4riN2kusx1tJh98
Vh6AgTMyXbYg6EK3VS70q1W/m7n19LvmylIPJ2P08PrOcrYzWM//FbblyKS5TRhC
GNRupV8Bx+YHUuBrMAG2Qxldd7NKZihahD2DTty903ArCmVF6Bs=
=0prQ

Bug#1068750: moment-timezone.js: FTBFS everywhere

2024-04-10 Thread Santiago Vila

Package: src:moment-timezone.js
Version: 0.5.32+dfsg1-2+2021a
Severity: serious
Tags: bullseye bookworm trixie sid ftbfs

Dear maintainer:

This package currently fails to build from source in all supported 
distributions.

make[1]: Leaving directory '/<>'
   dh_clean
 debian/rules binary
dh binary
   dh_update_autotools_config
   dh_autoreconf
   debian/rules execute_before_dh_auto_configure
make[1]: Entering directory '/<>'
# Fail the build if the tzdata package does not match TZVER.
grep -q '^# version 2023d$' /usr/share/zoneinfo/tzdata.zi
make[1]: *** [debian/rules:28: execute_before_dh_auto_configure] Error 1
make[1]: Leaving directory '/<>'
make: *** [debian/rules:24: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

See also:

https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/moment-timezone.js.html

I'm curious: Does this package embed the information from tzdata into 
javascript code,
in such a way that a change in tzdata requires a rebuild?

I think it would be highly desirable to find a way for this package to do what
it's supposed to do without having to fix it in oldstable and stable every year.

(In fact, I asked Paul Gevers about this, he says that a package which we know
for sure that it will fail to build during the support time of the release is 
RC).

Thanks.



Bug#1066440: librep: FTBFS: ././conftest.c:48:(.text.startup+0xb): undefined reference to `mpz_init'

2024-04-10 Thread Benjamin Drung
On Wed, 13 Mar 2024 13:03:36 +0100 Lucas Nussbaum 
wrote:
> Source: librep
> Version: 0.92.5-3.1
> Severity: serious
> Justification: FTBFS
> Tags: trixie sid ftbfs
> User: lu...@debian.org
> Usertags: ftbfs-20240313 ftbfs-trixie
> 
> Hi,
> 
> During a rebuild of all packages in sid, your package failed to build
> on amd64.
> 
> 
> Relevant part (hopefully):
> > /usr/bin/ld: /tmp/ccO0t9oT.o: in function `main':
> > ././conftest.c:48:(.text.startup+0xb): undefined reference to
`mpz_init'
> > collect2: error: ld returned 1 exit status
> 
> 
> The full build log is available from:
> http://qa-logs.debian.net/2024/03/13/librep_0.92.5-3.1_unstable.log
> 
> All bugs filed during this archive rebuild are listed at:
>
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
> or:
>
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results
> 
> A list of current common problems and possible solutions is available
at
> http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to
contribute!
> 
> If you reassign this bug to another package, please mark it as
'affects'-ing
> this package. See https://www.debian.org/Bugs/server-control#affects
> 
> If you fail to reproduce this, please provide a build log and diff it
with mine
> so that we can identify if something relevant changed in the meantime.

We applied the attached patch in Ubuntu to address this build failure.

-- 
Benjamin Drung
Debian & Ubuntu Developer
diff -Nru librep-0.92.5/debian/patches/build-fix-Wimplicit-int-Wimplicit-function-declaration.patch librep-0.92.5/debian/patches/build-fix-Wimplicit-int-Wimplicit-function-declaration.patch
--- librep-0.92.5/debian/patches/build-fix-Wimplicit-int-Wimplicit-function-declaration.patch	1970-01-01 01:00:00.0 +0100
+++ librep-0.92.5/debian/patches/build-fix-Wimplicit-int-Wimplicit-function-declaration.patch	2024-04-10 12:16:37.0 +0200
@@ -0,0 +1,62 @@
+From: Sam James 
+Date: Sat, 5 Nov 2022 06:04:27 +
+Subject: build: fix -Wimplicit-int, -Wimplicit-function-declaration
+
+Clang 16 will make -Wimplicit-int and -Wimplicit-function-declaration
+errors by default.
+
+In this case, it manifests as:
+```
+checking for data type to store Lisp values... configure: error: cannot find Lisp value type; set --with-value-type (see README)
+```
+
+For more information, see LWN.net [0] or LLVM's Discourse [1], or the
+(new) c-std-porting mailing list [2].
+
+[0] https://lwn.net/Articles/913505/
+[1] https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213
+[2] hosted at lists.linux.dev.
+
+Signed-off-by: Sam James 
+Bug-Ubuntu: https://launchpad.net/bugs/2060791
+Origin: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a935681a6fcabf47524c72420050b6a9030f555d
+---
+ configure.in | 12 
+ 1 file changed, 8 insertions(+), 4 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 1d959f4..4448c45 100644
+--- a/configure.in
 b/configure.in
+@@ -432,15 +432,18 @@ AC_ARG_WITH(value-type,
+ 			   as a pointer. [TYPE=] (see README)], [],
+  [with_value_type="undef"])
+ if test "${with_value_type}" = "undef"; then
+-  AC_TRY_RUN([main () { exit (!(sizeof (int) >= sizeof (void *)));}],
++  AC_TRY_RUN([#include 
++ int main () { exit (!(sizeof (int) >= sizeof (void *)));}],
+ 	 [with_value_type=int])
+ fi
+ if test "${with_value_type}" = "undef"; then
+-  AC_TRY_RUN([main () { exit (!(sizeof (long int) >= sizeof (void *)));}],
++  AC_TRY_RUN([#include 
++ int main () { exit (!(sizeof (long int) >= sizeof (void *)));}],
+ 	 [with_value_type="long int"])
+ fi
+ if test "${with_value_type}" = "undef"; then
+-  AC_TRY_RUN([main () { exit (!(sizeof (long long int) >= sizeof (void *)));}],
++  AC_TRY_RUN([#include 
++ int main () { exit (!(sizeof (long long int) >= sizeof (void *)));}],
+ 	 [with_value_type="long long int"])
+ fi
+ if test "${with_value_type}" = "undef"; then
+@@ -457,7 +460,8 @@ AC_ARG_WITH(value-sizeof,
+ if test "${with_value_sizeof}" = "undef"; then
+   dnl the following fragment is inspired by AC_CHECK_SIZEOF
+   AC_TRY_RUN([#include 
+-	  main () {
++		#include 
++		int main () {
+ 		FILE *f = fopen ("conftestval", "w");
+ 		if (!f) exit (1);
+ 		fprintf (f, "%d\n", sizeof (${with_value_type}));
diff -Nru librep-0.92.5/debian/patches/series librep-0.92.5/debian/patches/series
--- librep-0.92.5/debian/patches/series	2016-03-20 16:40:28.0 +0100
+++ librep-0.92.5/debian/patches/series	2024-04-10 12:16:37.0 +0200
@@ -1,3 +1,4 @@
 0001-Fix-inline_Fcons-for-compiling-with-gcc-5.0.patch
 0002-guess-stack-direction
 0003-hppa-metag-stack-direction
+build-fix-Wimplicit-int-Wimplicit-function-declaration.patch


Bug#1068741: marked as done (librust-lazy-regex-dev: librust-lazy-regex-proc-macros-dev is now packaged separately)

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 06:27:50 -0400
with message-id 

and subject line Re: Bug#1068741: librust-lazy-regex-dev: 
librust-lazy-regex-proc-macros-dev is now packaged separately
has caused the Debian Bug report #1068741,
regarding librust-lazy-regex-dev: librust-lazy-regex-proc-macros-dev is now 
packaged separately
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 ow...@bugs.debian.org
immediately.)


-- 
1068741: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068741
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: librust-lazy-regex-dev
Version: 3.1.0-1
Severity: serious

since a few days ago librust-lazy-regex-proc-macros-dev is a separate
package shipping usr/share/cargo/registry/lazy-regex-proc_macros-3.1.0/*
causing file conflicts when installing both.

Please stop shipping the files in librust-lazy-regex-dev and rather
depend on the new package.


Andreas
--- End Message ---
--- Begin Message ---
On Wed, Apr 10, 2024 at 09:56:17AM +0200, Andreas Beckmann wrote:
> since a few days ago librust-lazy-regex-proc-macros-dev is a separate
> package shipping usr/share/cargo/registry/lazy-regex-proc_macros-3.1.0/*
> causing file conflicts when installing both.

That was a mistake and an RM request has been filed for that new source
package (#1068645).

Cheers,
-- 
James
GPG Key: 4096R/91BF BF4D 6956 BD5D F7B7  2D23 DFE6 91AE 331B A3DB--- End Message ---


Bug#1066481: marked as done (trueprint: FTBFS: language.c:134:3: error: implicit declaration of function ‘dm’ [-Werror=implicit-function-declaration])

2024-04-10 Thread Debian Bug Tracking System
Your message dated Wed, 10 Apr 2024 10:07:33 +
with message-id 
and subject line Bug#1066481: fixed in trueprint 5.4-6
has caused the Debian Bug report #1066481,
regarding trueprint: FTBFS: language.c:134:3: error: implicit declaration of 
function ‘dm’ [-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066481: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066481
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: trueprint
Version: 5.4-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o language.o language.c
> language.c: In function ‘filename_to_language’:
> language.c:134:3: error: implicit declaration of function ‘dm’ 
> [-Werror=implicit-function-declaration]
>   134 |   dm('l',2,"Finding language for filename %s\n",filename);
>   |   ^~
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o lang_pike.o lang_pike.c
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o print_prompt.o print_prompt.c
> lang_pike.c: In function ‘is_pike_reserved_word’:
> lang_pike.c:61:7: error: implicit declaration of function ‘strcmp’ 
> [-Werror=implicit-function-declaration]
>61 |  (strcmp(fn_name,"if")==0) ||
>   |   ^~
> lang_pike.c:22:1: note: include ‘’ or provide a declaration of 
> ‘strcmp’
>21 | #include "lang_pike.h"
>   +++ |+#include 
>22 | 
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o expand_str.o expand_str.c
> print_prompt.c: In function ‘print_prompt’:
> print_prompt.c:121:11: warning: ignoring return value of ‘fgets’ declared 
> with attribute ‘warn_unused_result’ [-Wunused-result]
>   121 |   fgets(response,INPUT_LINE_LEN-1,stdin);
>   |   ^~
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:463: language.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/trueprint_5.4-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Source: trueprint
Source-Version: 5.4-6
Done: Andreas Beckmann 

We believe that the bug you reported is fixed in the latest version of
trueprint, 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 

Bug#1068656: closing 1068656

2024-04-10 Thread Christoph Berg
close 1068656 1.6.0-2
thanks

This was fixed in the package, but the changelog entry for -2 didn't make it
into the .changes file for the version that was later uploaded.



  1   2   >