Bug#1010445: mono-complete: Mono package in Debian is very outdated (6.8 but should be 6.12)

2024-06-03 Thread Andrey Rakhmatullin
On Mon, Jun 03, 2024 at 06:49:13PM +0200, Antoine Le Gonidec wrote:
> Please consider lowering this bug report severity.
> 
> While it would indeed be really nice to get a more recent build of Mono
> in Debian repositories (I am sure the Debian Mono Group would be happy
> to get help with this)
(assuming it still exists)

> keeping the current outdated build is much more useful than not having
> access to Mono at all from Debian repositories.
Considering the amount of packages depending on mono, removing it from
testing is probably out of question anyway, but that's up tio the Release
and Security teams. Also, "keeping the outdated unmaintained package is
better than not keeping it" is overturned by one of those teams quite
often.

> More generally requests for the packaging of new upstream releases
> tend to use a "wishlist" severity level, not "important" and even less
> "serious".
Indeed, the completely correct state would be a wishlist bug "the version
is too old" and a serious bug "the package is unmaintained", with the
exactly same result but more paperwork, but it's a common practice to not
make a separate bug report of the second type and just bump the severity
of a related one.


-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1071302: cppgir: diff for NMU version 2.0-2.1

2024-05-23 Thread Andrey Rakhmatullin
Control: tags 1071302 + patch
Control: tags 1071302 + pending

Dear maintainer,

