Bug#1026933: Transition Qt 6.4.2

2023-01-02 Thread Sebastiaan Couwenberg

On 12/30/22 12:43, Sebastian Ramacher wrote:

On 2022-12-30 05:07:54 +0100, Patrick Franz wrote:

Qt 6.4.2~rc1 has now been built successfully on every architecture
except s390x where the builds have been queued. However, we don't see a
reason why 6.4.2 couldn't be built on s390x.


Please go ahead.


Testing migration is blocked by this hint:

 # 2022-12-31
 # uncorrdinated change of -dev package names
 block qt6-base

Can you elaborate what the maintainer needs to do to get this transition 
unblocked?


Kind Regards,

Bas

--
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1



Bug#1027772: bullseye-pu: package e2tools/0.1.0-3+deb11u1

2023-01-02 Thread 肖盛文
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: atzli...@sina.com, 1027...@bugs.debian.org, Santiago Vila 


Hi,

[ Reason ]
close #1027361: e2tools: FTBFS in bullseye (missing build-depends on e2fsprogs)

The e2tools version in unstable does not have this problem.

[ Impact ]

e2tools fails to build:

/bin/sed -e 's|[@]HAVE_EXT2FS_XATTRS_FALSE@||g' -e 
's|[@]HAVE_EXT2FS_XATTRS_TRUE@|# |g'  -e 's|[@]top_builddir@|.|g' -e 
's|[@]top_srcdir@|.|g' -e 's|[@]DD@|/bin/dd|g' -e 's|[@]MKE2FS@||g' < 
tests/simple-test.shin > tests/simple-test.sh
/bin/chmod +x tests/simple-test.sh
FAIL: tests/simple-test.sh
=
   e2tools 0.1.0: ./test-suite.log
=

# TOTAL: 1
# PASS:  0
# SKIP:  0
# XFAIL: 0
# FAIL:  1
# XPASS: 0
# ERROR: 0

[ Tests ]
I can confirm that installing e2fsprogs is sufficient to avoid the problem.

[ Risks ]
Basically no risk, just a change to the Build-depenendency of the e2fsprogs
binary package.

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

[ Changes ]

Add e2fsprogs as a Build-dependency of the e2tools package

