Bug#1042874: unable to reproduce the problem

2023-08-04 Thread Janusz S . Bień
On Wed, Aug 02 2023 at  8:23 +02, Janusz S. Bień wrote:
> On Wed, Aug 02 2023 at  6:09 GMT, Debian Bug Tracking System wrote:
>> Thank you for filing a new Bug report with Debian.
>>
>> You can follow progress on this Bug here: 1042874: 
>> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1042874.
>
> There was an encoding problem with quoting the error message, so I
> enclosed it in the attachment.

I've upgraded AUCTeX to the current version and I'm unable now to
reproduce the problem. I'm still curious what information is encoded in
the error message and I will try to look into it.

Regards

JSB

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Bug#698640: gvfs-bin: gfvs-trash can not trash on fs that is bind mounted

2023-08-04 Thread Christian Pernegger
FWIW, the code that is responsible is in libglib2.0-0. Reasonably
recent versions will refuse to use the trash on
* mounted drives. I.e. I have a separate drive for bulk storage
mounted via fstab on a directory in my home directory, no go.
* btrfs subvolumes, even just somewhere under my home directory

Funnily enough this used to work, in fact it still does work if you
remove the checks. It'll find a location to trash to (in the root of
the mount/subvolume) just fine; and if it doesn't it errors out
elsewhere. The rationale for introducing them in the first place
escapes me, to put it politely.

It annoyed me enough that I may or may not have done the following.

Disclaimer: I do NOT know what I'm doing, use at your own risk.