I've prepared an NMU for cppgir (versioned as 2.0-2.1) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru cppgir-2.0/debian/changelog cppgir-2.0/debian/changelog
--- cppgir-2.0/debian/changelog	2024-01-08 13:48:52.0 +0500
+++ cppgir-2.0/debian/changelog	2024-05-23 23:50:03.0 +0500
@@ -1,3 +1,11 @@
+cppgir (2.0-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix crashing on Gio-2.0 (Closes: #1071302).
+  * Fix several other FTBFS reasons.
+
+ -- Andrey Rakhmatullin   Thu, 23 May 2024 23:50:03 +0500
+
 cppgir (2.0-2) unstable; urgency=medium
 
   * Add gi-restrict-string-template-conversion-operator.patch from upstream Git.
diff -Nru cppgir-2.0/debian/patches/9a0dcf3ae382f153f20e483bd80f3dea97d98ee1.patch cppgir-2.0/debian/patches/9a0dcf3ae382f153f20e483bd80f3dea97d98ee1.patch
--- cppgir-2.0/debian/patches/9a0dcf3ae382f153f20e483bd80f3dea97d98ee1.patch	1970-01-01 05:00:00.0 +0500
+++ cppgir-2.0/debian/patches/9a0dcf3ae382f153f20e483bd80f3dea97d98ee1.patch	2024-05-23 22:25:45.0 +0500
@@ -0,0 +1,33 @@
+From 9a0dcf3ae382f153f20e483bd80f3dea97d98ee1 Mon Sep 17 00:00:00 2001
+From: Mark Nauwelaerts 
+Date: Sat, 20 Jan 2024 14:33:29 +0100
+Subject: [PATCH] tools: avoid null pointer access
+
+Fixes issue #67
+---
+ tools/repository.cpp | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/tools/repository.cpp b/tools/repository.cpp
+index 9d54743..fcffcbe 100644
+--- a/tools/repository.cpp
 b/tools/repository.cpp
+@@ -129,10 +129,13 @@ Repository::add(const key_type , const mapped_type::tree_type )
+   auto it = self.index.find(qualified);
+   bool registered = false;
+ 
+-  if (it != self.index.end()) {
++  if (girname.empty()) {
++// should not make it here
++assert(false);
++  } else if (it != self.index.end()) {
+ auto  = it->second;
+ // merge in tree data for predefined
+-if (e.info->flags & TYPE_PREDEFINED) {
++if (e.info && (e.info->flags & TYPE_PREDEFINED)) {
+   e.tree = std::make_unique(n);
+ } else {
+   throw std::runtime_error(
+-- 
+GitLab
+
diff -Nru cppgir-2.0/debian/patches/a262132e608170142cebd10896d6679b4fe1f3cb.patch cppgir-2.0/debian/patches/a262132e608170142cebd10896d6679b4fe1f3cb.patch
--- cppgir-2.0/debian/patches/a262132e608170142cebd10896d6679b4fe1f3cb.patch	1970-01-01 05:00:00.0 +0500
+++ cppgir-2.0/debian/patches/a262132e608170142cebd10896d6679b4fe1f3cb.patch	2024-05-23 23:13:28.0 +0500
@@ -0,0 +1,33 @@
+From a262132e608170142cebd10896d6679b4fe1f3cb Mon Sep 17 00:00:00 2001
+From: Mark Nauwelaerts 
+Date: Sun, 21 Jan 2024 12:58:23 +0100
+Subject: [PATCH] data: ignore some private glib symbols
+
+---
+ data/cppgir.ignore | 10 ++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/data/cppgir.ignore b/data/cppgir.ignore
+index 17de080..3d7f569 100644
+--- a/data/cppgir.ignore
 b/data/cppgir.ignore
+@@ -52,6 +52,16 @@ Gio:function:g_networking_init
+ Gio:method:g_io_module_(load|unload)
+ Gio:function:g_io_module_query
+ 
++# private parts of the above; these should not make into the GIRs
++# but they might if gobject-introspection was built with embedded glib (meson wrapper)
++GModule:constant:MODULE_IMPL_.*
++GLib:constant:TRACE_.*
++GLib:function:trace_.*
++GLib:function:set_prgname_once
++Gio:function:to_rrtype
++Gio:class:ThreadedResolver
++GObject:bitfield:IOCondition
++
+ # Gst
+ Gst:constant:ERROR_SYSTEM
+ Gst:callback:DebugFuncPtr
+-- 
+GitLab
+
diff -Nru cppgir-2.0/debian/patches/b4642d32c04c082aa48874320d49a602077f8d84.patch cppgir-2.0/debian/patches/b4642d32c04c082aa48874320d49a602077f8d84.patch
--- cppgir-2.0/debian/patches/b4642d32c04c082aa48874320d49a602077f8d84.patch	1970-01-01 05:00:00.0 +0500
+++ cppgir-2.0/debian/patches/b4642d32c04c082aa48874320d49a602077f8d84.patch	2024-05-23 23:02:56.0 +0500
@@ -0,0 +1,29 @@
+From b4642d32c04c082aa48874320d49a602077f8d84 Mon Sep 17 00:00:00 2001
+From: Mark Nauwelaerts 
+Date: Sat, 20 Jan 2024 14:35:14 +0100
+Subject: [PATCH] tools: discard entries without name
+
+... such as glib:boxed entries
+---
+ tools/genns.cpp | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/tools/genns.cpp b/tools/genns.cpp
+index cc5336c..4d0db78 100644
+--- a/tools/genns.cpp
 b/tools/genns.cpp
+@@ -1271,7 +1271,10 @@ public:
+   const auto  = get_name(n.second, std::nothrow);
+   auto  = n.first;
+   // redirect to oblivion
+-  if (ctx.match_ignore.matches(ns, el, {name})) {
++  // empty name might originate from a glib:boxed with glib:name attribute
++  // discard those as well, as that is a glib type without C-type
++  // (which are not really useful in our situation)
++  if (name.empty() || ctx.match_ignore.matches(ns, el, {name})) {
+ logger(Log::INFO, "ignoring {} {}", el, name);
+   } el

Bug#1071208: Tries to overwrite /usr/lib/dracut/dracut-install from dracut-core 060+5-1

2024-05-16 Thread Andrey Rakhmatullin
Package: dracut-install
Version: 060+5-7
Severity: serious

Looks like dracut-install needs Replaces/Breaks versions adjusted, as dracut-
core 060+5-1 (the previous unstable version) is also affected.


-- 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.12-amd64 (SMP w/16 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

Versions of packages dracut-install depends on:
ii  libc6 2.38-11
ii  libkmod2  32-1

dracut-install recommends no packages.

dracut-install suggests no packages.

-- no debconf information



Bug#1067784: Doesn't contain libpmix.so.2

2024-05-03 Thread Andrey Rakhmatullin
On Fri, Apr 05, 2024 at 11:23:32AM +0200, Drew Parsons wrote:
> Looks like 5.0.2-2 annihilated the symlink fix made in 5.0.2-1.1
Simply because 5.0.2-2 doesn't include the 5.0.2-1.1 changes.
Alastair, please fix your workflows so that NMUs don't get ignored and
overwritten.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1070302: Not installable (depends on removed libabsl20220623t64)

2024-05-03 Thread Andrey Rakhmatullin
Package: telegram-desktop
Version: 4.14.9+ds-1+b1
Severity: grave

Control: block -1 by 1068190

telegram-desktop wasn't rebuilt with new libabsl because of #1068190 and so
it's no longer installable in unstable:

Unsatisfied dependencies:
 telegram-desktop : Depends: libabsl20220623t64 (>= 0~20220623.0-1) but it is
not installable


-- Package-specific info:

-- 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.12-amd64 (SMP w/16 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

Versions of packages telegram-desktop depends on:
ii  libabsl20220623t64   20220623.1-3.1
ii  libavcodec60 7:6.1.1-4
ii  libavfilter9 7:6.1.1-4
ii  libavformat607:6.1.1-4
ii  libavutil58  7:6.1.1-4
ii  libc62.37-19
ii  libgcc-s114-20240429-1
ii  libglib2.0-0t64  2.78.4-7
ii  libglibmm-2.68-1t64  2.78.1-2.2
ii  libhunspell-1.7-01.7.2+really1.7.2-10+b2
ii  libjpeg62-turbo  1:2.1.5-3
ii  libkf5coreaddons55.107.0-1+b2
ii  liblz4-1 1.9.4-2
ii  libminizip1t64   1:1.3.dfsg-3.1
ii  libopenal1   1:1.23.1-4+b1
ii  libopus0 1.4-1+b1
ii  libqrcodegencpp1 1.8.0-1.2+b1
ii  libqt5core5t64 [qtbase-abi-5-15-10]  5.15.10+dfsg-7.2+b1
ii  libqt5gui5t645.15.10+dfsg-7.2+b1
ii  libqt5network5t645.15.10+dfsg-7.2+b1
ii  libqt5qml5   5.15.10+dfsg-2+b2
ii  libqt5quick5 5.15.10+dfsg-2+b2
ii  libqt5quickwidgets5  5.15.10+dfsg-2+b2
ii  libqt5svg5   5.15.10-2+b2
ii  libqt5waylandcompositor5 5.15.10-2+b2
ii  libqt5widgets5t645.15.10+dfsg-7.2+b1
ii  librlottie0-10.1+dfsg-4+b2
ii  libsigc++-3.0-0  3.6.0-2
ii  libsrtp2-1   2.5.0-3+b1
ii  libssl3t64   3.2.1-3
ii  libstdc++6   14-20240429-1
ii  libswresample4   7:6.1.1-4
ii  libswscale7  7:6.1.1-4
ii  libvpx8  1.13.1-2+b1
ii  libx11-6 2:1.8.7-1+b1
ii  libxcb-keysyms1  0.4.0-1+b2
ii  libxcb-record0   1.17.0-1
ii  libxcb-screensaver0  1.17.0-1
ii  libxcb1  1.17.0-1
ii  libxcomposite1   1:0.4.5-1+b1
ii  libxdamage1  1:1.1.6-1+b1
ii  libxext6 2:1.3.4-1+b1
ii  libxfixes3   1:6.0.0-2+b1
ii  libxrandr2   2:1.5.4-1
ii  libxtst6 2:1.2.3-1.1+b1
ii  libxxhash0   0.8.2-2+b1
ii  libyuv0  0.0~git202401110.af6ac82-1
ii  qt5-image-formats-plugins5.15.10-2+b2
ii  zlib1g   1:1.3.dfsg-3.1

Versions of packages telegram-desktop recommends:
ii  fonts-open-sans  1.11-2
ii  libwebkit2gtk-4.1-0  2.44.1-1+b1

telegram-desktop suggests no packages.

Versions of packages telegram-desktop is related to:
ii  xdg-desktop-portal   1.18.4-1
ii  xdg-desktop-portal-kde [xdg-desktop-portal-backend]  5.27.10-1+b1

-- debconf-show failed
[2024.05.03 17:50:51] Launched version: 4014009, install beta: [FALSE], alpha: 
0, debug mode: [FALSE]
[2024.05.03 17:50:51] Executable dir: /usr/bin/, name: telegram-desktop
[2024.05.03 17:50:51] Initial working dir: /home/wrar/
[2024.05.03 17:50:51] Working dir: /home/wrar/.local/share/TelegramDesktop/
[2024.05.03 17:50:51] Command line: /usr/bin/telegram-desktop --
[2024.05.03 17:50:51] Executable path before check: /usr/bin/telegram-desktop
[2024.05.03 17:50:51] Logs started
[2024.05.03 17:50:51] Launcher filename: org.telegram.desktop.desktop
[2024.05.03 17:50:52] Connecting local socket to 
/tmp/37b46bed363692bde9c2c9da994a6d0f-{87A94AB0-E370-4cde-98D3-ACC110C5967D}...
[2024.05.03 17:50:52] This is the only instance of Telegram, starting server 
and app...
[2024.05.03 17:50:52] Moved logging from 
'/home/wrar/.local/share/TelegramDesktop/log_start0.txt' to 
'/home/wrar/.local/share/TelegramDesktop/log.txt'!
[2024.05.03 17:50:52] Global 

Bug#1069904: Autopkgtests failed

2024-04-26 Thread Andrey Rakhmatullin
Package: python3-gnupg
Version: 0.5.2-1
Severity: serious

https://ci.debian.net/packages/p/python-gnupg/unstable/amd64/45884087/

277s + python3.11 test_gnupg.py
493s ...F...
493s ==
493s FAIL: test_search_keys (__main__.GPGTestCase.test_search_keys)
493s Test that searching for keys works
493s --
493s Traceback (most recent call last):
493s   File "/tmp/autopkgtest-
lxc.s9943af9/downtmp/build.Ev1/src/test_gnupg.py", line 1252, in
test_search_keys
493s self.assertEqual(0, r.returncode, 'Non-zero return code')
493s AssertionError: 0 != 2 : Non-zero return code


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages python3-gnupg depends on:
ii  gnupg2.2.40-3
ii  python3  3.11.8-1

python3-gnupg recommends no packages.

python3-gnupg suggests no packages.



Bug#1069872: Autopkgtests fail on non-x86

2024-04-26 Thread Andrey Rakhmatullin
Package: html2text
Version: 2.2.3-2
Severity: serious

E.g. https://ci.debian.net/packages/h/html2text/unstable/arm64/45910444/

 68s autopkgtest [00:14:31]: test command8: html2text -utf8 -nobs
debian/tests/pkgreport.html > $AUTOPKGTEST_TMP/result;   diff
$AUTOPKGTEST_TMP/result debian/tests/pkgreport.html.supposed;
 68s autopkgtest [00:14:31]: test command8: [---
 68s 517,520c517,520
 68s <  ?Repeat Merged
 68s <  ?Reverse Bugs
 68s <  ?Reverse Pending
 68s <  ?Reverse Severity
 68s ---
 68s >  ??Repeat Merged
 68s >  ??Reverse Bugs
 68s >  ??Reverse Pending
 68s >  ??Reverse Severity


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages html2text depends on:
ii  libc6   2.37-18
ii  libgcc-s1   14-20240330-1
ii  libstdc++6  14-20240330-1

html2text recommends no packages.

Versions of packages html2text suggests:
ii  curl  8.7.1-3
ii  wget  1.24.5-1

-- no debconf information



Bug#1067047: Buildng the package removes debian/.gitlab-ci.yml

2024-04-25 Thread Andrey Rakhmatullin
Control: reopen -1

On Fri, Apr 26, 2024 at 12:12:06AM +1000, Dmitry Smirnov wrote:
> > Source: gnucash
> > Version: 1:5.5-1.1
> > Severity: serious
> > 
> > Simply build the package from source produces a source package that doesn't
> > contain debian/.gitlab-ci.yml in debian.tar, one needs to rebuild the
> > source package separately, skipping the clean target. The reason for that
> > is that the file is listed debian/clean for some reason (alternatively, if
> > it shouldn't be in the package, please remove it from the package).
> 
> This is ridiculous. 
I agree.

> Obviously '.gitlab-ci.yml' is a repository-specific file with
> configuration of Gitlab CI on Salsa. There is no reason to ship it with
> source package 
Yet you are shipping it, maybe you should reconsider that?

$ tar tvf gnucash_5.5-1.2.debian.tar.xz debian/.gitlab-ci.yml
-rw-rw-r-- 0/0 759 2024-02-23 22:55 debian/.gitlab-ci.yml


-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1069821: FTBFS: tests failed

2024-04-25 Thread Andrey Rakhmatullin
Source: satpy
Version: 0.47.0-2
Severity: serious
Tags: ftbfs

 ERRORS

___ ERROR collecting satpy/tests/reader_tests/test_viirs_edr_active_fires.py
___
satpy/tests/reader_tests/test_viirs_edr_active_fires.py:30: in 
import dask.dataframe as dd
/usr/lib/python3/dist-packages/dask/dataframe/__init__.py:81: in 
from dask.dataframe import backends, dispatch, rolling
/usr/lib/python3/dist-packages/dask/dataframe/backends.py:15: in 
from dask.dataframe.core import DataFrame, Index, Scalar, Series, _Frame
/usr/lib/python3/dist-packages/dask/dataframe/core.py:36: in 
from dask.dataframe import methods
/usr/lib/python3/dist-packages/dask/dataframe/methods.py:34: in 
from dask.dataframe.utils import is_dataframe_like, is_index_like,
is_series_like
/usr/lib/python3/dist-packages/dask/dataframe/utils.py:20: in 
from dask.dataframe import (  # noqa: F401 register pandas extension types
/usr/lib/python3/dist-packages/dask/dataframe/_dtypes.py:9: in 
from dask.dataframe.extensions import make_array_nonempty, make_scalar
/usr/lib/python3/dist-packages/dask/dataframe/extensions.py:8: in 
from dask.dataframe.accessor import (
/usr/lib/python3/dist-packages/dask/dataframe/accessor.py:126: in 
class DatetimeAccessor(Accessor):
/usr/lib/python3/dist-packages/dask/dataframe/accessor.py:81: in
__init_subclass__
_bind_property(cls, pd_cls, attr, min_version)
/usr/lib/python3/dist-packages/dask/dataframe/accessor.py:35: in _bind_property
setattr(cls, attr, property(derived_from(pd_cls,
version=min_version)(func)))
/usr/lib/python3/dist-packages/dask/utils.py:858: in wrapper
method.__doc__ = _derived_from(
/usr/lib/python3/dist-packages/dask/utils.py:811: in _derived_from
method_args = get_named_args(method)
/usr/lib/python3/dist-packages/dask/utils.py:572: in get_named_args
s = inspect.signature(func)
/usr/lib/python3.11/inspect.py:3263: in signature
return Signature.from_callable(obj, follow_wrapped=follow_wrapped,
/usr/lib/python3.11/inspect.py:3011: in from_callable
return _signature_from_callable(obj, sigcls=cls,
/usr/lib/python3.11/inspect.py:2599: in _signature_from_callable
call = _descriptor_get(call, obj)
/usr/lib/python3.11/inspect.py:2432: in _descriptor_get
return get(descriptor, obj, type(obj))
E   TypeError: descriptor '__call__' for 'type' objects doesn't apply to a
'property' object


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069818: FTBFS: tests failed

2024-04-25 Thread Andrey Rakhmatullin
Source: toolz
Version: 0.12.0-2
Severity: serious
Tags: ftbfs

=== FAILURES
===
 test_inspect_wrapped_property
_

def test_inspect_wrapped_property():
class Wrapped(object):
def __init__(self, func):
self.func = func

def __call__(self, *args, **kwargs):
return self.func(*args, **kwargs)

@property
def __wrapped__(self):
return self.func

func = lambda x: x
wrapped = Wrapped(func)
assert inspect.signature(func) == inspect.signature(wrapped)

>   assert num_required_args(Wrapped) is None
E   AssertionError: assert 1 is None
E+  where 1 = num_required_args(.Wrapped'>)

toolz/tests/test_inspect_args.py:485: AssertionError


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069819: FTBFS: tests failed

2024-04-25 Thread Andrey Rakhmatullin
Source: python-tooz
Version: 4.2.0-2
Severity: serious
Tags: ftbfs

==
FAIL: tooz.tests.test_mysql.TestMySQLDriver.test_parsing_blocking_settings
tooz.tests.test_mysql.TestMySQLDriver.test_parsing_blocking_settings
--
testtools.testresult.real._StringException: Traceback (most recent call last):
  File "/usr/lib/python3.12/unittest/mock.py", line 1390, in patched
return func(*newargs, **newkeywargs)
   ^
  File "/<>/tooz/tests/test_mysql.py", line 113, in
test_parsing_blocking_settings
with lock(blocking_value):
  File "/<>/tooz/locking.py", line 29, in __enter__
return self.lock.__enter__(*self.args, **self.kwargs)
   ^^
  File "/<>/tooz/locking.py", line 49, in __enter__
acquired = self.acquire(*args, **kwargs)
   ^
  File "", line 3, in acquire
  File "/usr/lib/python3.12/unittest/mock.py", line 1134, in __call__
return self._mock_call(*args, **kwargs)
   
  File "/usr/lib/python3.12/unittest/mock.py", line 1138, in _mock_call
return self._execute_mock_call(*args, **kwargs)
   
  File "/usr/lib/python3.12/unittest/mock.py", line 1211, in _execute_mock_call
return self._mock_wraps(*args, **kwargs)
   ^
TypeError: 'bool' object is not callable


==
FAIL: tooz.tests.test_mysql.TestMySQLDriver.test_parsing_timeout_settings
tooz.tests.test_mysql.TestMySQLDriver.test_parsing_timeout_settings
--
testtools.testresult.real._StringException: Traceback (most recent call last):
  File "/usr/lib/python3.12/unittest/mock.py", line 1390, in patched
return func(*newargs, **newkeywargs)
   ^
  File "/<>/tooz/tests/test_mysql.py", line 100, in
test_parsing_timeout_settings
with lock(blocking_value, timeout):
  File "/<>/tooz/locking.py", line 29, in __enter__
return self.lock.__enter__(*self.args, **self.kwargs)
   ^^
  File "/<>/tooz/locking.py", line 49, in __enter__
acquired = self.acquire(*args, **kwargs)
   ^
  File "", line 3, in acquire
  File "/usr/lib/python3.12/unittest/mock.py", line 1134, in __call__
return self._mock_call(*args, **kwargs)
   
  File "/usr/lib/python3.12/unittest/mock.py", line 1138, in _mock_call
return self._execute_mock_call(*args, **kwargs)
   
  File "/usr/lib/python3.12/unittest/mock.py", line 1211, in _execute_mock_call
return self._mock_wraps(*args, **kwargs)
   ^
TypeError: 'bool' object is not callable


==
FAIL:
tooz.tests.test_coordination.TestAPI.test_lock_context_manager_acquire_argument
tooz.tests.test_coordination.TestAPI.test_lock_context_manager_acquire_argument
--
testtools.testresult.real._StringException: Traceback (most recent call last):
  File "/<>/tooz/tests/__init__.py", line 35, in
skip_if_not_implemented
return func(*args, **kwargs)
   ^
  File "/<>/tooz/tests/test_coordination.py", line 928, in
test_lock_context_manager_acquire_argument
with lock(blocking_value):
  File "/<>/tooz/locking.py", line 29, in __enter__
return self.lock.__enter__(*self.args, **self.kwargs)
   ^^
  File "/<>/tooz/locking.py", line 49, in __enter__
acquired = self.acquire(*args, **kwargs)
   ^
  File "", line 3, in acquire
  File "/usr/lib/python3.12/unittest/mock.py", line 1134, in __call__
return self._mock_call(*args, **kwargs)
   
  File "/usr/lib/python3.12/unittest/mock.py", line 1138, in _mock_call
return self._execute_mock_call(*args, **kwargs)
   
  File "/usr/lib/python3.12/unittest/mock.py", line 1211, in _execute_mock_call
return self._mock_wraps(*args, **kwargs)
   ^
TypeError: 'bool' object is not callable


--
Ran 148 tests in 6.368s

FAILED (failures=3, skipped=51)


-- System Information:
Debian Release: trixie/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing-debug'), (500, 
'unstable'), (500, 'testing'), (101, 'experimental')

Bug#1069816: Autopkgtests fail

2024-04-25 Thread Andrey Rakhmatullin
Package: python3-argcomplete
Version: 3.1.4-1
Severity: serious

https://ci.debian.net/packages/p/python-argcomplete/unstable/amd64/45886560/

102s ==
102s ERROR: test_repl_parse_after_complete
(__main__.TestArgcompleteREPL.test_repl_parse_after_complete)
102s --
102s Traceback (most recent call last):
102s   File "/tmp/autopkgtest-
lxc.q4aft1il/downtmp/autopkgtest_tmp/test/test.py", line 925, in
test_repl_parse_after_complete
102s args = p.parse_args(["--foo", "spam", "bar"])
102s^^
102s   File "/usr/lib/python3.12/argparse.py", line 1908, in parse_args
102s args, argv = self.parse_known_args(args, namespace)
102s  ^^
102s   File "/usr/lib/python3.12/argparse.py", line 1941, in parse_known_args
102s namespace, args = self._parse_known_args(args, namespace)
102s   ^^^
102s   File "/usr/lib/python3/dist-packages/argcomplete/packages/_argparse.py",
line 299, in _parse_known_args
102s start_index = consume_optional(start_index)
102s   ^
102s   File "/usr/lib/python3/dist-packages/argcomplete/packages/_argparse.py",
line 165, in consume_optional
102s action, option_string, explicit_arg = option_tuple
102s ^^^
102s ValueError: too many values to unpack (expected 3)
102s
102s ==
102s FAIL: test_choices (__main__.TestArgcomplete.test_choices)
102s --
102s Traceback (most recent call last):
102s   File "/tmp/autopkgtest-
lxc.q4aft1il/downtmp/autopkgtest_tmp/test/test.py", line 170, in test_choices
102s self.assertEqual(set(self.run_completer(make_parser(), cmd)),
set(output))
102s AssertionError: Items in the first set but not the second:
102s '-h'
102s '--help'
102s '--ship'
102s Items in the second set but not the first:
102s 'speedboat'
102s 'submarine'
102s
102s ==
102s FAIL: test_completers (__main__.TestArgcomplete.test_completers)
102s --
102s Traceback (most recent call last):
102s   File "/tmp/autopkgtest-
lxc.q4aft1il/downtmp/autopkgtest_tmp/test/test.py", line 291, in
test_completers
102s self.assertEqual(set(self.run_completer(make_parser(), cmd)),
set(output))
102s AssertionError: Items in the first set but not the second:
102s '--url'
102s '--email'
102s '-h'
102s '--help'
102s Items in the second set but not the first:
102s 'http://url1'
102s 'http://url2'
102s
102s ==
102s FAIL: test_default_completer
(__main__.TestArgcomplete.test_default_completer)
102s --
102s Traceback (most recent call last):
102s   File "/tmp/autopkgtest-
lxc.q4aft1il/downtmp/autopkgtest_tmp/test/test.py", line 415, in
test_default_completer
102s self.assertEqual(set(self.run_completer(make_parser(), cmd)),
set(output))
102s AssertionError: Items in the first set but not the second:
102s '--one'
102s '--many'
102s Items in the second set but not the first:
102s 'test/'
102s
102s ==
102s FAIL: test_escape_special_chars
(__main__.TestArgcomplete.test_escape_special_chars)
102s --
102s Traceback (most recent call last):
102s   File "/tmp/autopkgtest-
lxc.q4aft1il/downtmp/autopkgtest_tmp/test/test.py", line 823, in
test_escape_special_chars
102s self.assertEqual(set(self.run_completer(make_parser(), "prog -1 ")),
{r"bar\<\$\>baz "})
102s AssertionError: Items in the first set but not the second:
102s '-1'
102s '-2'
102s '-3'
102s Items in the second set but not the first:
102s 'bar\\<\\$\\>baz '
102s
102s ==
102s FAIL: test_exclusive (__main__.TestArgcomplete.test_exclusive)
102s --
102s Traceback (most recent call last):
102s   File "/tmp/autopkgtest-
lxc.q4aft1il/downtmp/autopkgtest_tmp/test/test.py", line 764, in test_exclusive
102s self.assertEqual(set(self.run_completer(make_parser(), cmd)),
set(output))
102s AssertionError: Items in the first set but not the second:
102s '--no-bar'
102s
102s ==
102s FAIL: test_exclusive_class (__main__.TestArgcomplete.test_exclusive_class)
102s --
102s Traceback (most recent call 

Bug#1069789: test_bluetooth_hidpp_mouse autopkgtest fails

2024-04-24 Thread Andrey Rakhmatullin
Package: upower
Version: 1.90.3-1
Severity: serious

Control: forwarded -1 https://gitlab.freedesktop.org/upower/upower/-/issues/228
Control: tags -1 + upstream

https://ci.debian.net/packages/u/upower/unstable/amd64/45053064/

217s ==
217s ERROR: test_bluetooth_hidpp_mouse
(__main__.Tests.test_bluetooth_hidpp_mouse)
217s Logitech Bluetooth LE mouse with HID++ kernel support
217s --
217s Traceback (most recent call last):
217s   File "/usr/libexec/upower/integration-test.py", line 2337, in
test_bluetooth_hidpp_mouse
217s self.assertEqual(self.get_dbus_dev_property(bat0_up, 'Model'), alias)
217s  
217s   File "/usr/libexec/upower/integration-test.py", line 273, in
get_dbus_dev_property
217s return self.dbus.call_sync(UP, device,
217s^^^
217s gi.repository.GLib.GError: g-dbus-error-quark:
GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Object does not exist at
path “/org/freedesktop/UPower/devices/mouse_dev_11_22_33_44_AA_BB” (19)


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages upower depends on:
ii  dbus   1.14.10-4+b1
ii  libc6  2.37-18
ii  libglib2.0-0t642.78.4-7
ii  libgudev-1.0-0 238-5
ii  libimobiledevice6  1.3.0-7.1+b1
ii  libplist3  2.2.0-7+b1
ii  libupower-glib31.90.3-1
ii  udev   255.4-1+b1

Versions of packages upower recommends:
ii  polkitd  124-2

upower suggests no packages.

-- debconf-show failed


Bug#1069340: Wrong symbols file causes depends on the pre-t64 name

2024-04-20 Thread Andrey Rakhmatullin
Package: libxbase64-1t64
Version: 3.1.2-14.1+b2
Severity: grave

$ head -1 /var/lib/dpkg/info/libxbase64-1t64:armhf.symbols
libxbase64.so.1 libxbase64-1 #MINVER#

This makes libxbase64-bin uninstallable as it now Depends on libxbase64-1. It
would make other revdeps uninstallable too, but this package doesn't have
revdeps. Does Debian need this library?


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages libxbase64-1t64 depends on:
ii  libc6   2.37-18
ii  libgcc-s1   14-20240330-1
ii  libstdc++6  14-20240330-1

libxbase64-1t64 recommends no packages.

libxbase64-1t64 suggests no packages.



Bug#1069339: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: libvdeplug-pcap
Version: 0.1.0-2+b3
Severity: grave

libvdeplug-pcap explicitly Depends: libvdeplug2, libpcap0.8. They should be
changed to the t64 names if they are really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages libvdeplug-pcap depends on:
ii  libc6 2.37-18
ii  libpcap0.8t64 [libpcap0.8]1.10.4-4.1
ii  libvdeplug2t64 [libvdeplug2]  4.0.1-5.1

libvdeplug-pcap recommends no packages.

libvdeplug-pcap suggests no packages.



Bug#1069338: Not installable due to a bad dh_makeshlibs override

2024-04-20 Thread Andrey Rakhmatullin
Package: libui-gxmlcpp5t64
Version: 1.4.6-1.1+b1
Severity: grave

Unsatisfied dependencies:
 libui-gxmlcpp5t64 : Depends: libui-gxmlcpp5v5 (>= 1.4.3) but it is not
installable

This is because override_dh_makeshlibs generates a dep on the pre-t64 name.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages libui-gxmlcpp5t64 depends on:
pn  libboost-test1.83.0  
ii  libc62.37-18
ii  libgcc-s114-20240330-1
ii  libstdc++6   14-20240330-1
pn  libui-utilcpp9t64
ii  libxml2  2.9.14+dfsg-1.3+b2
ii  libxslt1.1   1.1.35-1

libui-gxmlcpp5t64 recommends no packages.

libui-gxmlcpp5t64 suggests no packages.



Bug#1069337: Update Depends for the time64 library renames

2024-04-20 Thread Andrey Rakhmatullin
Package: thunderbird
Version: 1:115.9.0-1+b1
Severity: serious

thunderbird explicitly Depends: libotr5. It should be changed to the t64 name
if it's really needed.

Note that the package is still installable because it's not built on 32-bit
time64 arches, but it still needs to be fixed so that libotr5 can be removed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages thunderbird depends on:
ii  debianutils 5.17
ii  fontconfig  2.15.0-1.1
ii  kdialog 4:22.12.3-1+b1
ii  libasound2t64 [libasound2]  1.2.11-1+b1
ii  libatk1.0-0t64 [libatk1.0-0]2.52.0-1
ii  libc6   2.37-18
ii  libcairo-gobject2   1.18.0-3+b1
ii  libcairo2   1.18.0-3+b1
ii  libdbus-1-3 1.14.10-4+b1
pn  libdbus-glib-1-2
ii  libevent-2.1-7t64 [libevent-2.1-7]  2.1.12-stable-8.1+b3
ii  libffi8 3.4.6-1
ii  libfontconfig1  2.15.0-1.1
ii  libfreetype62.13.2+dfsg-1+b4
ii  libgcc-s1   14-20240330-1
ii  libgdk-pixbuf-2.0-0 2.42.10+dfsg-3+b3
ii  libglib2.0-0t64 [libglib2.0-0]  2.78.4-6
ii  libgtk-3-0t64 [libgtk-3-0]  3.24.41-4
ii  libnspr42:4.35-1.1+b1
ii  libnss3 2:3.99-1
pn  libotr5 
ii  libpango-1.0-0  1.52.1+ds-1
pn  librnp0 
ii  libstdc++6  14-20240330-1
ii  libvpx8 1.13.1-2
ii  libx11-62:1.8.7-1
ii  libx11-xcb1 2:1.8.7-1
ii  libxcb-shm0 1.17.0-1
ii  libxcb1 1.17.0-1
ii  libxext62:1.3.4-1+b1
ii  libxrandr2  2:1.5.4-1
ii  psmisc  23.7-1
ii  x11-utils   7.7+6+b1
ii  zenity  4.0.1-1+b1
ii  zlib1g  1:1.3.dfsg-3.1

Versions of packages thunderbird recommends:
ii  hunspell-ru [hunspell-dictionary]  1:24.2.2-1

Versions of packages thunderbird suggests:
ii  apparmor  3.0.13-2
pn  fonts-lyx 
ii  libgssapi-krb5-2  1.20.1-6+b1



Bug#1068430: closed by Debian FTP Masters (reply to handsome_feng ) (Bug#1068430: fixed in qt5-ukui-platformtheme 1.0.8-2)

2024-04-20 Thread Andrey Rakhmatullin
Control: reopen -1

On Mon, Apr 08, 2024 at 06:57:04AM +, Debian Bug Tracking System wrote:
>  qt5-ukui-platformtheme (1.0.8-2) unstable; urgency=medium
>  .
>[Steve langasek]
>* Remove hard-coded dependencies on libqt5widgets5 and libgsettings-qt1.
>  and don't hard-code dependency on shared libglib library.
>  (Closes: #1068430)
This didn't happen.
Instead the explicit deps on libqt5-ukui-style1 and qt5-styles-ukui were
replaced with ${lib:Depends} in the qt5-ukui-platformtheme package.


-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1069336: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: seafile-gui
Version: 9.0.4+ds1-1+b4
Severity: grave

seafile-gui explicitly Depends: libsearpc1, libseafile0. They should be changed
to the t64 names if they are really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages seafile-gui depends on:
ii  libc6   2.37-18
ii  libgcc-s1   14-20240330-1
ii  libglib2.0-0t64 [libglib2.0-0]  2.78.4-6
ii  libjansson4 2.14-2+b2
ii  libqt5core5t64 [libqt5core5a]   5.15.10+dfsg-7.2+b1
ii  libqt5dbus5t64 [libqt5dbus5]5.15.10+dfsg-7.2+b1
ii  libqt5gui5t64 [libqt5gui5]  5.15.10+dfsg-7.2+b1
ii  libqt5network5t64 [libqt5network5]  5.15.10+dfsg-7.2+b1
ii  libqt5webkit5   5.212.0~alpha4-33+b3
ii  libqt5widgets5t64 [libqt5widgets5]  5.15.10+dfsg-7.2+b1
pn  libquazip5-1
pn  libquazip5-1t64 
pn  libseafile0 
pn  libseafile0t64  
pn  libsearpc1  
pn  libsearpc1t64   
ii  libsqlite3-03.45.3-1
ii  libstdc++6  14-20240330-1
pn  seafile-daemon  

seafile-gui recommends no packages.

Versions of packages seafile-gui suggests:
pn  seafile-cli  



Bug#1069335: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: prads
Version: 0.3.3-7+b5
Severity: grave

prads explicitly Depends: libpcap0.8. It should be changed to the t64 name if
it's really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages prads depends on:
ii  adduser 3.137
ii  init-system-helpers 1.66
ii  libc6   2.37-18
ii  libpcap0.8t64 [libpcap0.8]  1.10.4-4.1
ii  libpcre32:8.39-15+b1

prads recommends no packages.

prads suggests no packages.



Bug#1069334: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: nautilus-wipe
Version: 0.4.alpha2-0.1+b4
Severity: grave

nautilus-wipe explicitly Depends: libgtk-3-0. It should be changed to the t64
name if it's really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages nautilus-wipe depends on:
ii  libc6   2.37-18
ii  libglib2.0-0t64 [libglib2.0-0]  2.78.4-6
pn  libgsecuredelete0   
ii  libgtk-3-0t64 [libgtk-3-0]  3.24.41-4
pn  libnautilus-extension4  

nautilus-wipe recommends no packages.

nautilus-wipe suggests no packages.



Bug#1069333: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: ippsample
Version: 0.0~git20220607.72f89b3-1+b4
Severity: grave

ippsample explicitly Depends: libcups2. It should be changed to the t64 name if
it's really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages ippsample depends on:
pn  ippsample-data  
ii  libavahi-client30.8-13+b2
ii  libavahi-common30.8-13+b2
ii  libc6   2.37-18
ii  libcups2t64 [libcups2]  2.4.7-1.2+b1

ippsample recommends no packages.

ippsample suggests no packages.



Bug#1069332: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: gvmd
Version: 23.1.0-1+b4
Severity: grave

gvmd explicitly Depends: libgvm22. It should be changed to the t64 name if it's
really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages gvmd depends on:
ii  adduser  3.137
pn  doc-base 
pn  greenbone-feed-sync  
pn  gvmd-common  
ii  libbsd0  0.12.2-1
ii  libc62.37-18
ii  libglib2.0-0t64  2.78.4-6
ii  libgnutls30t64   3.8.5-2
ii  libgpgme11t641.18.0-4.1+b1
pn  libgvm22 
pn  libgvm22t64  
ii  libical3t64  3.0.17-1.1+b1
pn  libpq5   
pn  notus-scanner
pn  ospd-openvas 
pn  pg-gvm   
pn  postgresql-16
pn  xml-twig-tools   

Versions of packages gvmd recommends:
pn  nsis  
pn  rpm   

gvmd suggests no packages.



Bug#1069331: Not installable due to hardcoded pre-t64 library deps

2024-04-20 Thread Andrey Rakhmatullin
Package: libcegui-mk2-dev
Version: 0.8.7+git20220615-5.1+b5
Severity: grave

Unsatisfied dependencies:
 libcegui-mk2-dev : Depends: libxerces-c3.2 but it is not installable

It should be changed to the t64 name if it's really needed.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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

Versions of packages libcegui-mk2-dev depends on:
ii  libc6  2.37-18
pn  libcegui-mk2-0.8.7 
pn  libcegui-mk2-0.8.7t64  
pn  libdevil-dev   
pn  libfreeimage-dev   
pn  libfreetype-dev
ii  libgcc-s1  14-20240330-1
pn  libjpeg-dev
pn  liblcms2-dev   
pn  libmng-dev 
pn  libpcre2-dev   
pn  libpng-dev 
ii  libstdc++6 14-20240330-1
pn  libtiff-dev
pn  libxerces-c3.2 
pn  lua-expat-dev  
ii  zlib1g-dev [libz-dev]  1:1.3.dfsg-3.1

libcegui-mk2-dev recommends no packages.

Versions of packages libcegui-mk2-dev suggests:
pn  libcegui-mk2-doc  



Bug#1069321: FTBFS: [Makefile:163: check] Error 1

2024-04-19 Thread Andrey Rakhmatullin
Source: hypre
Version: 2.28.0-8
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=hypre=armhf=2.28.0-8%2Bb2=1713420980=0

I couldn't find the actual failing command.


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069320: FTBFS on mips64el: cannot find -lasan: No such file or directory

2024-04-19 Thread Andrey Rakhmatullin
Source: datatype99
Version: 1.6.4-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=datatype99=mips64el=1.6.4-1=1713121986=0

make[4]: Entering directory '/<>/testsbuild'
[ 10%] Building C object CMakeFiles/tests.dir/tests.c.o
[ 20%] Linking C executable tests
/usr/bin/ld: cannot find libasan_preinit.o: No such file or directory
/usr/bin/ld: cannot find -lasan: No such file or directory
collect2: error: ld returned 1 exit status


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069319: FTBFS on armel: undefined reference to `__atomic_store_8'

2024-04-19 Thread Andrey Rakhmatullin
Source: datatype99
Version: 1.6.4-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=datatype99=armel=1.6.4-1=1713120793=0

make[4]: Entering directory '/<>/testsbuild'
[ 10%] Building C object CMakeFiles/tests.dir/tests.c.o
[ 20%] Linking C executable tests
/usr/bin/ld: /usr/lib/gcc/arm-linux-gnueabi/13/libasan.so: undefined reference
to `__atomic_store_8'
/usr/bin/ld: /usr/lib/gcc/arm-linux-gnueabi/13/libasan.so: undefined reference
to `__atomic_load_8'
/usr/bin/ld: /usr/lib/gcc/arm-linux-gnueabi/13/libasan.so: undefined reference
to `__atomic_compare_exchange_8'
collect2: error: ld returned 1 exit status


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069318: FTBFS: error: unknown type name ‘StdVideoH264LevelIdc’

2024-04-19 Thread Andrey Rakhmatullin
Source: wine-development
Version: 8.21~repack-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=wine-
development=amd64=8.21%7Erepack-1%2Bb5=1712016271=0


In file included from dlls/d3d12/d3d12_main.c:27:
include/wine/vulkan.h:11804:5: error: unknown type name ‘StdVideoH264LevelIdc’
11804 | StdVideoH264LevelIdc maxLevelIdc;
  | ^~~~
include/wine/vulkan.h:11822:11: error: unknown type name
‘StdVideoEncodeH264ReferenceInfo’
11822 | const StdVideoEncodeH264ReferenceInfo *pStdReferenceInfo;
  |   ^~~
include/wine/vulkan.h:11847:11: error: unknown type name
‘StdVideoEncodeH264SliceHeader’
11847 | const StdVideoEncodeH264SliceHeader *pStdSliceHeader;
  |   ^
include/wine/vulkan.h:11856:11: error: unknown type name
‘StdVideoEncodeH264PictureInfo’
11856 | const StdVideoEncodeH264PictureInfo *pStdPictureInfo;
  |   ^
include/wine/vulkan.h:11864:5: error: unknown type name
‘StdVideoH264ProfileIdc’
11864 | StdVideoH264ProfileIdc stdProfileIdc;
  | ^~
include/wine/vulkan.h:11917:5: error: unknown type name ‘StdVideoH264LevelIdc’
11917 | StdVideoH264LevelIdc maxLevelIdc;
  | ^~~~
include/wine/vulkan.h:11925:11: error: unknown type name
‘StdVideoH264SequenceParameterSet’
11925 | const StdVideoH264SequenceParameterSet *pStdSPSs;
  |   ^~~~
include/wine/vulkan.h:11927:11: error: unknown type name
‘StdVideoH264PictureParameterSet’
11927 | const StdVideoH264PictureParameterSet *pStdPPSs;
  |   ^~~
include/wine/vulkan.h:11962:5: error: unknown type name ‘StdVideoH265LevelIdc’
11962 | StdVideoH265LevelIdc maxLevelIdc;
  | ^~~~
include/wine/vulkan.h:11983:11: error: unknown type name
‘StdVideoEncodeH265ReferenceInfo’
11983 | const StdVideoEncodeH265ReferenceInfo *pStdReferenceInfo;
  |   ^~~
include/wine/vulkan.h:12008:11: error: unknown type name
‘StdVideoEncodeH265SliceSegmentHeader’
12008 | const StdVideoEncodeH265SliceSegmentHeader *pStdSliceSegmentHeader;
  |   ^~~~
include/wine/vulkan.h:12017:11: error: unknown type name
‘StdVideoEncodeH265PictureInfo’
12017 | const StdVideoEncodeH265PictureInfo *pStdPictureInfo;
  |   ^
include/wine/vulkan.h:12024:5: error: unknown type name
‘StdVideoH265ProfileIdc’
12024 | StdVideoH265ProfileIdc stdProfileIdc;
  | ^~
include/wine/vulkan.h:12076:5: error: unknown type name ‘StdVideoH265LevelIdc’
12076 | StdVideoH265LevelIdc maxLevelIdc;
  | ^~~~
include/wine/vulkan.h:12084:11: error: unknown type name
‘StdVideoH265VideoParameterSet’
12084 | const StdVideoH265VideoParameterSet *pStdVPSs;
  |   ^
include/wine/vulkan.h:12086:11: error: unknown type name
‘StdVideoH265SequenceParameterSet’
12086 | const StdVideoH265SequenceParameterSet *pStdSPSs;
  |   ^~~~
include/wine/vulkan.h:12088:11: error: unknown type name
‘StdVideoH265PictureParameterSet’
12088 | const StdVideoH265PictureParameterSet *pStdPPSs;
  |   ^~~


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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


Bug#1069317: FTBFS: tests failed

2024-04-19 Thread Andrey Rakhmatullin
Source: sonic-visualiser
Version: 4.5.2-2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=sonic-
visualiser=armel=4.5.2-2%2Bb3=1713251413=0

FAIL!  : TestVampRealTime::fromTimeval() Compared values are not the same
   Loc: [test-svcore-base.p/../../svcore/base/test/TestVampRealTime.h(144)]



-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069315: Update Build-Depends for the time64 library renames

2024-04-19 Thread Andrey Rakhmatullin
Source: openjdk-20
Version: 20.0.2+9-1
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libgtk2.0-0 | libgtk-3-0,
these need to be changed to lib*t64 if these deps 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069313: FTBFS: implicit declaration of function ‘jpeg_memio_dest’; did you mean ‘jpeg_mem_dest’?

2024-04-19 Thread Andrey Rakhmatullin
Source: jskeus
Version: 1.2.4+dfsg-3
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=jskeus=armhf=1.2.4%2Bdfsg-3%2Bb2=1710976387=0

gcc -g -c -o /<>/irteus/LinuxARM/obj/irtmath.o -DARM -DLinux
-Wimplicit -falign-functions=4 -DGCC3  -DGCC -fsigned-char  -DTHREADED
-DPTHREAD -fpic  -I/usr/share/euslisp/include -O2 -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 -DLinux -D_REENTRANT -DGCC -I/usr/share/euslisp/include
-DTHREADED -DPTHREAD -DSVNVERSION=\"\" -fPIC -falign-functions=8 ./irtmath.c;
ld -shared -build-id -o /<>/irteus/LinuxARM/obj/irtmath.so
/<>/irteus/LinuxARM/obj/irtmath.ojpegmemcd.c: In function
‘JPEG_compress’:
jpegmemcd.c:29:3: error: implicit declaration of function ‘jpeg_memio_dest’;
did you mean ‘jpeg_mem_dest’? [-Werror=implicit-function-declaration]
   29 |   jpeg_memio_dest(, jpeg_image_buffer, _count);
  |   ^~~
  |   jpeg_mem_dest
jpegmemcd.c: In function ‘JPEG_header’:
jpegmemcd.c:92:3: error: implicit declaration of function ‘jpeg_memio_src’; did
you mean ‘jpeg_mem_src’? [-Werror=implicit-function-declaration]
   92 |   jpeg_memio_src(, jpeg_image, jpeg_size);
  |   ^~
  |   jpeg_mem_src


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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


Bug#1069312: FTBFS: debian/hlibrary.setup build --builddir=dist-ghc returned exit code 1

2024-04-19 Thread Andrey Rakhmatullin
Source: haskell-gi-gtk
Version: 3.0.41-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=haskell-gi-
gtk=armel=3.0.41-1%2Bb6=1713045220=0

[707 of 708] Compiling GI.Gtk.Structs   ( GI/Gtk/Structs.hs, dist-
ghc/build/GI/Gtk/Structs.o, dist-ghc/build/GI/Gtk/Structs.dyn_o )
-e: error: debian/hlibrary.setup build --builddir=dist-ghc returned exit code 1
 at /usr/share/perl5/Debian/Debhelper/Dh_Lib.pm line 875.
Debian::Debhelper::Dh_Lib::error("debian/hlibrary.setup build
--builddir=dist-ghc returned exit"...) called at
/usr/share/perl5/Debian/Debhelper/Dh_Lib.pm line 614
Debian::Debhelper::Dh_Lib::error_exitcode("debian/hlibrary.setup build
--builddir=dist-ghc") called at /usr/share/perl5/Debian/Debhelper/Dh_Lib.pm
line 477
Debian::Debhelper::Dh_Lib::doit("debian/hlibrary.setup", "build", "--
builddir=dist-ghc") called at
/usr/share/perl5/Debian/Debhelper/Buildsystem/Haskell/Recipes.pm line 656
Debian::Debhelper::Buildsystem::Haskell::Recipes::build_recipe() called
at -e line 1
make: *** [/usr/share/cdbs/1/class/hlibrary.mk:158: build-ghc-stamp] Error 25


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069310: FTBFS: tests failed

2024-04-19 Thread Andrey Rakhmatullin
Source: gocryptfs
Version: 2.4.0-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=gocryptfs=mips64el=2.4.0-1%2Bb6=1713405841=0

panic: DIRECT (8000) overlaps with LARGEFILE (8000)

goroutine 1 [running]:
github.com/hanwen/go-fuse/fuse.(*flagNames).set(0xc000126708, 0x8000,
{0x1201d640e, 0x6})
/<>/_build/src/github.com/hanwen/go-fuse/fuse/print.go:126
+0x234
github.com/hanwen/go-fuse/fuse.init.1()
/<>/_build/src/github.com/hanwen/go-
fuse/fuse/print_linux.go:13 +0x68
FAILgithub.com/rfjakob/gocryptfs/internal/syscallcompat 0.007s


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069308: FTBFS: tests failed

2024-04-19 Thread Andrey Rakhmatullin
Source: gnome-subtitles
Version: 1.8-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=gnome-
subtitles=amd64=1.8-1%2Bb3=1712013676=0

@@ -747,7 +747,7 @@

 "GstDiscovererClass.starting": "144"
 "GstDiscovererClass.discovered": "152"
 "GstDiscovererClass.source_setup": "160"
-"GstDiscovererClass._reserved": "176"
+"GstDiscovererClass._reserved": "168"
 "sizeof(GstDiscoverer)": "64"
 "GstDiscoverer.priv": "24"
 "GstDiscoverer._reserved": "32"


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1069307: FTBFS: configure: error: must specify --with-locking-method option

2024-04-19 Thread Andrey Rakhmatullin
Source: courier
Version: 1.0.16-3.2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=courier=armel=1.0.16-3.2%2Bb4=1712019536=0

checking for locking method... configure: error: must specify --with-locking-
method option
configure: error: ./configure failed for libs/liblock


-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#1068975: Abandoned upstream and unmaintained

2024-04-14 Thread Andrey Rakhmatullin
Source: python-zxcvbn
Version: 4.4.28-3
Severity: serious
Control: affects -1 pass-extension-audit pwdsphinx secrets

It was reported that the maintainer of this package seems to be MIA (and there
were no maintainer uploads since 2019). At the same time, the package upstream
seems to be dead: https://github.com/dwolfhub/zxcvbn-python/issues/73 (and
there were no commits since 2021 and no releases since 2019). As the upstream
bug correctly notes, this is a security-sensitive package, so it's worrying
that people can be relying on it while it's abandoned. Scott Kitterman even
suggested removing it from Debian but is has revdeps:

pass-extension-audit/src:pass-audit
The only upload to Debian in 2022, last upstream release 2022, zxcvbn is a hard
req per setup.cfg. Popcon 20. No revdeps.

pwdsphinx
All Debian uploads in 2023, last upstream release in 2023. zxcvbn (actually
zxcvbn-python, which is an older version of zxcvbn per
https://pypi.org/project/zxcvbn-python) is a hard req per setup.py. Popcon 2.
No revdeps outside the source package.

secrets
Fairly active both in Debian and upstream. A GNOME app. zxcvbn is a hard req
per meson.build. Popcon 224. No revdeps outside the source package.



-- 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/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, 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



Bug#965837: tart: Change of debhelper compat

2024-04-12 Thread Andrey Rakhmatullin
On Fri, Jan 12, 2024 at 05:12:36PM +0800, i...@0w.al wrote:
> I have changed the compat version from 5 to 13 to fix the build error, and 
> fixed some lintian warnings
Hello. As the package is orphaned, it's not very useful to send patches to
its bug reports unless you want to do the upload yourself.
If you do, please either adopt the package or do a QA upload, filing an
RFS in either case.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1066421: mpb: diff for NMU version 1.11.1-5.1

2024-04-11 Thread Andrey Rakhmatullin
Control: tags 1066421 + patch
Control: tags 1066421 + pending

Dear maintainer,

I've prepared an NMU for mpb (versioned as 1.11.1-5.1) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru mpb-1.11.1/debian/changelog mpb-1.11.1/debian/changelog
--- mpb-1.11.1/debian/changelog	2022-12-15 02:17:01.0 +0500
+++ mpb-1.11.1/debian/changelog	2024-04-11 23:13:16.0 +0500
@@ -1,3 +1,10 @@
+mpb (1.11.1-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with -Werror=implicit-function-declaration (Closes: #1066421).
+
+ -- Andrey Rakhmatullin   Thu, 11 Apr 2024 23:13:16 +0500
+
 mpb (1.11.1-5) unstable; urgency=medium
 
   * debian/control: bump Standards Version to 4.6.1 (no changes)
diff -Nru mpb-1.11.1/debian/patches/18-fix-implicit-function-declaration.patch mpb-1.11.1/debian/patches/18-fix-implicit-function-declaration.patch
--- mpb-1.11.1/debian/patches/18-fix-implicit-function-declaration.patch	1970-01-01 05:00:00.0 +0500
+++ mpb-1.11.1/debian/patches/18-fix-implicit-function-declaration.patch	2024-04-11 23:11:20.0 +0500
@@ -0,0 +1,53 @@
+Description: Add missing header includes.
+Author: Andrey Rakhmatullin 
+Bug-Debian: https://bugs.debian.org/1066421
+Last-Update: 2024-04-11
+
+Index: mpb-1.11.1/mpb/fields.c
+===
+--- mpb-1.11.1.orig/mpb/fields.c
 mpb-1.11.1/mpb/fields.c
+@@ -20,6 +20,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "config.h"
+ #include 
+Index: mpb-1.11.1/mpb/field-smob.c
+===
+--- mpb-1.11.1.orig/mpb/field-smob.c
 mpb-1.11.1/mpb/field-smob.c
+@@ -17,6 +17,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ #include "config.h"
+ 
+Index: mpb-1.11.1/mpb/material_grid.c
+===
+--- mpb-1.11.1.orig/mpb/material_grid.c
 mpb-1.11.1/mpb/material_grid.c
+@@ -18,6 +18,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "config.h"
+ #include 
+Index: mpb-1.11.1/mpb/material_grid_opt.c
+===
+--- mpb-1.11.1.orig/mpb/material_grid_opt.c
 mpb-1.11.1/mpb/material_grid_opt.c
+@@ -20,6 +20,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "config.h"
+ #include 
diff -Nru mpb-1.11.1/debian/patches/series mpb-1.11.1/debian/patches/series
--- mpb-1.11.1/debian/patches/series	2022-12-15 02:17:01.0 +0500
+++ mpb-1.11.1/debian/patches/series	2024-04-11 23:01:11.0 +0500
@@ -15,5 +15,6 @@
 14-mpb-mpb.1.patch
 15-mpb-mpb-split.1.patch
 16-utils-mpb-data.1.patch
+18-fix-implicit-function-declaration.patch
 
 zzz-blas-problem-on-mipsel.patch


signature.asc
Description: PGP signature


Bug#1066860: libprelude ftbfs on time_t64 archs

2024-04-11 Thread Andrey Rakhmatullin
Control: reopen -1 

On Thu, Mar 14, 2024 at 04:14:25PM +0100, Matthias Klose wrote:
> libprelude ftbfs on time_t64 archs with symbols file mismatches. 
This still happens, it wasn't addressed in the upload that closed this:

https://buildd.debian.org/status/fetch.php?pkg=libprelude=armel=5.2.0-5.4=1712765101=0

> patch at
> http://launchpadlibrarian.net/719321091/libprelude_5.2.0-5.3build2_5.2.0-5.3ubuntu1.diff.gz

This seems to be about different symbols though.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068827: Changes from the 0.14.1-5.1 NMU were discarded

2024-04-11 Thread Andrey Rakhmatullin
Source: falcosecurity-libs
Version: 0.15.1-1
Severity: serious

0.15.1-1 doesn't seem to contain changes from 0.14.1-5.1, both the changelog
entry and the actual changes.


-- 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/16 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



Bug#1068806: Update Build-Depends for the time64 library renames

2024-04-11 Thread Andrey Rakhmatullin
Source: osmo-bts
Version: 1.5.0dfsg1-2
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libosmocoding0, this needs to be changed
to
libosmocoding0t64 if this dep is 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/16 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



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 Andrey Rakhmatullin
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.

> 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.

> 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.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1067916: FTBFS: tests failed

2024-04-08 Thread Andrey Rakhmatullin
On Mon, Apr 08, 2024 at 12:58:13AM +, tony mancill wrote:
> This may be a naive question, but since we're dealing with a syscall
> that passes a timespec, is there a minimum kernel version required for
> the time_t 64 userspace?
I've never heard anything about this.

> In any event, I'm not sure about the next steps here.  Any suggestions?
> Should I work with DSA to try to get a porter box with a newer kernel to
> confirm that that resolves the issue with the test?  (I think this would
> have eventual implications for the buildds.)
I would ask in a more public place (as I'm not sure there is a dedicated
t64 place which the t64 experts read). Also you can try making a qemu VM
and try different kernels there.



-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1063982: setuptools-scm: autopkgtest regression with pytest 8

2024-04-07 Thread Andrey Rakhmatullin
This works in a current sid chroot, both build-time tests and autopkgests.
Timo, do you think we can close this or does something else need to be
checked?

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1061744: ipyparallel ftbfs with Python 3.12 as default

2024-04-07 Thread Andrey Rakhmatullin
On Sat, Feb 24, 2024 at 09:42:21PM -0300, Emmanuel Arias wrote:
> Seems to be that in sid does not fail.
That's what the bug report says, see "Python 3.12 as default" and "With
python3-defaults from experimental".


-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1063945: ipython: autopkgtest regression with pytest 8

2024-04-07 Thread Andrey Rakhmatullin
The failures:

E   ImportError: Cannot load backend 'TkAgg' which requires the 
'tk' interactive framework, as 'headless' is currently running
E   ImportError: Failed to import any of the following Qt binding 
modules: PyQt6, PySide6, PyQt5, PySide2

These (at least the second one) make sense but I don't understand why the
tests were passing before, as I don't see Qt binding installed there
either.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1067916: FTBFS: tests failed

2024-04-07 Thread Andrey Rakhmatullin
On Sat, Apr 06, 2024 at 10:31:52PM +, tony mancill wrote:
> On Fri, Mar 29, 2024 at 12:13:57AM +0500, Andrey Rakhmatullin wrote:
> > Source: capnproto
> > Version: 1.0.1-3
> > Severity: serious
> > Tags: ftbfs
> > 
> > https://buildd.debian.org/status/fetch.php?pkg=capnproto=armhf=1.0.1-3%2Bb2=1711652087=0
> 
> Thank you for the bug report.  I'm not able to reproduce the test
> failure when cross-building on amd64, so am in the process of triaging
> on a porter box.
Does it fail on a porter box?
As a (useless?) data point I've just tried building it in a qemu chroot
and some other tests failed, e.g. AsyncIo/AncillaryMessageHandler and
AsyncIo/ScmRightsTruncatedOdd so it's not useful.


-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1063418: mdp ftbfs in unstable

2024-04-06 Thread Andrey Rakhmatullin
It currently fails even earlier:

ImportError while loading conftest '/<>/mdp/test/conftest.py'.
mdp/__init__.py:133: in 
utils.symeig = configuration.get_symeig(numx_linalg)
mdp/configuration.py:335: in get_symeig
args = getargs(numx_linalg.eigh)[0]
/usr/lib/python3.11/inspect.py:1379: in getfullargspec
raise TypeError('unsupported callable') from ex
E   TypeError: unsupported callable

This is reported upstream at
https://github.com/mdp-toolkit/mdp-toolkit/issues/99 and probably fixed at
https://github.com/mdp-toolkit/mdp-toolkit/pull/100 .

Not sure about the initially reported test_dtype_consistency failures.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068502: Dead upstream and broken, remove or switch to a fork?

2024-04-06 Thread Andrey Rakhmatullin
Source: python-pytest-flake8
Severity: serious

https://github.com/tholo/pytest-flake8/issues/98
https://github.com/tholo/pytest-flake8/issues/97
https://github.com/tholo/pytest-flake8/issues/92
https://github.com/tholo/pytest-flake8/issues/91


-- 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/16 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



Bug#1068500: Installs /usr/LICENSE

2024-04-06 Thread Andrey Rakhmatullin
Package: python3-xmlrunner
Version: 3.2.0-2
Severity: serious

drwxr-xr-x root/root 0 2023-01-22 01:39 ./
drwxr-xr-x root/root 0 2023-01-22 01:39 ./usr/
-rw-r--r-- root/root  1532 2022-02-02 16:17 ./usr/LICENSE

Note that it's caught by lintian:

W: python3-xmlrunner: file-in-unusual-dir [usr/LICENSE]
I: python3-xmlrunner: extra-license-file [usr/LICENSE]
I: python3-xmlrunner: package-contains-documentation-outside-usr-share-doc
[usr/LICENSE]


-- 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/16 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

Versions of packages python3-xmlrunner depends on:
ii  python3   3.11.8-1
ii  python3-lxml  5.2.1-1

python3-xmlrunner recommends no packages.

python3-xmlrunner suggests no packages.



Bug#1067561: FTBFS: Error: symbol `open64' is already defined

2024-04-05 Thread Andrey Rakhmatullin
On Fri, Apr 05, 2024 at 08:09:21AM +0200, Yves-Alexis Perez wrote:
> > I assume the following patch from Ubuntu fixes this:
> > 
> > --- a/tests/src/libsystem.c
> > +++ b/tests/src/libsystem.c
> > @@ -1,6 +1,9 @@
> >  #define _GNU_SOURCE
> >  #define __USE_GNU
> > 
> > +#undef _FILE_OFFSET_BITS
> > +#undef _TIME_BITS
> > +
> >  #include 
> > 
> >  #include 
> 
> Hi, thanks for the patch. It looks a bit strong though, undefining stuff like
> that unconditionally. Do you have pointers to the Ubuntu bug or something?
I haven't checked their bugs manually but the changelog entry doesn't
close any:

lightdm (1.30.0-0ubuntu12) noble; urgency=medium

  * Undefine _FILE_OFFSET_BITS and _TIME_BITS when building preload gadget to
allow interposition of open and open64 to work.

 -- Michael Hudson-Doyle   Fri, 22 Mar 2024 15:08:46 
+1300

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068180: FTBFS: C++ versions less than C++14 are not supported.

2024-04-01 Thread Andrey Rakhmatullin
Source: libgav1
Version: 0.18.0-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=libgav1=armel=0.18.0-1%2Bb2=1711940873=0

In file included from /usr/include/absl/base/config.h:86,
 from /usr/include/absl/base/attributes.h:37,
 from /usr/include/absl/base/thread_annotations.h:37,
 from /<>/src/utils/threadpool.h:42,
 from /<>/src/threading_strategy.h:24,
 from /<>/src/frame_scratch_buffer.h:31,
 from /<>/src/decoder_impl.h:30,
 from /<>/src/decoder_impl.cc:15:
/usr/include/absl/base/policy_checks.h:79:2: error: #error "C++ versions less
than C++14 are not supported."
   79 | #error "C++ versions less than C++14 are not supported."
  |  ^


/usr/bin/c++ -DLIBGAV1_CMAKE=1 -DLIBGAV1_ENABLE_AVX2=0 -DLIBGAV1_ENABLE_NEON=0
-DLIBGAV1_ENABLE_SSE4_1=0 -DLIBGAV1_FLAGS_SRCDIR=\"/<>\"
-DLIBGAV1_FLAGS_TMPDIR=\"/tmp\" -DLIBGAV1_MAX_BITDEPTH=10 -I/<>
-I/<>/src -I/<>/obj-arm-linux-gnueabi
-I/<>/third_party/abseil-cpp
-I/<>/third_party/googletest/googlemock/include
-I/<>/third_party/googletest/googletest/include
-I/<>/third_party/googletest/googletest -g -O2 -ffile-prefix-
map=/<>=. -flto=auto -ffat-lto-objects -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
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -Wdate-time
-D_FORTIFY_SOURCE=2 -std=gnu++11 -fPIC -Wall -Wextra -Wmissing-declarations
-Wno-sign-compare -fvisibility=hidden -fvisibility-inlines-hidden -Wno-format-
truncation -MD -MT CMakeFiles/libgav1_utils.dir/src/utils/segmentation.cc.o -MF
CMakeFiles/libgav1_utils.dir/src/utils/segmentation.cc.o.d -o
CMakeFiles/libgav1_utils.dir/src/utils/segmentation.cc.o -c
/<>/src/utils/segmentation.cc
In file included from /usr/include/absl/time/time.h:89,
 from /usr/include/absl/time/clock.h:26,
 from
/usr/include/absl/synchronization/internal/kernel_timeout.h:30,
 from /usr/include/absl/synchronization/mutex.h:74,
 from /<>/src/utils/threadpool.h:43:
/usr/include/absl/strings/string_view.h: In member function ‘constexpr void
absl::debian5::string_view::remove_prefix(size_type) const’:
/usr/include/absl/strings/string_view.h:340:10: error: assignment of member
‘absl::debian5::string_view::ptr_’ in read-only object
  340 | ptr_ += n;
  | ~^~~~
/usr/include/absl/strings/string_view.h:341:13: error: assignment of member
‘absl::debian5::string_view::length_’ in read-only object
  341 | length_ -= n;
  | ^~~~
/usr/include/absl/strings/string_view.h: In member function ‘constexpr void
absl::debian5::string_view::remove_suffix(size_type) const’:
/usr/include/absl/strings/string_view.h:350:13: error: assignment of member
‘absl::debian5::string_view::length_’ in read-only object
  350 | length_ -= n;
  | ^~~~
/usr/include/absl/strings/string_view.h: In member function ‘constexpr void
absl::debian5::string_view::swap(absl::debian5::string_view&) const’:
/usr/include/absl/strings/string_view.h:358:13: error: passing ‘const
absl::debian5::string_view’ as ‘this’ argument discards qualifiers
[-fpermissive]
  358 | *this = s;
  | ^
/usr/include/absl/strings/string_view.h:161:7: note:   in call to
‘absl::debian5::string_view& absl::debian5::string_view::operator=(const
absl::debian5::string_view&)’
  161 | class string_view {
  |   ^~~
make[3]: Leaving directory '/<>/obj-arm-linux-gnueabi'
[ 15%] Built target libgav1_file_writer
/usr/include/absl/time/time.h: In constructor
‘absl::debian5::Duration::HiRep::HiRep(int64_t)’:
/usr/include/absl/time/time.h:256:5: error: ‘constexpr’ constructor does not
have empty body
  256 | }
  | ^
/usr/include/absl/time/time.h: In member function ‘constexpr int64_t
absl::debian5::Duration::HiRep::Get() const’:
/usr/include/absl/time/time.h:276:5: error: body of ‘constexpr’ function
‘constexpr int64_t absl::debian5::Duration::HiRep::Get() const’ not a return-
statement
  276 | }
  | ^
[ 16%] Building CXX object
CMakeFiles/libgav1_utils.dir/src/utils/segmentation_map.cc.o
/usr/include/absl/time/time.h: In member function ‘constexpr
absl::debian5::Duration::HiRep&
absl::debian5::Duration::HiRep::operator=(int64_t) const’:
/usr/include/absl/time/time.h:284:11: error: assignment of member
‘absl::debian5::Duration::HiRep::hi_’ in read-only object
  284 |   hi_ = static_cast(unsigned_value >> 32);
  |   ^
/usr/include/absl/time/time.h:285:11: error: assignment of member
‘absl::debian5::Duration::HiRep::lo_’ in read-only object
  285 |   lo_ = static_cast(unsigned_value);
  |   ^~~
/usr/include/absl/time/time.h:286:14: error: binding reference of 

Bug#1068179: FTBFS: error: warning: assignment to ‘ffi_arg’ {aka ‘long unsigned int’} from ‘HsPtr’ {aka ‘void *’} makes integer from pointer without a cast

2024-04-01 Thread Andrey Rakhmatullin
Source: haskell-gi-gtk
Version: 3.0.41-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=haskell-gi-
gtk=armel=3.0.41-1%2Bb6=1711939860=0

[693 of 708] Compiling GI.Gtk.Objects.ComboBox ( GI/Gtk/Objects/ComboBox.hs,
dist-ghc/build/GI/Gtk/Objects/ComboBox.o, dist-
ghc/build/GI/Gtk/Objects/ComboBox.dyn_o )
/tmp/ghc3782917_0/ghc_5999.c: In function
‘zdgizmgtkzm3zi0zi41zmIci0Q8dLkJXJcDCD98TjYlzdGIziGtkziObjectsziComboBoxzdgizzmgtkzzm3zzi0zzi41zzmIci0Q8dLkJXJcDCD98TjYlzuGIzziGtkzziObjectszziComboBoxzumkzzuComboBoxFormatEntryTextCallback’:

/tmp/ghc3782917_0/ghc_5999.c:52:17: error:
 warning: assignment to ‘ffi_arg’ {aka ‘long unsigned int’} from ‘HsPtr’
{aka ‘void *’} makes integer from pointer without a cast [-Wint-conversion]
   52 | *(ffi_arg*)resp = cret;
  | ^
   |
52 | *(ffi_arg*)resp = cret;
   | ^
/tmp/ghc3782917_0/ghc_6009.c: In function
‘zdgizmgtkzm3zi0zi41zmIci0Q8dLkJXJcDCD98TjYlzdGIziGtkziObjectsziComboBoxzdgizzmgtkzzm3zzi0zzi41zzmIci0Q8dLkJXJcDCD98TjYlzuGIzziGtkzziObjectszziComboBoxzumkzzuComboBoxFormatEntryTextCallback’:

/tmp/ghc3782917_0/ghc_6009.c:52:17: error:
 warning: assignment to ‘ffi_arg’ {aka ‘long unsigned int’} from ‘HsPtr’
{aka ‘void *’} makes integer from pointer without a cast [-Wint-conversion]
   52 | *(ffi_arg*)resp = cret;
  | ^
   |
52 | *(ffi_arg*)resp = cret;
   | ^


-- 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/16 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


Bug#1067055: openmpi: error: implicit declaration of function 'OPAL_THREAD_ADD_FETCH64'

2024-04-01 Thread Andrey Rakhmatullin
On Mon, Apr 01, 2024 at 12:05:30PM +0100, Alastair McKinstry wrote:
> There is a transition to openmpi-5 / mpi-defaults which is stalled by the
> t64 transition.
> 
> It drops 32-bit support from OpenMPI.
> 
> Because of this, I don't think the solution is to  port 32-bit atomics for
> armel/armhf, as it will be removed in a few weeks/months.
> 
> While we didn't want the transitions to be done simultaneously, it might be
> the best answer.
It may have been somewhat easier for armel/armhf bootstrapping/rebuilding
if MPI stuff was dropped there early, but that's already finished
successfully so it doesn't matter.
Note that openmpi built successfuly on all release architectures so this
bug doesn't apply to them anyway.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068149: FTBFS: Error: symbol `open64' is already defined

2024-03-31 Thread Andrey Rakhmatullin
Source: porg
Version: 2:0.10-1.2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=porg=armel=2%3A0.10-1.2%2Bb2=1711746873=0

/bin/bash ../../libtool  --tag=CC   --mode=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 -W -ansi -Wshadow -Wmissing-declarations -Wall -g -O2
-Werror=implicit-function-declaration -ffile-prefix-map=/<>=.
-fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-
security -c -o libporg_log_la-log.lo `test -f 'log.c' || echo './'`log.c
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 -W -ansi
-Wshadow -Wmissing-declarations -Wall -g -O2 -Werror=implicit-function-
declaration -ffile-prefix-map=/<>=. -fstack-protector-strong
-fstack-clash-protection -Wformat -Werror=format-security -c log.c  -fPIC -DPIC
-o .libs/libporg_log_la-log.o
log.c: In function ‘open’:
log.c:281:27: warning: ‘nonnull’ argument ‘path’ compared to NULL [-Wnonnull-
compare]
  281 | if (!porg_tmpfile && path && !strncmp(path, "/proc/", 6))
  | ~~^~~
log.c: In function ‘open64’:
log.c:385:27: warning: ‘nonnull’ argument ‘path’ compared to NULL [-Wnonnull-
compare]
  385 | if (!porg_tmpfile && path && !strncmp(path, "/proc/", 6))
  | ~~^~~
log.c: In function ‘porg_get_absolute_path’:
log.c:106:17: warning: ‘__builtin_strncpy’ output may be truncated copying 4095
bytes from a string of length 4095 [-Wstringop-truncation]
  106 | strncpy(abs_path, aux, PORG_BUFSIZE - 1);
  | ^
log.c:100:17: warning: ‘__builtin_strncpy’ output may be truncated copying 4095
bytes from a string of length 4095 [-Wstringop-truncation]
  100 | strncpy(abs_path, cwd, PORG_BUFSIZE - 1);
  | ^
/tmp/cc7rmZAz.s: Assembler messages:
/tmp/cc7rmZAz.s:2214: Error: symbol `open64' is already defined
/tmp/cc7rmZAz.s:2581: Error: symbol `openat64' is already defined
/tmp/cc7rmZAz.s:3220: Error: symbol `creat64' is already defined
/tmp/cc7rmZAz.s:3296: Error: symbol `fopen64' is already defined
/tmp/cc7rmZAz.s:3380: Error: symbol `freopen64' is already defined


-- 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/16 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


Bug#1066760: xine-ui: FTBFS: dh_install: error: missing files, aborting

2024-03-31 Thread Andrey Rakhmatullin
On Wed, Mar 13, 2024 at 03:54:42PM +0100, Lucas Nussbaum wrote:
> >dh_install
> > dh_install: warning: Cannot find (any matches for) "usr/bin/aaxine" (tried 
> > in ., debian/tmp)
The reason for this:

checking for AALIB version >= 1.2.0... no
*** Could not run AALIB test program, checking why...
*** The test program compiled, but did not run. This usually means
*** that the run-time linker is not finding AALIB or finding the wrong
*** version of AALIB. If it is not finding AALIB, you'll need to set your
*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point
*** to the installed location  Also, make sure you have run ldconfig if that
*** is required on your system
***
*** If you have an old version installed, it is best to remove it, although
*** you may also be able to get things to work by modifying LD_LIBRARY_PATH
***

libaa1-dev is installed but I suspect the test fails with
-Werror=implicit-declaration.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068147: FTBFS: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘__time64_t’ {aka ‘long long int’}

2024-03-31 Thread Andrey Rakhmatullin
Source: pesign
Version: 116-6
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=pesign=armhf=116-6%2Bb2=1711718501=0

In file included from pesign.h:18,
 from cms_common.c:21:
cms_common.c: In function ‘cms_set_pw_data’:
util.h:275:23: error: format ‘%ld’ expects argument of type ‘long int’, but
argument 2 has type ‘__time64_t’ {aka ‘long long int’} [-Werror=format=]
  275 | warnx("%ld.%lu %s:%s():%d: " fmt,   \
  |   ^~
util.h:286:25: note: in expansion of macro ‘dbgprintf_’
  286 |
dbgprintf_(CAT(CAT(CAT(tv_,__COUNTER__),__LINE__),_),   \
  | ^~
util.h:292:19: note: in expansion of macro ‘dbgprintf’
  292 | #define ingress() dbgprintf("ingress");
  |   ^
cms_common.c:302:9: note: in expansion of macro ‘ingress’
  302 | ingress();
  | ^~~


-- 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/16 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


Bug#1068146: FTBFS: tests failed

2024-03-31 Thread Andrey Rakhmatullin
Source: dipy
Version: 1.9.0-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=dipy=armel=1.9.0-1=1711658317=0

=== short test summary info

FAILED dipy/reconst/tests/test_shore.py::test_shore_fitting_no_constrain_e0
FAILED dipy/viz/tests/test_util.py::test_check_img_shapes -
numpy.core._excep...


-- 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/16 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



Bug#1068145: FTBFS: chmod: cannot access 'debian/python-mpltoolkits.basemap-data/usr/share/basemap/data/*': No such file or directory

2024-03-31 Thread Andrey Rakhmatullin
Source: basemap
Version: 1.2.2+dfsg-4
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=basemap=amd64=1.2.2%2Bdfsg-4=1711493603=0

   debian/rules override_dh_python3
make[1]: Entering directory '/<>'
dh_python3
chmod -x debian/python-mpltoolkits.basemap-data/usr/share/basemap/data/*
chmod: cannot access 'debian/python-mpltoolkits.basemap-
data/usr/share/basemap/data/*': No such file or directory


-- 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/16 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



Bug#1067561: FTBFS: Error: symbol `open64' is already defined

2024-03-31 Thread Andrey Rakhmatullin
On Sat, Mar 23, 2024 at 09:56:58PM +0500, Andrey Rakhmatullin wrote:
> /bin/bash ../../libtool  --tag=CC   --mode=link gcc -Wall
> -Wstrict-prototypes  -Wnested-externs
> -Werror=missing-prototypes  -Werror=implicit-function-
> declaration  -Werror=pointer-arith
> -Werror=init-self  -Werror=format-security
> -Werror=format=2  -Werror=missing-include-dirs
> -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabi/glib-2.0/include
> -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabi/glib-2.0/include
> -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabi/glib-2.0/include -pthread
> -I/usr/include/libmount -I/usr/include/blkid  -I/usr/include/gio-unix-2.0
> -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabi/glib-2.0/include -pthread
> -I/usr/include/libmount -I/usr/include/blkid  -g -O2 
> -Werror=implicit-function-
> declaration -ffile-prefix-map=/<>=. -fstack-protector-strong
> -fstack-clash-protection -Wformat -Werror=format-security -O0  -Wl,-z,relro
> -Wl,-z,now -Wl,-O1 -o Xvnc Xvnc-Xvnc.o Xvnc-x-authority.o Xvnc-x-common.o 
> Xvnc-
> x-server.o Xvnc-status.o -lgobject-2.0 -lglib-2.0  -lglib-2.0  -lgio-2.0
> -lgobject-2.0 -lglib-2.0  -lgio-2.0 -lgobject-2.0 -lglib-2.0
> /tmp/ccCHYR2t.s: Assembler messages:
> /tmp/ccCHYR2t.s:2779: Error: symbol `open64' is already defined
> /tmp/ccCHYR2t.s:3181: Error: symbol `creat64' is already defined
> /tmp/ccCHYR2t.s:3508: Error: symbol `__stat64_time64' is already defined
I assume the following patch from Ubuntu fixes this:

--- a/tests/src/libsystem.c
+++ b/tests/src/libsystem.c
@@ -1,6 +1,9 @@
 #define _GNU_SOURCE
 #define __USE_GNU

+#undef _FILE_OFFSET_BITS
+#undef _TIME_BITS
+
 #include 

 #include 

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068142: Build-Depends on missing librust-quick-xml-0.31+default-dev

2024-03-31 Thread Andrey Rakhmatullin
Source: rust-gsettings-macro
Version: 0.2.0-2
Severity: serious
Tags: ftbfs



-- 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/16 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



Bug#1066416: granite-7: FTBFS: ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:248:(.text+0x70c): undefined reference to `gtk_calendar_get_year'

2024-03-31 Thread Andrey Rakhmatullin
Control: reassign -1 valac
Control: affects -1 src:granite-7

On Wed, Mar 13, 2024 at 01:03:07PM +0100, Lucas Nussbaum wrote:
> Relevant part (hopefully):
> > /usr/bin/ld: 
> > lib/libgranite-7.so.7.4.0.p/meson-generated_Widgets_DatePicker.c.o: in 
> > function `_granite_date_picker___lambda10_':
> > ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:248:(.text+0x70c):
> >  undefined reference to `gtk_calendar_get_year'
> > /usr/bin/ld: 
> > ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:251:(.text+0x71a):
> >  undefined reference to `gtk_calendar_get_month'
> > /usr/bin/ld: 
> > ./obj-x86_64-linux-gnu/lib/libgranite-7.so.7.4.0.p/Widgets/DatePicker.c:254:(.text+0x727):
> >  undefined reference to `gtk_calendar_get_day'
These functions are added in Gtk4 4.14 while we have 4.12. The code is
generated from lib/Widgets/DatePicker.vala which doesn't refer to them
directly and was built successfully before so I assume it's a bug in valac
code generation.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068089: FTBFS: error: cannot convert ‘long int*’ to ‘const time_t*’ {aka ‘const long long int*’}

2024-03-31 Thread Andrey Rakhmatullin
On Sat, Mar 30, 2024 at 05:25:21PM +0500, Andrey Rakhmatullin wrote:
> plugins/about/aboutinterface.cpp: In member function ‘char*
> AboutInterface::ntpdate(char*)’:
> plugins/about/aboutinterface.cpp:438:18: error: cannot convert ‘long int*’ to
> ‘const time_t*’ {aka ‘const long long int*’}
>   438 | return ctime();
The code talks to the network (implementing the NTP protocol I guess?) and
so it's probably fragile. The comment suggests tmit is explicitly not a
time_t.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068068: Need rebootstrapping on armel and armhf

2024-03-30 Thread Andrey Rakhmatullin
On Sat, Mar 30, 2024 at 02:14:24PM +0100, Frank B. Brokken wrote:
> > there seems to be zero packaging-level support for bootstrapping, the
> > packages are not cross-buildable and the upstream bootstrapping instructions
> > are too tedious,
> 
> So far no issues were encountered when the bootstrapping procedure as
> described in the README.bobatbootstrap file in icmake's src distribution is
> followed. 
> 
> If you could be a bit more specific about what you mean by 'bootstrapping
> instructions are too tedious' then I'm sure those instructions can be changed
> so that they're less tedious. 
It looked to me that I need to make a chroot, run the bootstrap script to
build some kind of local bootstrap bobcat, build local icmake with that
bobcat, build local bobcat with that icmake, build the icmake .deb,
install it in a new chroot, build the bobcat .deb, then ideally build a
clean icmake .deb again; and do that twice as two architectures need
bootstrapping. This is much much much more than I'm going to do for random
packages so I decided against it.

> Wrt the package not being cross-buildable:
> 
> The https://packages.debian.org/sid/libbobcat-dev shows the following lines
> for armel and armhf:
> 
> armel   6.04.00-1   1,604.2 kB  8,598.0 kB  [list of files]
> armhf   6.04.00-1   1,608.4 kB  8,126.0 kB  [list of files] 
> 
> although I also see packages for which version 6.04.00-1+b2 or 6.04.00-1+b4 is
> listed. So maybe for unstable some issues recently appeared?
Not sure what did you want to say here, sorry? By not being
cross-buildable I mean they lack cross-building support, both at the
packaging level (no proper M-A headers, no B-D annotation) and at the
upstream level (the gcc running was not the cross one).

> Also, the bootstrapping procedure is only required when icmake isn't avaialble
> yet. For the construction of the bobcat library icmake 11.01.02-1 is required,
> and icmake.01.02-1 needs libbobcat-dev >= 5.07.00, which is available since
> bullseye (oldstable).
icmake is indeed not available on armel and armhf until libbobcat6 is
rebuilt against libssl3t64.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1068090: Update Build-Depends for the time64 library renames

2024-03-30 Thread Andrey Rakhmatullin
Source: tetzle
Version: 2.2.3-1
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libqt6*, this needs to be changed to
libqt6*t64 if it's 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



Bug#1068089: FTBFS: error: cannot convert ‘long int*’ to ‘const time_t*’ {aka ‘const long long int*’}

2024-03-30 Thread Andrey Rakhmatullin
Source: ukui-control-center
Version: 3.22.1.25-2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=ukui-control-
center=armhf=3.22.1.25-2=1711794461=0

plugins/about/aboutinterface.cpp: In member function ‘char*
AboutInterface::ntpdate(char*)’:
plugins/about/aboutinterface.cpp:438:18: error: cannot convert ‘long int*’ to
‘const time_t*’ {aka ‘const long long int*’}
  438 | return ctime();
  |  ^
  |  |
  |  long int*
In file included from /usr/include/features.h:490,
 from /usr/include/arm-linux-
gnueabihf/c++/13/bits/os_defines.h:39,
 from /usr/include/arm-linux-
gnueabihf/c++/13/bits/c++config.h:679,
 from /usr/include/c++/13/type_traits:38,
 from /usr/include/arm-linux-gnueabihf/qt5/QtCore/qglobal.h:45,
 from /usr/include/arm-linux-
gnueabihf/qt5/QtCore/qnamespace.h:43,
 from /usr/include/arm-linux-
gnueabihf/qt5/QtCore/qobjectdefs.h:48,
 from /usr/include/arm-linux-gnueabihf/qt5/QtCore/qobject.h:46,
 from /usr/include/arm-linux-gnueabihf/qt5/QtCore/QObject:1,
 from plugins/about/aboutinterface.h:21,
 from plugins/about/aboutinterface.cpp:18:
/usr/include/time.h:186:14: note:   initializing argument 1 of ‘char*
ctime(const time_t*)’
  186 | extern char *__REDIRECT_NTH (ctime, (const time_t *__timer),
__ctime64);
  |  ^~


-- 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


Bug#1068080: Depends on a pre-t64 library name: libvdeplug2

2024-03-30 Thread Andrey Rakhmatullin
Package: libvdeslirp0
Version: 0.1.1-1
Severity: serious

libvdeslirp0 explicitly Depends on libvdeplug2, this needs to be changed to
libvdeplug2t64.


-- 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

Versions of packages libvdeslirp0 depends on:
ii  libc6 2.37-15.1
ii  libslirp0 4.7.0-1+b1
ii  libvdeplug2t64 [libvdeplug2]  4.0.1-5.1

libvdeslirp0 recommends no packages.

libvdeslirp0 suggests no packages.



Bug#1068078: FTBFS on armel: shiboken2:smart::smart_pointer Newly detected Real test failure!

2024-03-30 Thread Andrey Rakhmatullin
Source: pyside2
Version: 5.15.12-6.1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=pyside2=armel=5.15.12-6.1=1711789575=0

RUN 2: Test project /<>/pyside3_build/py3.11-qt5.15.10-32bit-
relwithdebinfo/shiboken2
RUN 2: Start 181: smart_smart_pointer
RUN 2: 1/1 Test #181: smart_smart_pointer ..***Failed0.23 sec
RUN 2: Running garbage collector for reference test
RUN 2: FFF
RUN 2: ==
RUN 2: FAIL: testObjSmartPointer
(__main__.SmartPointerTests.testObjSmartPointer)
RUN 2: --
RUN 2: Traceback (most recent call last):
RUN 2:   File
"/<>/sources/shiboken2/tests/smartbinding/smart_pointer_test.py",
line 94, in testObjSmartPointer
RUN 2: self.assertEqual(integerCount(), 1)
RUN 2: AssertionError: 2 != 1
RUN 2:
RUN 2: ==
RUN 2: FAIL: testSmartPointerConversions
(__main__.SmartPointerTests.testSmartPointerConversions)
RUN 2: --
RUN 2: Traceback (most recent call last):
RUN 2:   File
"/<>/sources/shiboken2/tests/smartbinding/smart_pointer_test.py",
line 221, in testSmartPointerConversions
RUN 2: self.assertEqual(integerCount(), 1)
RUN 2: AssertionError: 2 != 1
RUN 2:
RUN 2: ==
RUN 2: FAIL: testSmartPointersWithNamespace
(__main__.SmartPointerTests.testSmartPointersWithNamespace)
RUN 2: --
RUN 2: Traceback (most recent call last):
RUN 2:   File
"/<>/sources/shiboken2/tests/smartbinding/smart_pointer_test.py",
line 182, in testSmartPointersWithNamespace
RUN 2: self.assertEqual(integerCount(), 2)
RUN 2: AssertionError: 3 != 2
RUN 2:
RUN 2: --
RUN 2: Ran 7 tests in 0.010s
RUN 2:
RUN 2: FAILED (failures=3)
RUN 2:
RUN 2:
RUN 2: 0% tests passed, 1 tests failed out of 1
RUN 2:
RUN 2: Total Test time (real) =   0.25 sec
RUN 2:
RUN 2: The following tests FAILED:
RUN 2:  181 - smart_smart_pointer (Failed)
RUN 2: Errors while running CTest
End of the test run


RES 2: Test #181: FAIL!  smart::smart_pointer()


-- 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



Bug#1068075: Update Build-Depends for the time64 library renames

2024-03-30 Thread Andrey Rakhmatullin
Source: tanglet
Version: 1.6.5-1
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libqt6*, this needs to be changed to
libqt6*t64 if it's 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



Bug#1068074: Update Build-Depends for the time64 library renames

2024-03-30 Thread Andrey Rakhmatullin
Source: koko
Version: 23.08.5ds.1-1
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libqt5gui5, this needs to be changed to
libqt5gui5t64 if it's 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



Bug#1068068: Need rebootstrapping on armel and armhf

2024-03-30 Thread Andrey Rakhmatullin
Package: icmake,libbobcat6
Severity: serious
Tags: ftbfs

As src:icmake B-D:libbobcat-dev, src:bobcat B-D:icmake, there seems to be zero
packaging-level support for bootstrapping, the packages are not cross-buildable
and the upstream bootstrapping instructions are too tedious, I'm filing this
for visibility (as there are ~14 packages B-D:libbobcat-dev).


-- 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



Bug#1068064: Update Build-Depends for the time64 library renames

2024-03-30 Thread Andrey Rakhmatullin
Source: node-node-sass
Version: 7.0.3git20221109.ee13eb9dfsg-3
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libuv1, this needs to be changed to
libuv1t64 if it's 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



Bug#1068062: Update Build-Depends for the time64 library renames

2024-03-30 Thread Andrey Rakhmatullin
Source: workrave
Version: 1.10.52-1
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libglib2.0-0, this needs to be changed to
libglib2.0-0t64 if it's 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



Bug#1066656: libkysdk-base: diff for NMU version 2.2.0.1-1.1

2024-03-30 Thread Andrey Rakhmatullin
Control: tags 1066656 + patch
Control: tags 1066656 + pending

Dear maintainer,

I've prepared an NMU for libkysdk-base (versioned as 2.2.0.1-1.1) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru libkysdk-base-2.2.0.1/debian/changelog libkysdk-base-2.2.0.1/debian/changelog
--- libkysdk-base-2.2.0.1/debian/changelog	2023-09-20 07:25:52.0 +0500
+++ libkysdk-base-2.2.0.1/debian/changelog	2024-03-30 12:44:02.0 +0500
@@ -1,3 +1,10 @@
+libkysdk-base (2.2.0.1-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with -Werror=implicit-function-declaration (Closes: #1066656).
+
+ -- Andrey Rakhmatullin   Sat, 30 Mar 2024 12:44:02 +0500
+
 libkysdk-base (2.2.0.1-1) unstable; urgency=medium
 
   * New upstream release.
diff -Nru libkysdk-base-2.2.0.1/debian/patches/fix-implicit-function-declaration.patch libkysdk-base-2.2.0.1/debian/patches/fix-implicit-function-declaration.patch
--- libkysdk-base-2.2.0.1/debian/patches/fix-implicit-function-declaration.patch	1970-01-01 05:00:00.0 +0500
+++ libkysdk-base-2.2.0.1/debian/patches/fix-implicit-function-declaration.patch	2024-03-30 12:44:02.0 +0500
@@ -0,0 +1,31 @@
+Description: Add missing header includes.
+Author: Andrey Rakhmatullin 
+Bug-Debian: https://bugs.debian.org/1066656
+Last-Update: 2024-03-30
+
+Index: libkysdk-base-2.2.0.1/src/config/libkyconf.c
+===
+--- libkysdk-base-2.2.0.1.orig/src/config/libkyconf.c
 libkysdk-base-2.2.0.1/src/config/libkyconf.c
+@@ -21,6 +21,9 @@
+ 
+ #include "libkyconf.h"
+ #include "structparse.h"
++#include "jsonparse.h"
++#include "gsettingsparse.h"
++#include "xmlparse.h"
+ #include 
+ #include 
+ #include 
+Index: libkysdk-base-2.2.0.1/src/log/writeFile.c
+===
+--- libkysdk-base-2.2.0.1.orig/src/log/writeFile.c
 libkysdk-base-2.2.0.1/src/log/writeFile.c
+@@ -25,6 +25,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ static int verify_file(char *pFileName)
+ {
diff -Nru libkysdk-base-2.2.0.1/debian/patches/series libkysdk-base-2.2.0.1/debian/patches/series
--- libkysdk-base-2.2.0.1/debian/patches/series	1970-01-01 05:00:00.0 +0500
+++ libkysdk-base-2.2.0.1/debian/patches/series	2024-03-30 12:44:02.0 +0500
@@ -0,0 +1 @@
+fix-implicit-function-declaration.patch


signature.asc
Description: PGP signature


Bug#1066328: scalapack: diff for NMU version 2.2.1-3.1

2024-03-30 Thread Andrey Rakhmatullin
Control: tags 1066328 + patch
Control: tags 1066328 + pending

Dear maintainer,

I've prepared an NMU for scalapack (versioned as 2.2.1-3.1) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru scalapack-2.2.1/debian/changelog scalapack-2.2.1/debian/changelog
--- scalapack-2.2.1/debian/changelog	2023-10-26 03:08:06.0 +0500
+++ scalapack-2.2.1/debian/changelog	2024-03-30 11:47:52.0 +0500
@@ -1,3 +1,11 @@
+scalapack (2.2.1-3.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Disable -Werror=implicit-function-declaration as that's the only viable
+way to make this build (Closes: #1066328).
+
+ -- Andrey Rakhmatullin   Sat, 30 Mar 2024 11:47:52 +0500
+
 scalapack (2.2.1-3) unstable; urgency=medium
 
   * Team upload.
diff -Nru scalapack-2.2.1/debian/rules scalapack-2.2.1/debian/rules
--- scalapack-2.2.1/debian/rules	2023-10-26 03:08:06.0 +0500
+++ scalapack-2.2.1/debian/rules	2024-03-30 11:47:00.0 +0500
@@ -6,6 +6,10 @@
 export DEB_CXXFLAGS_MAINT_APPEND  = -Wall -pedantic
 export DEB_FFLAGS_MAINT_APPEND  = -std=legacy
 export DEB_LDFLAGS_MAINT_STRIP = -Wl,-Bsymbolic-functions
+# remove -Werror=implicit-function-declaration until BLACS is properly fixed
+# https://bugs.debian.org/1066328
+# https://github.com/Reference-ScaLAPACK/scalapack/issues/31
+export DEB_BUILD_MAINT_OPTIONS = qa=-bug-implicit-func
 
 include /usr/share/dpkg/architecture.mk
 


signature.asc
Description: PGP signature


Bug#1068059: Update Build-Depends for the time64 library renames

2024-03-30 Thread Andrey Rakhmatullin
Source: gimp-gap
Version: 2.6.0dfsg-7
Severity: serious
Tags: ftbfs

The package explicitly Build-Depends: libglib2.0-0, this needs to be changed to
libglib2.0-0t64 if it's 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



Bug#1068040: Update Build-Depends for the time64 library renames

2024-03-29 Thread Andrey Rakhmatullin
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



Bug#1068035: FTBFS: wrong --link-doc target

2024-03-29 Thread Andrey Rakhmatullin
Source: mdbtools
Version: 1.0.0+dfsg-1.2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=mdbtools=arm64=1.0.0%2Bdfsg-1.2%2Bb2=1711715505=0

dh_installdocs --no-package=mdbtools-doc --link-doc=libmdb3
dh_installdocs: error: Requested unknown package libmdb3 via --link-doc,
expected one of: mdbtools mdbtools-dev libmdb3t64 libmdbsql3t64 odbc-mdbtools
mdbtools-doc

It should be changed to libmdb3t64.


-- 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



Bug#1068038: FTBFS: error: ‘struct input_event’ has no member named ‘time’

2024-03-29 Thread Andrey Rakhmatullin
Source: flightgear
Version: 1:2020.3.18+dfsg-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=flightgear=armhf=1%3A2020.3.18%2Bdfsg-1%2Bb2=1711729288=0

/<>/src/Input/FGLinuxEventInput.cxx: In member function ‘virtual
void FGLinuxInputDevice::Send(const char*, double)’:
/<>/src/Input/FGLinuxEventInput.cxx:418:7: error: ‘struct
input_event’ has no member named ‘time’
  418 |   evt.time.tv_sec = 0;
  |   ^~~~
/<>/src/Input/FGLinuxEventInput.cxx:419:7: error: ‘struct
input_event’ has no member named ‘time’
  419 |   evt.time.tv_usec = 0;
  |   ^~~~


-- 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


Bug#1068037: FTBFS: error: implicit declaration of function ‘get_file_lines’

2024-03-29 Thread Andrey Rakhmatullin
Source: mdk4
Version: 4.2-3
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=mdk4=arm64=4.2-3%2Bb2=1711715545=0

poc.c:148:30: error: implicit declaration of function ‘get_file_lines’
[-Werror=implicit-function-declaration]
  148 | file_lines = get_file_lines(file_name);
  |  ^~
poc.c:160:38: warning: pointer targets in passing argument 1 of ‘fgets’ differ
in signedness [-Wpointer-sign]
  160 | if(fgets(buf, sizeof(buf), fp1))
  |  ^~~
  |  |
  |  unsigned char *
In file included from /usr/include/stdio.h:906,
 from poc.c:1:
/usr/include/aarch64-linux-gnu/bits/stdio2.h:209:25: note: expected ‘char *
restrict’ but argument is of type ‘unsigned char *’
  209 | fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
  |~^~~
poc.c:165:59: error: implicit declaration of function ‘str_to_hex’
[-Werror=implicit-function-declaration]
  165 | poc_pkts[i].pkts[j].len =
str_to_hex(buf, poc_pkts[i].pkts[j].data, sizeof(poc_pkts[i].pkts[j].data));
  |   ^~


-- 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


Bug#1068036: FTBFS: no B-D: libtirpc-dev

2024-03-29 Thread Andrey Rakhmatullin
Source: snort
Version: 2.9.15.1-6
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=snort=arm64=2.9.15.1-6%2Bb4=1711721617=0

checking for bindresvport in -ltirpc... no
no

 ERROR! tirpc not found, get it by running
 apt install libtirpc-devel


-- 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



Bug#1068031: FTBFS: checking for locking method... configure: error: fcntl test failed

2024-03-29 Thread Andrey Rakhmatullin
Source: maildrop
Version: 2.9.3-2.1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=maildrop=armel=2.9.3-2.1%2Bb2=1711722445=0

checking for locking method... configure: error: fcntl test failed.
configure: error: ./configure failed for libs/liblock



-- 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



Bug#1068032: FTBFS: error: implicit declaration of function ‘FreeTextEvent’

2024-03-29 Thread Andrey Rakhmatullin
Source: stimfit
Version: 0.16.0-1.2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=stimfit=arm64=0.16.0-1.2%2Bb5=1711722178=0

biosig4c++/t210/sopen_alpha_read.c: In function ‘sopen_alpha_read’:
biosig4c++/t210/sopen_alpha_read.c:381:41: error: implicit declaration of
function ‘FreeTextEvent’ [-Werror=implicit-function-declaration]
  381 | FreeTextEvent(hdr, n, t4);
  | ^
biosig4c++/t210/sopen_alpha_read.c:533:31: warning: assignment discards ‘const’
qualifier from pointer target type [-Wdiscarded-qualifiers]
  533 | hdr->FileName = FileName;
  |   ^
biosig4c++/t210/sopen_axg_read.c: In function ‘sopen_axg_read’:
biosig4c++/t210/sopen_axg_read.c:612:17: error: implicit declaration of
function ‘strptime’; did you mean ‘strftime’? [-Werror=implicit-function-
declaration]
  612 | strptime(strstr(Notes,"Created on ")+11, "%a %b %d %Y",
);
  | ^~~~
  | strftime


-- 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


Bug#1068030: FTBFS on armel: undefined reference to `__atomic_load_8'

2024-03-29 Thread Andrey Rakhmatullin
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



Bug#1068029: FTBFS: error: format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type ‘time_t’ {aka ‘long long int’}

2024-03-29 Thread Andrey Rakhmatullin
Source: nfstrace
Version: 0.4.3.2+git20200805+b220d04-3
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=nfstrace=armhf=0.4.3.2%2Bgit20200805%2Bb220d04-3%2Bb2=1711734395=0

/<>/analyzers/src/watch/nc_windows/header_window.cpp: In member
function ‘void HeaderWindow::update()’:
/<>/analyzers/src/watch/nc_windows/header_window.cpp:77:83: error:
format ‘%ld’ expects argument of type ‘long int’, but argument 5 has type
‘time_t’ {aka ‘long long int’} [-Werror=format=]
   77 | mvwprintw(_window, HEADER::ELAPSED_LINE, FIRST_CHAR_POS, "Elapsed
time:  \t %ld days; %ld:%ld:%ld times",
  |
~~^
  |
|
  |
long int
  |
%lld
   78 |   shift_time / SECINDAY, shift_time % SECINDAY / SECINHOUR,
shift_time % SECINHOUR / SECINMIN, shift_time % SECINMIN);
  |   ~
  |  |
  |  time_t {aka long long int}
/<>/analyzers/src/watch/nc_windows/header_window.cpp:77:93: error:
format ‘%ld’ expects argument of type ‘long int’, but argument 6 has type
‘time_t’ {aka ‘long long int’} [-Werror=format=]
   77 | mvwprintw(_window, HEADER::ELAPSED_LINE, FIRST_CHAR_POS, "Elapsed
time:  \t %ld days; %ld:%ld:%ld times",
  |
~~^
  |
|
  |
long int
  |
%lld
   78 |   shift_time / SECINDAY, shift_time % SECINDAY / SECINHOUR,
shift_time % SECINHOUR / SECINMIN, shift_time % SECINMIN);
  |  ~
  ||
  |time_t {aka
long long int}
/<>/analyzers/src/watch/nc_windows/header_window.cpp:77:97: error:
format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type
‘time_t’ {aka ‘long long int’} [-Werror=format=]
   77 | mvwprintw(_window, HEADER::ELAPSED_LINE, FIRST_CHAR_POS, "Elapsed
time:  \t %ld days; %ld:%ld:%ld times",
  |
~~^
  |
|
  |
long int
  |
%lld
   78 |   shift_time / SECINDAY, shift_time % SECINDAY / SECINHOUR,
shift_time % SECINHOUR / SECINMIN, shift_time % SECINMIN);
  |
~
  |
|
  |
time_t {aka long long int}
/<>/analyzers/src/watch/nc_windows/header_window.cpp:77:101:
error: format ‘%ld’ expects argument of type ‘long int’, but argument 8 has
type ‘time_t’ {aka ‘long long int’} [-Werror=format=]
   77 | mvwprintw(_window, HEADER::ELAPSED_LINE, FIRST_CHAR_POS, "Elapsed
time:  \t %ld days; %ld:%ld:%ld times",
  |
~~^
  |
|
  |
long int
  |
%lld
   78 |   shift_time / SECINDAY, shift_time % SECINDAY / SECINHOUR,
shift_time % SECINHOUR / SECINMIN, shift_time % SECINMIN);
  |
~
  |
|
  |
time_t {aka long long int}


-- 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


Bug#1068027: FTBFS: error: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘time_t’ {aka ‘long long int’}

2024-03-29 Thread Andrey Rakhmatullin
Source: tcptrack
Version: 1.4.3-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=tcptrack=armhf=1.4.3-1%2Bb2=1711727713=0

TextUI.cc: In member function ‘void TextUI::drawui()’:
TextUI.cc:312:35: error: format ‘%ld’ expects argument of type ‘long int’, but
argument 2 has type ‘time_t’ {aka ‘long long int’} [-Werror=format=]
  312 | printw("%lds",ic->getIdleSeconds());
  | ~~^   
  |   | |
  |   long int  time_t {aka
long long int}
  | %lld
TextUI.cc:314:35: error: format ‘%ld’ expects argument of type ‘long int’, but
argument 2 has type ‘time_t’ {aka ‘long long int’} [-Werror=format=]
  314 | printw("%ldm",ic->getIdleSeconds()/60);
  | ~~^   ~~~
  |   |   |
  |   long inttime_t {aka
long long int}
  | %lld
TextUI.cc:316:35: error: format ‘%ld’ expects argument of type ‘long int’, but
argument 2 has type ‘time_t’ {aka ‘long long int’} [-Werror=format=]
  316 | printw("%ldh",ic->getIdleSeconds()/3600);
  | ~~^   ~
  |   |   |
  |   long inttime_t {aka
long long int}
  | %lld


-- 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


Bug#1068026: FTBFS on armel: undefined reference to symbol '__atomic_load_8@@LIBATOMIC_1.0'

2024-03-29 Thread Andrey Rakhmatullin
Source: corectl
Version: 1.4.0+ds-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=corectrl=armel=1.4.0%2Bds-1=1711731627=0

/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
CMakeFiles/test_all.dir/src/test_amdfanauto.cpp.o
CMakeFiles/test_all.dir/src/test_amdfancurve.cpp.o
CMakeFiles/test_all.dir/src/test_amdfanfixed.cpp.o
CMakeFiles/test_all.dir/src/test_amdfanmode.cpp.o
CMakeFiles/test_all.dir/src/test_amdgpuinfopm.cpp.o
CMakeFiles/test_all.dir/src/test_amdgpuinfopmoverdrive.cpp.o
CMakeFiles/test_all.dir/src/test_amdgpuinfouniqueid.cpp.o
CMakeFiles/test_all.dir/src/test_amdgpuinfovbios.cpp.o
CMakeFiles/test_all.dir/src/test_amdodfanauto.cpp.o
CMakeFiles/test_all.dir/src/test_amdodfancurve.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmadvanced.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmauto.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmautolegacy.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmautor600.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmdynamicfreq.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfixed.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfixedfreq.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfixedlegacy.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfixedr600.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfreqmode.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfreqod.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfreqrange.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmfreqvolt.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmoverclock.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmperfmode.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmpowercap.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmpowerprofile.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmpowerstate.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmvoltcurve.cpp.o
CMakeFiles/test_all.dir/src/test_amdpmvoltoffset.cpp.o
CMakeFiles/test_all.dir/src/test_amdppdpmhandler.cpp.o
CMakeFiles/test_all.dir/src/test_amdutils.cpp.o
CMakeFiles/test_all.dir/src/test_commandqueue.cpp.o
CMakeFiles/test_all.dir/src/test_commonutils.cpp.o
CMakeFiles/test_all.dir/src/test_control.cpp.o
CMakeFiles/test_all.dir/src/test_controlgroup.cpp.o
CMakeFiles/test_all.dir/src/test_controlmode.cpp.o
CMakeFiles/test_all.dir/src/test_cpu.cpp.o
CMakeFiles/test_all.dir/src/test_cpuepphandler.cpp.o
CMakeFiles/test_all.dir/src/test_cpufreq.cpp.o
CMakeFiles/test_all.dir/src/test_cpufreqmode.cpp.o
CMakeFiles/test_all.dir/src/test_cpuinfo.cpp.o
CMakeFiles/test_all.dir/src/test_cpuinfolscpu.cpp.o
CMakeFiles/test_all.dir/src/test_cpuinfoproccpuinfo.cpp.o
CMakeFiles/test_all.dir/src/test_cpuutils.cpp.o
CMakeFiles/test_all.dir/src/test_gpu.cpp.o
CMakeFiles/test_all.dir/src/test_gpuinfo.cpp.o
CMakeFiles/test_all.dir/src/test_gpuinfoopengl.cpp.o
CMakeFiles/test_all.dir/src/test_gpuinforevision.cpp.o
CMakeFiles/test_all.dir/src/test_gpuinfouevent.cpp.o
CMakeFiles/test_all.dir/src/test_gpuinfovram.cpp.o
CMakeFiles/test_all.dir/src/test_gpuinfovulkan.cpp.o
CMakeFiles/test_all.dir/src/test_hwidtranslator.cpp.o
CMakeFiles/test_all.dir/src/test_mathutils.cpp.o
CMakeFiles/test_all.dir/src/test_noop.cpp.o
CMakeFiles/test_all.dir/src/test_pmoverdrive.cpp.o
CMakeFiles/test_all.dir/src/test_pmpowerstatemode.cpp.o
CMakeFiles/test_all.dir/src/test_sensor.cpp.o
CMakeFiles/test_all.dir/src/test_stringutils.cpp.o
CMakeFiles/test_all.dir/src/test_swinfo.cpp.o
CMakeFiles/test_all.dir/src/test_swinfokernel.cpp.o
CMakeFiles/test_all.dir/src/test_swinfomesa.cpp.o
CMakeFiles/test_all.dir/src/test_sysmodel.cpp.o
CMakeFiles/catch_main.dir/src/main.cpp.o -o test_all
-Wl,-rpath,/<>/obj-arm-linux-gnueabi/src ../src/libcorectrl.so
/usr/lib/arm-linux-gnueabi/libspdlog.so.1.12.0 /usr/lib/libCatch2.a
/usr/lib/arm-linux-gnueabi/libfmt.so.9.1.0 /usr/lib/arm-linux-
gnueabi/libQt5Core.so.5.15.10
/usr/bin/ld: CMakeFiles/test_all.dir/src/test_sensor.cpp.o: undefined reference
to symbol '__atomic_load_8@@LIBATOMIC_1.0'
/usr/bin/ld: /lib/arm-linux-gnueabi/libatomic.so.1: error adding symbols: DSO
missing from command line


-- 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



Bug#1068025: FTBFS: error: invalid conversion from ‘size_t*’ {aka ‘unsigned int*’} to ‘long unsigned int*’

2024-03-29 Thread Andrey Rakhmatullin
Source: orthanc
Version: 1.12.3+dfsg-1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=orthanc=armhf=1.12.3%2Bdfsg-1=1711743863=0

/<>/OrthancFramework/Sources/Images/JpegWriter.cpp: In member
function ‘virtual void Orthanc::JpegWriter::WriteToMemoryInternal(std::string&,
unsigned int, unsigned int, unsigned int, Orthanc::PixelFormat, const void*)’:
/<>/OrthancFramework/Sources/Images/JpegWriter.cpp:199:34: error:
invalid conversion from ‘size_t*’ {aka ‘unsigned int*’} to ‘long unsigned int*’
[-fpermissive]
  199 | jpeg_mem_dest(, , );
  |  ^
  |  |
  |  size_t* {aka unsigned int*}


-- 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


Bug#1066328: Disabling the option

2024-03-29 Thread Andrey Rakhmatullin
As this is blocking quite a lot of stuff (via e.g. petsc) and there is no
progress either upstream or in Debian on this problem, and assuming it's
not viable to remove this build-dep from all reverse deps, I propose using
DEB_BUILD_MAINT_OPTIONS = qa=-bug-implicit-func and hoping that this
doesn't hide any problems that weren't present before the t64 transition
that affect code that people actually run (which may be an empty set,
especially on armel and armhf, but we may never know).


-- 
WBR, wRAR


signature.asc
Description: PGP signature


Bug#1067957: FTBFS: error: call of overloaded ‘__gmp_expr(__time64_t&)’ is ambiguous

2024-03-29 Thread Andrey Rakhmatullin
Source: maude
Version: 3.2-2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=maude=armhf=3.2-2%2Bb1=1711717901=0

In file included from timeManagerSymbol.cc:64:
timeActions.cc: In member function ‘void
TimeManagerSymbol::getTimeSinceEpoch(FreeDagNode*,
ObjectSystemRewritingContext&)’:
timeActions.cc:43:41: error: call of overloaded ‘__gmp_expr(__time64_t&)’ is
ambiguous
   43 |   mpz_class nanoSeconds(timeValue.tv_sec);
  | ^


-- 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


Bug#1067942: Depends on pre-t64 libglib2.0-0

2024-03-29 Thread Andrey Rakhmatullin
Package: ibus
Version: 1.5.29-1+b1
Severity: serious

ibus has an explicit Depends: libglib2.0-0, this needs to be changed to
libglib2.0-0t64.


-- Package-specific info:
ibus is /usr/bin/ibus
ibus-setup is /usr/bin/ibus-setup
!
!!! im-config is missing.  Please install it. !!!
!!! Please also read usr/share/doc/im-config/README.Debian.gz !!!
!

XMODIFIERS=
GTK_IM_MODULE=
QT_IM_MODULE=
WAYLAND_DISPLAY=
XDG_CURRENT_DESKTOP=KDE
XDG_MENU_PREFIX=
XDG_RUNTIME_DIR=/run/user/1000
XDG_SEAT=seat0
XDG_SESSION_CLASS=user
XDG_SESSION_DESKTOP=KDE
XDG_SESSION_ID=3
XDG_SESSION_TYPE=x11

== ls -l /usr/lib/ibus/ibus-* /usr/libexec/ibus-* ==
/bin/ls: cannot access '/usr/lib/ibus/ibus-*': No such file or directory
-rwxr-xr-x 1 root root  22832 Mar 13 06:45 /usr/libexec/ibus-dconf
-rwxr-xr-x 1 root root  14640 Mar 13 06:45 /usr/libexec/ibus-engine-simple
-rwxr-xr-x 1 root root 170288 Mar 13 06:45 /usr/libexec/ibus-extension-gtk3
-rwxr-xr-x 1 root root  18736 Mar 13 06:45 /usr/libexec/ibus-memconf
-rwxr-xr-x 1 root root  96560 Mar 13 06:45 /usr/libexec/ibus-portal
-rwxr-xr-x 1 root root 121144 Mar 13 06:45 /usr/libexec/ibus-ui-emojier
-rwxr-xr-x 1 root root 371232 Mar 13 06:45 /usr/libexec/ibus-ui-gtk3
-rwxr-xr-x 1 root root 100280 Mar 13 06:45 /usr/libexec/ibus-x11

== dpkg-query -l 'ibus*' ==
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  Architecture Description
+++-==---==
ii  ibus   1.5.29-1+b1  amd64Intelligent Input Bus - core
un  ibus-clutter (no description available)
ii  ibus-data  1.5.29-1 all  Intelligent Input Bus - data files
un  ibus-doc (no description available)
un  ibus-gtk (no description available)
un  ibus-gtk3(no description available)
un  ibus-gtk4(no description available)

=== gsettings ===
org.freedesktop.ibus.general dconf-preserve-name-prefixes 
['/desktop/ibus/engine/pinyin', '/desktop/ibus/engine/bopomofo', 
'/desktop/ibus/engine/hangul']
org.freedesktop.ibus.general embed-preedit-text true
org.freedesktop.ibus.general enable-by-default false
org.freedesktop.ibus.general engines-order @as []
org.freedesktop.ibus.general preload-engines @as []
org.freedesktop.ibus.general switcher-delay-time 400
org.freedesktop.ibus.general use-global-engine true
org.freedesktop.ibus.general use-system-keyboard-layout false
org.freedesktop.ibus.general use-xmodmap true
org.freedesktop.ibus.general version ''
org.freedesktop.ibus.general xkb-latin-layouts ['af', 'af(fa-olpc)', 
'af(ps-olpc)', 'af(ps)', 'af(uz)', 'af(uz-olpc)', 'am', 'am(eastern)', 
'am(eastern-alt)', 'am(phonetic)', 'am(phonetic-alt)', 'am(western)', 'ara', 
'ara(azerty)', 'ara(azerty_digits)', 'ara(buckwalter)', 'ara(digits)', 
'ara(qwerty)', 'ara(qwerty_digits)', 'az(cyrillic)', 'bd', 'bd(probhat)', 'bg', 
'bg(bas_phonetic)', 'bg(phonetic)', 'brai', 'brai(left_hand)', 
'brai(right_hand)', 'bt', 'by', 'by(phonetic)', 'by(legacy)', 'ca(ike)', 
'cn(tib)', 'cn(tib_asciinum)', 'cn(ug)', 'cz', 'cz(ucw)', 'de(ru)', 'dev', 
'et', 'fr(geo)', 'ge', 'ge(os)', 'gr', 'gr(extended)', 'gr(nodeadkeys)', 
'gr(polytonic)', 'gr(simple)', 'gur', 'il', 'il(biblical)', 'il(lyx)', 
'il(phonetic)', 'id(melayu-phonetic)', 'id(melayu-phoneticx)', 
'id(pegon-phonetic)', 'in', 'in(ben)', 'in(ben_baishakhi)', 'in(ben_bornona)', 
'in(ben_gitanjali)', 'in(ben_inscript)', 'in(ben_probhat)', 'in(bolnagri)', 
'in(deva)', 'in(guj)', 'in(guj-kagapa)', 'in(guru)', 'in(hin-kagapa)', 
'in(hin-wx)', 'in(jhelum)', 'in(kan)', 'in(kan-kagapa)', 'in(mal)', 
'in(mal_enhanced)', 'in(mal_lalitha)', 'in(mar-kagapa)', 'in(ori)', 
'in(san-kagapa)', 'in(tam)', 'in(tamilnet)', 'in(tamilnet_TAB)', 
'in(tamilnet_TSCII)', 'in(tamilnet_tamilnumbers)', 'in(tam_tamilnumbers)', 
'in(tel)', 'in(tel-kagapa)', 'in(urd-phonetic)', 'in(urd-phonetic3)', 
'in(urd-winkeys)', 'iq', 'ir', 'ir(azb)', 'ir(pes_keypad)', 'jp(kana)', 
'jp(mac)', 'kg', 'kg(phonetic)', 'kh', 'kz', 'kz(kazrus)', 'kz(ruskaz)', 'la', 
'la(stea)', 'lk', 'lk(tam_TAB)', 'lk(tam_unicode)', 'lv(modern-cyr)', 'ma', 
'ma(tifinagh)', 'ma(tifinagh-alt)', 'ma(tifinagh-alt-phonetic)', 
'ma(tifinagh-extended)', 'ma(tifinagh-extended-phonetic)', 
'ma(tifinagh-phonetic)', 'me(cyrillic)', 'me(cyrillicalternatequotes)', 
'me(cyrillicyz)', 'mk', 'mk(nodeadkeys)', 'mm', 'mn', 'mv', 'np', 
'ph(capewell-dvorak-bay)', 'ph(capewell-qwerf2k6-bay)', 'ph(colemak-bay)', 
'ph(dvorak-bay)', 'ph(qwerty-bay)', 'pk', 'pk(ara)', 'pk(snd)', 
'pk(urd-crulp)', 'pk(urd-nla)', 'pl(ru_phonetic_dvorak)', 'rs', 
'rs(alternatequotes)', 'rs(rue)', 'rs(yz)', 'ru', 'ru(bak)', 'ru(chm)', 

Bug#1067940: FTBFS: error: implicit declaration of function ‘mono_profiler_install’; did you mean ‘mono_profiler_startup’?

2024-03-29 Thread Andrey Rakhmatullin
Source: gtk-sharp3
Version: 2.99.3-4.1
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=gtk-
sharp3=armel=2.99.3-4.1%2Bb1=1711703645=0

/bin/bash ../../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.
-I../../..  -I/usr/lib/pkgconfig/../../include/mono-2.0 -D_REENTRANT
-I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabi/glib-2.0/include  -Wall
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -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 -g -Wall -Wunused -Wmissing-prototypes
-Wmissing-declarations -Wstrict-prototypes  -Wmissing-prototypes -Wnested-
externs  -Wshadow -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings
-c -o gui-thread-check.lo gui-thread-check.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../..
-I/usr/lib/pkgconfig/../../include/mono-2.0 -D_REENTRANT
-I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabi/glib-2.0/include -Wall
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -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 -g -Wall -Wunused -Wmissing-prototypes
-Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wnested-
externs -Wshadow -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -c
gui-thread-check.c  -fPIC -DPIC -o .libs/gui-thread-check.o
gui-thread-check.c:94:1: warning: no previous prototype for
‘mono_profiler_startup’ [-Wmissing-prototypes]
   94 | mono_profiler_startup (const char *desc)
  | ^
gui-thread-check.c: In function ‘mono_profiler_startup’:
gui-thread-check.c:98:9: error: implicit declaration of function
‘mono_profiler_install’; did you mean ‘mono_profiler_startup’?
[-Werror=implicit-function-declaration]
   98 | mono_profiler_install (NULL, NULL);
  | ^
  | mono_profiler_startup
gui-thread-check.c:98:9: warning: nested extern declaration of
‘mono_profiler_install’ [-Wnested-externs]
gui-thread-check.c:99:9: error: implicit declaration of function
‘mono_profiler_install_enter_leave’ [-Werror=implicit-function-declaration]
   99 | mono_profiler_install_enter_leave (simple_method_enter, NULL);
  | ^
gui-thread-check.c:99:9: warning: nested extern declaration of
‘mono_profiler_install_enter_leave’ [-Wnested-externs]
gui-thread-check.c:100:9: error: implicit declaration of function
‘mono_profiler_set_events’; did you mean ‘mono_profiler_startup’?
[-Werror=implicit-function-declaration]
  100 | mono_profiler_set_events (MONO_PROFILE_ENTER_LEAVE);
  | ^~~~
  | mono_profiler_startup


-- 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


Bug#1067936: Explicitly depends on a pre-t64 library name

2024-03-29 Thread Andrey Rakhmatullin
Package: libgsecuredelete0
Version: 0.3-3.1
Severity: serious

The package has explicit Depends: libglib2.0-0 which needs to be replaced with
libglib2.0-0t64 if it's really needed and removed otherwise.


-- 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



Bug#1067788: telepathy-mission-control-5: diff for NMU version 1:5.16.5-2.2

2024-03-29 Thread Andrey Rakhmatullin
Control: tags 1067788 + patch
Control: tags 1067788 + pending

Dear maintainer,

I've prepared an NMU for telepathy-mission-control-5 (versioned as 
1:5.16.5-2.2) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru telepathy-mission-control-5-5.16.5/debian/changelog telepathy-mission-control-5-5.16.5/debian/changelog
--- telepathy-mission-control-5-5.16.5/debian/changelog	2024-02-29 23:06:16.0 +0500
+++ telepathy-mission-control-5-5.16.5/debian/changelog	2024-03-29 12:18:55.0 +0500
@@ -1,3 +1,10 @@
+telepathy-mission-control-5 (1:5.16.5-2.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix the --link-doc target that led to wrong deps (Closes: #1067788).
+
+ -- Andrey Rakhmatullin   Fri, 29 Mar 2024 12:18:55 +0500
+
 telepathy-mission-control-5 (1:5.16.5-2.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru telepathy-mission-control-5-5.16.5/debian/libmission-control-plugins-dev.links telepathy-mission-control-5-5.16.5/debian/libmission-control-plugins-dev.links
--- telepathy-mission-control-5-5.16.5/debian/libmission-control-plugins-dev.links	2020-04-05 01:03:25.0 +0500
+++ telepathy-mission-control-5-5.16.5/debian/libmission-control-plugins-dev.links	2024-03-29 12:18:55.0 +0500
@@ -1 +1 @@
-usr/share/doc/libmission-control-plugins0 usr/share/doc/libmission-control-plugins-dev
+usr/share/doc/libmission-control-plugins0t64 usr/share/doc/libmission-control-plugins-dev
diff -Nru telepathy-mission-control-5-5.16.5/debian/rules telepathy-mission-control-5-5.16.5/debian/rules
--- telepathy-mission-control-5-5.16.5/debian/rules	2020-04-05 01:03:25.0 +0500
+++ telepathy-mission-control-5-5.16.5/debian/rules	2024-03-29 12:18:32.0 +0500
@@ -51,7 +51,7 @@
 # we symlink some of the doc directories together
 override_dh_installdocs:
 	dh_installdocs -plibmission-control-plugins-dev \
-		--link-doc=libmission-control-plugins0
+		--link-doc=libmission-control-plugins0t64
 	dh_installdocs --remaining-packages
 
 # Install the AppArmor and apport hook. Override dh_compress since it is


signature.asc
Description: PGP signature


Bug#1064553: libgdiplus: diff for NMU version 6.1+dfsg-1.1

2024-03-29 Thread Andrey Rakhmatullin
Control: tags 1064553 + patch
Control: tags 1064553 + pending

Dear maintainer,

I've prepared an NMU for libgdiplus (versioned as 6.1+dfsg-1.1) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru libgdiplus-6.1+dfsg/debian/changelog libgdiplus-6.1+dfsg/debian/changelog
--- libgdiplus-6.1+dfsg/debian/changelog	2022-04-22 21:35:19.0 +0500
+++ libgdiplus-6.1+dfsg/debian/changelog	2024-03-29 12:12:54.0 +0500
@@ -1,3 +1,10 @@
+libgdiplus (6.1+dfsg-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Remove -Werror from gtest (Closes: #1064553).
+
+ -- Andrey Rakhmatullin   Fri, 29 Mar 2024 12:12:54 +0500
+
 libgdiplus (6.1+dfsg-1) unstable; urgency=medium
 
   * New upstream version 6.1+dfsg
diff -Nru libgdiplus-6.1+dfsg/debian/patches/disable-Werror-googletest.patch libgdiplus-6.1+dfsg/debian/patches/disable-Werror-googletest.patch
--- libgdiplus-6.1+dfsg/debian/patches/disable-Werror-googletest.patch	1970-01-01 05:00:00.0 +0500
+++ libgdiplus-6.1+dfsg/debian/patches/disable-Werror-googletest.patch	2024-03-29 12:10:01.0 +0500
@@ -0,0 +1,23 @@
+Description: Remove -Werror from CFLAGS in googletest.
+Author: Andrey Rakhmatullin 
+Bug-Debian: https://bugs.debian.org/1064553
+Last-Update: 2024-03-29
+
+--- libgdiplus-6.1+dfsg.orig/external/googletest/googletest/cmake/internal_utils.cmake
 libgdiplus-6.1+dfsg/external/googletest/googletest/cmake/internal_utils.cmake
+@@ -82,13 +82,13 @@ macro(config_compiler_and_linker)
+ # http://stackoverflow.com/questions/3232669 explains the issue.
+ set(cxx_base_flags "${cxx_base_flags} -wd4702")
+   elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
+-set(cxx_base_flags "-Wall -Wshadow -Werror -Wconversion")
++set(cxx_base_flags "-Wall -Wshadow -Wconversion")
+ set(cxx_exception_flags "-fexceptions")
+ set(cxx_no_exception_flags "-fno-exceptions")
+ set(cxx_strict_flags "-W -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wredundant-decls")
+ set(cxx_no_rtti_flags "-fno-rtti")
+   elseif (CMAKE_COMPILER_IS_GNUCXX)
+-set(cxx_base_flags "-Wall -Wshadow -Werror")
++set(cxx_base_flags "-Wall -Wshadow")
+ if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0.0)
+   set(cxx_base_flags "${cxx_base_flags} -Wno-error=dangling-else")
+ endif()
diff -Nru libgdiplus-6.1+dfsg/debian/patches/series libgdiplus-6.1+dfsg/debian/patches/series
--- libgdiplus-6.1+dfsg/debian/patches/series	1970-01-01 05:00:00.0 +0500
+++ libgdiplus-6.1+dfsg/debian/patches/series	2024-03-29 12:09:36.0 +0500
@@ -0,0 +1 @@
+disable-Werror-googletest.patch


signature.asc
Description: PGP signature


Bug#1067929: Update Depends for the time64 renames

2024-03-29 Thread Andrey Rakhmatullin
Source: java-package
Version: 0.63
Severity: serious

The package explicitly lists some library packages in Depends, at least
libasound2 needs to be changed to libasound2t64 there, I haven't checked if any
others also were renamed.


-- 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



Bug#1067921: FTBFS: error: call of overloaded ‘MSString(const time_t&)’ is ambiguous

2024-03-28 Thread Andrey Rakhmatullin
Source: aplus-fsf
Version: 4.22.1-13
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=aplus-
fsf=armhf=4.22.1-13=1711588996=0

MSTime.C: In member function ‘virtual MSString MSTime::asDebugInfo() const’:
MSTime.C:53:25: error: call of overloaded ‘MSString(const time_t&)’ is
ambiguous
   53 |   result+=MSString(_time);
  | ^
In file included from ../MSTypes/MSScalarModel.H:37,
 from ../MSTypes/MSTime.H:15,
 from MSTime.C:10:


-- 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


Bug#1067920: FTBFS: error: no matching function for call to ‘max(saidx64_t&, long int)

2024-03-28 Thread Andrey Rakhmatullin
Source: phylonium
Version: 1.7-2
Severity: serious
Tags: ftbfs

https://buildd.debian.org/status/fetch.php?pkg=phylonium=armhf=1.7-2=1711651088=0

process.cxx: In lambda function:
process.cxx:222:39: error: no matching function for call to ‘max(saidx64_t&,
long int)’
  222 | this_length = std::max(inter.l, 0l);
  |   ^
In file included from /usr/include/c++/13/vector:62,
 from process.h:8,
 from process.cxx:6:
/usr/include/c++/13/bits/stl_algobase.h:257:5: note: candidate: ‘template constexpr const _Tp& std::max(const _Tp&, const _Tp&)’
  257 | max(const _Tp& __a, const _Tp& __b)
  | ^~~


-- 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


Bug#1066649: libtritonus-java: diff for NMU version 20070428-14.2

2024-03-28 Thread Andrey Rakhmatullin
Control: tags 1066649 + patch
Control: tags 1066649 + pending

Dear maintainer,

I've prepared an NMU for libtritonus-java (versioned as 20070428-14.2) and
uploaded it to unstable.

Regards.


-- 
WBR, wRAR
diff -Nru libtritonus-java-20070428/debian/changelog libtritonus-java-20070428/debian/changelog
--- libtritonus-java-20070428/debian/changelog	2020-01-27 04:28:23.0 +0500
+++ libtritonus-java-20070428/debian/changelog	2024-03-29 00:44:52.0 +0500
@@ -1,3 +1,10 @@
+libtritonus-java (20070428-14.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with -Werror=implicit-function-declaration (Closes: #1066649).
+
+ -- Andrey Rakhmatullin   Fri, 29 Mar 2024 00:44:52 +0500
+
 libtritonus-java (20070428-14.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru libtritonus-java-20070428/debian/patches/fix-implicit-function-declaration.patch libtritonus-java-20070428/debian/patches/fix-implicit-function-declaration.patch
--- libtritonus-java-20070428/debian/patches/fix-implicit-function-declaration.patch	1970-01-01 05:00:00.0 +0500
+++ libtritonus-java-20070428/debian/patches/fix-implicit-function-declaration.patch	2024-03-29 00:44:52.0 +0500
@@ -0,0 +1,29 @@
+Description: Add missing header includes.
+Author: Andrey Rakhmatullin 
+Bug-Debian: https://bugs.debian.org/1066649
+Last-Update: 2024-03-28
+
+Index: libtritonus-java-20070428/src/lib/pvorbis/org_tritonus_lowlevel_pogg_Buffer.c
+===
+--- libtritonus-java-20070428.orig/src/lib/pvorbis/org_tritonus_lowlevel_pogg_Buffer.c
 libtritonus-java-20070428/src/lib/pvorbis/org_tritonus_lowlevel_pogg_Buffer.c
+@@ -24,6 +24,7 @@
+ |<---this code is formatted to fit into 80 columns --->|
+ */
+ 
++#include 
+ #include "common.h"
+ #include "org_tritonus_lowlevel_pogg_Buffer.h"
+ 
+Index: libtritonus-java-20070428/src/lib/pvorbis/org_tritonus_lowlevel_pogg_Packet.c
+===
+--- libtritonus-java-20070428.orig/src/lib/pvorbis/org_tritonus_lowlevel_pogg_Packet.c
 libtritonus-java-20070428/src/lib/pvorbis/org_tritonus_lowlevel_pogg_Packet.c
+@@ -24,6 +24,7 @@
+ |<---this code is formatted to fit into 80 columns --->|
+ */
+ 
++#include 
+ #include "common.h"
+ #include "org_tritonus_lowlevel_pogg_Packet.h"
+ 
diff -Nru libtritonus-java-20070428/debian/patches/series libtritonus-java-20070428/debian/patches/series
--- libtritonus-java-20070428/debian/patches/series	2020-01-27 04:28:02.0 +0500
+++ libtritonus-java-20070428/debian/patches/series	2024-03-29 00:44:52.0 +0500
@@ -9,3 +9,4 @@
 java10-compatibility.diff
 bump-java-to-1.6.patch
 fluidsynth2.patch
+fix-implicit-function-declaration.patch


signature.asc
Description: PGP signature


  1   2   3   >