Bug#1068633: bookworm-pu: package cjson/1.7.15-1+deb12u1

2024-04-08 Thread Maytham Alsudany
Package: release.debian.org
Severity: normal
Tags: bookworm
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: cj...@packages.debian.org
Control: affects -1 + src:cjson

[ Reason ]
CVE-2023-50472, CVE-2023-50471

[ Impact ]
Segmentation violation via the function cJSON_InsertItemInArray at cJSON.c

[ Tests ]
Upstream's test continue to pass, and they have also added new tests to
cover this security issue.

[ Risks ]
Minimal, no change to API. Only minimal changes were made to fix this
security issue.

[ Checklist ]
  [x] *all* changes are documented in the d/changelog
  [x] I reviewed all changes and I approve them
  [x] attach debdiff against the package in (old)stable
  [x] the issue is verified as fixed in unstable

[ Changes ]
- Set myself as Maintainer (I am adopting the package, #1067510)
- Bump Standards-Version to 4.6.2
- Add Build-Depends-Package to symbools
- Backport upstream's patch to 'add NULL checkings'.
  Upstream adds a few more if statements to avoid the segmentation
  fault, and thus resolve the security vulnerability.

[ Other info ]
If you can spare the time, could you please upload this for me? (I need
a sponsor, #1068624.) I'm also still waiting for someone to give me
access to the Salsa repo.

Thanks,
Maytham
diff -Nru cjson-1.7.15/debian/changelog cjson-1.7.15/debian/changelog
--- cjson-1.7.15/debian/changelog   2021-08-29 23:30:06.0 +0300
+++ cjson-1.7.15/debian/changelog   2024-04-03 06:57:10.0 +0300
@@ -1,3 +1,13 @@
+cjson (1.7.15-1+deb12u1) bookworm-security; urgency=medium
+
+  * Update Maintainer field
+  * Bump Standards-Version to 4.6.2 (no changes)
+  * Backport patch to add NULL checkings (CVE-2023-50472, CVE-2023-50471)
+(Closes: #1059287)
+  * Add Build-Depends-Package to symbols
+
+ -- Maytham Alsudany   Wed, 03 Apr 2024 06:57:10 +0300
+
 cjson (1.7.15-1) unstable; urgency=medium
 
   * New upstream release 1.7.15.
diff -Nru cjson-1.7.15/debian/control cjson-1.7.15/debian/control
--- cjson-1.7.15/debian/control 2021-08-29 23:29:57.0 +0300
+++ cjson-1.7.15/debian/control 2024-04-03 06:38:29.0 +0300
@@ -1,10 +1,10 @@
 Source: cjson
 Section: libs
 Priority: optional
-Maintainer: Boyuan Yang 
+Maintainer: Maytham Alsudany 
 Build-Depends: cmake, debhelper-compat (= 13)
 Rules-Requires-Root: no
-Standards-Version: 4.6.0
+Standards-Version: 4.6.2
 Homepage: https://github.com/DaveGamble/cJSON
 Vcs-Git: https://salsa.debian.org/debian/cjson.git
 Vcs-Browser: https://salsa.debian.org/debian/cjson
diff -Nru cjson-1.7.15/debian/gbp.conf cjson-1.7.15/debian/gbp.conf
--- cjson-1.7.15/debian/gbp.conf1970-01-01 03:00:00.0 +0300
+++ cjson-1.7.15/debian/gbp.conf2024-04-03 06:56:58.0 +0300
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-branch = debian/bookworm
diff -Nru cjson-1.7.15/debian/libcjson1.symbols 
cjson-1.7.15/debian/libcjson1.symbols
--- cjson-1.7.15/debian/libcjson1.symbols   2021-08-29 23:28:57.0 
+0300
+++ cjson-1.7.15/debian/libcjson1.symbols   2024-04-03 06:57:10.0 
+0300
@@ -1,4 +1,5 @@
 libcjson.so.1 libcjson1 #MINVER#
+* Build-Depends-Package: libcjson-dev
  cJSON_AddArrayToObject@Base 1.7.5
  cJSON_AddBoolToObject@Base 1.7.5
  cJSON_AddFalseToObject@Base 1.7.5
diff -Nru cjson-1.7.15/debian/patches/0001-add-null-checkings.patch 
cjson-1.7.15/debian/patches/0001-add-null-checkings.patch
--- cjson-1.7.15/debian/patches/0001-add-null-checkings.patch   1970-01-01 
03:00:00.0 +0300
+++ cjson-1.7.15/debian/patches/0001-add-null-checkings.patch   2024-04-03 
06:51:36.0 +0300
@@ -0,0 +1,101 @@
+Origin: backport, 
https://github.com/DaveGamble/cJSON/commit/60ff122ef5862d04b39b150541459e7f5e35add8
+From: Peter Alfred Lee 
+Bug: https://github.com/DaveGamble/cJSON/issues/803
+Bug: https://github.com/DaveGamble/cJSON/issues/802
+Bug-Debian: https://bugs.debian.org/1059287
+Acked-by: Maytham Alsudany 
+Subject: [PATCH] add NULL checkings (#809)
+ * add NULL checks in cJSON_SetValuestring
+ Fixes #803(CVE-2023-50472)
+ .
+ * add NULL check in cJSON_InsertItemInArray
+ Fixes #802(CVE-2023-50471)
+ .
+ * add tests for NULL checks
+ add tests for NULL checks in cJSON_InsertItemInArray and cJSON_SetValuestring
+
+--- a/cJSON.c
 b/cJSON.c
+@@ -401,7 +401,12 @@
+ {
+ char *copy = NULL;
+ /* if object's type is not cJSON_String or is cJSON_IsReference, it 
should not set valuestring */
+-if (!(object->type & cJSON_String) || (object->type & cJSON_IsReference))
++if ((object == NULL) || !(object->type & cJSON_String) || (object->type & 
cJSON_IsReference))
++{
++return NULL;
++}
++/* return NULL if the object is corrupted */
++if (object->valuestring == NULL)
+ {
+ return NULL;
+ }
+@@ -2260,7 +2265,7 @@
+ {
+ cJSON *after_inserted = NULL;
+ 
+-if (which < 0)
++if (which < 0 || newitem == NULL)
+ {
+ return false;
+ }
+@@ -2271,6 +2276,11 @@
+ return add_item_to_array(a

netkit-bootparamd_0.17-13_source.changes ACCEPTED into unstable

2024-04-08 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 08 Apr 2024 08:20:45 +0200
Source: netkit-bootparamd
Architecture: source
Version: 0.17-13
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Bastian Germann 
Changes:
 netkit-bootparamd (0.17-13) unstable; urgency=medium
 .
   * QA upload.
   * d/copyright: Convert to machine-readable format.
   * Replace Sun RPC licensed file.
Checksums-Sha1:
 c346d4688184c4a7937de2ecae9121856393a8d0 1627 netkit-bootparamd_0.17-13.dsc
 a2de2401e732d040fa9f5432d66e259a8c13f347 11980 
netkit-bootparamd_0.17.orig.tar.xz
 97d1b8c9c0201ffea2df491868b3cfb2260e0dee 5640 
netkit-bootparamd_0.17-13.debian.tar.xz
 781d12552358ebade0bdf349052947c4beeb5e42 6682 
netkit-bootparamd_0.17-13_source.buildinfo
Checksums-Sha256:
 8dce26f67d06adedf5b5214c6c60ef0037e44efbc69f6de0297387017ec98524 1627 
netkit-bootparamd_0.17-13.dsc
 f053e260839d6b260c3eb93c1bfb15aae7cf9cbc9847f592a50338f06e46152c 11980 
netkit-bootparamd_0.17.orig.tar.xz
 1e8544ead6f7e28abb7fd00cd6d0b5c52fa94a24b75c9bcbdd8cc235edfb6dbd 5640 
netkit-bootparamd_0.17-13.debian.tar.xz
 0082c336e5c74be04ab5cdbed85440dc728ff5808e5e4ef28838c0180c4e9807 6682 
netkit-bootparamd_0.17-13_source.buildinfo
Files:
 c3cc41bb4daa53acd208cfbc7230203f 1627 net optional 
netkit-bootparamd_0.17-13.dsc
 dc9b5fa51df20346742efdd69b42742a 11980 net optional 
netkit-bootparamd_0.17.orig.tar.xz
 521d7660eebd8a7f76c4f5d8f9b44c1b 5640 net optional 
netkit-bootparamd_0.17-13.debian.tar.xz
 4b09c9e2e6a90c46410ed03b8ed459db 6682 net optional 
netkit-bootparamd_0.17-13_source.buildinfo

-BEGIN PGP SIGNATURE-

iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmYT1G4QHGJhZ2VAZGVi
aWFuLm9yZwAKCRAfXHqLRVZDFH7JDACu1YKpX+NldST96Abf6bmejjdo1T6B2Xq/
wX5WImaT6ZR1vds2wqOioNZhJuhN/+y1IeE7vVs7Ss7aagLqxMYfvR4R3ilwLyGC
hO0WHw1rVETq6qNN+vcsNgtxADtwel2GX4VjpQ91JD5QeZZNxJJKrHt+DsbpkMXy
A1TNz0QvVRps7g3Yo/8HqEWF2lCX93rtSniIGIzcnOfpFHZiDxuQC6So6oJaRoYU
T6anpq8vnAjHEsDIk1IfIH+BIHKOk9nMNV8aoYlavX/c4ULps0H+fJzLCSDUzQNl
Uv5oQ+ZgsGaONiQQ6RmMtQHNRTtxcgbLRVN0iSji8VeIXoyB2PQFwjth+N5HMvTC
BVDID9RKpc55ULQelAE7t3RJCrsv7rtY2/MuGde1QBdspc+qpuy4AJXOYFZpAvt9
EloqY+dk7ZURC3DT/HeByp3YURHclCzbnb8BZWI6XTC1J+w4xG7McZVylx439sby
9XooeHiqsf6T8COf8iEfQXSBZ4Y+VAE=
=pgYN
-END PGP SIGNATURE-



pgpyPfMRDk7Hk.pgp
Description: PGP signature


Processing of netkit-bootparamd_0.17-13_source.changes

2024-04-08 Thread Debian FTP Masters
netkit-bootparamd_0.17-13_source.changes uploaded successfully to localhost
along with the files:
  netkit-bootparamd_0.17-13.dsc
  netkit-bootparamd_0.17.orig.tar.xz
  netkit-bootparamd_0.17-13.debian.tar.xz
  netkit-bootparamd_0.17-13_source.buildinfo

Greetings,

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



Processing of tsocks_1.8beta5+ds1-2_source.changes

2024-04-08 Thread Debian FTP Masters
tsocks_1.8beta5+ds1-2_source.changes uploaded successfully to localhost
along with the files:
  tsocks_1.8beta5+ds1-2.dsc
  tsocks_1.8beta5+ds1-2.debian.tar.xz
  tsocks_1.8beta5+ds1-2_source.buildinfo

Greetings,

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



tsocks_1.8beta5+ds1-2_source.changes REJECTED

2024-04-08 Thread Debian FTP Masters


tsocks_1.8beta5+ds1-2.dsc: Invalid size hash for 
tsocks_1.8beta5+ds1.orig.tar.gz:
According to the control file the size hash should be 84391,
but tsocks_1.8beta5+ds1.orig.tar.gz has 83928.

If you did not include tsocks_1.8beta5+ds1.orig.tar.gz in your upload, a 
different version
might already be known to the archive software.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.



pgpgJ4daJFAY_.pgp
Description: PGP signature


mwclient_0.10.1-3_source.changes ACCEPTED into unstable

2024-04-08 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 08 Apr 2024 21:19:01 +0200
Source: mwclient
Architecture: source
Version: 0.10.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Håvard F. Aasen 
Changes:
 mwclient (0.10.1-3) unstable; urgency=medium
 .
   * QA upload.
   * Orphan package, set maintainer to Debian QA Group.
Checksums-Sha1:
 c1136eb237db9703261cd199e07bba1cecd5daee 1616 mwclient_0.10.1-3.dsc
 daa701e0e280bf4f975b0d6c213b299245170dbe 3736 mwclient_0.10.1-3.debian.tar.xz
 fee22c25daf1b66ca45e41c58edb85bddbadef67 7512 mwclient_0.10.1-3_amd64.buildinfo
Checksums-Sha256:
 e03858d7af04cbc190ce87b4ed8ac4efc23e503e0ae4f07921f92b8bbcee9dbe 1616 
mwclient_0.10.1-3.dsc
 dac2978072fe9f9594adc1d44d5ba3d566428a0750edb0e8f0d20ab049466712 3736 
mwclient_0.10.1-3.debian.tar.xz
 c84b14081796d82b4334ea0f1c696ce6d12685e1098220886bce4c1d1810bbc7 7512 
mwclient_0.10.1-3_amd64.buildinfo
Files:
 6406c90481a0c347822d99e7938297d1 1616 python optional mwclient_0.10.1-3.dsc
 2ea409e44a28afa451959b547fd04a7d 3736 python optional 
mwclient_0.10.1-3.debian.tar.xz
 637e4f5ffd581ced3fdab3b9d47ec07c 7512 python optional 
mwclient_0.10.1-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iI0EARYIADUWIQSD/42dLkLq3fzhpN2I4w6v/UfCtwUCZhRDjRccaGF2YXJkLmYu
YWFzZW5AcGZmdC5ubwAKCRCI4w6v/UfCtxhHAQC0FKC4YO37+UAx0xbAn3MRQvMj
FzM9D551X15iT4ghIQEArdBTX5CBd9Zqz56ydKYnHdMbSdvTsJckuil9VTbBwgA=
=f3xZ
-END PGP SIGNATURE-



pgpjSbWvnBO3Z.pgp
Description: PGP signature


Processing of mwclient_0.10.1-3_source.changes

2024-04-08 Thread Debian FTP Masters
mwclient_0.10.1-3_source.changes uploaded successfully to localhost
along with the files:
  mwclient_0.10.1-3.dsc
  mwclient_0.10.1-3.debian.tar.xz
  mwclient_0.10.1-3_amd64.buildinfo

Greetings,

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



Bug#1068662: xsecurelock references wrong xscreensaver location

2024-04-08 Thread Costin Chirvasuta
Package: xsecurelock

The Debian 12.5 xscreensaver package installs the screensavers under
/usr/libexec/xscreensaver, but the xsecurelock package is configured
using --with-xscreensaver=/usr/lib/xscreensaver. I believe the
xsecurelock package should be updated to configure using
--with-xscreensaver=/usr/libexec/xscreensaver.



Bug#1068663: zzuf: FTBFS on arm{el,hf}: /tmp/ccnMZahz.s:1620: Error: symbol `open64' is already defined

2024-04-08 Thread Sebastian Ramacher
Source: zzuf
Version: 0.15-3
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=zzuf&arch=armhf&ver=0.15-3&stamp=1712473020&raw=0

In file included from /usr/include/arm-linux-gnueabihf/sys/cdefs.h:24,
 from libzzuf/lib-mem.c:24:
/usr/include/features.h:195:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE 
are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  195 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
  |   ^~~
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -Wdate-time -D_FORTIFY_SOURCE=2 
-DLIBZZUF -I./libzzuf -I./common -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -std=c99 -g -O2 -Wall 
-W -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow 
-Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare -c 
libzzuf/lib-signal.c -o libzzuf/la-lib-signal.o >/dev/null 2>&1
/tmp/ccnMZahz.s: Assembler messages:
/tmp/ccnMZahz.s:1620: Error: symbol `open64' is already defined
/tmp/ccnMZahz.s:4926: Error: symbol `lseek64' is already defined
make[3]: *** [Makefile:708: libzzuf/la-lib-fd.lo] Error 1
make[3]: *** Waiting for unfinished jobs
/tmp/ccKhQeYR.s: Assembler messages:
/tmp/ccKhQeYR.s:1867: Error: symbol `mmap64' is already defined

Cheers
-- 
Sebastian Ramacher



dablin_1.16.0-1_source.changes ACCEPTED into unstable

2024-04-08 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 08 Apr 2024 23:10:14 +0200
Source: dablin
Architecture: source
Version: 1.16.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Sebastian Ramacher 
Closes: 1068513
Changes:
 dablin (1.16.0-1) unstable; urgency=medium
 .
   * QA upload
   * New upstream release (Closes: #1068513)
   * debian/copyright: Update copyright years
Checksums-Sha1:
 cc38a8d04a4d80a2ddd92b79e72346190619b726 1169 dablin_1.16.0-1.dsc
 890574a3c89ccdd1639abbfa2062af94e8a617c0 83636 dablin_1.16.0.orig.tar.xz
 df0148531e1b2ec86b532890710376c4432f35a0 3320 dablin_1.16.0-1.debian.tar.xz
 293d43694b04ba2bbd0fe39fe1ca2c2f0ccbd2ed 16550 dablin_1.16.0-1_amd64.buildinfo
Checksums-Sha256:
 629f56914f03d2b537a9fa1e114a4b5eabae29cf695bbd97b36a5b08cf197912 1169 
dablin_1.16.0-1.dsc
 f85c73911d31e02e7cde0997e3b982bbf6497926aa4a8989cccd3c7a9d736d91 83636 
dablin_1.16.0.orig.tar.xz
 6e8c93d0bd88912ad626be6c9da0eaa958c80e0844c09cb3d9675f740735d0bf 3320 
dablin_1.16.0-1.debian.tar.xz
 d7cddf263053fc5ca23e0b85863525def8122cee849885c53809f67a60cc571f 16550 
dablin_1.16.0-1_amd64.buildinfo
Files:
 feadbf17e1e3d7f5dd5de91540358496 1169 hamradio optional dablin_1.16.0-1.dsc
 415da9ee1651da5bf735c4bc56febeac 83636 hamradio optional 
dablin_1.16.0.orig.tar.xz
 31c1c9e506ebe0fbb4f815ff1b0d5a8f 3320 hamradio optional 
dablin_1.16.0-1.debian.tar.xz
 aec1a526995ca1730657117ab2610c0a 16550 hamradio optional 
dablin_1.16.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQRCYn6EHZln2oPh+pAhk2s2YA/NiQUCZhRdyAAKCRAhk2s2YA/N
iavrAPwLUchKDNHBj7lwZmjVZB3ZRSI6cJYRQNyC4IlbALKFNgD/TFOFr0V0Mga9
v1MMJV+YUIv6PWfqK+4iX3ASWiVYTAo=
=Kdpz
-END PGP SIGNATURE-



pgpHKAeYo5ktZ.pgp
Description: PGP signature


Bug#1068513: marked as done (dablin: FTBFS on arm{el,hf}: manually disables mpg123's large file API)

2024-04-08 Thread Debian Bug Tracking System
Your message dated Mon, 08 Apr 2024 21:19:08 +
with message-id 
and subject line Bug#1068513: fixed in dablin 1.16.0-1
has caused the Debian Bug report #1068513,
regarding dablin: FTBFS on arm{el,hf}: manually disables mpg123's large file API
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.)


-- 
1068513: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068513
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: dablin
Version: 1.15.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=dablin&arch=armel&ver=1.15.0-1%2Bb2&stamp=1712391165&raw=0

[ 97%] Linking CXX executable dablin
cd /<>/obj-arm-linux-gnueabi/src && /usr/bin/cmake -E 
cmake_link_script CMakeFiles/dablin.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -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 -Wl,-z,relro -Wl,-z,now -pie -z 
now -rdynamic CMakeFiles/dablin.dir/sdl_output.cpp.o 
CMakeFiles/dablin.dir/dabplus_decoder.cpp.o 
CMakeFiles/dablin.dir/ensemble_source.cpp.o 
CMakeFiles/dablin.dir/ensemble_player.cpp.o 
CMakeFiles/dablin.dir/edi_source.cpp.o CMakeFiles/dablin.dir/edi_player.cpp.o 
CMakeFiles/dablin.dir/eti_source.cpp.o CMakeFiles/dablin.dir/eti_player.cpp.o 
CMakeFiles/dablin.dir/dab_decoder.cpp.o CMakeFiles/dablin.dir/fic_decoder.cpp.o 
CMakeFiles/dablin.dir/pcm_output.cpp.o CMakeFiles/dablin.dir/tools.cpp.o 
CMakeFiles/dablin.dir/version.cpp.o CMakeFiles/dablin.dir/dablin.cpp.o -o 
dablin  ../fec/libfec.a /usr/lib/arm-linux-gnueabi/libatomic.so.1 -lmpg123 
-lSDL2 -lfaad -lc -lm 
/usr/bin/ld: CMakeFiles/dablin.dir/dab_decoder.cpp.o: in function 
`MP2Decoder::DecodeFrame(unsigned char**)':
./obj-arm-linux-gnueabi/src/./src/dab_decoder.cpp:166:(.text+0x1bb4): undefined 
reference to `mpg123_framebyframe_decode'
collect2: error: ld returned 1 exit status
make[3]: *** [src/CMakeFiles/dablin.dir/build.make:313: src/dablin] Error 1
make[3]: Leaving directory '/<>/obj-arm-linux-gnueabi'
make[2]: *** [CMakeFiles/Makefile2:263: src/CMakeFiles/dablin.dir/all] Error 2
make[2]: *** Waiting for unfinished jobs
[100%] Linking CXX executable dablin_gtk
cd /<>/obj-arm-linux-gnueabi/src && /usr/bin/cmake -E 
cmake_link_script CMakeFiles/dablin_gtk.dir/link.txt --verbose=1
/usr/bin/c++ -g -O2 -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 -Wl,-z,relro -Wl,-z,now -pie -z 
now -rdynamic CMakeFiles/dablin_gtk.dir/sdl_output.cpp.o 
CMakeFiles/dablin_gtk.dir/dabplus_decoder.cpp.o 
CMakeFiles/dablin_gtk.dir/ensemble_source.cpp.o 
CMakeFiles/dablin_gtk.dir/ensemble_player.cpp.o 
CMakeFiles/dablin_gtk.dir/edi_source.cpp.o 
CMakeFiles/dablin_gtk.dir/edi_player.cpp.o 
CMakeFiles/dablin_gtk.dir/eti_source.cpp.o 
CMakeFiles/dablin_gtk.dir/eti_player.cpp.o 
CMakeFiles/dablin_gtk.dir/dab_decoder.cpp.o 
CMakeFiles/dablin_gtk.dir/fic_decoder.cpp.o 
CMakeFiles/dablin_gtk.dir/pcm_output.cpp.o 
CMakeFiles/dablin_gtk.dir/tools.cpp.o CMakeFiles/dablin_gtk.dir/version.cpp.o 
CMakeFiles/dablin_gtk.dir/mot_manager.cpp.o 
CMakeFiles/dablin_gtk.dir/pad_decoder.cpp.o 
CMakeFiles/dablin_gtk.dir/dablin_gtk.cpp.o 
CMakeFiles/dablin_gtk.dir/dablin_gtk_dl_plus.cpp.o 
CMakeFiles/dablin_gtk.dir/dablin_gtk_sls.cpp.o -o dablin_gtk  ../fec/libfec.a 
/usr/lib/arm-linux-gnueabi/libatomic.so.1 -lmpg123 -lSDL2 -lfaad -lc 
-lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lgtk-3 -lgdk-3 -lz -latk-1.0 
-lcairo-gobject -lgio-2.0 -lpangomm-1.4 -lglibmm-2.4 -lcairomm-1.0 -lsigc-2.0 
-lpangocairo-1.0 -lpango-1.0 -lharfbuzz -lcairo -lgdk_pixbuf-2.0 -lgobject-2.0 
-lglib-2.0 -lm 
/usr/bin/ld: CMakeFiles/dablin_gtk.dir/dab_decoder.cpp.o: in function 
`MP2Decoder::DecodeFrame(unsigned char**)':
./obj-arm-linux-gnueabi/src/./src/dab_decoder.cpp:166:(.text+0x1bb4): undefined 
reference to `mpg123_framebyframe_decode'
collect2: error: ld returned 1 exit status
make[3]: *** [src/CMakeFiles/dablin_gtk.dir/build.make:377: src/dablin_gtk] 
Error 1

This is caused by

#define MPG123_NO_LARGENAME // disable large file API here

in src/dab_decoder.h

Cheers
-- 
Sebastian Ramacher
--- End Message ---
--- Begin Message ---
Source: dablin
Source-Version: 1.16.0-1
Done: Sebastian Ramacher 

We believe that the bug you reported is fixed in th

Processing of dablin_1.16.0-1_source.changes

2024-04-08 Thread Debian FTP Masters
dablin_1.16.0-1_source.changes uploaded successfully to localhost
along with the files:
  dablin_1.16.0-1.dsc
  dablin_1.16.0.orig.tar.xz
  dablin_1.16.0-1.debian.tar.xz
  dablin_1.16.0-1_amd64.buildinfo

Greetings,

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



tsocks_1.8beta5+ds1-2_source.changes ACCEPTED into unstable

2024-04-08 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 08 Apr 2024 16:07:02 +0200
Source: tsocks
Architecture: source
Version: 1.8beta5+ds1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Petter Reinholdtsen 
Changes:
 tsocks (1.8beta5+ds1-2) unstable; urgency=medium
 .
   * QA upload.
 .
   * Added d/gbp.conf to enforce use of pristine-tar.
   * Added d/watch file.
   * Replaced d/copyright with machine readable edition
   * Added vcs entries to d/control pointing to Salsa.
   * Updated to debhelper compat level 13.
   * Updated Standards-Version from 3.9.8 to 4.7.0.
Checksums-Sha1:
 b7e7541afbf4060e36b80f4da046417492e24cff 1840 tsocks_1.8beta5+ds1-2.dsc
 4565891cb781ca220b756c206a6161ae4412c57b 14952 
tsocks_1.8beta5+ds1-2.debian.tar.xz
 2fec002d7c7296fb7c2ebf970da9231fc2e404a6 6381 
tsocks_1.8beta5+ds1-2_source.buildinfo
Checksums-Sha256:
 48509091a32418f5b60456e17209f0bade34210df65b0646af1ad45763c13a0a 1840 
tsocks_1.8beta5+ds1-2.dsc
 e45a97770be10c91f87e8ff1f15547532a3a5b23922cf6e38424f0b32a3e3099 14952 
tsocks_1.8beta5+ds1-2.debian.tar.xz
 d95f61ebe59e9f63427ec74959cb2d1f49975b9fd40b16e019402f7c706fd62e 6381 
tsocks_1.8beta5+ds1-2_source.buildinfo
Files:
 26fe0c74b9d7bcb6717c7f7f437e5e5c 1840 net optional tsocks_1.8beta5+ds1-2.dsc
 1530b6e6a4f9c6afa3a407d72ea05b48 14952 net optional 
tsocks_1.8beta5+ds1-2.debian.tar.xz
 5242c7060ce250fe48a60e06d049259d 6381 net optional 
tsocks_1.8beta5+ds1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEERqLf4owIeylOb9kkgSgKoIe6+w4FAmYUcFUACgkQgSgKoIe6
+w68iw/+Opyan8JH52E5Qmp0v17DeOrW/H0vTMEvnQR4LjMD1JGOEy4fMTt/s8j6
tmL6QJX85fYbsicZ9Gk5PwUyg50fc4BnkcxnOqAPE9Uo302+kS3f+Yrg6ACowG49
DcyJZaHIPb7g7xyaqYpDk/hvtsJ8GGI6/kC8zyZGYwRCL3Vegtw3CKgbVHqxsNtu
Gkg02/3+KeDKLlU+mH3wyRddyfWRHRJe7Jz8SerlXAGeegQ03Ifp0htXQgt2OtOY
5I7SlVHLUQmQDQlHpoxijLj6ls73CC1NMzPjI/oaW3UpzsY2cRqr42vKKBXzCTV2
SWEk1Ny7SJGvw+ErFmMwuXyoB2qyNGbPsVOWgIEfBBoHPLU9fXy6kbLBGZHzRSpl
lPPYfALJf5ZGc3vE7GHZrAszrYgyejw+ynIuATyPWHh0wHbjnu81dnTUYizl3e12
DjdteE0GqMUdzwgBYlCPDFQwp7Cr86x4Gei8CxaStgicAilEKb9MmVtxQTNYoywm
nxAxHHLZMx/Brz/WVDbmzfWV240m9+E3aIk8gW2YPkR55mr/lMU+6Pn8YwR9/S7x
KhzjWI73TpCzV9yvz5FAMiSRT+TawEl7SS2j1B4PoECLl6bzjGvhBF8oKyeFDL9b
hNoOD3hGkpH19uDo1sg1cIBjW68zPWAtgEG/4J1fVTg+OyT4jzk=
=fKFo
-END PGP SIGNATURE-



pgpmCEnL3Y4ax.pgp
Description: PGP signature


Processing of tsocks_1.8beta5+ds1-2_source.changes

2024-04-08 Thread Debian FTP Masters
tsocks_1.8beta5+ds1-2_source.changes uploaded successfully to localhost
along with the files:
  tsocks_1.8beta5+ds1-2.dsc
  tsocks_1.8beta5+ds1-2.debian.tar.xz
  tsocks_1.8beta5+ds1-2_source.buildinfo

Greetings,

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



Processing of tpb_0.6.4-11_source.changes

2024-04-08 Thread Debian FTP Masters
tpb_0.6.4-11_source.changes uploaded successfully to localhost
along with the files:
  tpb_0.6.4-11.dsc
  tpb_0.6.4-11.debian.tar.xz
  tpb_0.6.4-11_source.buildinfo

Greetings,

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



tpb_0.6.4-11_source.changes REJECTED

2024-04-08 Thread Debian FTP Masters


Version check failed:
Your upload included the source package tpb, version 0.6.4-11,
however stable already has version 0.6.4-11.
Uploads to unstable must have a higher version than present in stable.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.



pgpd7vot1xqPs.pgp
Description: PGP signature


Bug#1068685: tup: FTBFS on loong64

2024-04-08 Thread zhangdandan

Source: tup
Version: 0.7.11-4
Severity: wishlist
Tags: ftbfs patch
User: debian-loonga...@lists.debian.org
Usertags: loong64

Dear maintainers,

Compiling the tup failed for loong64 in the Debian Package Auto-Building 
environment.

The error log is as follows,
```
../src/tup/platform.c:70:2: error: #error Unsupported cpu architecture. 
Please add support in tup/platform.c
   70 | #error Unsupported cpu architecture. Please add support in 
tup/platform.c

  |  ^
make[1]: *** [debian/rules:17: override_dh_auto_build] Error 1
```
The Full log can be found at 
https://buildd.debian.org/status/logs.php?pkg=tup&ver=0.7.11-4&arch=loong64.


I have added support for loongarch64 in tup package.
Please consider the patch I attached.
Your opinions are welcome.

Thanks,
Dandan Zhang

Description: Add support for LoongArch. 
Last-Update: 2024-04-09

--- tup-0.7.11.orig/src/tup/platform.c
+++ tup-0.7.11/src/tup/platform.c
@@ -66,6 +66,10 @@ const char *tup_arch = "hppa";
 const char *tup_arch = "riscv64";
 #elif (__riscv || __riscv__) && __riscv_xlen == 32
 const char *tup_arch = "riscv32";
+#elif __loongarch__ && __loongarch_grlen == 32
+const char *tup_arch = "loongarch32";
+#elif __loongarch__ && __loongarch_grlen == 64
+const char *tup_arch = "loongarch64";
 #else
 #error Unsupported cpu architecture. Please add support in tup/platform.c
 #endif
--- tup-0.7.11.orig/tup.1
+++ tup-0.7.11/tup.1
@@ -765,7 +765,7 @@ In this case, the @-variable "FOO" is ex
 TUP_PLATFORM is a special @-variable. If CONFIG_TUP_PLATFORM is not set in the tup.config file, it has a default value according to the platform that tup itself was compiled in. Currently the default value is one of "linux", "solaris", "macosx", "win32", "freebsd" or "netbsd".
 .TP
 .B @(TUP_ARCH)
-TUP_ARCH is another special @-variable. If CONFIG_TUP_ARCH is not set in the tup.config file, it has a default value according to the processor architecture that tup itself was compiled in. Currently the default value is one of "i386", "x86_64", "powerpc", "powerpc64", "ia64", "alpha", "sparc", "arm64", or "arm".
+TUP_ARCH is another special @-variable. If CONFIG_TUP_ARCH is not set in the tup.config file, it has a default value according to the processor architecture that tup itself was compiled in. Currently the default value is one of "i386", "x86_64", "powerpc", "powerpc64", "ia64", "alpha", "sparc", "loongarch32", "loongarch64", "arm64", or "arm".
 
 .SH "VARIANTS"
 Tup supports variants, which allow you to build your project multiple times with different configurations. Perhaps the most common case is to build a release and a debug configuration with different compiler flags, though any number of variants can be used to support whatever configurations you like. Each variant is built in its own directory distinct from each other and from the source tree. When building with variants, the in-tree build is disabled. To create a variant, make a new directory at the top of the tup hierarchy and create a "tup.config" file there. For example:


Bug#1068686: xserver-xorg-input-wacom: Can't switch from "All Displays" on Intuos BT to one display

2024-04-08 Thread Adam Glenn
Package: xserver-xorg-input-wacom
Version: 1.2.1-1
Severity: important
X-Debbugs-Cc: gekit...@gmail.com

Dear Maintainer,

   * What led up to the situation? Connected my Intuos bluetooth tablet to my
computer the pen works fine but the tablet is mapped to both of my monitors.
   * What exactly did you do (or not do) that was effective (or
 ineffective)? When I go into  "Wacom Tablet" in Gnome Settings I can see
the option for "All Displays" or each of the monitors but when I change the
dropdown the tablet stays mapped to both montors. If I change the drop down and
leave the app then come back it will say "All Displays" again.
   * What was the outcome of this action? No change
   * What outcome did you expect instead? I expected it to map to a single
monitor


-- System Information:
Debian Release: trixie/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages xserver-xorg-input-wacom depends on:
ii  libc6  2.37-15.1
ii  libudev1   255.4-1+b1
ii  libx11-6   2:1.8.7-1
ii  libxi6 2:1.8.1-1
ii  libxinerama1   2:1.1.4-3
ii  libxrandr2 2:1.5.4-1
ii  xserver-xorg-core [xorg-input-abi-24]  2:21.1.11-3

xserver-xorg-input-wacom recommends no packages.

Versions of packages xserver-xorg-input-wacom suggests:
pn  xinput  

-- no debconf information



tetrinetx is marked for autoremoval from testing

2024-04-08 Thread Debian testing autoremoval watch
tetrinetx 1.13.16-15 is marked for autoremoval from testing on 2024-05-07

It (build-)depends on packages with these RC bugs:
1065725: adns: FTBFS on arm{el,hf}: FAILED ./case-1stservbroken - WRONG OUTPUT 
- lines of syscall remaining 0
 https://bugs.debian.org/1065725



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



tpb_0.6.4-12_source.changes ACCEPTED into unstable

2024-04-08 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 09 Apr 2024 06:53:17 +0200
Source: tpb
Architecture: source
Version: 0.6.4-12
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Petter Reinholdtsen 
Changes:
 tpb (0.6.4-12) unstable; urgency=medium
 .
   * QA upload
 .
   * Updated vcs in d/control to Salsa.
   * Added d/gbp.conf to enforce the use of pristine-tar.
   * Updated Standards-Version from 3.9.8 to 4.7.0.
   * Updated build dependency libfreetype6-dev to libfreetype-dev.
   * Changed package priority from obsolete extra to optional.
Checksums-Sha1:
 8ddb83d80925508e58546a25f6cc21cdd85f7c55 1906 tpb_0.6.4-12.dsc
 ba5a66a661b207ef1a2cc9f23518d4a8a18391c1 17520 tpb_0.6.4-12.debian.tar.xz
 75e42dd325a5cfede956c0fff43c72cd8c7c 7353 tpb_0.6.4-12_source.buildinfo
Checksums-Sha256:
 ff269435283bf71e6190aa860b2694ff318a23cda157caa5727aa9e10ad03935 1906 
tpb_0.6.4-12.dsc
 8e4a8c9e575818189d7d8f23461cd61180c3ad50ddd44753cae2d13c359c0dd1 17520 
tpb_0.6.4-12.debian.tar.xz
 c5c6d21e1153f8420b1009081d0881e7d59adf9b824bc0b78b23466bf8c4185f 7353 
tpb_0.6.4-12_source.buildinfo
Files:
 8240a403ff7b181dc950c2514f91c6b2 1906 utils optional tpb_0.6.4-12.dsc
 422f1068374860ca57f07346f667124f 17520 utils optional 
tpb_0.6.4-12.debian.tar.xz
 82931f9933004c80c3a4b26b260004c6 7353 utils optional 
tpb_0.6.4-12_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEERqLf4owIeylOb9kkgSgKoIe6+w4FAmYUykwACgkQgSgKoIe6
+w6xrA/7Bwhf+Pc4yRiXxNLHZwfW1xyQwvbqFYjxN85Nlu1UZwZTgZDQZPOU7D1D
m7Lvn/pQDa/fzdHauaeWNFFEMenCnF+S2dtwdDCN/gj5KLhPNKqRLi+ozMJrbwKg
xIxNth+nqIMEfM0Tk1/Hn/kO4BTZGHWz2U7NWdQBhWIa5MHRB8m3NqM+BKJhDZ1F
nCXogZi3RIR5mjOASJPTEYN8WNYR04a7oyZ3IUbdedgwh3uBGnCpKU/+GPvoQG0n
sJ/fVNg08iHAWkCl1BTRkJErKI+5wdmNQyh9n2nWaU/dNl9rAVDwOWgPG1bzIMML
K1JMpI5Xh/UBAfaPE9j1aa+q4KzDAQVQN+rJYpQvCrHnrEXFRxXNVsTd/jk+bcvz
Yx36oyyQpI0KV0vXrwwH7MmFi75awSVWQ0wrJVZqhbMkiZCJeeolyQ/ygKmGnKsz
2R8Lqo32D2ylz0WEpVaTsiZM4rye6IxGyVC+o/lSdlA5bntXvJExL8pig1X9XNVj
bAX/p13gEtlsU/CG8KaTLQ9sCVymy3mB8PShSOrZsmt/u9P7BGuTCM2QaJ9h7yeu
Tf07Jr7tZk6WlOkjhuLRHaQ0BqGn9hLrMFkQZ62Lb9zLA9N2SBvYti9fe67sAAl7
nGKriRPdti4jr+mA99Pcb3bpE6NMJvYYYTP2POhWEggiC0/F0iQ=
=PCJI
-END PGP SIGNATURE-



pgpB0jAy3DTAI.pgp
Description: PGP signature


Processing of tpb_0.6.4-12_source.changes

2024-04-08 Thread Debian FTP Masters
tpb_0.6.4-12_source.changes uploaded successfully to localhost
along with the files:
  tpb_0.6.4-12.dsc
  tpb_0.6.4-12.debian.tar.xz
  tpb_0.6.4-12_source.buildinfo

Greetings,

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



mpt-status_1.2.0-9_source.changes REJECTED

2024-04-08 Thread Debian FTP Masters


mpt-status_1.2.0-9.dsc: Invalid size hash for mpt-status_1.2.0.orig.tar.gz:
According to the control file the size hash should be 38630,
but mpt-status_1.2.0.orig.tar.gz has 39133.

If you did not include mpt-status_1.2.0.orig.tar.gz in your upload, a different 
version
might already be known to the archive software.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.



pgp66h2x79HGX.pgp
Description: PGP signature


Processing of mpt-status_1.2.0-9_source.changes

2024-04-08 Thread Debian FTP Masters
mpt-status_1.2.0-9_source.changes uploaded successfully to localhost
along with the files:
  mpt-status_1.2.0-9.dsc
  mpt-status_1.2.0-9.debian.tar.xz
  mpt-status_1.2.0-9_source.buildinfo

Greetings,

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