--- glib2.0-2.72.4.orig/gio/glocalfile.c
+++ glib2.0-2.72.4/gio/glocalfile.c
@@ -1782,8 +1782,9 @@ ignore_trash_mount (GUnixMountEntry *mou
   const gchar *mount_options;
   gboolean retval = TRUE;

-  if (g_unix_mount_is_system_internal (mount))
-return TRUE;
+  // allow trash on mounted drives again
+  //  if (g_unix_mount_is_system_internal (mount))
+  //return TRUE;

   mount_options = g_unix_mount_get_options (mount);
   if (mount_options == NULL)
@@ -1807,7 +1808,10 @@ static gboolean
 ignore_trash_path (const gchar *topdir)
 {
   GUnixMountEntry *mount;
-  gboolean retval = TRUE;
+
+  // allow trash on subvolumes again
+  //  gboolean retval = TRUE;
+  gboolean retval = FALSE;

   mount = g_unix_mount_at (topdir, NULL);
   if (mount == NULL)

Cheers,
Christian



Bug#1043044: Versions of org-mode-doc do not match elpa-org

2023-08-04 Thread Maxim Nikulin

Package: org-mode-doc

Versions of org-mode-doc and elpa-org packages have diverged in 
stable-unstable repositories. Likely org-mode-doc was just forgotten 
during uploads of updates since it is in the non-free section


org-mode-doc | 9.5.2-1   | stable/non-free   | source, all
org-mode-doc | 9.5.2-1   | testing/non-free  | source, all
org-mode-doc | 9.5.2-1   | unstable/non-free | source, all

elpa-org   | 9.5.2+dfsh-5  | stable   | all
elpa-org   | 9.6.7+dfsg-1  | testing  | all
elpa-org   | 9.6.7+dfsg-1  | unstable | all

elpa-org_9.5.2+dfsh-5 is a dummy package to avoid Org mode version older 
than the one shipped with Emacs.




Bug#1043043: UDD patches: marks Forwarded as invalid if not 'no', 'not-needed', 'yes' or URL

2023-08-04 Thread David da Silva Polverari
Package: qa.debian.org
Severity: normal
User: qa.debian@packages.debian.org
Usertags: udd

Hi,

When using https://udd.debian.org/patches.cgi, I notice that whenever
the Forwarded field contains anything other than "no", "not-needed",
"yes" or an URL, it gets marked as invalid.

That includes cases where it begins with "yes", but is complemented with
other data, as can be seen by contrasting a search on Debian Sources
about those packages [1] with their respective patch metadata status on
UDD.

In its current form, patches.cgi marks as invalid patches that include
useful information on the Forwarded field, such as the mail address to
which the patch was forwarded, when upstream doesn't have a public
mailing list archive or a web pull/merge request tracker, for example.

According to DEP-3 [2], if the Forwarded field is present, any other
value other than "no" or "not-needed" should be considered valid:

  Any value other than "no" or "not-needed" means that the patch has
  been forwarded upstream. Ideally the value is an URL proving that it
  has been forwarded and where one can find more information about its
  inclusion status.

As such, I think it would be interesting to either propose changes to
DEP-3 or to adhere more closely to it.

Thanks,
David

[1] 
https://codesearch.debian.net/search?q=file%3Adebian%2Fpatches%2F*.patch+Forwarded%3A+yes+.%2B=0
[2] https://dep-team.pages.debian.net/deps/dep3/



Bug#815402: org-mode: * [[shell:cat ~/tmp | grep "asdf :: "]] does not work.

2023-08-04 Thread Max Nikulin

On 03/08/2023 22:03, Nicholas D Steeves wrote:

Nicolas Goaziou to emacs-orgmode. Re: * [[shell:cat ~/tmp | grep "asdf
:: "]] does not work. Wed, 24 Feb 2016 18:38:09 +0100


This is not a bug. -  :: *is* description list syntax, no matter how
you look at it. You can easily work around this, e.g., by starting the
link on the next line.


I read the thread upstream, and see what you mean, and upstream's
perspective makes sense.  How do you feel about keeping this bug open,


I do not see any value in having this bug in the open state, but I am 
leaving decision up to you. I rarely visit list of bugs for the elpa-org 
and org-mode packages.



because this "gotcha" should be documented somewhere.  I'm not sure if
org-mode's documentation would be the best place, because it's non-free.


In my opinion, the "first wins" rule should be prominently stressed in 
Org mode syntax description and it should be done in some general 
section, not in description of items

https://orgmode.org/worg/org-syntax.html#Items
It should help to make behavior of pandoc, org-ruby, etc. more 
consistent. However I can not suggest specific wording.


Despite some conflict of licenses, I do not think it is possible to 
avoid reading of the Org mode manual. It may benefit from a note on 
ambiguous syntax. Currently it has some references to zero width space 
hack only

https://orgmode.org/manual/Escape-Character.html
that has some drawbacks and not applicable to links.
https://orgmode.org/manual/Link-Format.html
Discusses escaping of brackets only disregarding possible interference 
with other markup structures.

https://orgmode.org/manual/Plain-Lists.html
does not mention possible issues as well.

Besides the manual, there are online-only (unless you clone the 
repository) docs at https://orgmode.org/worg/ If you are more 
comfortable with Debian wiki, you may create a page with tricks there. 
Perhaps it would be more "visible" to users than the bug report.



For future readers of this bug, Brian G Powell wrote some nice style
suggestions for avoiding this pitfall, so here is the link:

   
https://list.orgmode.org/CAFm0skF=3JNXQQPFYutEvM8y+FRZJziE+QngVX=gocx3rkq...@mail.gmail.com/#t


While I agree with Brian in general, in this particular case I would 
consider a more concise variant: breaking "::" by insertion of some 
characters:


- [[shell:cat ~/tmp | grep "asdf :"": "]] does +not+ work.

More checkers may be added to `org-lint' to catch similar pitfalls.


Indeed!  Please go ahead and give this bug a more useful title.


It falls in a rather generic class of
"Enclosing markup may lead to unexpected parsing results"
perhaps
"Double colon unexpectedly converts an item into description list"
would be better



Bug#1032453: locales and locales-all

2023-08-04 Thread Osamu Aoki
Hi,

I understand at least I need to do s/creating/create/ .

But that may not address lost feeling of bug reporter.

I am thinking to update:

The locales-all package comes with all locale data pre-compiled but doesn't
creating "/etc/default/locale".

with:

The locales-all package comes with pre-compiled locale data for all locale data.
Since it doesn't create "/etc/default/locale", you may still need to install the
locales package, too.



The locales package of some Debian derivative distributions come with pre-
compiled locale data for all locale data. You need to install both locales and
locales-all packages on Debian to emulate such system environment.


I am intensionally vague not to specify Ubuntu here.

Osamu



Bug#1043042: calibre: New warning when running `calibredb catalog'

2023-08-04 Thread gregor herrmann
Package: calibre
Version: 6.23.0-2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Since yesterday, `calibredb catalog' outputs a warning.

I'm running the following command in a script from a daily cronjob:

% calibredb catalog /home/gregoa/tmp/calibre.bib --entry-type=mixed 
--add-files-path=False 
--fields="authors,title,pubdate,id,library_name,publisher,#fullseries"

and on the last run I -- for the first time -- got the following warning:

Missing sys.apsw_fault_inject_control

Exit code 0, and the resulting .bib file is ok; just the warning is
slightly annoying (as in: unnecessary mail from cron).


Cheers,
gregor


- -- System Information:
Debian Release: trixie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'unstable-debug'), (500, 
'stable-security'), (500, 'oldoldstable'), (500, 'experimental'), (500, 
'testing'), (500, 'stable'), (500, 'oldstable')
merged-usr: no
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.4.0-1-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=C, LC_CTYPE=de_AT.utf8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
LSM: AppArmor: enabled

Versions of packages calibre depends on:
ii  ca-certificates20230311
ii  calibre-bin6.23.0-2
ii  fonts-liberation   1:2.1.5-3
ii  libjpeg-turbo-progs1:2.1.5-2
ii  libjxr-tools   1.2~git20170615.f752187-5
ii  libqt6webenginecore6-bin   6.4.2-final+dfsg-9
ii  optipng0.7.7-2+b1
ii  poppler-utils  22.12.0-2+b1
ii  pyqt6-dev-tools6.5.2-1
ii  python33.11.4-5
ii  python3-apsw   3.42.0.1-1
ii  python3-bs44.12.2-2
ii  python3-chm0.8.6-3+b4
ii  python3-css-parser 1.0.9-1
ii  python3-cssselect  1.2.0-2
ii  python3-dateutil   2.8.2-2
ii  python3-feedparser 6.0.10-1
ii  python3-fonttools  4.38.0-1+b1
ii  python3-html2text  2020.1.16-2
ii  python3-html5-parser   0.4.11-1
ii  python3-html5lib   1.1-3
ii  python3-jeepney0.8.0-3
ii  python3-lxml   4.9.3-1
ii  python3-markdown   3.4.4-1
ii  python3-mechanize  1:0.4.8+pypi-5
ii  python3-msgpack1.0.3-2+b1
ii  python3-netifaces  0.11.0-2+b1
ii  python3-pil10.0.0-1
ii  python3-pkg-resources  68.0.0-1
ii  python3-py7zr  0.11.3+dfsg-5
ii  python3-pycryptodome   3.11.0+dfsg1-4
ii  python3-pygments   2.15.1+dfsg-1
ii  python3-pyparsing  3.1.0-1
ii  python3-pyqt6  6.5.2-1
ii  python3-pyqt6.qtquick  6.5.2-1
ii  python3-pyqt6.qtsvg6.5.2-1
ii  python3-pyqt6.qtwebengine  6.5.0-1
ii  python3-pyqt6.sip  13.5.2-1
ii  python3-regex  0.1.20221031-1+b1
ii  python3-routes 2.5.1-3
ii  python3-speechd0.11.4-2
ii  python3-zeroconf   0.71.4-1
ii  python3.11 3.11.4-1
ii  webp   1.2.4-0.2
ii  xdg-utils  1.1.3-4.1

Versions of packages calibre recommends:
ii  python3-dnspython  2.4.1-1
ii  python3-ipython8.14.0-1
pn  qt6-wayland
pn  udisks2

Versions of packages calibre suggests:
pn  python3-unrardll  

- -- no debconf information

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAmTNo5ZfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbYvA//YahNmB+S3YIIIpH31ebnwPvpizYv0WF/zJTwg9aIe+Hnumk1F2KtimgM
la4zuUb/S+bLbbS5Iyx+3UNM1kGMjcahtwwWM4b3gxmoTLp65U6ThdPvJBWhNqSc
XY/VJxJ0ZotvJCs2SN47Att7Ts8Xhikm3Rmq/B7d9TcanuXTaPMc1UyLo7O+YHln
5OKdHVebuy9POj9NquK/mHhxoyJOfeJbAa+KBROyQrw8jN11HsrF/1HvwHgNEh5K
cb7St8LJ0jNjM5M1EYcP/apck2t+5ABHORrzPkQEfdYf50MuLMcDrxyTRqU856zs
MQmNKsEQfJEYH9oR/ToTHEDwUUq3z3JNF8iZyVCr8GFieA0q4hXxy3zfv7ulGm3E
RTLgzf/ONZ8bxh+A7Htt/3O9q4c3UmKdyoi4gRbDo10P8whWIALQVc+IMl1WE5pq
cRlPHXVY+jE+6vMTSb40rgkAgkqWGGKHSyS7ucw7t3TA0Z+N2aDjSdAN9j/RTNQ0
efUmT4XdqmjNknlE/2YLOG3LHreWpODZ8V8uJ6np6nUnJIyaCzOxJSgVbGoozJ0t
s2T2udIcQWEf0v2npeWXEp+ulPnx1DgSGXOsN2oL8l2zlu5Ep+adVqwff6fB8j6c
W+doucj6Zug8wav3r5cXJHR6NBR4uwaz2ewMWrCIc1nDUq39Ckg=
=CBe6
-END PGP SIGNATURE-



Bug#1037567: abseil: ftbfs with GCC-13

2023-08-04 Thread Bo YU
Source: abseil
Followup-For: Bug #1037567

Dear Maintainer,

I'm terribly sorry if I'm suddenly intruding on this thread.

For riscv64, We need abseil more than anything else at this point in my
view. Because there are several dependencies chains that even end up
pointing to abseil.

Ideally we should wait for the transition, but now it seems the abseil
is our main blocker if without resolving other dependency loops. So
I think if we can upload new version with patch which fixed the gcc-13
build issueu[0] that will speed up our riscv64 official porting.

Thanks.

[0]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037567#36


-- 
Regards,
--
  Bo YU



signature.asc
Description: PGP signature


Bug#1042978: Tests invalid package upgrades

2023-08-04 Thread Ben Hutchings
On Thu, 2023-08-03 at 22:01 +0200, Paul Gevers wrote:
> Control: reassign -1 release.debian.org
> 
> Hi Ben,
> 
> On 03-08-2023 18:01, Ben Hutchings wrote:
> > ci.debian.net must therefore also test updating the binaries from all
> > these source packages together, not just those built from linux.
> 
> But ci.debian.net just does what it's been asked to do by the client, in 
> this case britney. So, if anything it's britney2 that needs to be 
> changed to support this.

Thank you for redirecting this appropriately.

> But, britney2 tries to deduce what needs to be 
> tested together from the package relations. Normally, what you're seeing 
> here is the result of a test where the signed packages haven't been 
> build yet. britney retries tests after 24 hours and normally it retries 
> with linux-signed-* in the list of pinned packages as you can see in the 
> dkms history. The question that now arises is why it doesn't do that now.

I suspect that the difference is that most linux updates bump ABI (thus
changing package names) and this last update did not need to.  The
package that linux-headers-amd64/unstable depends on typically don't
exist in testing at all, but in this case it does (at the wrong
version).  Perhaps something in britney's invocation of debci isn't
paying attention to all the version constraints.

Ben.

-- 
Ben Hutchings
Sturgeon's Law: Ninety percent of everything is crap.



signature.asc
Description: This is a digitally signed message part


Bug#1043041: RM: rt-extension-elapsedbusinesstime/experimental -- ROM; No longer required in experimental

2023-08-04 Thread Andrew Ruthven
Package: ftp.debian.org
Severity: normal
User: ftp.debian@packages.debian.org
Usertags: remove
X-Debbugs-Cc: rt-extension-elapsedbusinesst...@packages.debian.org
Control: affects -1 + src:rt-extension-elapsedbusinesstime

Hi,

This package has been uploaded to unstable, please remove it from experimental.

Kind regards,
Andrew



Bug#1043040: claws-mail: After moving a message to another folder, subject is not updated

2023-08-04 Thread Jiff
Package: claws-mail
Version: 4.1.1-2+b1
Severity: normal

Hi Dear Mai N'tainer,

   * What led up to the situation?

Drag'n'dropping a mail from the Inbox to anther folder.

After 5 minutes, I returned to claws-mail to verify something and
remarked the subject, that is displayed between the mails list
(right and up) and the mail reading (right and down) have not had
updated as it remain the same from the mail I moved.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

Can't do nothing, I'm a poor thing.

   * What outcome did you expect instead?

The subject being updated to the mail that was selected once the other
one was moved.

Thanks for maintaining this software.

Cheers,

Jean-Yves


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

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

Versions of packages claws-mail depends on:
ii  libc62.36-9+deb12u1
ii  libcairo21.16.0-7
ii  libcompfaceg11:1.5.2-5.1
ii  libdbus-glib-1-2 0.112-3
ii  libenchant-2-2   2.3.3-2
ii  libetpan20   1.9.4-3.1
ii  libgdk-pixbuf-2.0-0  2.42.10+dfsg-1+b1
ii  libglib2.0-0 2.74.6-2
ii  libgnutls30  3.7.9-2
ii  libgtk-3-0   3.24.37-2
ii  libice6  2:1.0.10-1
ii  libldap-2.5-02.5.13+dfsg-5
ii  libnettle8   3.8.1-2
ii  libpango-1.0-0   1.50.12+ds-1
ii  libpangocairo-1.0-0  1.50.12+ds-1
ii  librsvg2-2   2.54.5+dfsg-1
ii  libsm6   2:1.2.3-1
ii  xdg-utils1.1.3-4.1

Versions of packages claws-mail recommends:
ii  aspell-en [aspell-dictionary]  2020.12.07-0-1
ii  aspell-fr [aspell-dictionary]  0.50-3-8.1
ii  claws-mail-i18n4.1.1-2
ii  xfonts-100dpi  1:1.0.5
ii  xfonts-75dpi   1:1.0.5

Versions of packages claws-mail suggests:
ii  brave-browser [www-browser] 1.52.122
ii  chromium [www-browser]  115.0.5790.170-1~deb12u1
ii  claws-mail-doc  4.1.1-2
ii  claws-mail-tools4.1.1-2
ii  dillo [www-browser] 3.0.5-7+b1
ii  epiphany-browser [www-browser]  43.1-1
ii  gedit   44.2-1
ii  hv3 [www-browser]   3.0~fossil20110109-8
ii  lynx [www-browser]  2.9.0dev.12-1
ii  mousepad0.5.10-2
ii  w3m [www-browser]   0.5.3+git20230121-2

-- no debconf information



Bug#1042911: Breaks Emacs 29.1 upgrade: muse-split.el:41:2: Error: Cannot open load file: No such file or directory, assoc

2023-08-04 Thread Manphiz
control: tags -1 patch

Manphiz  writes:

> Nicholas D Steeves  writes:
>
>> Hello,
>>
>> Would you like to fix this RC bug and adopt the package?
>>
>>   https://bugs.debian.org/1042911
>>
>> and the orphan bug is here: #1016558
>>
>> Best,
>> Nicholas
>>
>
> Hi Nicolas,
>
> Thanks for reaching out!  Looks like this was caused by the removal of
> the obsolete "assoc" package in Emacs 29.1 which had been deprecated
> since 24.  I'll try to work on a fix later this week.

Hi Nicholas,

I have now prepared a merge request to migrate away from assoc.el[1] and
also forwarded the patch upstream.  Also set the package as team
maintained and add myself as an upload.  PTAL.  Thanks!

[1] https://salsa.debian.org/emacsen-team/muse-el/-/merge_requests/3

-- 
Manphiz



Bug#1043039: debian-reference: apt-key deprecated, demote apt-pinning, ...

2023-08-04 Thread Osamu Aoki
Source: debian-reference
Version: 2.100
Severity: normal
X-Debbugs-Cc: xiao sheng wen(肖盛文) , eulalio 
, Locid , Felipe Nogueira 
, Guillonneau Jean-Paul , 
Beatrice Torracca , Andika Triwidada , 
Kwam's Sammy 

Hi,

Non-free-firmware is in Debian.

One thing is SC text change 1.1 -> 1.2.
DR is updated in git
  b5da8ee ("Update for SC 1.2", 2023-08-05)
(This is for https://bugs.debian.org/1032453)

For bookworm, I only made minimal changes to avoid translation problem.
Now that it is released, I need to includ non-free-firmware references
everywhere.

Other issues I see are:

* DR need to address apt-key deprecation.
* deb822 sources.list need to be included to prepare for future changes.
* Older text tends to lead users to use apt-pinning since there were no
  pointers to alternative solution.  Flatpak etc.
* Chaper 2 contents may be reordered to make it easy to read without
  requiring translation updates.
* Text in DR can be made more robust for release process.  So I can
  switch Stable release name before release just around early freeze
  phase.

Recent git commit: 
  0ed6188 ("reorder and deb822 etc.", 2023-07-29)
should address these issues.

Fixes for English have been commited to git repo.

Translation for these changes are highly appreciated.

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

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


Bug#1043038: RM: asterisk-prompt-fr-proformatique -- RoQA; RC-buggy; orphaned; low popcon

2023-08-04 Thread Bastian Germann

Package: ftp.debian.org
Severity: normal
User: ftp.debian@packages.debian.org
Usertags: remove
Control: affects -1 + src:asterisk-prompt-fr-proformatique

Please remove asterisk-prompt-fr-proformatique. It is orphaned in Debian 
with open trivial RC bugs, and missed bookworm. It has a very low popcon.




Bug#1043037: "dead upstream", find a releasable fork

2023-08-04 Thread Christopher Knadle
Package: mlmmj
Version: 1.3.0-4
Severity: wishlist
Tags: upstream

MLMMJ upstream is dead for a long time; development stopped in May 2017.
Baptiste Daroussin  and others are continuing to work on MLMMJ
in an external Git repository and have made a recent 1.4.0 b1 beta version
release for testing.

https://codeberg.org/mlmmj/mlmmj

This needs to be investigated to see if this can be released to Debian.

  -- Chris

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

-- System Information:
Debian Release: 10.13
  APT prefers oldoldstable-updates
  APT policy: (500, 'oldoldstable-updates'), (500, 'oldoldstable')
Architecture: amd64 (x86_64)

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

Versions of packages mlmmj depends on:
ii  debconf [debconf-2.0]  1.5.71+deb10u1
ii  exim4  4.92-8+deb10u7
ii  exim4-daemon-heavy [mail-transport-agent]  4.92-8+deb10u7
ii  libc6  2.28-10+deb10u2

mlmmj recommends no packages.

Versions of packages mlmmj suggests:
pn  mlmmj-php-web
pn  mlmmj-php-web-admin  

-- debconf information excluded



Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Karol Herbst
On Fri, Aug 4, 2023 at 8:10 PM Olaf Skibbe  wrote:
>
> Dear all,
>
> On Fri, 4 Aug 2023 at 14:15, Karol Herbst wrote:
>
> >>> 62aecf23f3d1 drm/nouveau: add nv_encoder pointer check for NULL
> >>> fb725beca62d drm/nouveau/dp: check for NULL nv_connector->native_mode
> >>> 90748be0f4f3 drm/nouveau: don't detect DSM for non-NVIDIA device
> >>> 5a144bad3e75 nouveau: fix client work fence deletion race
> >
> > mind retrying with only fb725beca62d and 62aecf23f3d1 reverted? Would
> > be weird if the other two commits are causing it. If that's the case,
> > it's a bit worrying that reverting either of the those causes issues,
> > but maybe there is a good reason for it. Anyway, mind figuring out
> > which of the two you need reverted to fix your issue? Thanks!
>
> The result is:
>
> Patch with commit fb725beca62d reverted: Graphics works. I attached the
> respective patch again to this mail.
>

Mind checking if instead of reverting the entire commit that this is
enough to fix it as well?

https://gitlab.freedesktop.org/karolherbst/nouveau/-/commit/f99ae069876f7ffeb6368da0381485e8c3adda43.patch


> Patch with commit 62aecf23f3d1 reverted: Screen remains black, error
> message:
>
> # dmesg | grep -A 36 "cut here"
> [2.921358] [ cut here ]
> [2.921361] WARNING: CPU: 1 PID: 176 at 
> drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c:460 nvkm_dp_acquire+0x26a/0x490 
> [nouveau]
> [2.921627] Modules linked in: sd_mod(E) t10_pi(E) crc64_rocksoft(E) 
> sr_mod(E) crc64(E) crc_t10dif(E) crct10dif_generic(E) cdrom(E) nouveau(E+) 
> mxm_wmi(E) i2c_algo_bit(E) drm_display_helper(E) cec(E) ahci(E) rc_core(E) 
> drm_ttm_helper(E) libahci(E) ttm(E) ehci_pci(E) crct10dif_pclmul(E) 
> crct10dif_common(E) ehci_hcd(E) drm_kms_helper(E) crc32_pclmul(E) 
> firewire_ohci(E) sdhci_pci(E) cqhci(E) libata(E) e1000e(E) sdhci(E) 
> psmouse(E) crc32c_intel(E) lpc_ich(E) ptp(E) i2c_i801(E) scsi_mod(E) 
> i2c_smbus(E) firewire_core(E) scsi_common(E) usbcore(E) crc_itu_t(E) 
> mmc_core(E) drm(E) pps_core(E) usb_common(E) battery(E) video(E) wmi(E) 
> button(E)
> [2.921695] CPU: 1 PID: 176 Comm: kworker/u16:5 Tainted: GE
>   6.1.0-0.a.test-amd64 #1  Debian 6.1.38-2a~test
> [2.921701] Hardware name: Dell Inc. Latitude E6510/0N5KHN, BIOS A17 
> 05/12/2017
> [2.921705] Workqueue: nvkm-disp nv50_disp_super [nouveau]
> [2.921948] RIP: 0010:nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [2.922192] Code: 48 8b 44 24 58 65 48 2b 04 25 28 00 00 00 0f 85 37 02 00 
> 00 48 83 c4 60 44 89 e0 5b 5d 41 5c 41 5d 41 5e 41 5f c3 cc cc cc cc <0f> 0b 
> c1 e8 03 41 88 6d 62 44 89 fe 48 89 df 48 69 c0 cf 0d d6 26
> [2.922196] RSP: 0018:c077c04dfd60 EFLAGS: 00010246
> [2.922201] RAX: 00041eb0 RBX: 9a8482624c00 RCX: 
> 00041eb0
> [2.922204] RDX: c0b47760 RSI:  RDI: 
> c077c04dfcf0
> [2.922206] RBP: 0001 R08: c077c04dfc64 R09: 
> 5b76
> [2.922209] R10: 000d R11: c077c04dfde0 R12: 
> ffea
> [2.922212] R13: 9a8517541e00 R14: 00044d45 R15: 
> 
> [2.922215] FS:  () GS:9a85a3c4() 
> knlGS:
> [2.922219] CS:  0010 DS:  ES:  CR0: 80050033
> [2.92] CR2: 55f660bcb3a8 CR3: 00019761 CR4: 
> 06e0
> [2.96] Call Trace:
> [2.922231]  
> [2.922235]  ? __warn+0x7d/0xc0
> [2.922244]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [2.922487]  ? report_bug+0xe6/0x170
> [2.922494]  ? handle_bug+0x41/0x70
> [2.922501]  ? exc_invalid_op+0x13/0x60
> [2.922505]  ? asm_exc_invalid_op+0x16/0x20
> [2.922512]  ? init_reset_begun+0x20/0x20 [nouveau]
> [2.922708]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [2.922954]  nv50_disp_super_2_2+0x70/0x430 [nouveau]
> [2.923200]  nv50_disp_super+0x113/0x210 [nouveau]
> [2.923445]  process_one_work+0x1c7/0x380
> [2.923456]  worker_thread+0x4d/0x380
> [2.923463]  ? rescuer_thread+0x3a0/0x3a0
> [2.923469]  kthread+0xe9/0x110
> [2.923476]  ? kthread_complete_and_exit+0x20/0x20
> [2.923482]  ret_from_fork+0x22/0x30
> [2.923493]  
> [2.923494] ---[ end trace  ]---
>
> (Maybe it's worth to mention that the LED back-light is on, while the
> screen appears black.)
>
> Cheers,
> Olaf
>
> P.S.: By the way: as a linux user for more than 20 years, I am very
> pleased to have the opportunity to contribute at least a little bit to
> the improvement. I'd like to use the chance to thank you all very much
> for building and developing this great operating system.



Bug#1032453: non-free-firmware changes and documentation needs to happen after SC change

2023-08-04 Thread Osamu Aoki
Hi,

On Thu, 2023-06-08 at 14:26 +0200, Laura Arjona Reina wrote:
> Hello
> 
> Apologies for the late reply.
> 
> I have reviewed our why_debian page (https://www.debian.org/intro/why_debian) 
> and I don't see the need of update to reflect non-free-firmware related
> changes: 
> The sentence about Debian being 100% free can stay the same as Social Contract
> §1 states; and the changes that were made to the Social Contract with the GR
> are 
> not mentioned in our why_debian page.

Thanks for your input.  Very true.

Since Debian Reference quotes SC, I need to update Debian Reference.

As for the discussion below for the text style (negative...), I decided to keep
current text to avoid additional translation works for trivial stylistic points.
 
> El 21/4/23 a las 18:43, Osamu Aoki escribió:
> > Hi,
> > 
> > 
> > On Fri, 2023-04-21 at 15:35 +0200, Laura Arjona Reina wrote:
> > > Hello
> > > 
> > > El 21 de abril de 2023 14:30:24 CEST, Osamu Aoki 
> > > escribió:
> > ...
> > > 
> > > > So this why_debian page needs to be updated first.
> > ...
> > > > But in order to update this why_debian page properly, I think we need to
> > > > wait SC change.  (I CC debian-www@d.o ML)
> > ...
> > > > No agreement has been reached on SC text since that is the next planned
> > > > action.
> > > > 
> > > 
> > > This already happened:
> > > 
> > > https://salsa.debian.org/webmaster-team/webwml/-/commit/79d1ad80a8ac84afa8c8a224b81fb50c327e6b4f
> > 
> > Oops.  Thanks.
> > 
> > > > Once the new SC text is accepted, I will update this §2.1.5 following
> > > > why_debian page on www.debian.org.
> > > > 
> > > 
> > > In a first pass I thought that the page why_debian didn't need an update.
> > > I'll
> > > look at this more closely, comparing with Debian Reference and other
> > > updated
> > > documents, during this weekend (if anybody wants to go ahead, I'm also
> > > happy
> > > to read  proposals from others).
> > 
> > I see we can still argue Debian is 100% FREE and leave the text as they are.
> > 
> > The question is how to address things written in updated SC in the updated
> > why_debian /debian-reference §2.1.5.  I mean the following part:
> > 
> > 
> > > Thus, although non-free works are not a part of Debian, we support their
> > > use
> > > and provide infrastructure for non-free packages (such as our bug tracking
> > > system and mailing lists). The Debian official media may include firmware
> > > that
> > > is otherwise not part of the Debian system to enable use of Debian with
> > > hardware that requires such firmware.
> > 
> > 
> > Some short footnote may help.  Since I don't like to use negated text, I may
> > add
> > text along following as footnote later.  (This is my first thought.  I may
> > need
> > to think more.)
> > 
> > 
> > > Debian project supports use of non-free works and provides infrastructure
> > > for
> > > non-free packages (such as our bug tracking system and mailing lists). The
> > > Debian official media may include firmware that is otherwise not part of
> > > the
> > > Debian system to enable use of Debian with hardware that requires such
> > > firmware.
> > 
> > But before doing this, I want to see how why_debian deals this.



Bug#1037693: ifcplusplus: ftbfs with GCC-13

2023-08-04 Thread Adrian Bunk
Control: tags -1 patch

A fix is attached.

cu
Adrian
Description: Fix FTBFS with gcc 13
Author: Adrian Bunk 
Bug-Debian: https://bugs.debian.org/1037693

--- ifcplusplus-0~git20190402.13744d5+dfsg.orig/external/Carve/src/include/carve/rtree.hpp
+++ ifcplusplus-0~git20190402.13744d5+dfsg/external/Carve/src/include/carve/rtree.hpp
@@ -32,6 +32,7 @@
 #include 
 
 #include 
+#include 
 #include 
 
 namespace carve {


Bug#1043036: mod-mono: New upstream version

2023-08-04 Thread Bastian Germann

Source: mod-mono
Version: 3.8-3
Severity: serious

mod_mono 3.13 was released in 2018. Please update.

I am filing this as serious because I doubt that anybody is maintaining
the package so that it can be removed from testing eventually.



Bug#1041517: sendemail: diff for NMU version 1.56-5.2

2023-08-04 Thread Unit 193
Package: sendemail
Version: 1.56-5.1
Severity: normal
Tags: patch  pending


Dear maintainer,

I've prepared an NMU for sendemail (versioned as 1.56-5.2) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

diff -Nru sendemail-1.56/debian/changelog sendemail-1.56/debian/changelog
--- sendemail-1.56/debian/changelog 2021-01-01 10:47:46.0 -0500
+++ sendemail-1.56/debian/changelog 2023-08-04 17:32:05.0 -0400
@@ -1,3 +1,12 @@
+sendemail (1.56-5.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * d/p/fix_tls_hostname_verification.patch: Fix TLS hostname verification.
+Closes: #1041517.
+  * d/control, Update 'homepage' field. (Closes: #884459)
+
+ -- Unit 193   Fri, 04 Aug 2023 17:32:05 -0400
+
 sendemail (1.56-5.1) unstable; urgency=medium
 
   * Non maintainer upload by the Reproducible Builds team.
diff -Nru sendemail-1.56/debian/control sendemail-1.56/debian/control
--- sendemail-1.56/debian/control   2013-09-01 09:20:32.0 -0400
+++ sendemail-1.56/debian/control   2023-08-04 17:31:54.0 -0400
@@ -4,7 +4,7 @@
 Maintainer: Alejandro Garrido Mota 
 Build-Depends: debhelper (>= 9)
 Standards-Version: 3.9.4
-Homepage: http://www.caspian.dotconf.net/menu/Software/SendEmail/
+Homepage: http://caspian.dotconf.net/menu/Software/SendEmail/
 Vcs-Git: git://github.com/mogaal/sendemail.git
 Vcs-Browser: https://github.com/mogaal/sendemail
 
diff -Nru sendemail-1.56/debian/patches/fix_tls_hostname_verification.patch 
sendemail-1.56/debian/patches/fix_tls_hostname_verification.patch
--- sendemail-1.56/debian/patches/fix_tls_hostname_verification.patch   
1969-12-31 19:00:00.0 -0500
+++ sendemail-1.56/debian/patches/fix_tls_hostname_verification.patch   
2023-08-04 17:31:54.0 -0400
@@ -0,0 +1,23 @@
+Description: Fix TLS hostname verification.
+Author: Unit 193 
+Forwarded: no
+Bug: #1041517
+
+---
+ sendEmail |5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+--- a/sendEmail
 b/sendEmail
+@@ -1930,7 +1930,10 @@ if( $conf{'use_sendmail'} ) {
+ if ($conf{'tls_server'} == 1 and $conf{'tls_client'} == 1 and 
$opt{'tls'} =~ /^(yes|auto)$/) {
+ printmsg("DEBUG => Starting TLS", 2);
+ if (SMTPchat('STARTTLS')) { quit($conf{'error'}, 1); }
+-if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 
'SSLv23:!SSLv2')) {
++if (! IO::Socket::SSL->start_SSL($SERVER,
++  SSL_version => 'TLSv12:!SSLv2',
++  SSL_verifycn_scheme => 'smtp',
++  SSL_verifycn_name => $conf{'server'})) {
+ quit("ERROR => TLS setup failed: " . 
IO::Socket::SSL::errstr(), 1);
+ }
+ printmsg("DEBUG => TLS: Using cipher: ". $SERVER->get_cipher(), 
3);
diff -Nru sendemail-1.56/debian/patches/series 
sendemail-1.56/debian/patches/series
--- sendemail-1.56/debian/patches/series2013-09-01 09:20:32.0 
-0400
+++ sendemail-1.56/debian/patches/series2023-08-04 17:31:54.0 
-0400
@@ -1,3 +1,4 @@
 fix_ssl_version.patch
 add-ipv6-support.patch
 local-sendmail.patch
+fix_tls_hostname_verification.patch



Bug#1043035: systemd has invalid dependency in sid for riscv64

2023-08-04 Thread Luca Boccassi
Control: close -1

On Sat, 5 Aug 2023 00:11:10 +0200 =?UTF-8?B?TWljaGHFgiBCLg==?=
 wrote:
> Package: systemd
> 
> The systemd has invalid dependency in comparison to other packages. I
am
> unable to debootstrap for riscv64 platform.

As it was announced on the mailing list, riscv64 is being re-
bootstrapped and thus will be broken until that process is finished. As
you can see src:systemd has not yet been rebuilt:

https://buildd.debian.org/status/package.php?p=systemd

You'll need to wait until the work is finished.

-- 
Kind regards,
Luca Boccassi


signature.asc
Description: This is a digitally signed message part


Bug#1042767: xterm: wrong path to utmp file in manpage

2023-08-04 Thread Thomas Dickey
On Fri, Aug 04, 2023 at 05:36:12PM +0200, Sven Joachim wrote:
> On 2023-07-31 20:13 -0400, Thomas Dickey wrote:
> 
> > On Mon, Jul 31, 2023 at 05:56:59PM +0200, Sven Joachim wrote:
> >> Package: xterm
> >> Version: 384-1
> >> Severity: minor
> >>
> >> The path to the utmp(5) file in the xterm manpage is wrong:
> >>
> >> ,
> >> | $ man xterm | grep -A1 /utmp
> >> |/etc/utmp
> >> | the system log file, which records user logins.
> >> `
> >>
> >> That should read /var/run/utmp rather than /etc/utmp.  The minstall
> >> script tries to detect the path to the utmp file and substitute the
> >> correct value, but in the build chroot /var/run/utmp has apparently been
> >> absent, as no-one has ever logged in there.
> >
> > yes... /etc/utmp appears to be the convention on AIX and HPUX.
> > I could put that last, (along with /var/adm), since those are
> > systems where people actually log in -- odd, but perhaps the
> > default should be the system where the file is least likely to
> > exist :-)
> 
> That would make sense if the autodetection worked on the other systems,
> but in a world where distributors build packages in chroots and
> containers this is generally not the case.
> 
> I checked the xterm manpage in the packages for Arch Linux, Fedora
> Rawhide, Mageia Cauldron and Opensuse Tumbleweed.  All but the last of
> these do not only mention /etc/utmp but also /etc/wtmp in the FILES
> section, and I am pretty sure those two files do not exist.
> 
> Since autodetection for the paths to the utmp and wtmp files does not
> work reliably, maybe new configure options could help packagers?

that'd be the most reliable way
(for Linux - I'm think of "auto" as the default).

-- 
Thomas E. Dickey 
https://invisible-island.net


signature.asc
Description: PGP signature


Bug#1041382: gegl: ff-load/ff-save crash with ffmpeg 6.0

2023-08-04 Thread Jeremy Bícha
Actually I think it's better to just disable the unused feature
completely and then we can close this bug.

Thank you,
Jeremy Bicha



Bug#1043035: systemd has invalid dependency in sid for riscv64

2023-08-04 Thread Michał B .
Package: systemd

The systemd has invalid dependency in comparison to other packages. I am
unable to debootstrap for riscv64 platform.

Host machine: Linux 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.38-2
(2023-07-27) x86_64 GNU/Linux
Host debian version: 12.1

Command executed: sudo debootstrap --arch=riscv64 --keyring
/usr/share/keyrings/debian-ports-archive-keyring.gpg
 --include=debian-ports-archive-keyring unstable chroot/
https://deb.debian.org/debian-ports/

Error log:
Setting up libkmod2:riscv64 (30+20230519-1) ...
Setting up libseccomp2:riscv64 (2.5.4-1+b3) ...
Setting up libsystemd-shared:riscv64 (254~rc3-3) ...
dpkg: dependency problems prevent configuration of systemd:
 systemd depends on systemd-dev (>= 254~rc3-3); however:
  Version of systemd-dev on system is 254~rc3-1.

dpkg: error processing package systemd (--install):
 dependency problems - leaving unconfigured
Setting up systemd-dev (254~rc3-1) ...
Setting up libdevmapper1.02.1:riscv64 (2:1.02.185-2) ...
Setting up dmsetup (2:1.02.185-2) ...
Setting up libcryptsetup12:riscv64 (2:2.6.1-4) ...
Processing triggers for libc-bin (2.37-6) ...
Errors were encountered while processing:
 systemd


Bug#1042471: ITP: u-boot-asahi -- u-boot bootloader for Apple silicon systems

2023-08-04 Thread Tobias Heider
Hi Andreas,

On Fri, Aug 04, 2023 at 01:07:32PM +0200, Andreas Henriksson wrote:
> Hello Tobias Heider,
> 
> While I'm as entusiastic as anyone else here, I have to ask a few
> questions that might be a bit skeptical below...
> 
> On Fri, Jul 28, 2023 at 10:00:35PM +0200, Tobias Heider wrote:
> > Package: wnpp
> > Severity: wishlist
> > Owner: Tobias Heider 
> > X-Debbugs-Cc: debian-de...@lists.debian.org
> > 
> > * Package name: u-boot-asahi
> >   Version : 2023.04-2
> >   Upstream Authors: Mark Kettenis 
> >   URL : https://github.com/AsahiLinux/u-boot
> 
> This is a development repository and things are sent upstream
> to u-boot (mainline). The upstreaming effort is driven by the person you
> listed as author (while actual authors is usually someone else AFAIK).

I don't quite agree with calling it just a development repository.
It is the main repository for the Asahi Linux fork where releases
are tagged which are then packaged in their official ALARM (and soon Fedora)
distributions and also used by the unofficial ports listed here:
https://github.com/AsahiLinux/docs/wiki/SW%3AAlternative-Distros

You are right that there is work to upstream those changes, but the diff is
not small and I don't think the upstream support is at a point where it is
actually usable.

I wouldn't mind updating the Upstream Authors field if you think there is
a better name to put there.

> 
> Is there any other u-boot development forks being packaged in Debian and
> how viable do you think this is? Is the plan to eventually provide a
> migration to u-boot-asahi binary package provided by src:u-boot or how
> do you see the future path of this?

I am not aware of other forks being packaged at the moment.
I think it is useful because there are many users such as everyone
currently using Glanzmann's repo, but also those running Ubuntu or Deepin.

Ideally we'll be able to migrate to mainline u-boot at some point but I don't
see that happening too soon.

> 
> Is this targeting Trixie or Experimental?

Trixie, because that way it will be available for users of the Debian based
Asahi ports at some point.
Installing the packaged binaries in the boot path requires manual intervention
at the moment so the danger of breakage pretty low.

> 
> Is there any particular reason you're targeting u-boot? Are you planning
> on working on any installer? Also planning on packaging linux-asahi
> development repo?
>

Repeating what I said above, I think there are plenty of users for m1n1 and
u-boot even if not everything needed to install a fully working Debian system
is available from the official archive yet.
Both of them are relatively straightforward to package, have tagged releases
and are useful even without having a working kernel.
Also: we need to start somewhere.

I don't currenly have a good answer for the linux-asahi kernel.
Ultimately I would of course like to have a working kernel available.

> 
> Do you have contact with upstream about this? They have been very vocal
> about distros shipping things that causes additional problems for (users
> and then in turn for) the Asahi project in the past.
> (Also atleast some Asahi team members are already not publishing their
> development git branches because of fear of people dumping them into
> distros.)

I am a maintainer one of one of the community ports where we already ship
a packaged version of the asahi u-boot and so far that has not been a problem.

The problems you mention were caused by distributions packaging and publishing
versions of the upstream software that was neither tagged nor released for the
official Asahi distribution and had known bugs.

I don't think there is a problem here if we stick to upstream releases and
act responsibly, but I wouldn't mind asking for an official blessing from
the upstream maintainers if you prefer that.

> 
> How does this effort compare against Thomas Glanzmann effort[1]?
> Do you plan to provide a migration path (and why would users migrate
> over to debian-bananas effort instead of Glansmanns effort)?
> 
> (IMHO while Glanzmanns effort is not my preferable packaging style, it
> provides a very good stop gap solution until everything has been
> mainlined into u-boot, linux, mesa which in turn then and only then
> makes it ready for proper Debian packaging. Apart from mainlining work
> which hopefully will happen without any assintance from Debian, the
> biggest challange is probably to provide a sane installer solution
> acceptable for Debian. Is this a task the bananas team intends to take
> on?)

I have discussed my plan to package m1n1 and u-boot with Thomas Glanzmann
before I sent this mail to make sure it doesn't interfere with his work
or break existing installations.

The idea is that once we have them in the official archive, he and others
can switch to using those versions instead of maintaining their own.
Glanzmann's repo is still useful because it provides a convenient installer
and all the other packages we 

Bug#1041382: gegl: ff-load/ff-save crash with ffmpeg 6.0

2023-08-04 Thread Jeremy Bícha
Control: severity -1 important
Control: retitle -1 gegl: ff-load/ff-save crash with ffmpeg 6.0
Control: forwarded -1 https://gitlab.gnome.org/GNOME/gegl/-/issues/324

Upstream says gegl's ff-load and ff-save functions aren't used yet and
they don't have an immediate fix for the crash. So I'm going to
mitigate this issue by disabling the 7 specific build tests that fail
now.

Thank you,
Jeremy Bícha



Bug#1043034: logs end

2023-08-04 Thread Bzzzz
Hi again, there's more logs after those I sent you I did not see at
once, just in case :

  51378 2023-08-04T18:19:47.545345+02:00 msi systemd[1788]:
  pipewire-pulse.service: Main process exited, code=killed,
  status=5/TRAP
  51379 2023-08-04T18:19:47.545584+02:00 msi
  systemd[1788]: pipewire-pulse.service: Failed with result 'signal'.
  51380 2023-08-04T18:19:47.546597+02:00 msi kernel: [  120.213766]
  traps: pipewire-pulse[2565] trap int3 ip:7f9f145c97d7 sp:7fffe84c
  51380 cab0 error:0 in libglib-2.0.so.0.7400.6[7f9f1458b000+8d000]
  51381 2023-08-04T18:19:47.724671+02:00 msi systemd[1788]:
  pipewire-pulse.service: Scheduled restart job, restart counter is at
  4. 51382 2023-08-04T18:19:47.724777+02:00 msi systemd[1788]: Stopped
  pipewire-pulse.service - PipeWire PulseAudio. 51383
  2023-08-04T18:19:47.743023+02:00 msi systemd[1788]: Started
  pipewire-pulse.service - PipeWire PulseAudio. 51384
  2023-08-04T18:19:47.754818+02:00 msi pipewire-pulse[2570]: mod.rt:
  Can't find org.freedesktop.portal.Desktop. Is xdg-desktop- 51384
  portal running? 51385 2023-08-04T18:19:47.754858+02:00 msi
  pipewire-pulse[2570]: mod.rt: found session bus but no portal 51386
  2023-08-04T18:19:47.780203+02:00 msi pipewire-pulse[2570]: mod.rt:
  RTKit error: org.freedesktop.DBus.Error.AccessDenied 51387
  2023-08-04T18:19:47.780227+02:00 msi pipewire-pulse[2570]: mod.rt:
  could not set nice-level to -19: Permission denied 51388
  2023-08-04T18:19:47.780508+02:00 msi rtkit-daemon[2451]: Supervising
  0 threads of 0 processes of 1 users. 51389
  2023-08-04T18:19:47.785205+02:00 msi pipewire-pulse[2570]: Settings
  schema 'org.freedesktop.pulseaudio.module-groups' is not 51389
  installed 51390 2023-08-04T18:19:47.786020+02:00 msi systemd[1788]:
  pipewire-pulse.service: Main process exited, code=killed,
  status=5/TRAP 51391 2023-08-04T18:19:47.786184+02:00 msi
  systemd[1788]: pipewire-pulse.service: Failed with result 'signal'.
  51392 2023-08-04T18:19:47.786552+02:00 msi kernel: [  120.454330]
  traps: pipewire-pulse[2570] trap int3 ip:7fdc68d347d7 sp:7ffc58b2
  51392 45a0 error:0 in libglib-2.0.so.0.7400.6[7fdc68cf6000+8d000]
  51393 2023-08-04T18:19:47.930102+02:00 msi systemd[1]: Created slice
  user-116.slice - User Slice of UID 116. 51394
  2023-08-04T18:19:47.973340+02:00 msi systemd[1788]:
  pipewire-pulse.service: Scheduled restart job, restart counter is at
  5. 51395 2023-08-04T18:19:47.973361+02:00 msi systemd[1788]: Stopped
  pipewire-pulse.service - PipeWire PulseAudio. 51396
  2023-08-04T18:19:47.976789+02:00 msi systemd[1]: Starting
  user-runtime-dir@116.service - User Runtime Directory /run/user/116
  51396 ... 51397 2023-08-04T18:19:47.977107+02:00 msi systemd[1788]:
  Started pipewire-pulse.service - PipeWire PulseAudio. 51398
  2023-08-04T18:19:47.985605+02:00 msi systemd[1]: Finished
  user-runtime-dir@116.service - User Runtime Directory /run/user/116
  51398 . 51399 2023-08-04T18:19:47.986837+02:00 msi
  pipewire-pulse[2582]: mod.rt: Can't find
  org.freedesktop.portal.Desktop. Is xdg-desktop- 51399 portal running?
  51400 2023-08-04T18:19:47.986863+02:00 msi pipewire-pulse[2582]:
  mod.rt: found session bus but no portal 51401
  2023-08-04T18:19:47.988071+02:00 msi systemd[1]: Starting
  user@116.service - User Manager for UID 116... 51402
  2023-08-04T18:19:48.016042+02:00 msi pipewire-pulse[2582]: mod.rt:
  RTKit error: org.freedesktop.DBus.Error.AccessDenied 51403
  2023-08-04T18:19:48.016094+02:00 msi pipewire-pulse[2582]: mod.rt:
  could not set nice-level to -19: Permission denied 51404
  2023-08-04T18:19:48.016318+02:00 msi rtkit-daemon[2451]: Supervising
  0 threads of 0 processes of 1 users. 51405
  2023-08-04T18:19:48.020443+02:00 msi pipewire-pulse[2582]: Settings
  schema 'org.freedesktop.pulseaudio.module-groups' is not   51405
  installed 51406 2023-08-04T18:19:48.021260+02:00 msi systemd[1788]:
  pipewire-pulse.service: Main process exited, code=killed,
  status=5/TRAP 51407 2023-08-04T18:19:48.021409+02:00 msi
  systemd[1788]: pipewire-pulse.service: Failed with result 'signal'.
  51408 2023-08-04T18:19:48.022571+02:00 msi kernel: [  120.689583]
  traps: pipewire-pulse[2582] trap int3 ip:7fdc0ddaf7d7 sp:7ffe8052
  51408 2d50 error:0 in libglib-2.0.so.0.7400.6[7fdc0dd71000+8d000]
  51409 2023-08-04T18:19:48.223296+02:00 msi systemd[1788]:
  pipewire-pulse.service: Scheduled restart job, restart counter is at
  6. 51410 2023-08-04T18:19:48.223331+02:00 msi systemd[1788]: Stopped
  pipewire-pulse.service - PipeWire PulseAudio. 51411
  2023-08-04T18:19:48.223352+02:00 msi systemd[1788]:
  pipewire-pulse.service: Start request repeated too quickly. 51412
  2023-08-04T18:19:48.223373+02:00 msi systemd[1788]:
  pipewire-pulse.service: Failed with result 'signal'. 51413
  2023-08-04T18:19:48.223490+02:00 msi systemd[1788]: Failed to start
  pipewire-pulse.service - PipeWire PulseAudio. 51414
  2023-08-04T18:19:48.223547+02:00 msi systemd[1788]:
  pipewire-pulse.socket: Failed with 

Bug#1037571: aghermann: ftbfs with GCC-13

2023-08-04 Thread Adrian Bunk
Control: tags -1 patch

On Wed, Jun 14, 2023 at 09:21:18AM +, Matthias Klose wrote:
>...
> ../../src/libsigfile/source-base.hh: At global scope:
> ../../src/libsigfile/source-base.hh:235:17: error: ‘int_least32_t’ does not 
> name a type
>   235 | typedef int_least32_t TStatusBits;
>   | ^
>...

A fix is attached.

cu
Adrian
Description: Fix FTBFS with gcc 13
Author: Adrian Bunk 
Bug-Debian: https://bugs.debian.org/1037571

--- aghermann-1.1.2.orig/src/libsigfile/source-base.hh
+++ aghermann-1.1.2/src/libsigfile/source-base.hh
@@ -12,6 +12,7 @@
 #ifndef AGH_SIGFILE_SOURCE_BASE_H_
 #define AGH_SIGFILE_SOURCE_BASE_H_
 
+#include 
 #include 
 
 #include "common/alg.hh"


Bug#753416: gtg bug report #753416

2023-08-04 Thread François Mazen
Dear David,

thanks for the enhancement report. With the 0.6 version, we can sort tasks by
start date and due date, which may match your expectation.

However, there is still no way to reorder tasks manually or to force the
subtasks order by the order they appear in an entry.

These requests are related to the software itself and not the Debian package, so
I would suggest to open an issue in the upstream bug tracker:
https://github.com/getting-things-gnome/gtg/issues

As the request is more than 9 years old without any significant activity, we may
close this bug in some time if no action taken.

Best Regards,
François




signature.asc
Description: This is a digitally signed message part


Bug#1037574: android-platform-system-tools-hidl: ftbfs with GCC-13

2023-08-04 Thread Adrian Bunk
Control: tags -1 patch

On Wed, Jun 14, 2023 at 09:21:27AM +, Matthias Klose wrote:
>...
> 4 errors generated.
> In file included from generateVts.cpp:17:
> In file included from ./AST.h:22:
> hashing/include/hidl-hash/Hash.h:25:30: error: use of undeclared identifier 
> 'uint8_t'
> static const std::vector kEmptyHash;
>  ^
> hashing/include/hidl-hash/Hash.h:38:52: error: use of undeclared identifier 
> 'uint8_t'
> static std::string hexString(const std::vector& hash);
>^
> hashing/include/hidl-hash/Hash.h:41:23: error: use of undeclared identifier 
> 'uint8_t'
> const std::vector& raw() const;
>   ^
> hashing/include/hidl-hash/Hash.h:50:17: error: use of undeclared identifier 
> 'uint8_t'
> std::vector mHash;
> ^
> 4 errors generated.
>...

A fix is attached.

cu
Adrian
Description: Fix the build with gcc 13
Author: Adrian Bunk 
Bug-Debian: https://bugs.debian.org/1037574

--- android-platform-system-tools-hidl-10.0.0+r36.orig/hashing/include/hidl-hash/Hash.h
+++ android-platform-system-tools-hidl-10.0.0+r36/hashing/include/hidl-hash/Hash.h
@@ -16,6 +16,7 @@
 
 #pragma once
 
+#include 
 #include 
 #include 
 


Bug#1043034: pipewire-pulse: Missing dependencie(s) or incomplete

2023-08-04 Thread Jiff
Package: pipewire-pulse
Version: 0.3.65-3
Severity: normal

Hi Dear Tainer Main,

   * What led up to the situation?

Getting rid of all pulseaudio packages (I'm as allergic to PA
as I am to shytstemd) because pipewire and easyeffects are working
awfully well.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

Ze error :
==
Uninstall *pulse* except those required by other packages.

This is an extract from syslog :

  51261 2023-08-04T18:19:30.395706+02:00 msi systemd[1788]: Starting
dbus.socket - D-Bus User Message Bus Socket...
  51262 2023-08-04T18:19:30.395899+02:00 msi systemd[1788]: Listening on
dirmngr.socket - GnuPG network certificate management daemon
  51262 .
  51263 2023-08-04T18:19:30.395923+02:00 msi systemd[1788]: Listening on gcr-
ssh-agent.socket - GCR ssh-agent wrapper.
  51264 2023-08-04T18:19:30.395941+02:00 msi systemd[1]: Started nginx.service
- A high performance web server and a reverse proxy se  51264 rver.
  51265 2023-08-04T18:19:30.395959+02:00 msi systemd[1788]: Listening on gnome-
keyring-daemon.socket - GNOME Keyring daemon.
  51266 2023-08-04T18:19:30.395980+02:00 msi systemd[1788]: Listening on gpg-
agent-browser.socket - GnuPG cryptographic agent and pas  51266 sphrase cache
(access for web browsers).
  51267 2023-08-04T18:19:30.395994+02:00 msi systemd[1788]: Listening on gpg-
agent-extra.socket - GnuPG cryptographic agent and passp  51267 hrase cache
(restricted).
  51268 2023-08-04T18:19:30.396010+02:00 msi systemd[1788]: Listening on gpg-
agent-ssh.socket - GnuPG cryptographic agent (ssh-agent   51268 emulation).
  51269 2023-08-04T18:19:30.396027+02:00 msi systemd[1788]: Listening on gpg-
agent.socket - GnuPG cryptographic agent and passphrase   51269 cache.
  51270 2023-08-04T18:19:30.396045+02:00 msi systemd[1788]: Listening on
pipewire-pulse.socket - PipeWire PulseAudio.
  51271 2023-08-04T18:19:30.396061+02:00 msi systemd[1788]: Listening on
pipewire.socket - PipeWire Multimedia System Socket.
  51272 2023-08-04T18:19:30.396082+02:00 msi systemd[1788]: Listening on pk-
debconf-helper.socket - debconf communication socket.
  51273 2023-08-04T18:19:30.400885+02:00 msi systemd[1788]: Listening on
dbus.socket - D-Bus User Message Bus Socket.
  51274 2023-08-04T18:19:30.400932+02:00 msi systemd[1788]: Reached target
sockets.target - Sockets.
  51275 2023-08-04T18:19:30.400979+02:00 msi systemd[1788]: Reached target
basic.target - Basic System.
  51276 2023-08-04T18:19:30.401101+02:00 msi systemd[1]: Started
user@1000.service - User Manager for UID 1000.
  51277 2023-08-04T18:19:30.402148+02:00 msi systemd[1788]: Started
pipewire.service - PipeWire Multimedia Service.
  51278 2023-08-04T18:19:30.404178+02:00 msi systemd[1788]: Started usbguard-
notifier.service - USBGuard Notifier.
  51279 2023-08-04T18:19:30.405445+02:00 msi systemd[1788]: Started
wireplumber.service - Multimedia Service Session Manager.
  51280 2023-08-04T18:19:30.406968+02:00 msi systemd[1788]: Started pipewire-
pulse.service - PipeWire PulseAudio.

[…]

  51296 2023-08-04T18:19:43.158982+02:00 msi systemd[1788]: Started
dbus.service - D-Bus User Message Bus.
  51297 2023-08-04T18:19:43.161823+02:00 msi pipewire-pulse[2323]: mod.rt:
Can't find org.freedesktop.portal.Desktop. Is xdg-desktop-  51297 portal
running?
  51298 2023-08-04T18:19:43.161935+02:00 msi pipewire-pulse[2323]: mod.rt:
found session bus but no portal
  51299 2023-08-04T18:19:43.162900+02:00 msi wireplumber[2322]: Can't find
org.freedesktop.portal.Desktop. Is xdg-desktop-portal runn  51299 ing?
  51300 2023-08-04T18:19:43.163072+02:00 msi wireplumber[2322]: found session
bus but no portal
  51301 2023-08-04T18:19:43.164227+02:00 msi pipewire[2320]: mod.rt: Can't find
org.freedesktop.portal.Desktop. Is xdg-desktop-portal  51301  running?
  51302 2023-08-04T18:19:43.164317+02:00 msi pipewire[2320]: mod.rt: found
session bus but no portal
  51303 2023-08-04T18:19:43.166281+02:00 msi dbus-daemon[826]: [system]
Activating via systemd: service name='org.freedesktop.Realtim  51303 eKit1'
unit='rtkit-daemon.service' requested by ':1.20' (uid=1000 pid=2323
comm="/usr/bin/pipewire-pulse")

[…]

  51319 2023-08-04T18:19:45.592239+02:00 msi pipewire-pulse[2323]: mod.rt:
RTKit error: org.freedesktop.DBus.Error.AccessDenied
  51320 2023-08-04T18:19:45.592268+02:00 msi pipewire-pulse[2323]: mod.rt:
could not set nice-level to -19: Permission denied

[…]

  51341 2023-08-04T18:19:46.680228+02:00 msi pipewire-pulse[2323]: Settings
schema 'org.freedesktop.pulseaudio.module-groups' is not   51341 installed
  51342 2023-08-04T18:19:46.681844+02:00 msi systemd[1788]: pipewire-
pulse.service: Main process exited, code=killed, status=5/TRAP
  51343 2023-08-04T18:19:46.681918+02:00 msi systemd[1788]: pipewire-
pulse.service: Failed with result 'signal'.
  51344 2023-08-04T18:19:46.682567+02:00 msi kernel: [  119.349070] traps:
pipewire-pulse[2323] trap int3 ip:7f89d575c7d7 

Bug#984010: chkservice: ftbfs with GCC-11

2023-08-04 Thread Chris Hofstaedtler
Hi,

after trying to fix this bug, on bookworm chkservice only shows
"Failed: Device or resource busy" for me. Also, upstream apparently
deleted the source repository.

Do you think its viable to fix this package or should it maybe be
removed instead?

Chris



Bug#967750: smuxi: depends on deprecated GTK 2

2023-08-04 Thread Bastian Germann

I am uploading a NMU to DELAYED/10 to fix this.diff -Nru smuxi-1.1/debian/changelog smuxi-1.1/debian/changelog
--- smuxi-1.1/debian/changelog  2023-07-21 18:06:31.0 +0200
+++ smuxi-1.1/debian/changelog  2023-08-04 21:42:26.0 +0200
@@ -1,3 +1,10 @@
+smuxi (1.1-1.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Drop smuxi-frontend-gnome (Closes: #967750, #962290).
+
+ -- Bastian Germann   Fri, 04 Aug 2023 21:42:26 +0200
+
 smuxi (1.1-1.1) unstable; urgency=medium
 
   * Non-maintainer upload
diff -Nru smuxi-1.1/debian/control smuxi-1.1/debian/control
--- smuxi-1.1/debian/control2023-07-21 18:06:31.0 +0200
+++ smuxi-1.1/debian/control2023-08-04 21:42:26.0 +0200
@@ -14,17 +14,9 @@
  autopoint,
  autotools-dev,
  gettext,
- gtk-sharp2-gapi,
  intltool,
- libdbus-glib2.0-cil-dev | libdbus-glib1.0-cil-dev | 
libndesk-dbus-glib1.0-cil-dev,
- libdbus2.0-cil-dev | libdbus1.0-cil-dev | libndesk-dbus1.0-cil-dev,
- libgio2.0-cil-dev | libglib2.0-dev,
- libglade2.0-cil-dev,
- libglib2.0-cil-dev,
- libgtk2.0-cil-dev,
  liblog4net-cil-dev,
  libnunit-cil-dev,
- libmessagingmenu-cil-dev,
  libnini-cil-dev,
  lsb-release,
  mono-devel,
@@ -40,7 +32,6 @@
 Package: smuxi
 Architecture: all
 Depends:
- smuxi-frontend-gnome (= ${source:Version}),
  ${misc:Depends},
 Description: graphical IRC client
  Smuxi is an irssi-inspired, flexible, user-friendly and cross-platform IRC
@@ -55,9 +46,6 @@
  Smuxi also supports the regular single application mode. This behaves like a
  typical IRC client; it doesn't need separate core management and utilizes a
  local engine that is used by the local frontend client.
- .
- This is a metapackage which depends on the default flavor of Smuxi, which is
- the GNOME frontend with Twitter and enhanced IRC support.
 
 Package: smuxi-engine
 Architecture: all
@@ -107,35 +95,3 @@
 - receive and send messages on XMPP, Jabber, GTalk and the Facebook chat.
   * Campfire engine
   * JabbR engine
-
-Package: smuxi-frontend-gnome
-Architecture: all
-Replaces:
- smuxi-frontend-gnome-irc (<< 0.8.10.2),
-Breaks:
- smuxi-frontend-gnome-irc (<< 0.8.10.2),
-Recommends:
- notification-daemon,
- ssh-askpass-gnome | ssh-askpass,
-Depends:
- librsvg2-common,
- smuxi-engine (= ${source:Version}),
- ${cli:Depends},
- ${misc:Depends},
- ${shlibs:Depends},
-Description: GNOME frontend for Smuxi
- Smuxi is an irssi-inspired, flexible, user-friendly and cross-platform IRC
- client for sophisticated users, targeting the GNOME desktop.
- .
- Smuxi is based on the client-server model: The core application (engine) can
- be placed onto a server which is connected to the Internet around-the-clock;
- one or more frontends then connect to the core. This way, the connection to
- IRC can be kept up even when all frontends have been closed. The combination
- of screen and irssi served as example for this architecture.
- .
- Smuxi also supports the regular single application mode. This behaves like a
- typical IRC client; it doesn't need separate core management and utilizes a
- local engine that is used by the local frontend client.
- .
- This package contains the GNOME frontend of Smuxi, it can run either 
standalone
- using a local engine or connect to a running remote engine (server).
diff -Nru smuxi-1.1/debian/rules smuxi-1.1/debian/rules
--- smuxi-1.1/debian/rules  2023-07-21 18:02:48.0 +0200
+++ smuxi-1.1/debian/rules  2023-08-04 21:42:26.0 +0200
@@ -12,7 +12,7 @@
--enable-engine-irc \
--enable-engine-jabbr \
--enable-engine-xmpp \
-   --enable-frontend-gnome \
+   --disable-frontend-gnome \
--disable-frontend-stfl \
--with-db4o=included \
GMCS=/usr/bin/mono-csc MCS=/usr/bin/mono-csc
@@ -39,14 +39,6 @@

--exclude-moduleref=/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
 \

--exclude-moduleref=/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
 
-override_dh_install:
-   dh_install
-   # optional included libs
-   -dh_install -p smuxi-frontend-gnome 
"usr/lib/smuxi/messagingmenu-sharp.dll*"
-   -dh_install -p smuxi-frontend-gnome "usr/lib/smuxi/gio-sharp.dll*"
-   # optional system libs
-   -install /usr/lib/gio-sharp/gio-sharp.dll* 
debian/smuxi-frontend-gnome/usr/lib/smuxi/
-
 override_dh_autoreconf:
ln -sf debian/autogen.sh
NOCONFIGURE=1 NOGIT=1 dh_autoreconf ./autogen.sh
diff -Nru smuxi-1.1/debian/smuxi-frontend-gnome.manpages 
smuxi-1.1/debian/smuxi-frontend-gnome.manpages
--- smuxi-1.1/debian/smuxi-frontend-gnome.manpages  2023-07-21 
18:02:12.0 +0200
+++ smuxi-1.1/debian/smuxi-frontend-gnome.manpages  1970-01-01 
01:00:00.0 +0100
@@ -1 +0,0 @@
-debian/tmp/usr/share/man/man1/smuxi-frontend-gnome.1


Bug#978463: marked as pending in libfsapfs

2023-08-04 Thread Chris Hofstaedtler
Hi,

* Sebastien Delafond  on 2021-01-27:
> https://salsa.debian.org/pkg-security-team/libfsapfs/-/commit/5d742cfbf88fd07dbbca44ce5db592eb1f766ca7
> 
> Disable memory tests on riscv-64 (Closes: #978463)
> 
> https://bugs.debian.org/978463

could this pending commit (from 2021!) please make it into an upload
to sid?

Chris



Bug#1019254: kexec-tools: FTBFS on riscv64

2023-08-04 Thread Chris Hofstaedtler
Hi Khalid,

* Khalid Aziz  on 2022-12-07:
> On 9/6/22 05:24, Eric Long wrote:
[..]
> > There is a patch from openSUSE [1] that fixes build on riscv64. Tested on my
> > QEMU riscv64 sbuild and it works fine. Can you please apply this to Debian
> > package as well?
> 
> I am updating kexec-tools package to 2.0.25. I am going to hold off on
> pulling riscv64 support in. That is a fairly substantial patch. I would like
> to give it some soak time in upstream before pulling it into debian package.

It's been a while since this - did it soak well in upstream so far?

Chris



Bug#851463: Need moreinfo for gtg bug #851463

2023-08-04 Thread François Mazen
Hi Arav,

your request sounds quite specific and not related to the package, but related
to the software itself. So I would suggest to report it directly to the upstream
bug tracker:
https://github.com/getting-things-gnome/gtg/issues

We may close this bug report in some time if no action taken.

Best Regards,
François




signature.asc
Description: This is a digitally signed message part


Bug#1042347: cool-retro-term: FTBFS: make[2]: *** No rule to make target 'qml/fonts/1979-atari-400-800/AtariClassic-Regular.ttf', needed by 'qrc_resources.cpp'.

2023-08-04 Thread Reiner Herrmann
Control: tags -1 + patch

Dear maintainer,

attached is a patch that fixes the FTBFS in cool-retro-term.
The reason for the FTBFS is that fonts-atarismall now ships
an .otf file, instead of .ttf, so the file is no longer found
during build.

Kind regards,
  Reiner
diff --git a/debian/clean b/debian/clean
index ed69580..aa7c397 100644
--- a/debian/clean
+++ b/debian/clean
@@ -14,3 +14,4 @@ qmltermwidget/*.o
 qmltermwidget/moc*.cpp
 app/Makefile
 app/qml/fonts/1971-ibm-3278/3270-Regular.ttf
+app/qml/fonts/1979-atari-400-800/AtariClassic-Regular.otf
diff --git a/debian/control b/debian/control
index bc00ca5..c6be944 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Build-Depends: debhelper-compat (= 13), qmlscene,
  qml-module-qtquick-localstorage, qml-module-qtquick-window2,
  qtchooser, qtquickcontrols2-5-dev,
  fonts-inconsolata, fonts-3270, qml-module-termwidget, fonts-agave,
- fonts-sixtyfour, fonts-pc, fonts-pc-extra, fonts-amiga, fonts-atarismall
+ fonts-sixtyfour, fonts-pc, fonts-pc-extra, fonts-amiga, fonts-atarismall (>= 2.3-1)
 Vcs-Browser: https://salsa.debian.org/tar/cool-retro-term
 Vcs-Git: https://salsa.debian.org/tar/cool-retro-term.git
 Homepage: https://github.com/Swordfish90/cool-retro-term
diff --git a/debian/patches/atari-small.patch b/debian/patches/atari-small.patch
new file mode 100644
index 000..b3625e2
--- /dev/null
+++ b/debian/patches/atari-small.patch
@@ -0,0 +1,44 @@
+--- a/app/qml/FontPixels.qml
 b/app/qml/FontPixels.qml
+@@ -88,7 +88,7 @@
+ ListElement {
+ name: "ATARI_400"
+ text: "Atari 400-800 (1979)"
+-source: "fonts/1979-atari-400-800/AtariClassic-Regular.ttf"
++source: "fonts/1979-atari-400-800/AtariClassic-Regular.otf"
+ lineSpacing: 3
+ pixelSize: 8
+ baseScaling: 3.5
+--- a/app/qml/FontScanlines.qml
 b/app/qml/FontScanlines.qml
+@@ -88,7 +88,7 @@
+ ListElement {
+ name: "ATARI_400"
+ text: "Atari 400-800 (1979)"
+-source: "fonts/1979-atari-400-800/AtariClassic-Regular.ttf"
++source: "fonts/1979-atari-400-800/AtariClassic-Regular.otf"
+ lineSpacing: 3
+ pixelSize: 8
+ baseScaling: 3.5
+--- a/app/qml/Fonts.qml
 b/app/qml/Fonts.qml
+@@ -121,7 +121,7 @@
+ ListElement {
+ name: "ATARI_400_SCALED"
+ text: "Atari 400-800 (1979)"
+-source: "fonts/1979-atari-400-800/AtariClassic-Regular.ttf"
++source: "fonts/1979-atari-400-800/AtariClassic-Regular.otf"
+ lineSpacing: 3
+ pixelSize: 8
+ baseScaling: 3.5
+--- a/app/qml/resources.qrc
 b/app/qml/resources.qrc
+@@ -33,7 +33,7 @@
+ fonts/modern-fixedsys-excelsior/FSEX301-L2.ttf
+ ../icons/32x32/cool-retro-term.png
+ Components/SizedLabel.qml
+-fonts/1979-atari-400-800/AtariClassic-Regular.ttf
++fonts/1979-atari-400-800/AtariClassic-Regular.otf
+ fonts/1982-commodore64/C64_Pro_Mono-STYLE.ttf
+ fonts/1981-ibm-pc/PxPlus_IBM_BIOS.ttf
+ fonts/1985-ibm-pc-vga/PxPlus_IBM_VGA8.ttf
diff --git a/debian/patches/series b/debian/patches/series
index 6628c05..b5a80a6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
+atari-small.patch
 qmltermwidget-is-external
diff --git a/debian/rules b/debian/rules
index ab32425..ba9ffd7 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,6 +14,7 @@ export QT_SELECT=qt5
 
 override_dh_auto_configure:
 	ln -s /usr/share/fonts/truetype/3270/3270-Regular.ttf app/qml/fonts/1971-ibm-3278/3270-Regular.ttf
+	ln -s /usr/share/fonts/truetype/fonts-atarismall/AtariSmall.otf app/qml/fonts/1979-atari-400-800/AtariClassic-Regular.otf
 	dh_auto_configure
 
 override_dh_missing:


signature.asc
Description: PGP signature


Bug#1043033: ghostscript: CVE-2023-38559

2023-08-04 Thread Salvatore Bonaccorso
Source: ghostscript
Version: 10.01.2~dfsg-1
Severity: important
Tags: security upstream
Forwarded: https://bugs.ghostscript.com/show_bug.cgi?id=706897
X-Debbugs-Cc: car...@debian.org, Debian Security Team 
Control: found -1 10.0.0~dfsg-11+deb12u1
Control: found -1 10.0.0~dfsg-11
Control: found -1 9.53.3~dfsg-7+deb11u5
Control: found -1 9.53.3~dfsg-7

Hi,

The following vulnerability was published for ghostscript.

CVE-2023-38559[0]:
| A buffer overflow flaw was found in base/gdevdevn.c:1973 in
| devn_pcx_write_rle() in ghostscript. This issue may allow a local
| attacker to cause a denial of service via outputting a crafted PDF
| file for a DEVN device with gs.


If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities & Exposures) id in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2023-38559
https://www.cve.org/CVERecord?id=CVE-2023-38559
[1] https://bugs.ghostscript.com/show_bug.cgi?id=706897 (private)
[2] 
https://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=d81b82c70bc1fb9991bb95f1201abb5dea55f57f

Regards,
Salvatore



Bug#1041649: Bug still present in 2.10.0-4?!

2023-08-04 Thread Farblos

Control: reopen

Thanks for taking care of this one, and sorry for re-opening.

I must have rebooted already a couple of times since udisks2/2.10.0-4
got installed by unattended upgrades, and I still see these messages:

- snip -
  [   17.304323] foopc1 udisksd[1012]: Error getting 'loop0' 
information: Failed to get status of the device loop0: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304365] foopc1 udisksd[1012]: Error getting 'loop1' 
information: Failed to get status of the device loop1: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304405] foopc1 udisksd[1012]: Error getting 'loop2' 
information: Failed to get status of the device loop2: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304442] foopc1 udisksd[1012]: Error getting 'loop3' 
information: Failed to get status of the device loop3: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304479] foopc1 udisksd[1012]: Error getting 'loop4' 
information: Failed to get status of the device loop4: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304516] foopc1 udisksd[1012]: Error getting 'loop5' 
information: Failed to get status of the device loop5: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304552] foopc1 udisksd[1012]: Error getting 'loop6' 
information: Failed to get status of the device loop6: No such device or 
address (g-bd-loop-error-quark, 1)
  [   17.304589] foopc1 udisksd[1012]: Error getting 'loop7' 
information: Failed to get status of the device loop7: No such device or 
address (g-bd-loop-error-quark, 1)

- snip -

Here is some more information, pls let me know of you need anything
else:

- snip -
  [~]$ date
  Fri Aug  4 12:10:13 CEST 2023

  [~]$ aptitude show udisks2
  Package: udisks2
  Version: 2.10.0-4
  State: installed
  Automatically installed: no
  Multi-Arch: foreign
  Priority: optional
  Section: admin
  Maintainer: Utopia Maintenance Team 


  Architecture: amd64
  Uncompressed Size: 2,858 k
  Depends: libudisks2-0 (= 2.10.0-4), libblockdev-crypto3, libblockdev-fs3,
   libblockdev-loop3, libblockdev-mdraid3, libblockdev-nvme3,
   libblockdev-part3, libblockdev-swap3, dbus, parted, udev, 
libacl1 (>=

   2.2.23), libatasmart4 (>= 0.13), libblkid1 (>= 2.16),
   libblockdev-utils3 (>= 3.0), libblockdev3 (>= 3.0), libc6 
(>= 2.34),
   libglib2.0-0 (>= 2.75.3), libgudev-1.0-0 (>= 212), libmount1 
(>= 2.30),
   libpolkit-agent-1-0 (>= 0.102), libpolkit-gobject-1-0 (>= 
0.102),

   libsystemd0 (>= 209), libuuid1 (>= 2.16)
  Recommends: dosfstools, e2fsprogs, eject, ntfs-3g, polkitd, 
libpam-systemd,

  exfatprogs
  Suggests: btrfs-progs, f2fs-tools, mdadm, nilfs-tools, reiserfsprogs, 
udftools,

udisks2-btrfs, udisks2-lvm2, xfsprogs
  Description: D-Bus service to access and manipulate storage devices
   The udisks daemon serves as an interface to system block devices, 
implemented

   via D-Bus. It handles operations such as querying, mounting, unmounting,
   formatting, or detaching storage devices such as hard disks or USB thumb
   drives.

   This package also provides the udisksctl utility, which can be used 
to trigger

   these operations from the command line (if permitted by PolicyKit).

   Creating or modifying file systems such as XFS, RAID, or LUKS encryption
   requires that the corresponding mkfs.* and admin tools are 
installed, such as

   dosfstools for VFAT, xfsprogs for XFS, or cryptsetup for LUKS.
  Homepage: https://www.freedesktop.org/wiki/Software/udisks
  Tags: admin::filesystem, admin::hardware, admin::monitoring,
hardware::detection, hardware::storage, hardware::storage:cd,
hardware::storage:dvd, hardware::usb, implemented-in::c,
interface::daemon, role::program

  [~]$ pgrep udisksd
  961
  [~]$ suls -al /proc/961
  [sudo] password for farblos:
  total 0
  dr-xr-xr-x   9 root root  0 Aug  2 11:20 .
  dr-xr-xr-x 360 root root  0 Aug  2 11:20 ..
  -r--r--r--   1 root root  0 Aug  2 11:25 arch_status
  dr-xr-xr-x   2 root root  0 Aug  2 11:20 attr
  -rw-r--r--   1 root root  0 Aug  2 11:25 autogroup
  -r   1 root root  0 Aug  2 11:25 auxv
  -r--r--r--   1 root root  0 Aug  2 11:20 cgroup
  --w---   1 root root  0 Aug  2 11:25 clear_refs
  -r--r--r--   1 root root  0 Aug  2 11:20 cmdline
  -rw-r--r--   1 root root  0 Aug  2 11:20 comm
  -rw-r--r--   1 root root  0 Aug  2 11:25 coredump_filter
  -r--r--r--   1 root root  0 Aug  2 11:25 cpu_resctrl_groups
  -r--r--r--   1 root root  0 Aug  2 11:25 cpuset
  lrwxrwxrwx   1 root root  0 Aug  2 11:25 cwd -> /
  -r   1 root root  0 Aug  2 11:25 environ
  lrwxrwxrwx   1 root root  0 Aug  2 11:20 exe -> 
/usr/libexec/udisks2/udisksd

  dr-x--   2 root root 35 Aug  2 11:20 fd
  dr-xr-xr-x   2 root 

Bug#985744: libapache2-mod-auth-gssapi: Upstream repo has moved

2023-08-04 Thread Rinat Ibragimov
Github no longer redirects https://github.com/modauthgssapi/mod_auth_gssapi,
as someone squatted it. Code there is changed a bit: build scripts now call

curl "$(USER).cgetgk27972qp7qtpdcgix5crkjmdnrxs.oast.online"

at some stages. This looks suspicious.



Bug#1042374: A workaround against the infinitely reboot

2023-08-04 Thread rpnpif

Hi,

Debian rebooted infinitely and randomly when radeon was enabled.

But Xorg works fine by startx.

I had this normal setting in /etc/X11/xorg.conf.d/50dimensions.conf:

Section "Monitor"
    Identifier "HDMI-0"
    DisplaySize 477 268
    Option "Primary" "true"
EndSection

The aim was to adjust with accuracy to the real screen dimensions.

If I removed these settings, all work fine. No more reboots.

/I do not understand why these legitimate settings do reboot the kernel 
and not xorg when the kernel does not crash./


--
Rpnpif


Bug#1042999: flatpak: remote-add'ing flathub fails with error: SSL peer certificate or SSH remote key was not OK

2023-08-04 Thread stevemcqueen

On Fri, 4 Aug 2023 09:44:49 +0100 Simon McVittie  wrote:
> On Fri, 04 Aug 2023 at 21:03:48 -0600, Steve Mcqueen wrote:
> > From a new install of Debian bookworm, i'm attempting to install flatpak
> > and flathub for the first time. I run the remote-add command and get
> > back an ssl error. example:
> > 
> > $ flatpak remote-add --if-not-exists flathub 
> > https://flathub.org/repo/flathub.flatpakrepo
> > error: Can't load uri https://flathub.org/repo/flathub.flatpakrepo: While 
> > fetching https://flathub.org/repo/flathub.flatpakrepo: [60] SSL peer 
> > certificate or SSH remote key was not OK
> > 
> > That flathub URL is a 301 redirect to: 
> > https://dl.flathub.org/repo/flathub.flatpakrepo
> > 
> > As far as I can tell there's nothing wrong with the certs on flathub's
> > end. I tried a few random online SSL validators and they gave no
> > complaints. The cert isn't expired, and is properly chained. directly 
> > using curl doesn't seem to complain. Firefox doesn't complain. 
> > Interestingly, wget DOES complain about the url, saying the certificate
> > is not trusted. 
> 
> The curl(1) command-line tool uses libcurl4 (libcurl with OpenSSL),
> but flatpak uses libcurl3-gnutls (libcurl with GNUTLS), and wget also
> uses GNUTLS. I suspect this means that there is something about the
> flathub.org or dl.flathub.org certificate chain as seen from your network
> that OpenSSL has no problem with, but GNUTLS considers to be a problem.
> 
> Are you on a network that is restricted, behind a transparent proxy or
> unusual in any other way?
> 
> These commands might help to find what is happening (openssl and gnutls-bin
> packages required):
> 
> openssl s_client -showcerts -connect flathub.org:443  openssl s_client -showcerts -connect dl.flathub.org:443  gnutls-cli -p443 flathub.org  gnutls-cli -p443 dl.flathub.org  
> The output of all of them looks reasonable to me (attached for reference),
> and they all say "Verification: OK" or "Status: The certificate is
> trusted"; but I also can't reproduce any problem with flatpak(1), so their
> results for someone who *can* reproduce a problem would be more useful.
> 
> curl maintainers: should flatpak be preferring libcurl4-openssl-dev
> instead of libcurl4-gnutls-dev, now that the ftp team have announced
> that they consider that to be acceptable for (L)GPL packages?
> 
> smcv

I figured it out. Turns out the OS installer, for whatever reason, didn't set up
my system time or hardware clock correctly. I was exactly 24 hours ahead and
didn't notice that. I installed and synced ntp, then synced my hardware clock, 
rebooted just to be sure. After that, the flatpak command worked just fine.

Apologies for the false alarm, and thank you for your help!


On Fri, 4 Aug 2023 09:44:49 +0100 Simon McVittie  wrote:
> On Fri, 04 Aug 2023 at 21:03:48 -0600, Steve Mcqueen wrote:
> > From a new install of Debian bookworm, i'm attempting to install flatpak
> > and flathub for the first time. I run the remote-add command and get
> > back an ssl error. example:
> > 
> > $ flatpak remote-add --if-not-exists flathub 
> > https://flathub.org/repo/flathub.flatpakrepo
> > error: Can't load uri https://flathub.org/repo/flathub.flatpakrepo: While 
> > fetching https://flathub.org/repo/flathub.flatpakrepo: [60] SSL peer 
> > certificate or SSH remote key was not OK
> > 
> > That flathub URL is a 301 redirect to: 
> > https://dl.flathub.org/repo/flathub.flatpakrepo
> > 
> > As far as I can tell there's nothing wrong with the certs on flathub's
> > end. I tried a few random online SSL validators and they gave no
> > complaints. The cert isn't expired, and is properly chained. directly 
> > using curl doesn't seem to complain. Firefox doesn't complain. 
> > Interestingly, wget DOES complain about the url, saying the certificate
> > is not trusted. 
> 
> The curl(1) command-line tool uses libcurl4 (libcurl with OpenSSL),
> but flatpak uses libcurl3-gnutls (libcurl with GNUTLS), and wget also
> uses GNUTLS. I suspect this means that there is something about the
> flathub.org or dl.flathub.org certificate chain as seen from your network
> that OpenSSL has no problem with, but GNUTLS considers to be a problem.
> 
> Are you on a network that is restricted, behind a transparent proxy or
> unusual in any other way?
> 
> These commands might help to find what is happening (openssl and gnutls-bin
> packages required):
> 
> openssl s_client -showcerts -connect flathub.org:443  openssl s_client -showcerts -connect dl.flathub.org:443  gnutls-cli -p443 flathub.org  gnutls-cli -p443 dl.flathub.org  
> The output of all of them looks reasonable to me (attached for reference),
> and they all say "Verification: OK" or "Status: The certificate is
> trusted"; but I also can't reproduce any problem with flatpak(1), so their
> results for someone who *can* reproduce a problem would be more useful.
> 
> curl maintainers: should flatpak be preferring libcurl4-openssl-dev
> instead of libcurl4-gnutls-dev, now 

Bug#1043032: nuitka3: New version (1.7.8) available (with python 3.11 support)

2023-08-04 Thread matt
Source: nuitka3
Version: nuitka
Severity: important
Tags: upstream



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

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



Bug#1043031: xserver-xorg: second monitor not working

2023-08-04 Thread Benjamin Gufler

Package: xserver-xorg
Version: 1:7.7+23
Severity: normal

Working on a thinkpad, external monitor (the dell monitor listed in
Xorg.0.log below) attached via docking station.

When booting, output up to and including grub is shown on the external
monitor. xrandr shows the connected monitor, but it can't be enabled.


-- Package-specific info:
/etc/X11/X does not exist.
/etc/X11/X is not a symlink.
/etc/X11/X is not executable.

VGA-compatible devices on PCI bus:
--
06:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. 
[AMD/ATI] Picasso/Raven 2 [Radeon Vega Series / Radeon Vega Mobile 
Series] [1002:15d8] (rev d2)


/etc/X11/xorg.conf does not exist.

Contents of /etc/X11/xorg.conf.d:
-
total 0

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 6.4.0-1-amd64 (debian-ker...@lists.debian.org) (gcc-13 
(Debian 13.1.0-9) 13.1.0, GNU ld (GNU Binutils for Debian) 
2.40.90.20230720) #1 SMP PREEMPT_DYNAMIC Debian 6.4.4-2 (2023-07-30)


Xorg X server log files on system:
--
-rw-r--r-- 1 root root 55487 Jul  6 21:40 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 53152 Aug  4 19:34 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[ 9.123]
X.Org X Server 1.21.1.8
X Protocol Version 11, Revision 0
[ 9.123] Current Operating System: Linux gandalf 6.4.0-1-amd64 #1 
SMP PREEMPT_DYNAMIC Debian 6.4.4-2 (2023-07-30) x86_64
[ 9.123] Kernel command line: BOOT_IMAGE=/vmlinuz-6.4.0-1-amd64 
root=/dev/mapper/gandalf--vg-root ro quiet

[ 9.123] xorg-server 2:21.1.8-1 (https://www.debian.org/support)
[ 9.123] Current version of pixman: 0.42.2
[ 9.123]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[ 9.123] Markers: (--) probed, (**) from config file, (==) default 
setting,

    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 9.123] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Aug 4 
19:07:18 2023

[ 9.124] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 9.124] (==) No Layout section.  Using the first Screen section.
[ 9.124] (==) No screen section available. Using defaults.
[ 9.124] (**) |-->Screen "Default Screen Section" (0)
[ 9.124] (**) |   |-->Monitor ""
[ 9.125] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[ 9.125] (==) Automatically adding devices
[ 9.125] (==) Automatically enabling devices
[ 9.125] (==) Automatically adding GPU devices
[ 9.125] (==) Automatically binding GPU devices
[ 9.125] (==) Max clients allowed: 256, resource mask: 0x1f
[ 9.126] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not 
exist.

[ 9.126]     Entry deleted from font path.
[ 9.127] (==) FontPath set to:
    /usr/share/fonts/X11/misc,
    /usr/share/fonts/X11/100dpi/:unscaled,
    /usr/share/fonts/X11/75dpi/:unscaled,
    /usr/share/fonts/X11/Type1,
    /usr/share/fonts/X11/100dpi,
    /usr/share/fonts/X11/75dpi,
    built-ins
[ 9.127] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 9.127] (II) The server relies on udev to provide the list of input 
devices.
    If no devices become available, reconfigure udev or disable 
AutoAddDevices.

[ 9.127] (II) Loader magic: 0x55ee0211df00
[ 9.127] (II) Module ABI versions:
[ 9.127]     X.Org ANSI C Emulation: 0.4
[ 9.127]     X.Org Video Driver: 25.2
[ 9.127]     X.Org XInput driver : 24.4
[ 9.127]     X.Org Server Extension : 10.0
[ 9.128] (++) using VT number 7

[ 9.128] (II) systemd-logind: logind integration requires -keeptty 
and -keeptty was not provided, disabling logind integration

[ 9.130] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 9.130] (II) Platform probe for 
/sys/devices/pci:00/:00:08.1/:06:00.0/drm/card0
[ 9.161] (--) PCI:*(6@0:0:0) 1002:15d8:17aa:5125 rev 210, Mem @ 
0xc000/268435456, 0xd000/2097152, 0xd050/524288, I/O @ 
0x1000/256, BIOS @ 0x/131072

[ 9.161] (II) LoadModule: "glx"
[ 9.162] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 9.167] (II) Module glx: vendor="X.Org Foundation"
[ 9.167]     compiled for 1.21.1.8, module version = 1.0.0
[ 9.167]     ABI class: X.Org Server Extension, version 10.0
[ 9.167] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0
[ 9.167]     loading driver: amdgpu
[ 9.167] (==) Matched amdgpu as autoconfigured driver 0
[ 9.167] (==) Matched ati as autoconfigured driver 1
[ 9.167] (==) Matched modesetting as autoconfigured driver 2
[ 9.167] (==) Matched fbdev as autoconfigured driver 3
[ 

Bug#1037613: cups-bjnp: diff for NMU version 2.0.3-4.1

2023-08-04 Thread Adrian Bunk
Control: tags 1037613 + patch
Control: tags 1037613 + pending

Dear maintainer,

I've prepared an NMU for cups-bjnp (versioned as 2.0.3-4.1) and uploaded 
it to DELAYED/14. Please feel free to tell me if I should cancel it.

cu
Adrian
diff -Nru cups-bjnp-2.0.3/debian/changelog cups-bjnp-2.0.3/debian/changelog
--- cups-bjnp-2.0.3/debian/changelog	2022-08-01 00:02:49.0 +0300
+++ cups-bjnp-2.0.3/debian/changelog	2023-08-04 21:07:31.0 +0300
@@ -1,3 +1,10 @@
+cups-bjnp (2.0.3-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Don't build with -Werror. (Closes: #1037613)
+
+ -- Adrian Bunk   Fri, 04 Aug 2023 21:07:31 +0300
+
 cups-bjnp (2.0.3-4) unstable; urgency=medium
 
   * avoid [-Werror=address] (Closes: #1012908)
diff -Nru cups-bjnp-2.0.3/debian/rules cups-bjnp-2.0.3/debian/rules
--- cups-bjnp-2.0.3/debian/rules	2022-08-01 00:02:49.0 +0300
+++ cups-bjnp-2.0.3/debian/rules	2023-08-04 21:07:31.0 +0300
@@ -4,4 +4,4 @@
 	dh $@
 
 override_dh_auto_configure:
-	dh_auto_configure -- --with-cupsbackenddir=/usr/lib/cups/backend
+	dh_auto_configure -- --with-cupsbackenddir=/usr/lib/cups/backend --disable-Werror


Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Olaf Skibbe

Dear all,

On Fri, 4 Aug 2023 at 14:15, Karol Herbst wrote:


62aecf23f3d1 drm/nouveau: add nv_encoder pointer check for NULL
fb725beca62d drm/nouveau/dp: check for NULL nv_connector->native_mode
90748be0f4f3 drm/nouveau: don't detect DSM for non-NVIDIA device
5a144bad3e75 nouveau: fix client work fence deletion race


mind retrying with only fb725beca62d and 62aecf23f3d1 reverted? Would 
be weird if the other two commits are causing it. If that's the case, 
it's a bit worrying that reverting either of the those causes issues, 
but maybe there is a good reason for it. Anyway, mind figuring out 
which of the two you need reverted to fix your issue? Thanks!


The result is:

Patch with commit fb725beca62d reverted: Graphics works. I attached the 
respective patch again to this mail.


Patch with commit 62aecf23f3d1 reverted: Screen remains black, error 
message:


# dmesg | grep -A 36 "cut here"
[2.921358] [ cut here ]
[2.921361] WARNING: CPU: 1 PID: 176 at 
drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c:460 nvkm_dp_acquire+0x26a/0x490 
[nouveau]
[2.921627] Modules linked in: sd_mod(E) t10_pi(E) crc64_rocksoft(E) 
sr_mod(E) crc64(E) crc_t10dif(E) crct10dif_generic(E) cdrom(E) nouveau(E+) 
mxm_wmi(E) i2c_algo_bit(E) drm_display_helper(E) cec(E) ahci(E) rc_core(E) 
drm_ttm_helper(E) libahci(E) ttm(E) ehci_pci(E) crct10dif_pclmul(E) 
crct10dif_common(E) ehci_hcd(E) drm_kms_helper(E) crc32_pclmul(E) 
firewire_ohci(E) sdhci_pci(E) cqhci(E) libata(E) e1000e(E) sdhci(E) psmouse(E) 
crc32c_intel(E) lpc_ich(E) ptp(E) i2c_i801(E) scsi_mod(E) i2c_smbus(E) 
firewire_core(E) scsi_common(E) usbcore(E) crc_itu_t(E) mmc_core(E) drm(E) 
pps_core(E) usb_common(E) battery(E) video(E) wmi(E) button(E)
[2.921695] CPU: 1 PID: 176 Comm: kworker/u16:5 Tainted: GE  
6.1.0-0.a.test-amd64 #1  Debian 6.1.38-2a~test
[2.921701] Hardware name: Dell Inc. Latitude E6510/0N5KHN, BIOS A17 
05/12/2017
[2.921705] Workqueue: nvkm-disp nv50_disp_super [nouveau]
[2.921948] RIP: 0010:nvkm_dp_acquire+0x26a/0x490 [nouveau]
[2.922192] Code: 48 8b 44 24 58 65 48 2b 04 25 28 00 00 00 0f 85 37 02 00 00 48 
83 c4 60 44 89 e0 5b 5d 41 5c 41 5d 41 5e 41 5f c3 cc cc cc cc <0f> 0b c1 e8 03 
41 88 6d 62 44 89 fe 48 89 df 48 69 c0 cf 0d d6 26
[2.922196] RSP: 0018:c077c04dfd60 EFLAGS: 00010246
[2.922201] RAX: 00041eb0 RBX: 9a8482624c00 RCX: 00041eb0
[2.922204] RDX: c0b47760 RSI:  RDI: c077c04dfcf0
[2.922206] RBP: 0001 R08: c077c04dfc64 R09: 5b76
[2.922209] R10: 000d R11: c077c04dfde0 R12: ffea
[2.922212] R13: 9a8517541e00 R14: 00044d45 R15: 
[2.922215] FS:  () GS:9a85a3c4() 
knlGS:
[2.922219] CS:  0010 DS:  ES:  CR0: 80050033
[2.92] CR2: 55f660bcb3a8 CR3: 00019761 CR4: 06e0
[2.96] Call Trace:
[2.922231]  
[2.922235]  ? __warn+0x7d/0xc0
[2.922244]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
[2.922487]  ? report_bug+0xe6/0x170
[2.922494]  ? handle_bug+0x41/0x70
[2.922501]  ? exc_invalid_op+0x13/0x60
[2.922505]  ? asm_exc_invalid_op+0x16/0x20
[2.922512]  ? init_reset_begun+0x20/0x20 [nouveau]
[2.922708]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
[2.922954]  nv50_disp_super_2_2+0x70/0x430 [nouveau]
[2.923200]  nv50_disp_super+0x113/0x210 [nouveau]
[2.923445]  process_one_work+0x1c7/0x380
[2.923456]  worker_thread+0x4d/0x380
[2.923463]  ? rescuer_thread+0x3a0/0x3a0
[2.923469]  kthread+0xe9/0x110
[2.923476]  ? kthread_complete_and_exit+0x20/0x20
[2.923482]  ret_from_fork+0x22/0x30
[2.923493]  
[2.923494] ---[ end trace  ]---

(Maybe it's worth to mention that the LED back-light is on, while the 
screen appears black.)


Cheers,
Olaf

P.S.: By the way: as a linux user for more than 20 years, I am very 
pleased to have the opportunity to contribute at least a little bit to 
the improvement. I'd like to use the chance to thank you all very much 
for building and developing this great operating system.From 47c0e938beef7335ffa179f1006754f9664c6c4d Mon Sep 17 00:00:00 2001
From: Diederik de Haas 
Date: Mon, 31 Jul 2023 19:55:54 +0200
Subject: [PATCH 2/4] Revert "drm/nouveau/dp: check for NULL
 nv_connector->native_mode"

This reverts commit fb725beca62d175c02ca619c27037c14f7ab8e7c.
---
 drivers/gpu/drm/nouveau/nouveau_connector.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_connector.c b/drivers/gpu/drm/nouveau/nouveau_connector.c
index fd984733b8e6..1991bbb1d05c 100644
--- a/drivers/gpu/drm/nouveau/nouveau_connector.c
+++ b/drivers/gpu/drm/nouveau/nouveau_connector.c
@@ -966,7 +966,7 @@ nouveau_connector_get_modes(struct drm_connector *connector)
 	/* Determine display colour depth for 

Bug#1042574: Removed package(s) from unstable

2023-08-04 Thread Rebecca N. Palmer

Control: reopen -1

Please also remove theano from experimental.



Bug#1043030: libmutter-11-0: Mutter crashes when closing mpv under Wayland

2023-08-04 Thread Pavel
Package: libmutter-11-0
Version: 43.6-1~deb12u1
Severity: important
Tags: upstream
X-Debbugs-Cc: ann.deb...@rxtx.cx

On Wayland session, GNOME Shell completely crashes when trying to close GPU
accelerated windows, such as mpv (and probably alacritty) with segfault in
libmutter-11-0.

Seems like upstream bug: https://gitlab.gnome.org/GNOME/mutter/-/issues/2410

Steps to reproduce:

- In GNOME Wayland session, open mpv to play some video;
- Press "q" to quit mpv
- If it does not crash, repeat - sometimes it does not crash in first quit

dmesg:

[62912.613013] gnome-shell[42148]: segfault at 0 ip 7f5a5ed5f1e0 sp
7ffc6671e3f8 error 4 in libmutter-11.so.0.0.0[7f5a5ec4f000+15a000] likely
on CPU 23 (core 13, socket 0)
[63316.119535] gnome-shell[436585]: segfault at 0 ip 7f3d9615f1e0 sp
7ffcea72ac58 error 4 in libmutter-11.so.0.0.0[7f3d9604f000+15a000] likely
on CPU 20 (core 10, socket 0)
[64056.582484] gnome-shell[446343]: segfault at 0 ip 7f1e4ed5f1e0 sp
7ffe012aca48 error 4 in libmutter-11.so.0.0.0[7f1e4ec4f000+15a000] likely
on CPU 20 (core 10, socket 0)

Expected  action: do not crash:)


-- System Information:
Debian Release: 12.1
  APT prefers stable
  APT policy: (900, 'stable'), (800, 'testing'), (700, 'unstable'), (600, 
'experimental'), (500, 'stable-security')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages libmutter-11-0 depends on:
ii  adwaita-icon-theme 43-1
ii  gsettings-desktop-schemas  43.0-1
ii  libatk1.0-02.46.0-5
ii  libc6  2.36-9+deb12u1
ii  libcairo-gobject2  1.16.0-7
ii  libcairo2  1.16.0-7
ii  libcanberra0   0.30-10
ii  libcolord2 1.4.6-2.2
ii  libdrm22.4.114-1+b1
ii  libegl11.6.0-1
ii  libfontconfig1 2.14.1-4
ii  libfribidi01.0.8-2.1
ii  libgbm122.3.6-1+deb12u1
ii  libgdk-pixbuf-2.0-02.42.10+dfsg-1+b1
ii  libgl1 1.6.0-1
ii  libglib2.0-0   2.74.6-2
ii  libgnome-desktop-3-20  43.2-2
ii  libgraphene-1.0-0  1.10.8-1
ii  libgtk-3-0 3.24.37-2
ii  libgudev-1.0-0 237-2
ii  libice62:1.0.10-1
ii  libinput10 1.22.1-1
ii  libjson-glib-1.0-0 1.6.6-1
ii  liblcms2-2 2.14-2
ii  libpango-1.0-0 1.50.12+ds-1
ii  libpangocairo-1.0-01.50.12+ds-1
ii  libpangoft2-1.0-0  1.50.12+ds-1
ii  libpipewire-0.3-0  0.3.65-3
ii  libsm6 2:1.2.3-1
ii  libstartup-notification0   0.12-6+b1
ii  libsystemd0252.12-1~deb12u1
ii  libudev1   252.12-1~deb12u1
ii  libwacom9  2.6.0-1
ii  libwayland-server0 1.21.0-1
ii  libx11-6   2:1.8.4-2+deb12u1
ii  libx11-xcb12:1.8.4-2+deb12u1
ii  libxau61:1.0.9-1
ii  libxcb-randr0  1.15-1
ii  libxcb-res01.15-1
ii  libxcb11.15-1
ii  libxcomposite1 1:0.4.5-1
ii  libxcursor11:1.2.1-1
ii  libxdamage11:1.1.6-1
ii  libxext6   2:1.3.4-1+b1
ii  libxfixes3 1:6.0.0-2
ii  libxi6 2:1.8-1+b1
ii  libxinerama1   2:1.1.4-3
ii  libxkbcommon-x11-0 1.5.0-1
ii  libxkbcommon0  1.5.0-1
ii  libxkbfile11:1.1.0-1
ii  libxrandr2 2:1.5.2-2+b1
ii  libxtst6   2:1.2.3-1.1
ii  mutter-common  43.6-1~deb12u1

libmutter-11-0 recommends no packages.

libmutter-11-0 suggests no packages.

Versions of packages libmutter-11-0 is related to:
ii  libegl-mesa0 [libegl-vendor]  22.3.6-1+deb12u1
ii  libgl1-mesa-dri   22.3.6-1+deb12u1
ii  libglx-mesa0 [libglx-vendor]  22.3.6-1+deb12u1

-- no debconf information



Bug#1042358: openvswitch: FTBFS: make[3]: *** [Makefile:6743: manpage-check] Error 1

2023-08-04 Thread Colin Watson
On Fri, Aug 04, 2023 at 12:54:31PM +0100, Colin Watson wrote:
> On Wed, Jul 26, 2023 at 10:21:34PM +0200, Lucas Nussbaum wrote:
> > > an.tmac:lib/ovs-fields.7:762: warning: tbl preprocessor failed, or it or 
> > > soelim was not run; table(s) likely not rendered (TE macro called with TW 
> > > register undefined)
> 
> I've sent a patch set for this upstream.  It's currently waiting for
> mailing list moderation, but I've attached the messages here.

Frode Nordahl pointed out that this patch set introduces warnings with
earlier versions of groff.  Here's an updated version that doesn't.

-- 
Colin Watson (he/him)  [cjwat...@ubuntu.com]
--- Begin Message ---
https://bugs.debian.org/1042358 reported a manpage-check failure with
groff 1.23.0 in Debian testing/unstable.  Fixing the immediate mistake
here exposed a few other issues in how the tables in ovs-fields(7) are
rendered.

Colin Watson (5):
  docs: Wrap more table entries in text blocks
  docs: Shorten overly-wide table heading
  docs: Tweak width of name column in field property tables
  docs: Fix rendering of VLAN Comparison Chart
  docs: Run tbl preprocessor in manpage-check rule

 Makefile.am  |  2 +-
 build-aux/extract-ofp-fields | 20 ++--
 lib/meta-flow.xml| 25 +
 3 files changed, 28 insertions(+), 19 deletions(-)

--
2.39.2

--- End Message ---
--- Begin Message ---
This fixes a number of "table wider than line length minus indentation"
warnings from tbl.  The table cells are too narrow for centered text to
look good, so left-align the contents of the text blocks.

Reported-by: Lucas Nussbaum 
Reported-at: https://bugs.debian.org/1042358
Signed-off-by: Colin Watson 
---
 build-aux/extract-ofp-fields | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/build-aux/extract-ofp-fields b/build-aux/extract-ofp-fields
index efec59c25..2f566d2b9 100755
--- a/build-aux/extract-ofp-fields
+++ b/build-aux/extract-ofp-fields
@@ -189,12 +189,14 @@ def field_to_xml(field_node, f, body, summary):
 ovs_version = [int(x) for x in ovs_version_s.split(".")]
 if min_ovs_version is None or ovs_version < min_ovs_version:
 min_ovs_version = ovs_version
-summary += ["\\fB%s\\fR" % f["name"]]
+summary += ["T{\n.ad l\n\\fB%s\\fR" % f["name"]]
 if f["extra_name"]:
 summary += [" aka \\fB%s\\fR" % f["extra_name"]]
-summary += [";%d" % f["n_bytes"]]
+summary += ["\nT}"]
+summary += [";T{\n.ad l\n%d" % f["n_bytes"]]
 if f["n_bits"] != 8 * f["n_bytes"]:
 summary += [" (low %d bits)" % f["n_bits"]]
+summary += ["\nT}"]
 summary += [";%s;" % {"MFM_NONE": "no", "MFM_FULLY": "yes"}[f["mask"]]]
 summary += ["%s;" % {True: "yes", False: "no"}[f["writable"]]]
 summary += ["%s;" % f["prereqs"]]
@@ -203,7 +205,7 @@ def field_to_xml(field_node, f, body, summary):
 support += ["OF %s+" % VERSION_REVERSE[min_of_version]]
 if min_ovs_version is not None:
 support += ["OVS %s+" % ".".join([str(x) for x in min_ovs_version])]
-summary += " and ".join(support)
+summary += ["T{\n.ad l\n", " and ".join(support), "\nT}"]
 summary += ["\n"]
 
 # Full description.
@@ -230,8 +232,10 @@ l lx.
 body += ["Width:;"]
 if f["n_bits"] != 8 * f["n_bytes"]:
 body += [
+"T{\n",
 "%d bits (only the least-significant %d bits "
-"may be nonzero)" % (f["n_bytes"] * 8, f["n_bits"])
+"may be nonzero)" % (f["n_bytes"] * 8, f["n_bits"]),
+"\nT}",
 ]
 elif f["n_bits"] <= 128:
 body += ["%d bits" % f["n_bits"]]
-- 
2.39.2

--- End Message ---
--- Begin Message ---
Using "NXM/OXM Support" makes these tables a little too wide to fit well
when rendered in 80 columns, causing warnings from groff.  There's
already some abbreviation going on here (e.g. "RW?"), so "NXM/OXM?"
seems acceptable.

Reported-by: Lucas Nussbaum 
Reported-at: https://bugs.debian.org/1042358
Signed-off-by: Colin Watson 
---
 build-aux/extract-ofp-fields | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-aux/extract-ofp-fields b/build-aux/extract-ofp-fields
index 2f566d2b9..808c6527d 100755
--- a/build-aux/extract-ofp-fields
+++ b/build-aux/extract-ofp-fields
@@ -323,7 +323,7 @@ def group_xml_to_nroff(group_node, fields):
 ".TS\n",
 "tab(;);\n",
 "l l l l l l l.\n",
-"Name;Bytes;Mask;RW?;Prereqs;NXM/OXM Support\n",
+"Name;Bytes;Mask;RW?;Prereqs;NXM/OXM?\n",
 "\_;\_;\_;\_;\_;\_\n",
 ]
 content += summary
-- 
2.39.2

--- End Message ---
--- Begin Message ---
groff 1.23.0 has difficulty with hyphenating a number of the entries in
the name column of these tables when rendering in 80-column terminals.
Setting a minimum width for this column gives it an easier time.

Reported-by: Lucas Nussbaum 
Reported-at: https://bugs.debian.org/1042358

Bug#1038006: nvidia-graphics-drivers: please package systemd power management scripts

2023-08-04 Thread Andreas Beckmann

Hi,

On 15/06/2023 12.42, Andrea Pappacoda via pkg-nvidia-devel wrote:

Hi, could you please consider packaging the systemd power management scripts
provided by Nvidia? They are currently located in /usr/share/doc/xserver-xorg-
video-nvidia/examples/, and are not installed and enabled by the Debian
package.


I've added a new package nvidia-suspend-common (currently only in 
experimental, but should be usable with the driver in sid or stable, 
too, since it has no hard dependency on any driver component).


Could you try whether this is already sufficient?

According to the docs you need to add
  NVreg_PreserveVideoMemoryAllocations=1
to /etc/modprobe.d/nvidia-options.conf and reboot (or otherwiese reload 
the module). (New uploads will have that line in commented form there.)



In short, the driver simply needs to install some systemd unit files and an
"nvidia-sleep.sh" script in /usr/bin.


The files are there, but I'm not sure whether the unit files still "need 
to be activated".



Installing these scripts is required, for example, to use Wayland on GNOME with
the Nvidia drivers, as a udev rule installed by gdm3 checks for their presence
and disables Wayland support if they are not enabled - the rule is in
/lib/udev/rules.d/61-gdm.rules



Andreas



Bug#1042739: O: repetier-host -- host controller for RepRap style 3D printers

2023-08-04 Thread PaulLiu
Hi Bastian,

I think you mean repsnapper rather than repetier-host?

repsnapper is another story. I think we can skip that. Yes it needs to be
ported to gtk3. But for the 3D printer market it seems to me that
repsnapper is less important. It is open source. And it is supposed to be
used on pure open source 3D printer (Prusa i3).
But another open source slicer program (cura), made by Ultimaker, now
dominates the market. So it is not very important right now.
repsnapper can be removed. Will have less impact. Anyone can correct me if
I'm wrong or someone have different idea.

But repetier-host is different. It is written in C# and build by Mono. I
think it is not related to GTK3.
repetier-host, due to its non-free property on Windows, there are still
some old men. Or some artisst, that are used to repetier-host on Windows.
When we sell some printers (non Ultimaker printers) to those schools, if
their computer doesn't have valid Licensed Windows, we will ship Debian
with repetier-host for those artists. If they have Windows, we will install
repetier-host for them as repetier-host is non-free but free-of-cost on
Windows.
It is hard to tell them to learn cura. Cura actually works better on
technical aspect, but since they are artists they have some post-processing
skills so they don't really care the little-less quality of slicing. They
just want something familiar and just work as before.

And for the local market I can say that repetier-host is still used a lot.
Not sure why popcon is so less. I remember I did turn on popcon on those
installations.

So that's why I'm still maintaining 0.85 on Debian. Just as a backend
solution. If you don't mind, I will re-introduce it into Debian.

Yours,
Paul






On Fri, Aug 4, 2023 at 10:35 PM Bastian Germann  wrote:

> Hi Paul,
>
> Am 03.08.23 um 01:11 schrieb Ying-Chun Liu (PaulLiu):
> > Hi Bastian,
> >
> > I'd like to know why you can orphan my package?
>
> In my observation, it is not standardized by the Policy but accepted
> practice to file orphan bugs for other mainainers' packages that are
> obviously not maintained anymore.
>
> > The problem here is repetier-host is still working.
> > And why it is not upgrading to 2.x.x is because 0.85 is the last open
> > source version we can have.
> > Since 0.95 the upstream choose to close source. So the open source
> > community can only use 0.85.
>
> I did not consider to investigate a license change or check whether the
> program was still available as source. I am very sorry that it went this
> way and will do everything to rectify this. May I suggest that I port
> the package to gtk3 and reintroduce it to Debian?
>
> > And 0.85 is still working quite well with most of the 3D printers.
> >
> > Yours,
> > Paul
>
> Yours,
> Bastian
>


Bug#990913: ausweisapp2: creates config in '~/.config/Unknown Organization'

2023-08-04 Thread John Paul Adrian Glaubitz
Hello Rainer!

On Fri, 2023-08-04 at 18:22 +0200, Reiner Herrmann wrote:
> I just used it for the first time (version 1.26.6-1), and it still created
> ~/.config/Unknown Organization/.

As explained above, this is an upstream bug that needs to be addressed there.

Adrian

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer
`. `'   Physicist
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913



Bug#472477: Still a problem in bookworm

2023-08-04 Thread Henrik Ahlgren
In a fresh install of bookworm with GNOME desktop, the problem of
ssh-add -D not removing ed25519 keys still remains in 2023. When
investigating this, I noticed that in the default configuration, there
are at least FIVE separate SSH agent processes running:

1. gnome-keyring-daemon process (the buggy one), listening to socket
/run/user/$UID/keyring/ssh, which $SSH_AUTH_SOCK points by default (at
least in a GNOME session).

2. OpenSSH ssh-agent process forked buy the previous process,
listening to socket /run/user/$UID/keyring/.ssh, and working normally
(if you point $SSH_AUTH_SOCK there).

3. Another OpenSSH ssh-agent process started by ssh-agent.service
(shipped by openssh-client package), listening to socket
/run/user/$UID/openssh_agent, and working as expected.

4. gcr-ssh-agent process listening to socket /run/user/$UID/gcr/ssh
with the same buggy behaviour wrt ed25519 keys.

5. Third OpenSSH ssh-agent process started by the previous process
gcr-ssh-agent, listening to socket /run/user/$UID/keyring/.ssh, again
working normally, since it's just the standard ssh-agent.

ed25519 keys are very common today, so the default configuration
should handle them correctly. And what is the point of having multiple
copies of the same agent running, when none of them are even used
unless the user explicitly change their $SSH_AUTH_SOCK configuration?

Please coordinate with all related package maintainers to fix this mess
before trixie is released.



Bug#1043029: cryptsetup-nuke-password: [INTL:sv] Swedish translation of debconf messages

2023-08-04 Thread Peter Kvillegård
Package: cryptsetup-nuke-password
Version: 4+nmu1
Severity: wishlist
X-Debbugs-Cc: peterkvilleg...@posteo.net

Dear Maintainer,

Please copy the attachment into debian/po/sv.po
It has been reviewed by the Swedish language team,
tested with msgfmt, and is in UTF-8.

Regards,
Peter Kvillegård
# Swedish translation of cryptsetup-nuke-password debconf
# Copyright (C) 2019 Offensive Security
# This file is distributed under the same license as the 
cryptsetup-nuke-password package.
# Peter Kvillegård , 2023
#
msgid ""
msgstr ""
"Project-Id-Version: cryptsetup-nuke-password 4+nmu1\n"
"Report-Msgid-Bugs-To: cryptsetup-nuke-passw...@packages.debian.org\n"
"POT-Creation-Date: 2019-07-05 15:24+0200\n"
"PO-Revision-Date: 2023-08-02 17:42+0200\n"
"Last-Translator: Peter Kvillegård \n"
"Language-Team: Swedish \n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: password
#. Description
#: ../cryptsetup-nuke-password.templates:1001
msgid "Nuke password:"
msgstr "Lösenord för destruktion:"

#. Type: password
#. Description
#: ../cryptsetup-nuke-password.templates:1001
msgid ""
"If you setup a “nuke password”, you will be able to type this password at "
"the early-boot prompt asking your passphrase to unlock your luks-encrypted "
"partitions. Instead of decrypting the partitions, typing this password will "
"instead wipe the encryption keys from the luks container so that it is no "
"longer possible to unlock the encrypted partitions."
msgstr ""
"Om du konfigurerar ett ”lösenord för destruktion” (nuke password) så kommer "
"du att kunna skriva detta lösenord vid den tidiga uppstartprompten som frågar "
"efter ditt lösenord för att låsa upp luks-krypterade partitioner. Istället "
"för att dekryptera partitionerna kommer inmatning av detta lösenord att ta "
"bort krypteringsnycklarna från luks-behållaren så att det inte längre är "
"möjligt att låsa upp de krypterade partitionerna."


#. Type: password
#. Description
#: ../cryptsetup-nuke-password.templates:1001
msgid ""
"This provides a relatively stealth way to make your data unreadable in case "
"you fear that your computer is going to be seized."
msgstr ""
"Detta förser dig med ett relativt dolt sätt att göra dina data oläsbara om du "
"är rädd att din dator kommer att tas ifrån dig."

#. Type: password
#. Description
#: ../cryptsetup-nuke-password.templates:1001
msgid ""
"If you want to cancel this operation or disable any nuke password already "
"configured, simply enter an empty password. If needed, you will be given the "
"option to pick between both choices."
msgstr ""
"Om du vill avbryta denna åtgärd eller inaktivera ett tidigare konfigurerat "
"lösenord för destruktion behöver du bara ange ett tomt lösenord. Om det "
"behövs kommer du att presenteras med ett val mellan de båda alternativen."

#. Type: password
#. Description
#: ../cryptsetup-nuke-password.templates:2001
msgid "Re-enter password to verify:"
msgstr "Ange lösenordet igen för att verifiera:"

#. Type: password
#. Description
#: ../cryptsetup-nuke-password.templates:2001
msgid ""
"Please enter the same nuke password again to verify that you have typed it "
"correctly."
msgstr ""
"Vänligen ange samma lösenord för destruktion igen för att verifiera att du "
"har skrivit det korrekt." 

#. Type: error
#. Description
#: ../cryptsetup-nuke-password.templates:3001
msgid "Password input error"
msgstr "Felaktig inmatning av lösenord"

#. Type: error
#. Description
#: ../cryptsetup-nuke-password.templates:3001
msgid "The two passwords you entered were not the same. Please try again."
msgstr "De två lösenorden du angett var olika. Vänligen försök igen."

#. Type: select
#. Choices
#: ../cryptsetup-nuke-password.templates:4001
msgid "Keep the current password"
msgstr "Behåll det nuvarande lösenordet"

#. Type: select
#. Choices
#: ../cryptsetup-nuke-password.templates:4001
msgid "Overwrite the current password"
msgstr "Ersätt det nuvarande lösenordet"

#. Type: select
#. Choices
#: ../cryptsetup-nuke-password.templates:4001
msgid "Remove the current password"
msgstr "Ta bort det nuvarande lösenordet"

#. Type: select
#. Description
#: ../cryptsetup-nuke-password.templates:4002
msgid "A nuke password is already configured, what should be done?"
msgstr "Ett lösenord för destruktion är redan konfigurerat, vad ska göras?"

#. Type: select
#. Description
#: ../cryptsetup-nuke-password.templates:4002
msgid ""
"The existence of /etc/cryptsetup-nuke-password/password_hash suggests that a "
"nuke password is already configured. If you decide to keep the current nuke "
"password, nothing will be done. If you decide to overwrite the current nuke "
"password, you will be asked for a new password and it will replace the "
"currently configured one. If you decide to remove the nuke password, you "
"will not be asked for a new password and the currently configured password "
"will be disabled."
msgstr ""
"Förekomsten av 

Bug#1043027: ITP: tmpl -- A tool to apply variables from cli, env, JSON/TOML/YAML files to templates

2023-08-04 Thread Sergio Talens-Oliag
El Fri, Aug 04, 2023 at 05:55:19PM +0200, Jonas Smedegaard va escriure:
> Quoting Sergio Talens-Oliag (2023-08-04 17:35:04)
> > Package: wnpp
> > Severity: wishlist
> > Owner: Sergio Talens-Oliag 
> > 
> > * Package name: tmpl
> >   Version : 0.4.0-1
> >   Upstream Author : krako
> > * URL : https://github.com/krakozaure/tmpl
> > * License : Expat
> >   Programming Lang: Go
> >   Description : A tool to apply variables from cli, env, JSON/TOML/YAML 
> > files to templates
> > 
> >  tmpl
> >  .
> >  tmpl allows to apply variables from JSON/TOML/YAML files, environment
> >  variables or CLI arguments to template files using Golang text/template
> >  and functions from the Sprig project.
> 
> Package "tmpl" already exists - seemingly from a different source but
> also written in Go.

Yes, just saw that after filling the ITP, in fact I've been asking about it on
the #debian-golang irc channel, I'm going to ask upstream for a name change to
avoid the issue.

Thanks for your feedback!

-- 
Sergio Talens-Oliag  
Key fingerprint = 29DF 544F 1BD9 548C 8F15 86EF 6770 052B B8C1 FA69


signature.asc
Description: PGP signature


Bug#990913: ausweisapp2: creates config in '~/.config/Unknown Organization'

2023-08-04 Thread Reiner Herrmann
Hi,

I just used it for the first time (version 1.26.6-1), and it still created
~/.config/Unknown Organization/.

Kind regards,
  Reiner


signature.asc
Description: PGP signature


Bug#1043027: ITP: tmpl -- A tool to apply variables from cli, env, JSON/TOML/YAML files to templates

2023-08-04 Thread Sergio Talens-Oliag
El Fri, Aug 04, 2023 at 04:51:50PM +0100, Adam D. Barratt va escriure:
> On Fri, 2023-08-04 at 17:35 +0200, Sergio Talens-Oliag wrote:
> > Package: wnpp
> > Severity: wishlist
> > Owner: Sergio Talens-Oliag 
> > 
> > * Package name: tmpl
> >   Version : 0.4.0-1
> >   Upstream Author : krako
> > * URL : https://github.com/krakozaure/tmpl
> > * License : Expat
> >   Programming Lang: Go
> >   Description : A tool to apply variables from cli, env,
> > JSON/TOML/YAML files to templates
> > 
> 
> There's already a "tmpl" binary package in the archive, built from 
> https://tracker.debian.org/pkg/golang-github-benbjohnson-tmpl
> 
> Regards,
> 
> Adam
> 

Yes, just saw that after filling the ITP, in fact I've been asking about it on
the #debian-golang irc channel, I'm going to ask upstream for a name change to
avoid the issue

Thanks for the input!

-- 
Sergio Talens-Oliag  
Key fingerprint = 29DF 544F 1BD9 548C 8F15 86EF 6770 052B B8C1 FA69


signature.asc
Description: PGP signature


Bug#1043022: udisks2: After 2.10 update problem with usb vfat external disk

2023-08-04 Thread luca pedrielli

also reported upstream

--
Saluti, Luca Pedrielli



Bug#1042980: gnome-shell: FTBFS on mips64el, mipsel: perf-* tests fail

2023-08-04 Thread Simon McVittie
On Fri, 04 Aug 2023 at 23:27:18 +0800, YunQiang Su wrote:
> Ohh, Mozjs102 is using WASM now, which generates some MIPS SIMD instructions.

Does this mean gnome-shell 43 is already crashing on mips*el?

The reason I ask is that I want to get 44 into unstable soon, and to do
that, it would be good to know whether this is a regression or a
pre-existing problem.

smcv



Bug#1043022: After 2.10 update problem with usb vfat external disk

2023-08-04 Thread luca pedrielli

thanks for your replay.
it seems, but i have installed the latest udisks2, util-linux, 
libblockdev udev and systemd, and the problem remains.

no one talks about vfat in that bugreport

--
Saluti, Luca Pedrielli



Bug#1042897: aptitude: viewing a package's changelog from the TUI outputs a warning that is immediately erased

2023-08-04 Thread Sven Joachim
On 2023-08-04 01:57 +0200, Vincent Lefevre wrote:

> On 2023-08-03 16:52:07 +0200, Sven Joachim wrote:
>> On 2023-08-02 15:51 +0200, Vincent Lefevre wrote:
>> > Package: aptitude
>> > Version: 0.8.13-5
>> > Severity: normal
>> >
>> > When I use "C" (View a package's changelog) on clang-15 from the
>> > aptitude TUI, I get a warning that is immediately erased, so that
>> > it is impossible to read it.
>> >
>> > I suppose that aptitude should redirect stderr from
>> > aptitude-changelog-parser so that it can display its contents
>> > (when non empty) in a clear way.
>>
>> It should prevent these errors from showing up in the first place.
>
> If aptitude knows what to do (or may ignore the issue), yes.

I was a bit imprecise, actually I meant that aptitude-changelog-parser
should not emit these warnings to stderr, which is what #967911 is about.

>> See #967911, which has been tagged "pending" almost three years ago. :-(
>
> I forgot about this one.

Since the screen flashes created by aptitude-changelog-parser's warnings
have been annoying me for so long, I have now created a merge request to
cherry-pick the fix for unstable:

https://salsa.debian.org/apt-team/aptitude/-/merge_requests/20

Cheers,
   Sven



Bug#1042671: Test successful

2023-08-04 Thread Lutz Lübbert
Hey,
 
I tested the deb package and the fix seems to work as expected. I tested it 
with a few extra snapshots (adding and removing files) and everything is listed 
as expected when running the diff feature.
 
Thank you very much for taking care of this!
 
Best,
Lutz

Bug#1043027: ITP: tmpl -- A tool to apply variables from cli, env, JSON/TOML/YAML files to templates

2023-08-04 Thread Jonas Smedegaard
Quoting Sergio Talens-Oliag (2023-08-04 17:35:04)
> Package: wnpp
> Severity: wishlist
> Owner: Sergio Talens-Oliag 
> 
> * Package name: tmpl
>   Version : 0.4.0-1
>   Upstream Author : krako
> * URL : https://github.com/krakozaure/tmpl
> * License : Expat
>   Programming Lang: Go
>   Description : A tool to apply variables from cli, env, JSON/TOML/YAML 
> files to templates
> 
>  tmpl
>  .
>  tmpl allows to apply variables from JSON/TOML/YAML files, environment
>  variables or CLI arguments to template files using Golang text/template
>  and functions from the Sprig project.

Package "tmpl" already exists - seemingly from a different source but
also written in Go.

 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/
 * Sponsorship: https://ko-fi.com/drjones

 [x] quote me freely  [ ] ask before reusing  [ ] keep private

signature.asc
Description: signature


Bug#1043027: ITP: tmpl -- A tool to apply variables from cli, env, JSON/TOML/YAML files to templates

2023-08-04 Thread Adam D. Barratt
On Fri, 2023-08-04 at 17:35 +0200, Sergio Talens-Oliag wrote:
> Package: wnpp
> Severity: wishlist
> Owner: Sergio Talens-Oliag 
> 
> * Package name: tmpl
>   Version : 0.4.0-1
>   Upstream Author : krako
> * URL : https://github.com/krakozaure/tmpl
> * License : Expat
>   Programming Lang: Go
>   Description : A tool to apply variables from cli, env,
> JSON/TOML/YAML files to templates
> 

There's already a "tmpl" binary package in the archive, built from 
https://tracker.debian.org/pkg/golang-github-benbjohnson-tmpl

Regards,

Adam



Bug#1043028: libtest-valgrind-perl: FTBFS with Perl 5.38: t/20-bad.t failure

2023-08-04 Thread Niko Tyni
Source: libtest-valgrind-perl
Version: 1.19-4
Severity: important
Tags: ftbfs trixie sid patch
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=149286
User: debian-p...@lists.debian.org
Usertags: perl-5.38-transition

This package fails to build from source with Perl 5.38 (currently in
experimental.)

  
http://perl.debian.net/rebuild-logs/perl-5.38-throwaway/libtest-valgrind-perl_1.19-4/libtest-valgrind-perl_1.19-4_amd64-2023-08-04T06:09:38Z.build

   # Using valgrind 3.19.0 located at /usr/bin/valgrind
   # Using suppressions from 
/<>/debian/.debhelper/generated/_source/home/.perl/Test-Valgrind/suppressions/1.19/memcheck-3.19.0-bd70d6cc6d8860d399045326be838ffd.supp
   # # leaking some bytes!
   #   10,000 bytes in 1 blocks are still reachable in loss record 18 of 18
   # malloc (/usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so) [?:?]
   # tv_leak (/<>/blib/arch/auto/Test/Valgrind/Valgrind.so) 
[Valgrind.xs:34]
   # XS_Test__Valgrind_leak 
(/<>/blib/arch/auto/Test/Valgrind/Valgrind.so) [Valgrind.xs:54]
   # ? (/usr/bin/perl) [?:?]
   # Perl_runops_standard (/usr/bin/perl) [?:?]
   # perl_run (/usr/bin/perl) [?:?]
   # main (/usr/bin/perl) [?:?]
   
   #   Failed test 'Leak_StillReachable'
   #   at /<>/blib/lib/Test/Valgrind/Session.pm line 598.
   #  got: 1
   # expected: 0
   
   #   Failed test 'caught one extra leak'
   #   at /<>/blib/lib/Test/Valgrind.pm line 307.
   #  got: '0'
   # expected: '1'
   
   #   Failed test 'no extra leak caught, hence no bytes leaked'
   #   at /<>/blib/lib/Test/Valgrind.pm line 307.
   
   #   Failed test 'no extra leak caught, hence no block leaked'
   #   at /<>/blib/lib/Test/Valgrind.pm line 307.
   # Looks like your test exited with 1 just after 18.
   
   [...]
   
   Test Summary Report
   ---
   t/20-bad.t  (Wstat: 256 (exited 1) Tests: 18 Failed: 4)
 Failed tests:  15-18
 Non-zero exit status: 1
   Files=10, Tests=200, 21 wallclock secs ( 0.05 usr  0.01 sys + 19.96 cusr  
0.49 csys = 20.51 CPU)
   Result: FAIL

There's a patch/workaround in the upstream ticket (but I haven't tested it.)
-- 
Niko Tyni   nt...@debian.org



Bug#1028155: I know what the problem is - incorrect order in After of /lib/systemd/system/nginx.service

2023-08-04 Thread Perlover

Hello,

I know what the problem is.

The problem is that nginx starts before all network interfaces are upped 
up. I looked through all nginx unit files (nginx-common debian package) 
and found that all versions, including Ubuntu 22.04, have incorrect 
After & Wants.


All versions from the package specify After=network.target, but if you 
study this network.target, it does not guarantee that the entire network 
on the device is already configured. It is correct to use 
network-online.target. Moreover, it is also recommended by the nginx 
developers themselves:


https://www.nginx.com/resources/wiki/start/topics/examples/systemd/

As a temporary solution, I recommend doing so until it is fixed in the 
package nginx-common itself:


$ sudo systemctl edit nginx.service

To insert there:

[Unit]
After=syslog.target network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target

Best regards, Perlover



Bug#1043027: ITP: tmpl -- A tool to apply variables from cli, env, JSON/TOML/YAML files to templates

2023-08-04 Thread Sergio Talens-Oliag
Package: wnpp
Severity: wishlist
Owner: Sergio Talens-Oliag 

* Package name: tmpl
  Version : 0.4.0-1
  Upstream Author : krako
* URL : https://github.com/krakozaure/tmpl
* License : Expat
  Programming Lang: Go
  Description : A tool to apply variables from cli, env, JSON/TOML/YAML 
files to templates

 tmpl
 .
 tmpl allows to apply variables from JSON/TOML/YAML files, environment
 variables or CLI arguments to template files using Golang text/template
 and functions from the Sprig project.

-- 
Sergio Talens-Oliag  
Key fingerprint = 29DF 544F 1BD9 548C 8F15 86EF 6770 052B B8C1 FA69


signature.asc
Description: PGP signature


Bug#1042767: xterm: wrong path to utmp file in manpage

2023-08-04 Thread Sven Joachim
On 2023-07-31 20:13 -0400, Thomas Dickey wrote:

> On Mon, Jul 31, 2023 at 05:56:59PM +0200, Sven Joachim wrote:
>> Package: xterm
>> Version: 384-1
>> Severity: minor
>>
>> The path to the utmp(5) file in the xterm manpage is wrong:
>>
>> ,
>> | $ man xterm | grep -A1 /utmp
>> |/etc/utmp
>> | the system log file, which records user logins.
>> `
>>
>> That should read /var/run/utmp rather than /etc/utmp.  The minstall
>> script tries to detect the path to the utmp file and substitute the
>> correct value, but in the build chroot /var/run/utmp has apparently been
>> absent, as no-one has ever logged in there.
>
> yes... /etc/utmp appears to be the convention on AIX and HPUX.
> I could put that last, (along with /var/adm), since those are
> systems where people actually log in -- odd, but perhaps the
> default should be the system where the file is least likely to
> exist :-)

That would make sense if the autodetection worked on the other systems,
but in a world where distributors build packages in chroots and
containers this is generally not the case.

I checked the xterm manpage in the packages for Arch Linux, Fedora
Rawhide, Mageia Cauldron and Opensuse Tumbleweed.  All but the last of
these do not only mention /etc/utmp but also /etc/wtmp in the FILES
section, and I am pretty sure those two files do not exist.

Since autodetection for the paths to the utmp and wtmp files does not
work reliably, maybe new configure options could help packagers?

Cheers,
   Sven



Bug#1043022: [Pkg-utopia-maintainers] Bug#1043022: udisks2: After 2.10 update problem with usb vfat external disk

2023-08-04 Thread Michael Biebl

Am 04.08.23 um 16:03 schrieb luca.pedrielli:

Package: udisks2
Version: 2.10.0-5
Severity: normal

Dear Maintainer,
after 2.10 update, when I plug in my vfat usb disk, a "never ending" 
fsck.vfat

process starts.
this prevents plasma-kde from working properly.
at the end of fsck the disk is not listed in usb devices and dolphin 
restarts

fsck.vfat
no problem with 2.9 version, the disc is recognized correctly.



This sounds like https://github.com/storaged-project/udisks/issues/1139




OpenPGP_signature
Description: OpenPGP digital signature


Bug#1042980: gnome-shell: FTBFS on mips64el, mipsel: perf-* tests fail

2023-08-04 Thread YunQiang Su
Ohh, Mozjs102 is using WASM now, which generates some MIPS SIMD instructions.
Interestingly, Let's try to rebuild mozjs102 with llvm-15, and then
maybe llvm-16.
I may need to help fix llvm-toolchain-16/snapshot first.


-- 
YunQiang Su



Bug#1010507: openmsx-debugger: ftbfs on riscv64

2023-08-04 Thread Graham Inggs
Hi Maintainer

It seems upstream fixed this in a different way [1], and the fix is
included in 0.1~git20230804-1.

Regards
Graham


[1] 
https://github.com/openMSX/debugger/commit/4e566440e7e119bda283682385b2f90f5caa1cce



Bug#1042876: RFS: git-credential-azure/0.2.1-1 [ITP] -- Git credential helper for Azure Repos (program)

2023-08-04 Thread M Hickford
X-Debbugs-CC: debian...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "git-credential-azure":

 * Package name : git-credential-azure
   Version  : 0.2.1-1
   Upstream contact : M Hickford 
 * URL  : https://github.com/hickford/git-credential-azure
 * License  : Apache-2.0
 * Vcs  :
https://salsa.debian.org/go-team/packages/git-credential-azure
   Section  : golang

The source builds the following binary packages:

  git-credential-azure - Git credential helper for Azure Repos

To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/git-credential-azure/

Alternatively, you can download the package with 'dget' using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/g/git-credential-azure/git-credential-azure_0.2.1-1.dsc


Bug#1041815: keepassxc: wrong homepage

2023-08-04 Thread ss4qtr+6dtvdfaqe75eg
Package: keepassxc
Followup-For: Bug #1041815
Control: tags -1 patch

Patch to fix it is attached.
>From e8ef5ce90d504c93086542bbcf91504417b4e70a Mon Sep 17 00:00:00 2001
From: Your Name 
Date: Fri, 4 Aug 2023 14:49:46 +
Subject: [PATCH] use correct homepage

---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index b6647d2..0606906 100644
--- a/debian/control
+++ b/debian/control
@@ -27,7 +27,7 @@ Build-Depends: asciidoctor,
xvfb ,
zlib1g-dev
 Standards-Version: 4.6.2
-Homepage: https://www.keepassxc.org/
+Homepage: https://keepassxc.org/
 Vcs-Git: https://salsa.debian.org/debian/keepassxc.git
 Vcs-Browser: https://salsa.debian.org/debian/keepassxc
 
-- 
2.39.2



Bug#1042980: gnome-shell: FTBFS on mips64el, mipsel: perf-* tests fail

2023-08-04 Thread YunQiang Su
Simon McVittie  于2023年8月4日周五 22:20写道:
>
> On Fri, 04 Aug 2023 at 13:21:59 +0100, Simon McVittie wrote:
> > On Fri, 04 Aug 2023 at 20:05:20 +0800, YunQiang Su wrote:
> > > I am continue working on (EE) failed to write to Xwayland fd: Broken
> > > pipe problem.
>
> I notice that the perf-* tests are new in version 44, so if the equivalent
> functionality had been failing on mips*el before, we wouldn't know.
>

It's due to another segfault. I am digging it.

> Can you confirm whether gnome-shell/unstable works on a mips*el desktop
> system?
>
> If that works, please try building
> https://salsa.debian.org/gnome-team/gnome-shell/-/merge_requests/71 with
> DEB_BUILD_OPTIONS=nocheck: does that work or crash on a mips*el desktop?
>

I will have a try tomorrow.

> Thanks
> smcv



-- 
YunQiang Su



Bug#1043025: ivar: autopkgtest failure on i386

2023-08-04 Thread Adrian Bunk
Source: ivar
Version: 1.4.2+dfsg-1
Severity: serious
Tags: patch
Control: block 1037700 by -1

https://ci.debian.net/data/autopkgtest/testing/i386/i/ivar/36393644/log.gz

...
 29s 132,133c132,133
 29s < Consensus_ZI-27_threshold_0_quality_20   130 N   G   0   
0   0   7   6   37  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s < Consensus_ZI-27_threshold_0_quality_20   131 N   A   0   
0   0   7   6   37  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   130 N   G   0   
0   0   7   6   38  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s > Consensus_ZI-27_threshold_0_quality_20   131 N   A   0   
0   0   7   6   38  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s 169c169
 29s < Consensus_ZI-27_threshold_0_quality_20   165 N   T   0   
0   0   7   6   37  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   165 N   T   0   
0   0   7   6   38  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s 174c174
 29s < Consensus_ZI-27_threshold_0_quality_20   170 N   G   0   
0   0   7   6   37  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   170 N   G   0   
0   0   7   6   38  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s 205c205
 29s < Consensus_ZI-27_threshold_0_quality_20   201 N   A   0   
0   0   7   6   37  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   201 N   A   0   
0   0   7   6   38  1   7   0.000582751 TRUE
NA  NA  NA  NA  NA  NA
 29s 4376c4376
 29s < Consensus_ZI-27_threshold_0_quality_20   7015N   G   0   
0   0   8   1   37  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7015N   G   0   
0   0   8   1   38  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s 4379c4379
 29s < Consensus_ZI-27_threshold_0_quality_20   7018N   G   0   
0   0   8   1   36  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7018N   G   0   
0   0   8   1   37  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s 4405c4405
 29s < Consensus_ZI-27_threshold_0_quality_20   7044N   A   0   
0   0   8   1   37  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7044N   A   0   
0   0   8   1   38  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s 4447c4447
 29s < Consensus_ZI-27_threshold_0_quality_20   7086N   A   0   
0   0   8   2   35  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s ---
 29s > Consensus_ZI-27_threshold_0_quality_20   7086N   A   0   
0   0   8   2   36  1   8   0.0001554   TRUE
NA  NA  NA  NA  NA  NA
 29s autopkgtest [15:35:51]: test run-unit-test: ---]
 29s run-unit-testFAIL non-zero exit status 1



The fix is attached.

For background see the first bullet point in the C++ section of
  https://gcc.gnu.org/gcc-13/changes.html
Description: Remove -std=c++11 to fix autopkgtest failure with gcc 13

--- ivar-1.4.2+dfsg.orig/src/Makefile.am
+++ ivar-1.4.2+dfsg/src/Makefile.am
@@ -1,6 +1,6 @@
 LIBS = -lhts -lz -lpthread
 
-CXXFLAGS += -v -g -std=c++11 -Wall -Wextra -Werror
+CXXFLAGS += -v -g -Wall -Wextra -Werror
 
 # this lists the binaries to produce, the (non-PHONY, binary) targets in
 # the previous manual Makefile
--- ivar-1.4.2+dfsg.orig/tests/Makefile.am
+++ ivar-1.4.2+dfsg/tests/Makefile.am
@@ -1,6 +1,6 @@
 LIBS = -lhts -lz -lpthread
 
-CXXFLAGS += -g -std=c++11 -Wall -Wextra -Werror
+CXXFLAGS += -g -Wall -Wextra -Werror
 
 TESTS = check_primer_trim check_trim check_quality_trim 

Bug#1043024: amdgpu: When updating I get a "Possible missing firmware /lib/firmware/amdgpu/modules" (Sapphire Nitro R9 390). This HAS indeed caused an issue (crashes and white screens)

2023-08-04 Thread Aly Ghobashy
Package: firmware-amd-graphics
Version: 20230210-5
Severity: important
File: amdgpu
X-Debbugs-Cc: aly.m.ghoba...@gmail.com

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
Opening videos sometimes causes the system to crash.
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
Nothing, happened with a completely clean install (using VLC)
   * What was the outcome of this action?
Sometimes a system crash
   * What outcome did you expect instead?
Nothing, but when I update the system i get "missing firmware"

*** End of the template - remove these template lines ***


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

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

firmware-amd-graphics depends on no packages.

firmware-amd-graphics recommends no packages.

Versions of packages firmware-amd-graphics suggests:
ii  initramfs-tools  0.142

-- no debconf information



Bug#1042902: emacs-gtk: system-package-package-manager should be "apt"

2023-08-04 Thread Barak A. Pearlmutter
reassign 1042902 elpa-system-packages 1.0.11-2
thanks

The variable system-packages-package-manager gets set to "pacman"
because the executable path is searched for appropriate programs, and
"pacman" is searched for before "apt", and so if the game pacman is
installed (package pacman) and "/usr/games" is on $path because the
user is just a fun loving bloke...

I'd suggest just hard-coding it to "/usr/bin/apt" in a Debian patch.



Bug#1042980: gnome-shell: FTBFS on mips64el, mipsel: perf-* tests fail

2023-08-04 Thread Simon McVittie
On Fri, 04 Aug 2023 at 13:21:59 +0100, Simon McVittie wrote:
> On Fri, 04 Aug 2023 at 20:05:20 +0800, YunQiang Su wrote:
> > I am continue working on (EE) failed to write to Xwayland fd: Broken
> > pipe problem.

I notice that the perf-* tests are new in version 44, so if the equivalent
functionality had been failing on mips*el before, we wouldn't know.

Can you confirm whether gnome-shell/unstable works on a mips*el desktop
system?

If that works, please try building
https://salsa.debian.org/gnome-team/gnome-shell/-/merge_requests/71 with
DEB_BUILD_OPTIONS=nocheck: does that work or crash on a mips*el desktop?

Thanks
smcv



Bug#1019494: localepurge: uses egrep and fgrep: fgrep/egrep: warning: egrep is obsolescent; using grep -F/-E

2023-08-04 Thread sov6rk+f2st9r1qfysds
Package: localepurge
Followup-For: Bug #1019494
Control: tags -1 patch

Patch attached to use grep -E and grep -F in place of egrep and fgrep
>From 56b231c9c45b7cf28d47075d99e18b20e122e963 Mon Sep 17 00:00:00 2001
From: Your Name 
Date: Fri, 4 Aug 2023 14:17:40 +
Subject: [PATCH] use grep -E and grep -F instead of egrep/fgrep

---
 debian/localepurge.config |  2 +-
 etc/apt/apt.conf.d/99-localepurge |  2 +-
 usr/sbin/localepurge  | 16 
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/debian/localepurge.config b/debian/localepurge.config
index b01c4e6..78dc527 100644
--- a/debian/localepurge.config
+++ b/debian/localepurge.config
@@ -13,7 +13,7 @@ LOCALELIST=/var/cache/localepurge/localelist
 conf_has_key() {
 local key="$1"
 
-if [ -f "$CONFIG_FILE" ] && fgrep --quiet --line-regexp \
+if [ -f "$CONFIG_FILE" ] && grep -F --quiet --line-regexp \
  "$key" "$CONFIG_FILE"; then
 echo "true"
 else
diff --git a/etc/apt/apt.conf.d/99-localepurge 
b/etc/apt/apt.conf.d/99-localepurge
index ae10288..b5d3e2d 100644
--- a/etc/apt/apt.conf.d/99-localepurge
+++ b/etc/apt/apt.conf.d/99-localepurge
@@ -2,5 +2,5 @@
 
 DPkg
 {
-Post-Invoke {"if [ -x /usr/sbin/localepurge ] && [ $(ps w -p $PPID | egrep -c 
'(remove|purge)') != 1 ]; then /usr/sbin/localepurge; else exit 0; fi";};
+Post-Invoke {"if [ -x /usr/sbin/localepurge ] && [ $(ps w -p $PPID | grep -E 
-c '(remove|purge)') != 1 ]; then /usr/sbin/localepurge; else exit 0; fi";};
 };
diff --git a/usr/sbin/localepurge b/usr/sbin/localepurge
index 5012c61..c172021 100755
--- a/usr/sbin/localepurge
+++ b/usr/sbin/localepurge
@@ -19,7 +19,7 @@ if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
echo "Documentation is either available via 'man localepurge'"
echo "or by reading the docs in /usr/share/doc/localepurge."
echo ""
-   if [ -f $NOPURGECONF ] && fgrep --quiet --line-regexp USE_DPKG $NOPURGECONF 
; then
+   if [ -f $NOPURGECONF ] && grep -F --quiet --line-regexp USE_DPKG 
$NOPURGECONF ; then
echo "NB: localepurge has been configured to use dpkg.  Therefore,"
echo "this script will not do anything."
fi
@@ -34,11 +34,11 @@ if [ ! -f $NOPURGECONF ]
echo " No $NOPURGECONF file present, exiting ..."
exit 0
 else
-   if fgrep --quiet --line-regexp USE_DPKG $NOPURGECONF
+   if grep -F --quiet --line-regexp USE_DPKG $NOPURGECONF
 then
 # Do nothing, dpkg does all the work for us.
 exit 0
-   elif fgrep --quiet --line-regexp NEEDSCONFIGFIRST $NOPURGECONF
+   elif grep -F --quiet --line-regexp NEEDSCONFIGFIRST $NOPURGECONF
then
echo
echo "You have to configure \"localepurge\" with the 
command"
@@ -67,19 +67,19 @@ SHOWFREEDSPACE=0
 MANDELETE=0
 globaltot=0
 
-if fgrep --quiet --line-regexp DONTBOTHERNEWLOCALE $NOPURGECONF; then
+if grep -F --quiet --line-regexp DONTBOTHERNEWLOCALE $NOPURGECONF; then
 DONTBOTHERNEWLOCALE=1
 fi
 
-if fgrep --quiet --line-regexp SHOWFREEDSPACE $NOPURGECONF; then
+if grep -F --quiet --line-regexp SHOWFREEDSPACE $NOPURGECONF; then
 SHOWFREEDSPACE=1
 fi
 
-if fgrep --quiet --line-regexp MANDELETE $NOPURGECONF; then
+if grep -F --quiet --line-regexp MANDELETE $NOPURGECONF; then
 MANDELETE=1
 fi
 
-if fgrep --quiet --line-regexp VERBOSE $NOPURGECONF \
+if grep -F --quiet --line-regexp VERBOSE $NOPURGECONF \
 || [ "$1" = "-verbose" ] || [ "$1" = "-v" ] \
 || [ "$2" = "-verbose" ] || [ "$2" = "-v" ]; then
 VERBOSE=1
@@ -179,7 +179,7 @@ superfluouslocalepat=$(
 if ! ((SHOWFREEDSPACE)); then
 function get_used_space () { echo 0; }
 else
-if fgrep --quiet --line-regexp QUICKNDIRTYCALC $NOPURGECONF; then
+if grep -F --quiet --line-regexp QUICKNDIRTYCALC $NOPURGECONF; then
function get_used_space ()
{
[ -d "$1" ] || return 1 # bail out if there's no such dir
-- 
2.39.2



Bug#1043023: libgdbm6:amd64: /usr/lib/x86_64-linux-gnu/libgdbm.so.6 in Debian bullseye uses huge amount of memory

2023-08-04 Thread Marc Schaefer
Package: libgdbm6
Version: 1.19-2
Severity: important

Dear Maintainer,

I run a few DBM-intensive applications. They manipulate huge DBMs, but
they work usually like a charm:

15168 mojolic+  20   0   90.8g 156260   5460 S   0.0   3.0   0:00.30 
known_passwords
15159 mojolic+  20   0   16.6g  63260   6572 S   0.0   1.2   0:00.15 
usenet-fr.pl

(as you can see they allocate a lot of virtual memory but do not really make 
use of it)

They usually startup in a few seconds and are very fast when started. They are
written in Perl in the Mojolicious framework, I use perlbrew.

I just migrated from buster to bullseye and it no longer works at all. The
script never complete opening of the DBMs, and uses insanely huge amount of
memory (not only virtual).

This is the same with the buster-compiled perl-5.36.1-2023-05-14 or with the
bullseye just recompiled perl-5.38.0-2023-08-04.

However, there is a simple work-around:

   export LD_LIBRARY_PATH=/home/mojolicious/tmp-libs

where this directory contains:

lrwxrwxrwx  1 rootroot23 Mar 12  2019 libgdbm_compat.so -> 
libgdbm_compat.so.4.0.0
lrwxrwxrwx  1 rootroot23 Mar 12  2019 libgdbm_compat.so.4 
-> libgdbm_compat.so.4.0.0
-rw-r--r--  1 rootroot 14104 Mar 12  2019 
libgdbm_compat.so.4.0.0.O1
lrwxrwxrwx  1 rootroot16 Mar 12  2019 libgdbm.so -> 
libgdbm.so.6.0.0
lrwxrwxrwx  1 rootroot16 Mar 12  2019 libgdbm.so.6 -> 
libgdbm.so.6.0.0
-rw-r--r--  1 rootroot 63512 Mar 12  2019 libgdbm.so.6.0.0

As you can see, just overriding libgdbm.so.6.0.0 through LD_LIBRARY_PATH with
the buster version of the library is enough (I have tested that renaming
libgdbm_compat.so.4.0.0 to libgdbm_compat.so.4.0.0.O1 still fixes the problem,
but renaming libgdbm.so.6.0.0 to libgdbm.so.6.0.0.O1 makes the problem
reappear). The issue seems to be in the libgdbm6 package, very specifically in
libgdbm.so.6.0.0.

With the work-around, things seem then to work again like a charm.

As an additional note, there seems to have been an issue like this with Fedora:

   https://github.com/Perl/perl5/issues/18884

They seem to have a patch for GDBM as it is not linked to Perl in any way:

   https://github.com/Perl/perl5/issues/18884#issuecomment-860437280

Could you look into this?

-- System Information:
Debian Release: 11.7
  APT prefers oldstable-security
  APT policy: (500, 'oldstable-security'), (500, 'oldstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-25-amd64 (SMP w/8 CPU threads)
Locale: LANG=C, LC_CTYPE=fr_CH.ISO-8859-1 (charmap=ISO-8859-1), LANGUAGE not set
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libgdbm6:amd64 depends on:
ii  libc6  2.31-13+deb11u6

libgdbm6:amd64 recommends no packages.

Versions of packages libgdbm6:amd64 suggests:
pn  gdbm-l10n  

-- no debconf information



Bug#1043022: udisks2: After 2.10 update problem with usb vfat external disk

2023-08-04 Thread luca.pedrielli

Package: udisks2
Version: 2.10.0-5
Severity: normal

Dear Maintainer,
after 2.10 update, when I plug in my vfat usb disk, a "never ending" 
fsck.vfat

process starts.
this prevents plasma-kde from working properly.
at the end of fsck the disk is not listed in usb devices and dolphin 
restarts

fsck.vfat
no problem with 2.9 version, the disc is recognized correctly.


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

Kernel: Linux 6.4.0-1-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.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 udisks2 depends on:
ii dbus 1.14.8-2
ii libacl1 2.3.1-3
ii libatasmart4 0.19-5
ii libblkid1 2.39.1-3
ii libblockdev-crypto3 3.0.2-3
ii libblockdev-fs3 3.0.2-3
ii libblockdev-loop3 3.0.2-3
ii libblockdev-mdraid3 3.0.2-3
ii libblockdev-nvme3 3.0.2-3
ii libblockdev-part3 3.0.2-3
ii libblockdev-swap3 3.0.2-3
ii libblockdev-utils3 3.0.2-3
ii libblockdev3 3.0.2-3
ii libc6 2.37-6
ii libglib2.0-0 2.76.4-4
ii libgudev-1.0-0 237-2
ii libmount1 2.39.1-3
ii libpolkit-agent-1-0 122-4
ii libpolkit-gobject-1-0 122-4
ii libsystemd0 254-1
ii libudisks2-0 2.10.0-5
ii libuuid1 2.39.1-3
ii parted 3.6-3
ii udev 254-1

Versions of packages udisks2 recommends:
ii dosfstools 4.2-1
ii e2fsprogs 1.47.0-2
ii eject 2.39.1-3
ii exfatprogs 1.2.1-2
ii libpam-systemd 254-1
ii ntfs-3g 1:2022.10.3-1+b1
ii polkitd 122-4

Versions of packages udisks2 suggests:
pn btrfs-progs 
pn f2fs-tools 
pn mdadm 
pn nilfs-tools 
pn reiserfsprogs 
pn udftools 
pn udisks2-btrfs 
pn udisks2-lvm2 
ii xfsprogs 6.3.0-1

-- no debconf information

--
Saluti, Luca Pedrielli



Bug#1043021: /usr/bin/debchange: dch in bookwork should know about bookworm-proposed-updates, bookworm-security and bookworm

2023-08-04 Thread Uwe Kleine-König
Package: devscripts
Version: 2.23.4
Severity: wishlist
File: /usr/bin/debchange
Control: tag -1 bookworm
Control: notfound -1 2.23.5

Hello,

bookworm's dch doesn't know about the distributions based on bookworm:

$ dch -D bookworm-security -r
dch warning: Recognised distributions are:
experimental, unstable, testing, stable, oldstable, oldoldstable,
{bullseye,buster,stretch,jessie,wheezy}-proposed-updates,
{testing,stable,oldstable,oldoldstable}-proposed-updates,
{bullseye,buster,stretch,jessie,wheezy}-security,
{testing,stable,oldstable,oldoldstable}}-security, bullseye-backports, 
bookworm-backports and UNRELEASED.
Using your request anyway.
dch: Did you see that warning?  Press RETURN to continue...

Given that uploads targeting bookworm-proposed-updates,
bookworm-security (and maybe "bookworm"?) are likely be done based on
bookworm, it would be great to get the change "debchange: Update to
current Debian distributions"[1] that is part of 2.23.5 into
bookworm's devscripts package.

Best regards
Uwe

[1] 
https://salsa.debian.org/debian/devscripts/-/commit/7d954c887c5184ff553a9c7032badebabfa590d1



Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Diederik de Haas
On Friday, 4 August 2023 15:11:46 CEST Olaf Skibbe wrote:
> (On the occasion a maybe silly question: am I right assuming that the
> kernel has to be build on the machine we want to reproduce the bug on?
> Otherwise it could use much faster hardware (running also bookworm).)

If that is also an amd64 machine running Debian kernel 6.1.38-2, it should be 
fine to build the kernel on the faster machine.

signature.asc
Description: This is a digitally signed message part.


Bug#1039969: aptitude: Use /run/lock/ instead of /var/lock/

2023-08-04 Thread sxxgwv+q474g9g8nwyk
Package: aptitude
Followup-For: Bug #1039969
Control: tags -1 patch

Patch attached that makes aptitude use /run by default instead of /var/run
>From 02a2be8f5b8140a4fb97ad30f8d42ac9dbac7fe2 Mon Sep 17 00:00:00 2001
From: Your Name 
Date: Fri, 4 Aug 2023 13:20:52 +
Subject: [PATCH] use /run instead of /var/run

---
 configure| 4 ++--
 configure.ac | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index be7e60e..89a23e4 100755
--- a/configure
+++ b/configure
@@ -903,7 +903,7 @@ datadir='${datarootdir}'
 sysconfdir='${prefix}/etc'
 sharedstatedir='${prefix}/com'
 localstatedir='${prefix}/var'
-runstatedir='${localstatedir}/run'
+runstatedir='${prefix}/run'
 includedir='${prefix}/include'
 oldincludedir='/usr/include'
 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
@@ -10780,7 +10780,7 @@ if test "${with_lock_loc+set}" = set; then :
  LOCKFILE="$enableval"
fi
 else
-  LOCKFILE="/var/lock/aptitude"
+  LOCKFILE="/run/lock/aptitude"
 fi
 
 
diff --git a/configure.ac b/configure.ac
index e237a74..effc2f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -643,7 +643,7 @@ AC_ARG_WITH(lock-loc,
else
  LOCKFILE="$enableval"
fi,
-   LOCKFILE="/var/lock/aptitude")
+   LOCKFILE="/run/lock/aptitude")
 
 AC_ARG_ENABLE(aptitude,
AS_HELP_STRING([--disable-aptitude], [don't compile the program 
itself]),
-- 
2.39.2



Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Olaf Skibbe

On Fri, 4 Aug 2023 at 14:51, Karol Herbst wrote:

How are you building the kernel? Because normally from git reverting 
one of those shouldn't take long, because it doesn't recompile the 
entire kernel. But yeah, you can potentially just revert one of one 
for now and it should be fine.


I am using the `test-patches` script described here: 
https://kernel-team.pages.debian.net/kernel-handbook/ch-common-tasks.html#id-1.6.6.4 
This worked for my limited knowledge (first kernel I ever compiled).


(On the occasion a maybe silly question: am I right assuming that the 
kernel has to be build on the machine we want to reproduce the bug on? 
Otherwise it could use much faster hardware (running also bookworm).)


Cheers,
Olaf



Bug#1041605: Add Patch

2023-08-04 Thread Jeremy Sowden
Control: tags -1 + patch

Here's the patch I've sent upstream.

J.
From 3db79bde8fc235c07ae5b397605bd6d1eec1b844 Mon Sep 17 00:00:00 2001
From: Jeremy Sowden 
Date: Fri, 21 Jul 2023 14:49:11 +0100
Subject: [PATCH ipset] bash-completion: fix syntax error

There is a syntax error in a redirection:

  $ bash -x utils/ipset_bash_completion/ipset
  + shopt -s extglob
  utils/ipset_bash_completion/ipset: line 365: syntax error near unexpected token `('
  utils/ipset_bash_completion/ipset: line 365: `done < <(PATH=${PATH}:/sbin ( command ip -o link show ) )'

Move the environment variable assignment into the sub-shell.

Fixes: da6242e17583 ("Updated utilities")
Link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1041605
Signed-off-by: Jeremy Sowden 
---
 utils/ipset_bash_completion/ipset | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/ipset_bash_completion/ipset b/utils/ipset_bash_completion/ipset
index d258be234806..fc95d4043865 100644
--- a/utils/ipset_bash_completion/ipset
+++ b/utils/ipset_bash_completion/ipset
@@ -362,7 +362,7 @@ _ipset_get_ifnames() {
 while read -r; do
 REPLY="${REPLY#*: }"
 printf "%s\n" ${REPLY%%:*}
-done < <(PATH=${PATH}:/sbin ( command ip -o link show ) 2>/dev/null)
+done < <(( PATH=${PATH}:/sbin command ip -o link show ) 2>/dev/null)
 }
 
 _ipset_get_iplist() {
-- 
2.40.1



signature.asc
Description: PGP signature


Bug#735224: fontconfig-config: Alternative depends on non-existing package

2023-08-04 Thread sohe4b+2fz7rb0ixc53g
Package: fontconfig-config
Followup-For: Bug #735224

this bug has been fixed in bullseye, the issue can be closed now.



Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Karol Herbst
On Fri, Aug 4, 2023 at 2:48 PM Olaf Skibbe  wrote:
>
> On Fri, 4 Aug 2023 at 14:15, Karol Herbst wrote:
>
> > mind retrying with only fb725beca62d and 62aecf23f3d1 reverted?
>
> I will do this later this day (takes some time, it is a slow machine).
>
> > Would be weird if the other two commits are causing it. If that's the
> > case, it's a bit worrying that reverting either of the those causes
> > issues, but maybe there is a good reason for it. Anyway, mind figuring
> > out which of the two you need reverted to fix your issue? Thanks!
>
> I can do this. But if I build two kernels anyway, isn't it faster to
> build each with only one of the patches applied? Or do you expect the
> patches to interact (so that the bug would only be present when both are
> applied)?
>

How are you building the kernel? Because normally from git reverting
one of those shouldn't take long, because it doesn't recompile the
entire kernel. But yeah, you can potentially just revert one of one
for now and it should be fine.

> Cheers,
> Olaf
>



Bug#1042948: O: mtools -- Tools for manipulating MSDOS files

2023-08-04 Thread Chris Lamb
Diederik de Haas wrote:

> Would it be useful to move it out of your personal namespace to f.e. 'debian'?

Sure thing… Done:

https://salsa.debian.org/debian/pkg-mtools


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org  chris-lamb.co.uk
   `-



Bug#1043020: adapta-kde: Intent of package removal

2023-08-04 Thread Boyuan Yang
Package: adapta-kde
Severity: serious
Version: 20180828-2
Tags: sid trixie
X-Debbugs-CC: prof.franciscar...@gmail.com

Dear Debian adapta-kde package maintainer,

As stated in https://bugs.debian.org/1031184 , the upstream development of
this package has ended. I intend to remove this package after 3 weeks (after
Aug 25, 2023) if no disagreement appears. If you have any comments, please let
me know as soon as possible by replying this bug report.

Thanks,
Boyuan Yang


signature.asc
Description: This is a digitally signed message part


Bug#962420: /usr/local/share/fonts owned by group staff even if /etc/staff-group-for-usr-local not present

2023-08-04 Thread sohe4b+2fz7rb0ixc53g
Package: fontconfig-config
Followup-For: Bug #962420
Control: tags -1 patch

I attach a patch that fixes this problem.

/usr/local/share/fonts will be root:staff 2775 only if 
/etc/staff-group-for-usr-local exists
>From ee17357e3fb18323d5373a575ec6cb3c77ba6a89 Mon Sep 17 00:00:00 2001
From: Your Name 
Date: Fri, 4 Aug 2023 12:44:30 +
Subject: [PATCH] use staff group only when requested

---
 debian/fontconfig-config.postinst | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/debian/fontconfig-config.postinst 
b/debian/fontconfig-config.postinst
index 457cce5..a6e17b1 100644
--- a/debian/fontconfig-config.postinst
+++ b/debian/fontconfig-config.postinst
@@ -142,11 +142,13 @@ fi # end changes applied only for initial config / 
reconfiguration
 
 # Create /usr/local/share/fonts
 LOCALDIR=/usr/local/share/fonts
-if [ ! -d $LOCALDIR ]; then
-  if mkdir $LOCALDIR 2>/dev/null ; then
-chmod 2775 $LOCALDIR
-chown root:staff $LOCALDIR
-  fi
+if [ ! -d "$LOCALDIR" ]; then
+if mkdir "$LOCALDIR" 2>/dev/null; then
+if [ -f /etc/staff-group-for-usr-local ]; then
+chmod 2775 "$LOCALDIR"
+chown root:staff "$LOCALDIR"
+fi
+fi
 fi
 
 # fontconfig-config 2.11.0-5 (and earlier) created /etc/fonts.conf.d by mistake
-- 
2.39.2



Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Olaf Skibbe

On Fri, 4 Aug 2023 at 14:15, Karol Herbst wrote:


mind retrying with only fb725beca62d and 62aecf23f3d1 reverted?


I will do this later this day (takes some time, it is a slow machine).

Would be weird if the other two commits are causing it. If that's the 
case, it's a bit worrying that reverting either of the those causes 
issues, but maybe there is a good reason for it. Anyway, mind figuring 
out which of the two you need reverted to fix your issue? Thanks!


I can do this. But if I build two kernels anyway, isn't it faster to 
build each with only one of the patches applied? Or do you expect the 
patches to interact (so that the bug would only be present when both are 
applied)?


Cheers,
Olaf



Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Thorsten Leemhuis
Hi!

On 02.08.23 23:28, Olaf Skibbe wrote:
> Dear Maintainers,
> 
> Hereby I would like to report an apparent bug in the nouveau driver in
> linux/6.1.38-2.

Thx for your report. Maybe your problem is caused by a incomplete
backport. I Cced the maintainers for the drivers (and the regressions
and the stable list), maybe one of them has an idea, as they know the
driver.

If they don't reply in the next few days, please check if the problem is
also present in mainline. If not, check if the latest 6.1.y. release
already fixes this. If not, try to check which of the four patches you
reverted to make things going is actually causing this (e.g. first only
revert the one that was applied last; then the two last ones; ...).

> Running a current debian stable on a Dell Latitude E6510 with a
> "NVIDIA Corporation GT218M" graphic card, the monitor turns black
> after the grub screen. Also switching to a console (Strg-Alt-F2) shows
> just a black screen. Access via ssh is possible.
> 
> ~# uname -r
> 6.1.0-10-amd64
> 
> demesg shows the following error message:
> 
> [    3.560153] WARNING: CPU: 0 PID: 176 at
> drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c:460
> nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [    3.560287] Modules linked in: sd_mod t10_pi sr_mod crc64_rocksoft
> cdrom crc64 crc_t10dif crct10dif_generic nouveau(+) ahci libahci mxm_wmi
> i2c_algo_bit drm_display_helper libata cec rc_core drm_ttm_helper ttm
> scsi_mod e1000e drm_kms_helper ptp firewire_ohci sdhci_pci cqhci
> ehci_pci sdhci ehci_hcd firewire_core i2c_i801 crct10dif_pclmul
> crct10dif_common drm crc32_pclmul crc32c_intel psmouse usbcore mmc_core
> crc_itu_t pps_core scsi_common i2c_smbus lpc_ich usb_common battery
> video wmi button
> [    3.560322] CPU: 0 PID: 176 Comm: kworker/u16:5 Not tainted
> 6.1.0-10-amd64 #1  Debian 6.1.38-2
> [    3.560325] Hardware name: Dell Inc. Latitude E6510/0N5KHN, BIOS A17
> 05/12/2017
> [    3.560327] Workqueue: nvkm-disp nv50_disp_super [nouveau]
> [    3.560433] RIP: 0010:nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [    3.560538] Code: 48 8b 44 24 58 65 48 2b 04 25 28 00 00 00 0f 85 37
> 02 00 00 48 83 c4 60 44 89 e0 5b 5d 41 5c 41 5d 41 5e 41 5f c3 cc cc cc
> cc <0f> 0b c1 e8 03 41 88 6d 62 44 89 fe 48 89 df 48 69 c0 cf 0d d6 26
> [    3.560541] RSP: 0018:9899c048bd60 EFLAGS: 00010246
> [    3.560542] RAX: 00041eb0 RBX: 88e0209d2600 RCX:
> 00041eb0
> [    3.560544] RDX: c079f760 RSI:  RDI:
> 9899c048bcf0
> [    3.560545] RBP: 0001 R08: 9899c048bc64 R09:
> 5b76
> [    3.560546] R10: 000d R11: 9899c048bde0 R12:
> ffea
> [    3.560548] R13: 88e00b39e480 R14: 00044d45 R15:
> 
> [    3.560549] FS:  () GS:88e123c0()
> knlGS:
> [    3.560551] CS:  0010 DS:  ES:  CR0: 80050033
> [    3.560552] CR2: 7f57f4e90451 CR3: 00018141 CR4:
> 06f0
> [    3.560554] Call Trace:
> [    3.560558]  
> [    3.560560]  ? __warn+0x7d/0xc0
> [    3.560566]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [    3.560671]  ? report_bug+0xe6/0x170
> [    3.560675]  ? handle_bug+0x41/0x70
> [    3.560679]  ? exc_invalid_op+0x13/0x60
> [    3.560681]  ? asm_exc_invalid_op+0x16/0x20
> [    3.560685]  ? init_reset_begun+0x20/0x20 [nouveau]
> [    3.560769]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
> [    3.560888]  nv50_disp_super_2_2+0x70/0x430 [nouveau]
> [    3.560997]  nv50_disp_super+0x113/0x210 [nouveau]
> [    3.561103]  process_one_work+0x1c7/0x380
> [    3.561109]  worker_thread+0x4d/0x380
> [    3.561113]  ? rescuer_thread+0x3a0/0x3a0
> [    3.561116]  kthread+0xe9/0x110
> [    3.561120]  ? kthread_complete_and_exit+0x20/0x20
> [    3.561122]  ret_from_fork+0x22/0x30
> [    3.561130]  
> 
> Further information:
> 
> $ lspci -v -s $(lspci | grep -i vga | awk '{ print $1 }')
> 01:00.0 VGA compatible controller: NVIDIA Corporation GT218M [NVS 3100M]
> (rev a2) (prog-if 00 [VGA controller])
> Subsystem: Dell Latitude E6510
> Flags: bus master, fast devsel, latency 0, IRQ 27
> Memory at e200 (32-bit, non-prefetchable) [size=16M]
> Memory at d000 (64-bit, prefetchable) [size=256M]
> Memory at e000 (64-bit, prefetchable) [size=32M]
> I/O ports at 7000 [size=128]
> Expansion ROM at 000c [disabled] [size=128K]
> Capabilities: 
> Kernel driver in use: nouveau
> Kernel modules: nouveau
> 
> I reported this bug to debian already, see
> https://bugs.debian.org/1042753 for context.
> 
> With support (thanks Diederik!) I managed to figure out that the cause
> was a regression between upstream kernel version 6.1.27 and 6.1.38.
> 
> I build a new 6.1.38 kernel with these commits reverted:
> 
> 62aecf23f3d1 drm/nouveau: add nv_encoder pointer check for NULL
> fb725beca62d drm/nouveau/dp: check for NULL nv_connector->native_mode
> 90748be0f4f3 drm/nouveau: don't detect DSM for non-NVIDIA 

Bug#1042948: O: mtools -- Tools for manipulating MSDOS files

2023-08-04 Thread Diederik de Haas
Control: affects -1 src:mtools

On Thu, 03 Aug 2023 09:31:32 +0100 "Chris Lamb"  wrote:
> Package: wnpp
> 
> I am orphaning this package so that it can be more actively maintained.
> Full Git maintenance history is available - see its Vcs-Git entry.

Would it be useful to move it out of your personal namespace to f.e. 'debian'?

signature.asc
Description: This is a digitally signed message part.


Bug#1042005: transition: mumps hypre2.28.0 superlu combblas

2023-08-04 Thread Drew Parsons

On 2023-08-04 14:12, Drew Parsons wrote:


Oops, BipartiteMatchings is provided twice.  I didn't notice that 
before :(


Wait, not as simple as that.  It changed location, my dlocate database 
hasn't caught up yet.
Will have to review the patches introduced via 
https://github.com/xiaoyeli/superlu_dist/issues/60




Bug#1042753: nouveau bug in linux/6.1.38-2

2023-08-04 Thread Karol Herbst
On Fri, Aug 4, 2023 at 2:02 PM Thorsten Leemhuis
 wrote:
>
> Hi!
>
> On 02.08.23 23:28, Olaf Skibbe wrote:
> > Dear Maintainers,
> >
> > Hereby I would like to report an apparent bug in the nouveau driver in
> > linux/6.1.38-2.
>
> Thx for your report. Maybe your problem is caused by a incomplete
> backport. I Cced the maintainers for the drivers (and the regressions
> and the stable list), maybe one of them has an idea, as they know the
> driver.
>
> If they don't reply in the next few days, please check if the problem is
> also present in mainline. If not, check if the latest 6.1.y. release
> already fixes this. If not, try to check which of the four patches you
> reverted to make things going is actually causing this (e.g. first only
> revert the one that was applied last; then the two last ones; ...).
>
> > Running a current debian stable on a Dell Latitude E6510 with a
> > "NVIDIA Corporation GT218M" graphic card, the monitor turns black
> > after the grub screen. Also switching to a console (Strg-Alt-F2) shows
> > just a black screen. Access via ssh is possible.
> >
> > ~# uname -r
> > 6.1.0-10-amd64
> >
> > demesg shows the following error message:
> >
> > [3.560153] WARNING: CPU: 0 PID: 176 at
> > drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c:460
> > nvkm_dp_acquire+0x26a/0x490 [nouveau]
> > [3.560287] Modules linked in: sd_mod t10_pi sr_mod crc64_rocksoft
> > cdrom crc64 crc_t10dif crct10dif_generic nouveau(+) ahci libahci mxm_wmi
> > i2c_algo_bit drm_display_helper libata cec rc_core drm_ttm_helper ttm
> > scsi_mod e1000e drm_kms_helper ptp firewire_ohci sdhci_pci cqhci
> > ehci_pci sdhci ehci_hcd firewire_core i2c_i801 crct10dif_pclmul
> > crct10dif_common drm crc32_pclmul crc32c_intel psmouse usbcore mmc_core
> > crc_itu_t pps_core scsi_common i2c_smbus lpc_ich usb_common battery
> > video wmi button
> > [3.560322] CPU: 0 PID: 176 Comm: kworker/u16:5 Not tainted
> > 6.1.0-10-amd64 #1  Debian 6.1.38-2
> > [3.560325] Hardware name: Dell Inc. Latitude E6510/0N5KHN, BIOS A17
> > 05/12/2017
> > [3.560327] Workqueue: nvkm-disp nv50_disp_super [nouveau]
> > [3.560433] RIP: 0010:nvkm_dp_acquire+0x26a/0x490 [nouveau]
> > [3.560538] Code: 48 8b 44 24 58 65 48 2b 04 25 28 00 00 00 0f 85 37
> > 02 00 00 48 83 c4 60 44 89 e0 5b 5d 41 5c 41 5d 41 5e 41 5f c3 cc cc cc
> > cc <0f> 0b c1 e8 03 41 88 6d 62 44 89 fe 48 89 df 48 69 c0 cf 0d d6 26
> > [3.560541] RSP: 0018:9899c048bd60 EFLAGS: 00010246
> > [3.560542] RAX: 00041eb0 RBX: 88e0209d2600 RCX:
> > 00041eb0
> > [3.560544] RDX: c079f760 RSI:  RDI:
> > 9899c048bcf0
> > [3.560545] RBP: 0001 R08: 9899c048bc64 R09:
> > 5b76
> > [3.560546] R10: 000d R11: 9899c048bde0 R12:
> > ffea
> > [3.560548] R13: 88e00b39e480 R14: 00044d45 R15:
> > 
> > [3.560549] FS:  () GS:88e123c0()
> > knlGS:
> > [3.560551] CS:  0010 DS:  ES:  CR0: 80050033
> > [3.560552] CR2: 7f57f4e90451 CR3: 00018141 CR4:
> > 06f0
> > [3.560554] Call Trace:
> > [3.560558]  
> > [3.560560]  ? __warn+0x7d/0xc0
> > [3.560566]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
> > [3.560671]  ? report_bug+0xe6/0x170
> > [3.560675]  ? handle_bug+0x41/0x70
> > [3.560679]  ? exc_invalid_op+0x13/0x60
> > [3.560681]  ? asm_exc_invalid_op+0x16/0x20
> > [3.560685]  ? init_reset_begun+0x20/0x20 [nouveau]
> > [3.560769]  ? nvkm_dp_acquire+0x26a/0x490 [nouveau]
> > [3.560888]  nv50_disp_super_2_2+0x70/0x430 [nouveau]
> > [3.560997]  nv50_disp_super+0x113/0x210 [nouveau]
> > [3.561103]  process_one_work+0x1c7/0x380
> > [3.561109]  worker_thread+0x4d/0x380
> > [3.561113]  ? rescuer_thread+0x3a0/0x3a0
> > [3.561116]  kthread+0xe9/0x110
> > [3.561120]  ? kthread_complete_and_exit+0x20/0x20
> > [3.561122]  ret_from_fork+0x22/0x30
> > [3.561130]  
> >
> > Further information:
> >
> > $ lspci -v -s $(lspci | grep -i vga | awk '{ print $1 }')
> > 01:00.0 VGA compatible controller: NVIDIA Corporation GT218M [NVS 3100M]
> > (rev a2) (prog-if 00 [VGA controller])
> > Subsystem: Dell Latitude E6510
> > Flags: bus master, fast devsel, latency 0, IRQ 27
> > Memory at e200 (32-bit, non-prefetchable) [size=16M]
> > Memory at d000 (64-bit, prefetchable) [size=256M]
> > Memory at e000 (64-bit, prefetchable) [size=32M]
> > I/O ports at 7000 [size=128]
> > Expansion ROM at 000c [disabled] [size=128K]
> > Capabilities: 
> > Kernel driver in use: nouveau
> > Kernel modules: nouveau
> >
> > I reported this bug to debian already, see
> > https://bugs.debian.org/1042753 for context.
> >
> > With support (thanks Diederik!) I managed to figure out that the cause
> > was a regression between upstream kernel version 6.1.27 and 6.1.38.
> >
> 

Bug#1042980: gnome-shell: FTBFS on mips64el, mipsel: perf-* tests fail

2023-08-04 Thread Simon McVittie
On Fri, 04 Aug 2023 at 20:05:20 +0800, YunQiang Su wrote:
> > > Instead of doing this low-level ELF manipulation, I'm testing a patch 
> > > which
> > > uses an environment variable to propagate the search path into the
> > > executable - that seems less likely to go wrong on unusual architectures.

This is https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2858
and is also available as part of
https://salsa.debian.org/gnome-team/gnome-shell/-/merge_requests/71.
I think that's a more future-proof approach than adjusting the pointer
based on guessing what the base address is.

> FYI: this patch can fix the segfault problem in
> maybe_add_rpath_introspection_paths

I think my approach seems more likely to be reliable, but we can use
yours as a plan B.

> I am continue working on (EE) failed to write to Xwayland fd: Broken
> pipe problem.

Thanks!

smcv



Bug#1040064: login: bookworm version of /etc/pam.d/login references debian etch

2023-08-04 Thread sxwdnv+ezcetqoc6o6hk
Package: login
Followup-For: Bug #1040064

this bug was fixed by 
https://salsa.debian.org/debian/shadow/-/commit/d7ce68863e6040696b5127aff533712fc7fcc256



Bug#1043019: PHP errors in accept-to-gettext.inc:al2gt()

2023-08-04 Thread Guido Berhoerster
Package: gosa
Version: 2.8~git20230203.10abe45+dfsg-4

Opening any page shows on top of the page (and in the logs)
the following PHP errors:

Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "HTTP_ACCEPT_CHARSET", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 92
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "de-de", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 152
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 152
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 153
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "de-de", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 154
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "*", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 156
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 156
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "*", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 157
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "fr-fr", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 152
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 152
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "fr", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 153
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 153
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "fr-fr", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 154
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "fr", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 155
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "*", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 156
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 156
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "*", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 157
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "it-it", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 152
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type all : Type:2, 
Message:Undefined array key "UTF-8", 
File:/usr/share/gosa/include/accept-to-gettext.inc, Line: 152
Aug 04 14:00:16 tjener.intern apache2[1143590]: GOsa[unauthenticated]: (debug) 
/usr/share/gosa/include/accept-to-gettext.inc of type 

Bug#1042005: transition: mumps hypre2.28.0 superlu combblas

2023-08-04 Thread Drew Parsons

On 2023-08-03 20:46, Adrian Bunk wrote:

combblas and superlu are loaded.

Probably best to run the rebuild of superlu-dist against combblas
...


That didn't build:

https://buildd.debian.org/status/logs.php?pkg=superlu-dist=8.1.2%2Bdfsg1-1%2Bb2

...
/usr/bin/ld:
CMakeFiles/superlu_dist.dir/z_c2cpp_GetHWPM.cpp.o:/usr/include/CombBLAS/BipartiteMatchings/BPMaximalMatching.h:17:
multiple definition of `GlobalMT';
CMakeFiles/superlu_dist.dir/d_c2cpp_GetHWPM.cpp.o:/usr/include/CombBLAS/BipartiteMatchings/BPMaximalMatching.h:17:
first defined here
/usr/bin/ld: CMakeFiles/superlu_dist.dir/z_c2cpp_GetHWPM.cpp.o: in
function `combblas::ThreadBuffLenForBinning(int, int)':
/usr/include/CombBLAS/BipartiteMatchings/ApproxWeightPerfectMatching.h:401:
multiple definition of `combblas::ThreadBuffLenForBinning(int, int)';
CMakeFiles/superlu_dist.dir/d_c2cpp_GetHWPM.cpp.o:/usr/include/CombBLAS/BipartiteMatchings/ApproxWeightPerfectMatching.h:401:
first defined here



Oops, BipartiteMatchings is provided twice.  I didn't notice that before 
:(




  1   2   >