Processed: Re: ident2: ftbfs with GCC-14

2024-07-24 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + patch
Bug #1075083 [src:ident2] ident2: ftbfs with GCC-14
Added tag(s) patch.

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



Bug#1075083: ident2: ftbfs with GCC-14

2024-07-24 Thread Petter Reinholdtsen
Control: tags -1 + patch

I tested, and the problem is that gcc-14 how report an error when 'int'
is used instead of the proper 'socklen_t' type, at least on
architectures where socklen_t is not int but unsigned int. :)

The following patch should solve the issue:

--- ident2-1.07.orig/common.c
+++ ident2-1.07/common.c
@@ -209,7 +209,8 @@ _send_random_reply (cl_t *cl)
 static cl_t *
 _new_cl (int sd, char *line)
 {
-   int uid, ssiz = sizeof (struct sockaddr);
+   int uid;
+   socklen_t ssiz = sizeof (struct sockaddr);
cl_t *p, cl;
char *s;
 
--- ident2-1.07.orig/daemon.c
+++ ident2-1.07/daemon.c
@@ -83,7 +83,7 @@ static void
 declient (int s)
 {
struct sockaddr sin;
-   int ss = sizeof (sin);
+   socklen_t ss = sizeof (sin);
close (accept (s, (struct sockaddr *)&sin, &ss));
 }
 
@@ -94,7 +94,7 @@ static void _sig_ign (int s) { return; }
 static int
 _accept_connect (int sv, struct sockaddr_in *sin)
 {
-   size_t sl = sizeof (struct sockaddr_in);
+   socklen_t sl = sizeof (struct sockaddr_in);
int cl;
 
while ((cl = accept(sv, (struct sockaddr *)sin, &sl)) == -1) {
--- ident2-1.07.orig/ident2.c
+++ ident2-1.07/ident2.c
@@ -49,10 +49,10 @@ static int
 inetd_child (void)
 {
struct sockaddr_in sin;
-   int sinsize = sizeof (struct sockaddr_in);
+   socklen_t sinsize = sizeof (struct sockaddr_in);
 
/* if child of inetd, 0 would be a socket */
-   if (getsockname (0, (struct sockaddr *)&sin, (int *)&sinsize) == -1) {
+   if (getsockname (0, (struct sockaddr *)&sin, &sinsize) == -1) {
if (errno == ENOTSOCK)
return 0;   /* must be a filedescriptor */
else {

-- 
Happy hacking
Petter Reinholdtsen



Processed: merging 597889 597891

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

> merge 597889 597891
Bug #597889 [wireless-tools] wireless-tools: bash-completion for iwconfig rate 
has wrong escape
Bug #597891 [wireless-tools] wireless-tools: bash-completion for iwconfig rate 
has wrong escape
Merged 597889 597891
> thanks
Stopping processing here.

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



Bug#861372: marked as done (wireless-tools: Please update Makefile for compatibility with -Wl,--as-needed)

2024-07-24 Thread Debian Bug Tracking System
Your message dated Wed, 24 Jul 2024 11:43:18 +0100
with message-id 
and subject line Re: Bug#861372: wireless-tools: Please update Makefile for 
compatibility with -Wl,--as-needed
has caused the Debian Bug report #861372,
regarding wireless-tools: Please update Makefile for compatibility with 
-Wl,--as-needed
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.)


-- 
861372: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861372
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wireless-tools
Version: 30~pre9-12
Severity: minor
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu artful ubuntu-patch

Hi Guus,

In Ubuntu, we have applied the attached patch to wireless-tools in order for
the upstream build to be compatible with the Ubuntu toolchain which uses
-Wl,--as-needed by default - as described at
.

While this flag is not enabled by default in Debian, it is useful both to
downstreams such as Ubuntu where it is enabled, and to developers
experimenting with other toolchains for building (e.g. ld.gold, or clang).

Please consider including this patch in the Debian package as well.

Thanks,
-- 
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 Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru wireless-tools-30~pre9/debian/patches/compiler-link-order.patch 
wireless-tools-30~pre9/debian/patches/compiler-link-order.patch
--- wireless-tools-30~pre9/debian/patches/compiler-link-order.patch 
1969-12-31 16:00:00.0 -0800
+++ wireless-tools-30~pre9/debian/patches/compiler-link-order.patch 
2017-04-27 20:58:38.0 -0700
@@ -0,0 +1,13 @@
+Index: wireless-tools-30~pre9-12ubuntu1/Makefile
+===
+--- wireless-tools-30~pre9-12ubuntu1.orig/Makefile
 wireless-tools-30~pre9-12ubuntu1/Makefile
+@@ -150,7 +150,7 @@
+ 
+ # Compilation of the dynamic library
+ $(DYNAMIC): $(OBJS:.o=.so)
+-  $(CC) -shared -o $@ -Wl,-soname,$@ $(STRIPFLAGS) $(LIBS) $(LDFLAGS) -lc 
$^
++  $(CC) -shared -o $@ -Wl,-soname,$@ $(STRIPFLAGS) $^ $(LIBS) $(LDFLAGS) 
-lc
+ 
+ # Compilation of the static library
+ $(STATIC): $(OBJS:.o=.so)
diff -Nru wireless-tools-30~pre9/debian/patches/series 
wireless-tools-30~pre9/debian/patches/series
--- wireless-tools-30~pre9/debian/patches/series2016-03-24 
13:14:05.0 -0700
+++ wireless-tools-30~pre9/debian/patches/series2017-04-27 
20:58:38.0 -0700
@@ -5,3 +5,4 @@
 add-import-type-to-udev-rules
 fix-typos
 improve-make-install
+compiler-link-order.patch
--- End Message ---
--- Begin Message ---
Source: wireless-tools
Source-Version: 30~pre9-13.1

On Thu, Apr 27, 2017 at 09:15:14PM -0700, Steve Langasek wrote:
> In Ubuntu, we have applied the attached patch to wireless-tools in order for
> the upstream build to be compatible with the Ubuntu toolchain which uses
> -Wl,--as-needed by default - as described at
> .
> 
> While this flag is not enabled by default in Debian, it is useful both to
> downstreams such as Ubuntu where it is enabled, and to developers
> experimenting with other toolchains for building (e.g. ld.gold, or clang).
> 
> Please consider including this patch in the Debian package as well.

It wasn't quite the same patch, but something similar was applied in
Debian some time back, and it looks like the corresponding Ubuntu patch
has been dropped in response:

wireless-tools (30~pre9-13.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Fix ftbfs. (Closes: #925857)
- Thanks Reiner Herrmann.

 -- Sudip Mukherjee   Fri, 13 Mar 2020 20:33:27 
+

Thanks,

-- 
Colin Watson (he/him)  [cjwat...@debian.org]--- End Message ---


wireless-tools_30~pre9-18_source.changes ACCEPTED into unstable

2024-07-24 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 24 Jul 2024 11:47:54 +0100
Source: wireless-tools
Architecture: source
Version: 30~pre9-18
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Colin Watson 
Closes: 864658 1076623
Changes:
 wireless-tools (30~pre9-18) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Sven Geuer ]
   * d/control: Update Homepage field (Closes: #864658).
 .
   [ Colin Watson ]
   * Call "ip", not "/sbin/ip" (closes: #1076623).
Checksums-Sha1:
 2c81334a08342ef04dfa34c84da1d34ed2f4bb16 2425 wireless-tools_30~pre9-18.dsc
 51fa2789ac71db125eb008d95c21e057643e895c 12644 
wireless-tools_30~pre9-18.debian.tar.xz
Checksums-Sha256:
 07f2f24257d6a82a5879f57bf46a22a72cbc4d85f98b1678526a5ed14afdff52 2425 
wireless-tools_30~pre9-18.dsc
 0eea2ce62a498e00844810c26821bd754efd13eddf2421608e93baa265c11e4f 12644 
wireless-tools_30~pre9-18.debian.tar.xz
Files:
 571ac6f5a8ca2ae38e67cfc8b12a4832 2425 net optional 
wireless-tools_30~pre9-18.dsc
 7d14a1cdd25301a8dd1050e98a76ca8f 12644 net optional 
wireless-tools_30~pre9-18.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAmag3GcACgkQOTWH2X2G
UAssexAAhktdmi+Wp29FiNEDEUuYE5iQqKnWSaPZ1AacZ3JfKQfDmjyeMw1CLMiG
UALl8BqY2rPAnih0I128Zl33jCmizOmMEa1BJ2jQtsU1vnxY7LSoB2MWBjqRlJ3m
THBkM5rYiUBaY0ZN4B0IBSoNpP2qiGFv0dE6+zFtw5LUgW+f6FcB9Bquh9EnIdE/
yVnVNY2GJ1oozv1vyCnGXi6rVvyEZSZSbvq+4+ZCBhDzB4WYlRtgcX6b6was40Ah
ksgC3g2rxsJK/T95OM6NImTAka2as/Xtzspl6aJ4D5YGKyIKVcHZ0fv3jIw3w3et
lxxJOPC7vH6fHQ7eR8fwg/pBdIsElGmeb/b5aCNeX91XLbCdBYZjvGuI/PPzJvxv
6y0bEwuofXepZnqnH72mAFbu9+AKJRaw/DOFZ4WGRAme9kfzeUwJWdQ1z9Ccv2AV
hDTvETFAx0fX9moOh9ftaNSu0YPxZ0ZGTrFDZadONVEYy946kGaPPvOzRVvympGA
b+vaajfGGX79j/LCto5igYhHK+F6OC8ci1EXuIhqfkWHNLHUkTXOwHWUd/xnz8kg
bV6rkzBPUWXXNF8/Pl2dqnr0efv093XBiG+kZIdKknfrhYfSsM56/eD7ixFG17j6
nX9afzoG59+fuP6Z8ilDgaHVYbIo46A9GrpgFoJmNOWggm/QX+M=
=XH9O
-END PGP SIGNATURE-



pgpJ13EmrT3fE.pgp
Description: PGP signature


Bug#650139: /lib/udev/rules.d/19-ifrename.rules: udev rule incorrect with at least udev 175

2024-07-24 Thread Colin Watson
Source: wireless-tools
Source-Version: 30~pre9-8

On Sat, Nov 26, 2011 at 10:35:58PM +0100, Alban Browaeys wrote:
> /lib/udev/rules.d/19-ifrename.rules uses IMPORT without attribute which fails 
> at least with udev 175.
> add {program} as attributes fixes this and prevent random interfaces names at 
> boot. From:
> SUBSYSTEM=="net", ACTION=="add", IMPORT="/sbin/ifrename -u -i %k", 
> NAME:="$env{INTERFACE}"
> to:
> SUBSYSTEM=="net", ACTION=="add", IMPORT{program}="/sbin/ifrename -u -i %k", 
> NAME:="$env{INTERFACE}"
> 
> This let my flow rules for openvswitch work . Otherwise with random 
> interfaces names the flows are unmanageable.

This seems to have been fixed a long time ago in response to another
similar bug:

wireless-tools (30~pre9-8) unstable; urgency=low

  * Add type to IMPORT keyword in ifrename's udev rules file. Closes: #650606

 -- Guus Sliepen   Fri, 23 Dec 2011 16:02:18 +0100

Thanks,

-- 
Colin Watson (he/him)  [cjwat...@debian.org]



Bug#1076623: marked as done (wireless-tools: /sbin/ip no longer exists)

2024-07-24 Thread Debian Bug Tracking System
Your message dated Wed, 24 Jul 2024 11:04:01 +
with message-id 
and subject line Bug#1076623: fixed in wireless-tools 30~pre9-18
has caused the Debian Bug report #1076623,
regarding wireless-tools: /sbin/ip no longer exists
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.)


-- 
1076623: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1076623
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wireless-tools
Version: 30~pre9-17
Severity: grave
Justification: renders package unusable

/etc/network/if-pre-up.d/wireless-tools contains

if [ -n "$FAIL" ]; then
FAIL=
/sbin/ip link set dev "$IFACE" up
apply_settings
fi

but /sbin/ip no longer exists:

iproute2 (6.10.0-1) unstable; urgency=medium

  The legacy /usr/sbin/ip symlink has been dropped. /usr/bin/ip has been
  available since Buster (oldoldstable) and can be used unconditionally
  everywhere.

 -- Luca Boccassi   Fri, 19 Jul 2024 10:36:13 +0100

As said, it should have been replaced since oldoldstable!

-- System Information:
Debian Release: trixie/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'stable-updates'), (500, 
'stable-security'), (500, 'stable-debug'), (500, 'proposed-updates-debug'), 
(500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 6.9.9-amd64 (SMP w/16 CPU threads; 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 wireless-tools depends on:
ii  libc6   2.39-4
ii  libiw30t64  30~pre9-17

wireless-tools recommends no packages.

wireless-tools suggests no packages.

-- no debconf information

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)
--- End Message ---
--- Begin Message ---
Source: wireless-tools
Source-Version: 30~pre9-18
Done: Colin Watson 

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

Debian distribution maintenance software
pp.
Colin Watson  (supplier of updated wireless-tools 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, 24 Jul 2024 11:47:54 +0100
Source: wireless-tools
Architecture: source
Version: 30~pre9-18
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Colin Watson 
Closes: 864658 1076623
Changes:
 wireless-tools (30~pre9-18) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Sven Geuer ]
   * d/control: Update Homepage field (Closes: #864658).
 .
   [ Colin Watson ]
   * Call "ip", not "/sbin/ip" (closes: #1076623).
Checksums-Sha1:
 2c81334a08342ef04dfa34c84da1d34ed2f4bb16 2425 wireless-tools_30~pre9-18.dsc
 51fa2789ac71db125eb008d95c21e057643e895c 12644 
wireless-tools_30~pre9-18.debian.tar.xz
Checksums-Sha256:
 07f2f24257d6a82a5879f57bf46a22a72cbc4d85f98b1678526a5ed14afdff52 2425 
wireless-tools_30~pre9-18.dsc
 0eea2ce62a498e00844810c26821bd754efd13eddf2421608e93baa265c11e4f 12644 
wireless-tools_30~pre9-18.debian.tar.xz
Files:
 571ac6f5a8ca2ae38e67cfc8b12a4832 2425 net optional 
wireless-tools_30~pre9-18.dsc
 7d14a1cdd25301a8dd1050e98a76ca8f 12644 net optional 
wireless-tools_30~pre9-18.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAmag3GcACgkQOTWH2X2G
UAssexAAhktdmi+Wp29FiNEDEUuYE5iQqKnWSaPZ1AacZ3JfKQfDmjyeMw1CLMiG
UALl8BqY2rPAnih0I128Zl33jCmizOmMEa1BJ2jQtsU1vnxY7LSoB2MWBjqRlJ3m
THBkM5rYiUBaY0ZN4B0IBSoNpP2qiGFv0dE6+zFtw5LUgW+f6FcB9Bquh9EnIdE/
yVnVNY2GJ1oozv1vyCnGXi6rVvyEZSZSbvq+4+ZCBhDzB4WYlRtgcX6b6was40Ah
ksgC3g2rxsJK/T95OM6NImTAka2as/Xtzspl6aJ4D5YGKyIKVcHZ0fv3jIw3w3et
lxxJOPC7vH6fHQ7eR8fwg/pBdIsElGmeb/b5aCNeX91XLbCdBYZjvGuI/PPzJvxv
6y0bEwuofXepZnqnH72mAFbu9+AKJRaw/DOFZ4WGRAme9kfzeUwJWdQ1z9Ccv2AV
hDTvETFAx0fX9moOh9ftaNSu0YPxZ0ZGTrFDZadONVEYy946kGaPPvOzRVvympGA
b+vaajfGGX79j/LCto5igYhHK+F6OC8ci1EXuIh

Bug#864658: marked as done (wireless-tools: Homepage: should be updated to https://hewlettpackard.github.io/wireless-tools/Tools.html)

2024-07-24 Thread Debian Bug Tracking System
Your message dated Wed, 24 Jul 2024 11:04:00 +
with message-id 
and subject line Bug#864658: fixed in wireless-tools 30~pre9-18
has caused the Debian Bug report #864658,
regarding wireless-tools: Homepage: should be updated to 
https://hewlettpackard.github.io/wireless-tools/Tools.html
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.)


-- 
864658: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864658
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wireless-tools
Version: 30~pre9-12+b1
Severity: normal

debian/control currently says:

Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html

But in practice, this redirects to:

https://hewlettpackard.github.io/wireless-tools/Tools.html

Note that upstream is now available on github's normal interface as
well:

https://github.com/HewlettPackard/wireless-tools

If you want help maintaining this package, it'd be great to have the
wireless-tools packaging also stored in a VCS somewhere that would
make it easier to collaborate on it.  Maybe collab-maint?

If you'd like, i can try to put together a git repository that
contains upstream and debian branches in collab-maint.  let me know.

thanks for maintaining wireless-tools in debian!

 --dkg


-- System Information:
Debian Release: 9.0
  APT prefers testing-debug
  APT policy: (500, 'testing-debug'), (500, 'testing'), (200, 
'unstable-debug'), (200, 'unstable'), (1, 'experimental-debug'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages wireless-tools depends on:
ii  libc62.24-11
ii  libiw30  30~pre9-12+b1

wireless-tools recommends no packages.

wireless-tools suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: wireless-tools
Source-Version: 30~pre9-18
Done: Colin Watson 

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

Debian distribution maintenance software
pp.
Colin Watson  (supplier of updated wireless-tools 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, 24 Jul 2024 11:47:54 +0100
Source: wireless-tools
Architecture: source
Version: 30~pre9-18
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Colin Watson 
Closes: 864658 1076623
Changes:
 wireless-tools (30~pre9-18) unstable; urgency=medium
 .
   * QA upload.
 .
   [ Sven Geuer ]
   * d/control: Update Homepage field (Closes: #864658).
 .
   [ Colin Watson ]
   * Call "ip", not "/sbin/ip" (closes: #1076623).
Checksums-Sha1:
 2c81334a08342ef04dfa34c84da1d34ed2f4bb16 2425 wireless-tools_30~pre9-18.dsc
 51fa2789ac71db125eb008d95c21e057643e895c 12644 
wireless-tools_30~pre9-18.debian.tar.xz
Checksums-Sha256:
 07f2f24257d6a82a5879f57bf46a22a72cbc4d85f98b1678526a5ed14afdff52 2425 
wireless-tools_30~pre9-18.dsc
 0eea2ce62a498e00844810c26821bd754efd13eddf2421608e93baa265c11e4f 12644 
wireless-tools_30~pre9-18.debian.tar.xz
Files:
 571ac6f5a8ca2ae38e67cfc8b12a4832 2425 net optional 
wireless-tools_30~pre9-18.dsc
 7d14a1cdd25301a8dd1050e98a76ca8f 12644 net optional 
wireless-tools_30~pre9-18.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAmag3GcACgkQOTWH2X2G
UAssexAAhktdmi+Wp29FiNEDEUuYE5iQqKnWSaPZ1AacZ3JfKQfDmjyeMw1CLMiG
UALl8BqY2rPAnih0I128Zl33jCmizOmMEa1BJ2jQtsU1vnxY7LSoB2MWBjqRlJ3m
THBkM5rYiUBaY0ZN4B0IBSoNpP2qiGFv0dE6+zFtw5LUgW+f6FcB9Bquh9EnIdE/
yVnVNY2GJ1oozv1vyCnGXi6rVvyEZSZSbvq+4+ZCBhDzB4WYlRtgcX6b6was40Ah
ksgC3g2rxsJK/T95OM6NImTAka2as/Xtzspl6aJ4D5YGKyIKVcHZ0fv3jIw3w3et
lxxJOPC7vH6fHQ7eR8fwg/pBdIsElGmeb/b5aCNeX91XLbCdBYZjvGuI/PPzJvxv
6y0bEwuofXepZnqnH72mAFbu9+AKJRaw/DOFZ4WGRAme9kfzeUwJWdQ1z9Ccv2AV
hDTvETFAx0fX9moOh9ftaNSu0YPxZ0ZGTrFDZadONVEYy946kGaPPvOzRVvympGA
b+vaajfGGX79j/LCto5igYhHK+F6OC8ci1EXuIhqfkWHNLHUkTXOw

Bug#650139: marked as done (/lib/udev/rules.d/19-ifrename.rules: udev rule incorrect with at least udev 175)

2024-07-24 Thread Debian Bug Tracking System
Your message dated Wed, 24 Jul 2024 11:45:32 +0100
with message-id 
and subject line Re: Bug#650139: /lib/udev/rules.d/19-ifrename.rules: udev rule 
incorrect with at least udev 175
has caused the Debian Bug report #650139,
regarding /lib/udev/rules.d/19-ifrename.rules: udev rule incorrect with at 
least udev 175
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.)


-- 
650139: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650139
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ifrename
Version: 30~pre9-7
Severity: normal
File: /lib/udev/rules.d/19-ifrename.rules

Dear Maintainer,
/lib/udev/rules.d/19-ifrename.rules uses IMPORT without attribute which fails 
at least with udev 175.
add {program} as attributes fixes this and prevent random interfaces names at 
boot. From:
SUBSYSTEM=="net", ACTION=="add", IMPORT="/sbin/ifrename -u -i %k", 
NAME:="$env{INTERFACE}"
to:
SUBSYSTEM=="net", ACTION=="add", IMPORT{program}="/sbin/ifrename -u -i %k", 
NAME:="$env{INTERFACE}"

This let my flow rules for openvswitch work . Otherwise with random interfaces 
names the flows are unmanageable.

Thanks
Alban

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.1.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages ifrename depends on:
ii  libc62.13-21  
ii  libiw30  30~pre9-7

ifrename recommends no packages.

ifrename suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /lib/udev/rules.d/19-ifrename.rules (from ifrename 
package)


--- End Message ---
--- Begin Message ---
Source: wireless-tools
Source-Version: 30~pre9-8

On Sat, Nov 26, 2011 at 10:35:58PM +0100, Alban Browaeys wrote:
> /lib/udev/rules.d/19-ifrename.rules uses IMPORT without attribute which fails 
> at least with udev 175.
> add {program} as attributes fixes this and prevent random interfaces names at 
> boot. From:
> SUBSYSTEM=="net", ACTION=="add", IMPORT="/sbin/ifrename -u -i %k", 
> NAME:="$env{INTERFACE}"
> to:
> SUBSYSTEM=="net", ACTION=="add", IMPORT{program}="/sbin/ifrename -u -i %k", 
> NAME:="$env{INTERFACE}"
> 
> This let my flow rules for openvswitch work . Otherwise with random 
> interfaces names the flows are unmanageable.

This seems to have been fixed a long time ago in response to another
similar bug:

wireless-tools (30~pre9-8) unstable; urgency=low

  * Add type to IMPORT keyword in ifrename's udev rules file. Closes: #650606

 -- Guus Sliepen   Fri, 23 Dec 2011 16:02:18 +0100

Thanks,

-- 
Colin Watson (he/him)  [cjwat...@debian.org]--- End Message ---


Processing of wireless-tools_30~pre9-18_source.changes

2024-07-24 Thread Debian FTP Masters
wireless-tools_30~pre9-18_source.changes uploaded successfully to localhost
along with the files:
  wireless-tools_30~pre9-18.dsc
  wireless-tools_30~pre9-18.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



madwimax_0.1.1-2_source.changes ACCEPTED into unstable

2024-07-24 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 24 Jul 2024 17:51:27 +0200
Source: madwimax
Architecture: source
Version: 0.1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Petter Reinholdtsen 
Closes: 600761 1076741
Changes:
 madwimax (0.1.1-2) unstable; urgency=medium
 .
   * QA upload.
 .
   * Changed maintainer to QA group, as package is orphaned.
   * Added d/gbp.conf to describe branch layout.
   * Updated d/gbp.conf to enforce the use of pristine-tar.
   * Updated Standards-Version from 3.8.1 to 4.7.0.
   * Use wrap-and-sort -at for debian control files.
   * Replaced obsolete pkg-config build dependency with pkgconf.
   * Trim trailing whitespace.
   * Add missing ${misc:Depends} to Depends for madwimax.
   * Drop fields with obsolete URLs.
   * Bump debhelper from deprecated 7 to 10.
   * Use secure URI in Vcs control headers: Vcs-Browser, Vcs-Git.
   * Allow udevadm to fail in postinst.
   * Switched to debhelper level 13 and simple dh sequencer.
   * Switched Vcs-* links in d/control to Salsa.
   * Added 1000-udev-format-update.patch to fix udev rule notation
 (Closes: #600761).
   * Added 1010-appstream-metainfo.patch to include hardware mapping
 in Appstrean metainfo (Closes: #1076741).
Checksums-Sha1:
 b84620fb618d28fd11069a5213f17e2357a3a9e5 1845 madwimax_0.1.1-2.dsc
 6d7ed7d8215ddb485e5b8e92533d97278e8e8152 4184 madwimax_0.1.1-2.debian.tar.xz
 72d49f77cc90f4c7b3643d1243cf654ced303585 8695 madwimax_0.1.1-2_source.buildinfo
Checksums-Sha256:
 e695cfdc7eddc2fd76201ff432af53005d306722a40dad774d1d26fd7ac801dc 1845 
madwimax_0.1.1-2.dsc
 535c18da80fbb205865cbeb787d34594c53260ee86056d47a996bef1104ac948 4184 
madwimax_0.1.1-2.debian.tar.xz
 efc8dee351aeb5412cfb220e9e70a903889ad4ada0c18a61931750174a72dc76 8695 
madwimax_0.1.1-2_source.buildinfo
Files:
 6484016b204bf81ae2bc0b45428ec438 1845 admin optional madwimax_0.1.1-2.dsc
 a174d2202f286d6a068b028863acb1be 4184 admin optional 
madwimax_0.1.1-2.debian.tar.xz
 8e8a0bdf022670ea4376304343117b6b 8695 admin optional 
madwimax_0.1.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEERqLf4owIeylOb9kkgSgKoIe6+w4FAmahI5UACgkQgSgKoIe6
+w4tlxAAmmyDbP63PjwymPKcrom1kfh03BbdVnF0uRePc/gLBogOc4pTTGq4gA/d
m2sp+LJDfykeJ620ANkyk45/5vySfJUmG7F6DYZoidBHPYCoQlwRt2vbrgMtCk1l
epSx2hkfTrqnt5Z9rIgHRouK3UrLbKaRWy9XAyzy+S5FZVePcAJ1ExSlFeVrVJXU
vkbGt2ZNnn/uF8lkKv8vN9fBMLmirIpDg55Ge4kCBJjMyOOXt/mlwMGDPzP4qsrF
8jemAmSIWgPqENE4j1p/scT4VXodC/vTrZWSp/oOO5qB06jjXklB9yojQrdbW8Zl
qnzvSbYZMrk+GcqAj2JmBxFeo91uRNBotD8pT2XbrQofxm/SF4UVAPaGva2CAuV7
u1CfYu/ut42bQmWIyE7ReNSrRC3KYqlezdyxJEb4xrNUgVpQ6nz4TAIHm60sUtSw
+ugYZmrA+tvqCyd7cRTm9bKPmsIBP0snnkcHUjLu0hYppdkyESzZmu1yvKuBkGVf
rUhxqA6KgPV7aEtpH6A9cWA5hXXZuAU8weIOg08fTewqzs85Ep8OnJaWfvWoGFf5
4uFcreqMLvmkVEUWwVotcprfi45sFSIubrwVO5MWtiVuVQujq/obOONE0/Pp0yiK
yeEoqkxXSQr+Y4WTycUM1LuyWlZtq4/dmTqtkRdohenwO9PuoEk=
=7iHW
-END PGP SIGNATURE-



pgpZHBCK_JfXR.pgp
Description: PGP signature


Processing of madwimax_0.1.1-2_source.changes

2024-07-24 Thread Debian FTP Masters
madwimax_0.1.1-2_source.changes uploaded successfully to localhost
along with the files:
  madwimax_0.1.1-2.dsc
  madwimax_0.1.1-2.debian.tar.xz
  madwimax_0.1.1-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Bug#831390: libnss-extrausers is not thread safe, in particular for function getgrouplist()

2024-07-24 Thread Olaf Seibert
This bug seems to have been inactive for many years. In the mean time
there has been a discussion on
https://sourceware.org/bugzilla/show_bug.cgi?id=27731 about
getgrouplist().

The conclusion from this is that libnss-extrausers should supply a
function _nss_extrausers_initgroups_dyn() that in a thread-safe way
should provide the required information.

Via https://forge.univention.org/bugzilla/show_bug.cgi?id=39775 it seems
that somebody even made a patch which supplies that version, but then
still uses the non-thread safe functions to implement it.

Is there even still an upstream for this library? The only place I could
find was with debian packages such as
https://packages.debian.org/sid/libnss-extrausers . From there you can
try to find an upstream in the .dsc file. That links to
https://anonscm.debian.org/cgit/collab-maint/libnss-extrausers.git/log/?h=debian
which no longer seems to exist...

(https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831390)

--
Olaf Seibert
Site Reliability Engineer

SysEleven GmbH
Boxhagener Straße 80
10245 Berlin

T +49 30 233 2012 0
F +49 30 616 7555 0

https://www.syseleven.de
https://www.linkedin.com/company/syseleven-gmbh/

Current system status always at:
https://www.syseleven-status.net/

Company headquarters: Berlin
Registered court: AG Berlin Charlottenburg, HRB 108571 Berlin
Managing directors: Andreas Hermann, Jens Ihlenfeld, Norbert Müller, Jens 
Plogsties



Bug#1076958: mmh: FTBFS: /usr/bin/ld: mhparse.o:./uip/./uip/mhparse.c:32: multiple definition of `tmp'; mhbuild.o:./uip/./uip/mhbuild.c:54: first defined here

2024-07-24 Thread Santiago Vila

Package: src:mmh
Version: 0.4-6
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 bash-completion --no-parallel
   dh_update_autotools_config -O--no-parallel
cp: warning: behavior of -n is non-portable and may change in future; use 
--update=none instead
cp: warning: behavior of -n is non-portable and may change in future; use 
--update=none instead
   dh_autoreconf -O--no-parallel
configure.ac:11: warning: The macro `AC_CONFIG_HEADER' is obsolete.
configure.ac:11: You should run autoupdate.
./lib/autoconf/status.m4:719: AC_CONFIG_HEADER is expanded from...
configure.ac:11: the top level
configure.ac:103: warning: The macro `AC_TRY_COMPILE' is obsolete.
configure.ac:103: You should run autoupdate.
./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
configure.ac:103: the top level
configure.ac:157: warning: AC_PROG_LEX without either yywrap or noyywrap is 
obsolete
./lib/autoconf/programs.m4:716: _AC_PROG_LEX is expanded from...
./lib/autoconf/programs.m4:709: AC_PROG_LEX is expanded from...
configure.ac:157: the top level
configure.ac:318: warning: The macro `AC_HEADER_STDC' is obsolete.
configure.ac:318: You should run autoupdate.
./lib/autoconf/headers.m4:704: AC_HEADER_STDC is expanded from...
configure.ac:318: the top level
configure.ac:444: warning: The macro `AC_TRY_RUN' is obsolete.
configure.ac:444: You should run autoupdate.
./lib/autoconf/general.m4:2997: AC_TRY_RUN is expanded from...
lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
configure.ac:444: the top level
configure.ac:471: warning: The macro `AC_TRY_RUN' is obsolete.
configure.ac:471: You should run autoupdate.
./lib/autoconf/general.m4:2997: AC_TRY_RUN is expanded from...
lib/m4sugar/m4sh.m4:692: _AS_IF_ELSE is expanded from...
lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
./lib/autoconf/general.m4:2249: AC_CACHE_VAL is expanded from...
./lib/autoconf/general.m4:2270: AC_CACHE_CHECK is expanded from...
configure.ac:471: the top level
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/<>'
rm -f sbr/dtimep.c
dh_auto_configure -- --bindir=/usr/bin/mh  \
 --libdir=/usr/lib/mmh \
 --sysconfdir=/etc/mmh
./configure --build=x86_64-linux-gnu --prefix=/usr 
--includedir=\${prefix}/include --mandir=\${prefix}/share/man 
--infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var 
--disable-option-checking --disable-silent-rules 
--libdir=\${prefix}/lib/x86_64-linux-gnu --runstatedir=/run 
--disable-maintainer-mode --disable-dependency-tracking --bindir=/usr/bin/mh 
--libdir=/usr/lib/mmh --sysconfdir=/etc/mmh
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
configuring for mmh-0.4
configuring for mmh dated 2019-01-06
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether compiler supports -Wno-pointer-sign... yes
checking for an ANSI C-conforming const... yes
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking for gawk... no
checking for mawk... mawk
checking for flex... flex
checking for lex output file root... lex.yy
checking for lex library... none needed
checking for library containing yywrap... no
checking whether yytext is a pointer... yes
checking for cut... /usr/bin/cut
checking for lclint... no
checking for lint... no
checking for libtool... no
checking for lorder... no
checking for tsort... tsort
checking whether tsort can deal with loops... yes
checking for ls... /usr/bin/ls
checking how to get ls to show us the group ownership of a file... -l
checking for sendmail... /usr/sbin/sendmail
checking for vi... /bin/vi
checking where mail spool is located... /var/mail
checking whether the mail spool is world-writable... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checkin

Processing of ident2_1.07-4_source.changes

2024-07-24 Thread Debian FTP Masters
ident2_1.07-4_source.changes uploaded successfully to localhost
along with the files:
  ident2_1.07-4.dsc
  ident2_1.07.orig.tar.gz
  ident2_1.07-4.debian.tar.xz
  ident2_1.07-4_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



ident2_1.07-4_source.changes ACCEPTED into unstable

2024-07-24 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 24 Jul 2024 15:53:48 -0400
Source: ident2
Architecture: source
Version: 1.07-4
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Boyuan Yang 
Closes: 1075083
Changes:
 ident2 (1.07-4) unstable; urgency=medium
 .
   * QA upload.
   * debian/control: Add Vcs-* fields using Salsa Debian GitLab.
   * debian/patches/04_fix_gcc_14_ftbfs.patch: Add patch to fix
 FTBFS with gcc14. (Closes: #1075083)
Checksums-Sha1:
 85223ce6f2d0aa4a985e7157e8075dec5801763e 1804 ident2_1.07-4.dsc
 2ba892719e6e6b3f6fd5b7010155e94518483607 57014 ident2_1.07.orig.tar.gz
 dfda4455a057e5295fa9cc34f12e051e6518907d 6892 ident2_1.07-4.debian.tar.xz
 5c1eef4d714216ad8e8f61b407bcba2cabab0115 6085 ident2_1.07-4_amd64.buildinfo
Checksums-Sha256:
 7c9fe35cac98057423e639ee05b23afb6ae8a56ca2455de8ec0a9df0a678b861 1804 
ident2_1.07-4.dsc
 4293d7f23958b63b5e4a0e866c73e5563fcb1175826a549ea91502cb81336918 57014 
ident2_1.07.orig.tar.gz
 6775aac8dcdf7091bbe3fbf6880b0e8561cbc44f6f2e01423260ecaa45c27143 6892 
ident2_1.07-4.debian.tar.xz
 f6dfa5148f211bed9c4c2c0106de51014e1f0bd240617c3b4212d65575642fa2 6085 
ident2_1.07-4_amd64.buildinfo
Files:
 8cb01fef45c40d92c69f4f7dcc483d68 1804 net optional ident2_1.07-4.dsc
 b35df140b2239246840e6a486a149774 57014 net optional ident2_1.07.orig.tar.gz
 f2caad726da598827d48df89b1201761 6892 net optional ident2_1.07-4.debian.tar.xz
 352bf62606de9d8133f450e14e49f349 6085 net optional 
ident2_1.07-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmahXFAACgkQwpPntGGC
Ws4nkg/8CqlNoHQne0z9OhR6Up9g4waCt3YoZ4IKF6KhUWpThXWPI5TlkTZJsLh8
DBTGklChQ5+GFKE4EFGjyI7z64xQpdDIuy/oQtJfHL+OpKfG4R7F770k5m3FJ3XD
fplVinloWuqBmZfiF/EoF3KvyM1mtpRGKTiK3BHQedlM26qJqpzSLL3qSePmwAhZ
//cgQiyz2n4Lmy3+5GLPJS3oP086SaLErpoOU6pneFWiOeTvO50ur7V74mRkaDSO
IsbMYM9dwSD/zii8yMoAO5Z/sFOMlKlgCEfd0/Z1XTCAmsxgutHqiAT1jm3PUxqz
rv1otkMVd3OXOrWuhjEschKSzt9uY1wa8q54Y4K1E/QQV7lp9onHvHHAx2GQenra
z4c5v0PBy44zb96810QwEii+eOwze0RRxP1SK9SXT47TlTNc3T1PagntPbYnw/r1
brO3EabeswxbIxr+s0M7/uglNB9iYBu1T9+uiEZ+izMarlcMC5RUJ6WKwLYwsUuc
qdt57v/ZcGUUUCwC6gdoFA82lk+RylobnycgtgsbHlbxS7yccEkVE6aedTnm74P/
6020axyI97O93V5ve9ivRV24kUF4/6pCHvAqZR6n4tW5VR9wOhXRfT29oZY5yn5V
anLhT/Or2RM8tCY1WA/O3fAW2L7ZD6YTJeMGSFnKojQu/xmlGvc=
=dDt+
-END PGP SIGNATURE-



pgpUiuvR74cdq.pgp
Description: PGP signature


Bug#1075083: marked as done (ident2: ftbfs with GCC-14)

2024-07-24 Thread Debian Bug Tracking System
Your message dated Wed, 24 Jul 2024 20:38:29 +
with message-id 
and subject line Bug#1075083: fixed in ident2 1.07-4
has caused the Debian Bug report #1075083,
regarding ident2: ftbfs with GCC-14
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.)


-- 
1075083: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075083
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:ident2
Version: 1.07-3
Severity: important
Tags: sid trixie
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-14

[This bug is targeted to the upcoming trixie release]

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-14/g++-14, but succeeds to build with gcc-13/g++-13. The
severity of this report will be raised before the trixie release.

The full build log can be found at:
http://qa-logs.debian.net/2024/07/01/ident2_1.07-3_unstable_gccexp.log
The last lines of the build log are at the end of this report.

To build with GCC 14, either set CC=gcc-14 CXX=g++-14 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-14/porting_to.html

[...]
  |int *
/usr/include/x86_64-linux-gnu/sys/socket.h:131:47: note: expected ‘socklen_t * 
restrict’ {aka ‘unsigned int * restrict’} but argument is of type ‘int *’
  131 | socklen_t *__restrict __len) __THROW;
  | ~~^
common.c: In function ‘_check_user_ident’:
common.c:150:25: warning: ignoring return value of ‘fgets’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  150 | fgets (buf, 4095, fp);
  | ^
common.c: In function ‘_clreply’:
common.c:111:9: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  111 | write (cl->sd, buf, strlen (buf));
  | ^
daemon.c: In function ‘declient’:
daemon.c:87:52: warning: pointer targets in passing argument 3 of ‘accept’ 
differ in signedness [-Wpointer-sign]
   87 | close (accept (s, (struct sockaddr *)&sin, &ss));
  |^~~
  ||
  |int *
In file included from ident2.h:50,
 from daemon.c:34:
/usr/include/x86_64-linux-gnu/sys/socket.h:307:42: note: expected ‘socklen_t * 
restrict’ {aka ‘unsigned int * restrict’} but argument is of type ‘int *’
  307 |socklen_t *__restrict __addr_len);
  |~~^~
daemon.c: In function ‘_accept_connect’:
daemon.c:100:57: error: passing argument 3 of ‘accept’ from incompatible 
pointer type [-Wincompatible-pointer-types]
  100 | while ((cl = accept(sv, (struct sockaddr *)sin, &sl)) == -1) {
  | ^~~
  | |
  | size_t * {aka 
long unsigned int *}
/usr/include/x86_64-linux-gnu/sys/socket.h:307:42: note: expected ‘socklen_t * 
restrict’ {aka ‘unsigned int * restrict’} but argument is of type ‘size_t *’ 
{aka ‘long unsigned int *’}
  307 |socklen_t *__restrict __addr_len);
  |~~^~
make[1]: *** [: daemon.o] Error 1
make[1]: *** Waiting for unfinished jobs
ident2.c: In function ‘inetd_child’:
ident2.c:55:54: warning: pointer targets in passing argument 3 of ‘getsockname’ 
differ in signedness [-Wpointer-sign]
   55 | if (getsockname (0, (struct sockaddr *)&sin, (int *)&sinsize) 
== -1) {
  |  ^~~
  |  |
  |

libmpd_11.8.17-2_source.changes ACCEPTED into unstable

2024-07-24 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 25 Jul 2024 00:10:55 +0100
Source: libmpd
Architecture: source
Version: 11.8.17-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Simon McVittie 
Closes: 1075189
Changes:
 libmpd (11.8.17-2) unstable; urgency=medium
 .
   * QA upload
   * d/p/ftbfs-790251.patch:
 Add missing metadata to patch
   * d/p/fix-return-makes-integer-from-pointer-without-a-cast.patch,
 d/p/fix-comparison-between-pointer-and-zero-character-constan.patch:
 Add patches from Arch Linux to fix FTBFS with gcc-14.
 Thanks to Christian Hesse (Closes: #1075189)
Checksums-Sha1:
 bd8579c6ad901c541fe7bf687a9d6f60b6768637 2007 libmpd_11.8.17-2.dsc
 73f4be932cf255bce30b4fcd1d33b6e0c717d86c 5104 libmpd_11.8.17-2.debian.tar.xz
 4e970e4ca7832f22bc1a18c29604594862a0f179 6711 libmpd_11.8.17-2_source.buildinfo
Checksums-Sha256:
 07a0c0ecb8012733df092629ef839c9eb34474193aab4c41406c7ab8ed30b1cd 2007 
libmpd_11.8.17-2.dsc
 d54db425a923ecbc90b8d0e43f6de5075ee9dc8bd7f8ec13568e906dd119fc9c 5104 
libmpd_11.8.17-2.debian.tar.xz
 75d74b2d9f0db11076387cf8059fa1e0c00fa40d3f2d3aaa8089c8bf94b2eb18 6711 
libmpd_11.8.17-2_source.buildinfo
Files:
 3b271ccd380c86d6acac209585025cbf 2007 libs optional libmpd_11.8.17-2.dsc
 0629535de8dc6efda726ff8fc55f2e21 5104 libs optional 
libmpd_11.8.17-2.debian.tar.xz
 69f206f69eb26e87a543fd79b2aac8f6 6711 libs optional 
libmpd_11.8.17-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEENuxaZEik9e95vv6Y4FrhR4+BTE8FAmahknoACgkQ4FrhR4+B
TE8vnRAApU2pCems6RqXJ30zZ837Sw95LNIFxF9gCExdXS6YzF6ntzI85dRyWuPZ
WIUBssbZBNrCoaBzWWyezqInU8DMsL8Pa7ezJS0ABVP5cb/uz24QNTRYmMHi5jmj
Vdboi84LEQpAwi2oePFL6/rrN086Oh9BsK2eg5Tr3tjKhcHff6RVtsBnGAubELRs
mac3/D0V3BFE0bpK5PwrM1+wwJFBbfG0EaIU1YwSkZcYlCV66/cBuS5uKkSmP4EZ
Ez9zS8/n55APixHMuSaOgiOthmCFjZO989MTea5W2Z6aPP8S13PW4VMH2NHIvM3k
ZeME8o47VSuJ8uBBio0Tk+uvMHOnghccGYcivwNSVuRdkFakV5+TiK2dSnQZllmS
AvZ791X/bLD1o44eIpQ0DXtHLRADXbtAD958ESqFLU0k0/KX3vcJy1ExRd/tvSK5
F6GT5sL/umVXQ9HMKqGtzMrGUdTGBLPCYMNteD0N580Fp7dEUPO03rtCGS3oqy9c
7Pamh8jsx88XmwglCQfkOINYSiiwEJk4WSRI6LdknD5xjrI6tuG0kM35fJ0tVNGR
h9cLjfno/4Dn4Wb0m3dloYt/O4mBJcfE0v0gk73thmV6r5bl2DNDEdnbjgxJI6Sz
bn+6I7Jel2NgE7XGP9crxQYOOKeel3hoMbIe5S95cN5An9GZn4c=
=bGo5
-END PGP SIGNATURE-



pgpJ7h9D4VEC2.pgp
Description: PGP signature


Bug#1075189: marked as done (libmpd: ftbfs with GCC-14)

2024-07-24 Thread Debian Bug Tracking System
Your message dated Wed, 24 Jul 2024 23:49:31 +
with message-id 
and subject line Bug#1075189: fixed in libmpd 11.8.17-2
has caused the Debian Bug report #1075189,
regarding libmpd: ftbfs with GCC-14
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.)


-- 
1075189: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075189
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:libmpd
Version: 11.8.17-1
Severity: important
Tags: sid trixie
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-14

[This bug is targeted to the upcoming trixie release]

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-14/g++-14, but succeeds to build with gcc-13/g++-13. The
severity of this report will be raised before the trixie release.

The full build log can be found at:
http://qa-logs.debian.net/2024/07/01/libmpd_11.8.17-1_unstable_gccexp.log
The last lines of the build log are at the end of this report.

To build with GCC 14, either set CC=gcc-14 CXX=g++-14 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-14/porting_to.html

[...]
checking pkg-config is at least version 0.9.0... yes
checking for glib-2.0 >= 2.16... yes
checking for egrep... (cached) /usr/bin/grep -E
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating doc/Makefile
config.status: creating example/Makefile
config.status: creating example/testcase/Makefile
config.status: creating libmpd.pc
config.status: creating src/libmpd-version.h
config.status: creating doc/libmpd.doxy
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
   dh_auto_build
make -j8
make[1]: Entering directory '/<>'
make  all-recursive
make[2]: Entering directory '/<>'
Making all in src
make[3]: Entering directory '/<>/src'
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
-I. -I.. -Wall -Wmissing-declarations   -Wdate-time -D_FORTIFY_SOURCE=2 
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
-I/usr/include/sysprof-6 -pthread  -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c -o 
libmpd.lo libmpd.c
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
-I. -I.. -Wall -Wmissing-declarations   -Wdate-time -D_FORTIFY_SOURCE=2 
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
-I/usr/include/sysprof-6 -pthread  -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c -o 
libmpd-player.lo libmpd-player.c
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
-I. -I.. -Wall -Wmissing-declarations   -Wdate-time -D_FORTIFY_SOURCE=2 
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
-I/usr/include/sysprof-6 -pthread  -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c -o 
libmpd-status.lo libmpd-status.c
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
-I. -I.. -Wall -Wmissing-declarations   -Wdate-time -D_FORTIFY_SOURCE=2 
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
-I/usr/include/sysprof-6 -pthread  -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c -o 
libmpd-playlist.lo libmpd-playlist.c
/bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
-I. -I.. -Wall -Wmissing-de

Processing of libmpd_11.8.17-2_source.changes

2024-07-24 Thread Debian FTP Masters
libmpd_11.8.17-2_source.changes uploaded successfully to localhost
along with the files:
  libmpd_11.8.17-2.dsc
  libmpd_11.8.17-2.debian.tar.xz
  libmpd_11.8.17-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



gtkam is marked for autoremoval from testing

2024-07-24 Thread Debian testing autoremoval watch
gtkam 1.0-5 is marked for autoremoval from testing on 2024-08-22

It is affected by these RC bugs:
1075053: gtkam: ftbfs with GCC-14
 https://bugs.debian.org/1075053

It (build-)depends on packages with these RC bugs:
1074998: gimp: ftbfs with GCC-14
 https://bugs.debian.org/1074998



This mail is generated by:
https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl

Autoremoval data is generated by:
https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl



gimp-gap is marked for autoremoval from testing

2024-07-24 Thread Debian testing autoremoval watch
gimp-gap 2.6.0+dfsg-8 is marked for autoremoval from testing on 2024-08-22

It is affected by these RC bugs:
1074999: gimp-gap: ftbfs with GCC-14
 https://bugs.debian.org/1074999

It (build-)depends on packages with these RC bugs:
1074998: gimp: ftbfs with GCC-14
 https://bugs.debian.org/1074998



This mail is generated by:
https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl

Autoremoval data is generated by:
https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl



pct-scanner-scripts is marked for autoremoval from testing

2024-07-24 Thread Debian testing autoremoval watch
pct-scanner-scripts 0.0.4-4 is marked for autoremoval from testing on 2024-08-23

It (build-)depends on packages with these RC bugs:
1074998: gimp: ftbfs with GCC-14
 https://bugs.debian.org/1074998



This mail is generated by:
https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl

Autoremoval data is generated by:
https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl



kupfer_327-1~bpo12+1_amd64.changes ACCEPTED into stable-backports

2024-07-24 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 19 Jul 2024 14:10:50 -0400
Source: kupfer
Binary: kupfer
Architecture: source all
Version: 327-1~bpo12+1
Distribution: bookworm-backports
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Boyuan Yang 
Description:
 kupfer - fast and lightweight desktop summoner/launcher
Changes:
 kupfer (327-1~bpo12+1) bookworm-backports; urgency=medium
 .
   * Rebuild for bookworm-backports.
Checksums-Sha1:
 406eaec7d49ac04f7360fab458cd06730bfa4e74 1956 kupfer_327-1~bpo12+1.dsc
 69e6da1ee071e86603f7c10f4345f9dbe14824a7 1236590 kupfer_327.orig.tar.gz
 56ca1bab16e3ea2bb1c2395541253427065bdb8c 10140 
kupfer_327-1~bpo12+1.debian.tar.xz
 c42394af3cf89133dfd113e982f51ea3b64adcbc 621828 kupfer_327-1~bpo12+1_all.deb
 e966a65d25141ebea80968ef86c03abd9776bf4c 7737 
kupfer_327-1~bpo12+1_amd64.buildinfo
Checksums-Sha256:
 0b9fca2c804a1e9617251863e57563598ca7db7c134e34c65786263cf4cfe07a 1956 
kupfer_327-1~bpo12+1.dsc
 a2b1d263df902a3f9ec931a1a0fba1919cfa8946cd24c98459f54843ff5295ad 1236590 
kupfer_327.orig.tar.gz
 489ff0df4575e2825c445065ed33be24351cba2ffd4dae05998a0b0d1b705276 10140 
kupfer_327-1~bpo12+1.debian.tar.xz
 311dcee4b6cb919d58f7e8c52807d39b3944fc5c1b21759b30e8ebf04ddd34a3 621828 
kupfer_327-1~bpo12+1_all.deb
 bd836283c458e3ca3f0e25092582602dbf2c7c27978e855291767ecaadd5a0ba 7737 
kupfer_327-1~bpo12+1_amd64.buildinfo
Files:
 0a89e9f437eb5daf3fb7c7d1bda04d02 1956 utils optional kupfer_327-1~bpo12+1.dsc
 99279473480484955ca978fae10b178b 1236590 utils optional kupfer_327.orig.tar.gz
 07db283dcb71c958648c274e3af2e26c 10140 utils optional 
kupfer_327-1~bpo12+1.debian.tar.xz
 12719e9e1c240a32bfef4b2e61163e1c 621828 utils optional 
kupfer_327-1~bpo12+1_all.deb
 501b5beea5f9a270ba97cebcf18f0270 7737 utils optional 
kupfer_327-1~bpo12+1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmaar9sACgkQwpPntGGC
Ws4mZBAAn3+f0NtPLCxnfuLL8G6x7gTWnQVQ+Oe+liIqflU+SmiJg+RYAF6THMqb
t8x2fT6S0NGs1H2BATgV66+1vQoDLwpmBj4SBgrqpiPuqNtldka2sEuaPSVIb75s
P22wA0UHAg6Nmr0Tl64HRre+QOwMftltDUc7upqEHwdEFZEgWaJ4EIN3ALtk32Br
kL/KtQr64QnKiMHeYbl0sYy5rA5lVyP/PejjquKrd9NIeR2kvxeDEIFq5+pHl8R1
wM2kKLUBoCLgJ8XvBTziA2pGug+WjISXOvJ/QnPdFMRl80SdjAiICrQYOzoy9vF2
FFNacjR9PdskqFje0kldXlfR/c1Pt+mqtt3LoXddiISreu1f7UqKKExGDCfsUxG9
3sqypVCTRL3QwVvTMs6WQgFy4ZTNn3eqUZ3szY8O/F7JoQUW3QbqTR7Rp5IsXN1F
QIOU6S8SMAblbRADKtOUIHGPW0V/ophmInc5euLTAjL31biDxUvoRBx/rcYeKQf1
H81z5124aD2IfP5t7tm0A2IwddTa4IdogZBkHPGepDpQoNwvRuy0pC1ymZcQVcEO
lFJIPHZ0zxMuqih7fwJXZH9x6X0DWO7/bw4ipJ7o5dlfHJHH9PbAwfV5C5Cn4AMb
tmKuqiN9xf7S6+bCEY5FECGOe4ao60Iv3P0p57YgH6sbEIBsxz0=
=X1xh
-END PGP SIGNATURE-



pgpdEUxsbqbOY.pgp
Description: PGP signature