Thanks!
diff -Nru e2tools-0.1.0/debian/changelog e2tools-0.1.0/debian/changelog
--- e2tools-0.1.0/debian/changelog  2020-12-15 09:50:50.0 +0800
+++ e2tools-0.1.0/debian/changelog  2023-01-03 10:18:46.0 +0800
@@ -1,3 +1,29 @@
+e2tools (0.1.0-3+deb11u1) bullseye; urgency=medium
+
+  * Rebuild for bullseye
+
+ -- xiao sheng wen   Tue, 03 Jan 2023 10:18:46 +0800
+
+e2tools (0.1.0-3) unstable; urgency=medium
+
+  * d/control:
+  - Build-Depends + e2fsprogs(Closes: #1027361), Thanks Santiago Vila
+  - Bump Standards-Version: 4.6.2
+  * Ran wrap-and-sort -t -a -s
+  * update-debian-copyright to 2023 year
+
+ -- xiao sheng wen   Sun, 01 Jan 2023 08:59:07 +0800
+
+e2tools (0.1.0-2) unstable; urgency=medium
+
+  * d/control: Bump Standards-Version: 4.6.0
+  * d/rules: remove override_dh_clean target to
+ fix lintian temporary-debhelper-file
+  * d/watch: use @PACKAGE@ @ARCHIVE_EXT@ @ANY_VERSION@
+  * update-debian-copyright to 2021 year
+
+ -- xiao sheng wen   Fri, 17 Dec 2021 09:37:53 +0800
+
 e2tools (0.1.0-1) unstable; urgency=medium
 
   * change Vcs-Git to https://salsa.debian.org/debian/e2tools.git
@@ -12,13 +38,12 @@
   * d/copyright:
   - debian/* add email atzli...@sina.com
   - update Upstream-Contact, Upstream-Source, etc.
-  - add email and date info from AUTHORS, NEWS.md, e2tool-e2ls.c, etc.
   * d/rules: delete "export CC"
   * d/watch: update to version 4,update the new upstream URL
   * add upstream/metadata
   * d/manpages: upstream had included the debian's man
 
- -- xiao sheng wen   Tue, 15 Dec 2020 09:50:50 +0800
+ -- xiao sheng wen   Mon, 14 Dec 2020 15:56:30 +0800
 
 e2tools (0.0.16-7) unstable; urgency=medium
 
diff -Nru e2tools-0.1.0/debian/control e2tools-0.1.0/debian/control
--- e2tools-0.1.0/debian/control2020-12-14 14:55:35.0 +0800
+++ e2tools-0.1.0/debian/control2023-01-03 10:18:46.0 +0800
@@ -2,9 +2,14 @@
 Section: misc
 Priority: optional
 Maintainer: xiao sheng wen 
-Build-Depends: debhelper-compat (= 13), e2fslibs-dev, uuid-dev, ss-dev,
+Build-Depends:
+ debhelper-compat (= 13),
+ e2fslibs-dev,
+ e2fsprogs,
  pkgconf,
-Standards-Version: 4.5.1
+ ss-dev,
+ uuid-dev,
+Standards-Version: 4.6.2
 Rules-Requires-Root: no
 Homepage: https://e2tools.github.io
 Vcs-Browser: https://salsa.debian.org/debian/e2tools
@@ -12,7 +17,9 @@
 
 Package: e2tools
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends:
+ ${misc:Depends},
+ ${shlibs:Depends},
 Description: utilities for manipulating files in an ext2/ext3 filesystem
  E2tools is a simple set of utilities to read, write, and manipulate
  files in an ext2/ext3 filesystem.
diff -Nru e2tools-0.1.0/debian/copyright e2tools-0.1.0/debian/copyright
--- e2tools-0.1.0/debian/copyright  2020-12-15 09:49:35.0 +0800
+++ e2tools-0.1.0/debian/copyright  2023-01-03 10:18:46.0 +0800
@@ -5,17 +5,17 @@
 
 Files: *
 Copyright:
- 1993-1997 Theodore Ts'o 
- 2002-2004 Keith W. Sheffield 
+ 1997 Theodore Ts'o
+ 2002 Keith W. Sheffield
  2007- Hans Ulrich Niedermann 
- 2015- Christoph Gysin 
+ 2015- Christoph Gysin
 License: GPL-2+
 
 Files: debian/*
 Copyright: 2003-2005 Robert Millan 
  2005 Lucas Wall 
  2009 Iulian Udrea 
- 2020- xiao sheng wen 
+ 2020-2023 xiao sheng wen 
 License: GPL-2+
 
 License: GPL-2+
@@ -24,13 +24,13 @@
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.
- . 
+ .
  This program is distributed in the hope that it will be useful
  but WITHOUT ANY 

Bug#1027746: transition: log4cxx

2023-01-02 Thread Tobias Frost
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition
X-Debbugs-Cc: log4...@packages.debian.org
Control: affects -1 + src:log4cxx

Hi,

I'm currently preparing for log4cxx13 -> log4cxx15 transition.
(SO_NAME 14 had been skipped by upstream)

All it's r-depends builds fine, and there are only three, I anticipate
a smooth transition:

R-Dependees are:
solarpowerlog ✔
ros-rosconsole ✔
ros-ros-comm ✔

(zookeeper is B-D on log4cxx, however it is not using it, #1027732)


Waiting for the green light from you ;-)

-- 
tobi


Processed: transition: log4cxx

2023-01-02 Thread Debian Bug Tracking System
Processing control commands:

> affects -1 + src:log4cxx
Bug #1027746 [release.debian.org] transition: log4cxx
Added indication that 1027746 affects src:log4cxx

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



Bug#1026392: transition: gnat-12 status update

2023-01-02 Thread Nicolas Boulenguez
Package: release.debian.org
Followup-For: Bug #1026392

libgmpada
  I have disabled the post-build tests on i386.  Not proud of this
  work-around, but #1026828 does not deserve an RC severity.

whitakers-words
  is fixed by an NMU and should migrate to testing within days.



Bug#1025329: bullseye-pu: package cwltool/3.0.20210124104916-3+deb11u1

2023-01-02 Thread Michael R. Crusoe
Ah, thanks. I've fixed the metadata for #1025327.

I've already uploaded cwltool/3.0.20210124104916-3+deb11u1 ; is there
anything I can do?

On Sat, Dec 24, 2022 at 1:02 PM Adam D. Barratt 
wrote:

> On Fri, 2022-12-02 at 16:33 +0100, Michael R. Crusoe wrote:
> > cwltool is not usable without the python3-distutils package also
> > installed. This is rare, but can happen on fresh Debian installs.
> >
> > I discovered this today while testing instructions for WSL2 users.
> >
> > The cwltool version in unstable/testing does not have this problem.
> >
>
> FWIW, the metadata for #1025327 disagrees. Assuming that newer versions
> aren't affected, please add an appropriate fixed version so that the
> BTS knows that.
>
> Regards,
>
> Adam
>
>


Bug#1027686: transition: rakudo

2023-01-02 Thread Dominique Dumont
On Sunday, 1 January 2023 22:38:43 CET M. Zhou wrote:
> Specifically, the pre-compiled cache shipped in reverse dependencies
> relies on a matching compiler ID. Hence, we added the compiler ID into the
> virtual package to ensure cache compatibility: raku-api-2022.12+e556a5c0
> The compiler ID will change when code is modified.

Unfortunately, the compiler-id also depends on the build directory. Which 
means that the compiler id changes between arches.

> Albeit adding the compiler ID may not sound like an ideal solution,
> this seems like what we can do before the freeze.

Unfortunately, yes.

> Ben file:
> 
> title = "rakudo";
> is_affected = .depends ~ "raku-api-2022.07" | .depends ~
> "raku-api-2022.12+e556a5c0"; is_good = .depends ~
> "raku-api-2022.12+e556a5c0";
> is_bad = .depends ~ "raku-api-2022.07";

I'm afraid this will break when rakudo is rebuilt in unstable.

I may have missed something, but why not keep the following lines as ben file:

Affected: .depends ~ /(^|\s)raku-api-/
Good: !.edos-debcheck ~ /uninstallable/
Bad: .edos-debcheck ~ /uninstallable/

This is what is currently specified in 
https://release.debian.org/transitions/html/rakudo.html

All the best



extra irc meeting?

2023-01-02 Thread Paul Gevers

Dear colleagues,

Some of us had the idea to plan an extra IRC meeting before the first 
milestone in the bookworm release. Finding a good slot is probably going 
to be awkward, but let's try. If I understood correctly, this week is 
not great for Sebastian and it's not great for me either. Which 
basically leaves next week Monday, Tuesday, Wednesday or Thursday 
itself. Our normal meeting is on Wednesday, but I'll not be available in 
our usual time slot.


So, let's see (all times UTC):
Monday
18:00 (elbrus)
19:00 elbrus
20:00 elbrus

Tuesday
18:00 (elbrus)
19:00 elbrus
20:00 elbrus

Wednesday
18:00 (elbrus)
19:00
20:00 elbrus

Thursday
works for elbrus 8:00 to 13:00
18:00 (elbrus)
19:00 elbrus
20:00 elbrus

Paul


OpenPGP_signature
Description: OpenPGP digital signature


Bug#1025056: transition: numerical library transition: hypre / petsc / slepc / sundials

2023-01-02 Thread Graham Inggs
Hi Drew

On Mon, 2 Jan 2023 at 12:12, Drew Parsons  wrote:
> Looks like deal.ii needs another binNMU against sundials 6.4.1+dfsg1-3
> to catch the new libsundials-nvecparallel-mpi6

A binNMU was scheduled for 6.4.1+dfsg1-2 [1].

-3 shouldn't be relevant for building, however we hit a 'illegal
instruction' on the arm64 buildds.

Regards
Graham


[1] https://buildd.debian.org/status/package.php?p=deal.ii



Processed: Re: Bug#1026825: python3.11 as default

2023-01-02 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + confirmed
Bug #1026825 [release.debian.org] python3.11 as default
Added tag(s) confirmed.

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



Bug#1026825: python3.11 as default

2023-01-02 Thread Graham Inggs
Control: tags -1 + confirmed

Hi Matthias

Happy new year!

On Sun, 25 Dec 2022 at 12:17, Graham Inggs  wrote:
> Python3-defaults with Python 3.11 as a supported version has now
> migrated to testing.  Let's go ahead with this once PHP 8.2 (#1014460)
> and qtbase-opensource-src (#1025863) are done.

qtbase-opensource-src is done, there's been no progress with PHP 8.2,
but we can deal with mapserver and zeroc-ice if they become entangled.

Please go ahead.

Regards
Graham


PS: tracker is at:
https://release.debian.org/transitions/html/python3.11-default.html



Bug#1026119: marked as done (transition: matplotlib)

2023-01-02 Thread Debian Bug Tracking System
Your message dated Mon, 2 Jan 2023 12:34:50 +0200
with message-id 

and subject line transition: matplotlib
has caused the Debian Bug report #1026119,
regarding transition: matplotlib
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1026119: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026119
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: transition
X-Debbugs-Cc: matplot...@packages.debian.org, mo...@debian.org
Control: affects -1 + src:matplotlib

Hello,
as suggested in #1025788, i'm filing this report to mark my intention to update
matplotlib from 3.5.2 (currently in unstable) to 3.6.2 (latest upstream
release).

I havent done any of the work needed for this task, so i'm not even sure if it's
feasable to achieve before the freeze (biggest unknown are possible NEW packages
either in mpl directly or in its b-d), but i'll give it a try.

I'll update this report when i've uploaded a new release in experimental and
with the results of some autopkgtests.

Regards,
Sandro
--- End Message ---
--- Begin Message ---
matplotlib 3.6.2-3 is now in testing.

The autopkgtest regressions in dolfin and mplcursors were ignored, and
they already have RC bugs filed.--- End Message ---


Bug#1025056: transition: numerical library transition: hypre / petsc / slepc / sundials

2023-01-02 Thread Drew Parsons

On 2022-12-31 17:59, Anton Gladky wrote:

Hi Sebastian,

thanks for noting it! #1027402 is fixed now in unstable (that was wrong 
version

in Breaks+Replaces).

Am Sa., 31. Dez. 2022 um 14:20 Uhr schrieb Sebastian Ramacher
:



It's now in unstable. Please also fix #1027402.



Looks like deal.ii needs another binNMU against sundials 6.4.1+dfsg1-3 
to catch the new libsundials-nvecparallel-mpi6


Drew