[Bug 2053057] Re: dracut 060+5-1ubuntu1 autopkgtest fails against systemd 255.2-3ubuntu2

2024-06-12 Thread Benjamin Drung
Merged upstream in release 102: https://github.com/dracut-ng/dracut-
ng/pull/313

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2053057

Title:
  dracut 060+5-1ubuntu1 autopkgtest fails against systemd 255.2-3ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dracut/+bug/2053057/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067120] Re: apport-retrace crashed with subprocess.CalledProcessError in check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu 24.04/apt/var/cache/apt/archives//base-files_13ubun

2024-06-11 Thread Benjamin Drung
Proposed fix: https://github.com/canonical/apport/pull/341

It adds four system tests that cover the host and jammy release. The CI
runs those tests on jammy, mantic, and noble.

** Also affects: apport
   Importance: Undecided
   Status: New

** Changed in: apport
Milestone: None => 2.29.0

** Changed in: apport
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067120

Title:
  apport-retrace crashed with subprocess.CalledProcessError in
  check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu
  24.04/apt/var/cache/apt/archives//base-files_13ubuntu9_amd64.deb',
  '/tmp/apport_sandbox_zj9wto2z']' returned non-zero exit status 2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/apport/+bug/2067120/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067120] Re: apport-retrace crashed with subprocess.CalledProcessError in check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu 24.04/apt/var/cache/apt/archives//base-files_13ubun

2024-06-11 Thread Benjamin Drung
Thanks. I can reproduce this failure. The host release must be different
to the sandbox one.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067120

Title:
  apport-retrace crashed with subprocess.CalledProcessError in
  check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu
  24.04/apt/var/cache/apt/archives//base-files_13ubuntu9_amd64.deb',
  '/tmp/apport_sandbox_zj9wto2z']' returned non-zero exit status 2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2067120/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2068077] Re: initramfs-tools reports "can't identify type of root filesystem" when label is missing

2024-06-10 Thread Benjamin Drung
** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => Low

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2068077

Title:
  initramfs-tools reports "can't identify type of root filesystem" when
  label is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2068077/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057687] Re: systemctl hibernate error: "Call to Hibernate failed: Invalid argument"

2024-06-10 Thread Benjamin Drung
** Also affects: initramfs-tools (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057687

Title:
  systemctl hibernate error: "Call to Hibernate failed: Invalid
  argument"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2057687/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2068077] Re: initramfs-tools reports "can't identify type of root filesystem" when label is missing

2024-06-10 Thread Benjamin Drung
Suggestion:

```
diff --git a/hooks/fsck b/hooks/fsck
index f6348e81..5e5b6aae 100755
--- a/hooks/fsck
+++ b/hooks/fsck
@@ -44,6 +44,7 @@ _read_fstab_entry () {
 # Find a specific fstab entry and print its type (if found, and pass != 0)
 # $1=mountpoint
 get_fsck_type_fstab () {
+   local device
eval "$(_read_fstab_entry "$1")"
 
# Not found by default.
@@ -51,9 +52,9 @@ get_fsck_type_fstab () {
# Ignore filesystem type for /, as it is not available and
# therefore never used at boot time
if [ "${MNT_DIR}" = "/" ] || [ "${MNT_TYPE}" = "auto" ]; then
-   MNT_FSNAME="$(resolve_device "${MNT_FSNAME}")"
-   if ! get_fstype "${MNT_FSNAME}"; then
-   echo "W: Couldn't identify type of $2 file 
system for fsck hook" >&2
+   device="$(resolve_device "${MNT_FSNAME}")"
+   if ! get_fstype "${device}"; then
+   echo "W: Couldn't identify type of $2 file 
system '$MNT_FSNAME' for fsck hook" >&2
fi
else
echo "${MNT_TYPE}"
```

This would change the error message to:

```
$ sudo update-initramfs -u
update-initramfs: Generating /boot/initrd.img-6.8.0-22-generic
W: Couldn't identify type of root file system 'LABEL=foo' for fsck hook
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2068077

Title:
  initramfs-tools reports "can't identify type of root filesystem" when
  label is missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2068077/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067120] Re: apport-retrace crashed with subprocess.CalledProcessError in check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu 24.04/apt/var/cache/apt/archives//base-files_13ubun

2024-06-07 Thread Benjamin Drung
Maybe related fix finding source for /lib/x86_64-linux-gnu/libc.so.6:
https://github.com/canonical/apport/pull/336

Brian, is adding `ld-linux-x86-64.so.2` to the gdb command really
needed? My apport-retrace test cases succeed when I am removing the
insert.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067120

Title:
  apport-retrace crashed with subprocess.CalledProcessError in
  check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu
  24.04/apt/var/cache/apt/archives//base-files_13ubuntu9_amd64.deb',
  '/tmp/apport_sandbox_zj9wto2z']' returned non-zero exit status 2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2067120/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064201] Re: Use Debian-specific partx path in kpartx rule

2024-06-06 Thread Benjamin Drung
Unsubscribing ~ubuntu-sponsor since the patch for focal was sponsored
and the bionic patch needs to go to ESM.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2064201

Title:
  Use Debian-specific partx path in kpartx rule

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/2064201/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2043448] Re: [needs-packaging] nemos-dev-key

2024-06-06 Thread Benjamin Drung
nemos-dev-key 1.8 landed in the Ubuntu 24.04 (noble) release.

** Package changed: ubuntu => nemos-dev-key (Ubuntu)

** Changed in: nemos-dev-key (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2043448

Title:
  [needs-packaging] nemos-dev-key

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nemos-dev-key/+bug/2043448/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2061747] Re: obsolete out-of-tree ivsc dkms in favor of in-tree one

2024-06-06 Thread Benjamin Drung
I am unsubscribing ~ubuntu-sponsors since the patch for ipu6-drivers
landed (0~git202404110253.97c94720-0ubuntu1 is in oracular).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2061747

Title:
  obsolete out-of-tree ivsc dkms in favor of in-tree one

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipu6-drivers/+bug/2061747/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 91867] Re: [PATCH] allow resume from LUKS encrypted swap partition

2024-06-06 Thread Benjamin Drung
Marking this bug as fix released as per previous comment.

** Changed in: initramfs-tools (Ubuntu)
   Status: Incomplete => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/91867

Title:
  [PATCH] allow resume from LUKS encrypted swap partition

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/91867/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1957194] Re: resume from hibernation broken when resume image is autodetected another case

2024-06-06 Thread Benjamin Drung
** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => Medium

** Changed in: initramfs-tools (Ubuntu)
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1957194

Title:
  resume from hibernation broken when resume image is autodetected
  another case

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1957194/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1769297] Re: resume from hibernation broken when resume image is autodetected

2024-06-06 Thread Benjamin Drung
** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1769297

Title:
  resume from hibernation broken when resume image is autodetected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1769297/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1853982] Re: Resume fails when UUID= syntax used in conf.d/resume

2024-06-06 Thread Benjamin Drung
** Changed in: initramfs-tools (Ubuntu)
   Status: New => Triaged

** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1853982

Title:
  Resume fails when UUID= syntax used in conf.d/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1853982/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2068026] Re: initramfs-tools hook does not support zstd-compressed kernel modules

2024-06-05 Thread Benjamin Drung
** Description changed:

  librem-ec-acpi-dkms in librem-ec-acpi uses:
  
  ```
- for kmod in $(find "${MODULESDIR}/${dir}" ${exclude:-} -name 
"$pattern*.ko" -print); do
- manual_add_modules $(basename ${kmod} .ko)
- done
+ for kmod in $(find "${MODULESDIR}/${dir}" ${exclude:-} -name 
"$pattern*.ko" -print); do
+ manual_add_modules $(basename ${kmod} .ko)
+ done
  ```
  
  vmxnet in open-vm-tools uses:
  
  ```
  if find "${DESTDIR}"/lib/modules -name pcnet32.ko >/dev/null; then
-   manual_add_modules vmxnet
+  manual_add_modules vmxnet
  fi
  ```
  
  Ubuntu 24.04 (noble) ships kernel modules compressed (e.g.
  pcnet32.ko.zst) and those snippets will not find these compressed
  modules.
+ 
+ Be also aware of the change to manual_add_modules done in bug #2065180

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2068026

Title:
  initramfs-tools hook does not support zstd-compressed kernel modules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/librem-ec-acpi/+bug/2068026/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2055718] Re: timezone changed unexpectedly from EST to America/Adak or America/Indiana/Indianapolis

2024-06-05 Thread Benjamin Drung
Verified on mantic, jammy, and focal:

```
$ schroot-wrapper -p tzdata -e -u root -c mantic
(mantic)root@desktop:~# dpkg -s tzdata | grep Version
Version: 2024a-0ubuntu0.23.10.1
(mantic)root@desktop:~# ln -sf /usr/share/zoneinfo/EST /etc/localtime
(mantic)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata
(mantic)root@desktop:~# ls -alh /etc/localtime
lrwxrwxrwx 1 root root 23 Jun  5 05:43 /etc/localtime -> /usr/share/zoneinfo/EST
(mantic)root@desktop:~# ln -sf /usr/share/zoneinfo/US/East-Indiana 
/etc/localtime
(mantic)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata

Current default time zone: 'America/Indiana/Indianapolis'
Local time is now:  Wed Jun  5 06:43:41 EDT 2024.
Universal Time is now:  Wed Jun  5 10:43:41 UTC 2024.

(mantic)root@desktop:~# ln -sf /usr/share/zoneinfo/America/Louisville 
/etc/localtime
(mantic)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata

Current default time zone: 'America/Kentucky/Louisville'
Local time is now:  Wed Jun  5 06:44:11 EDT 2024.
Universal Time is now:  Wed Jun  5 10:44:11 UTC 2024.
```

```
$ schroot-wrapper -p tzdata -e -u root -c jammy
(jammy)root@desktop:~# dpkg -s tzdata | grep Version
Version: 2024a-0ubuntu0.22.04.1
(jammy)root@desktop:~# ln -sf /usr/share/zoneinfo/EST /etc/localtime
(jammy)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata
(jammy)root@desktop:~# ls -alh /etc/localtime
lrwxrwxrwx 1 root root 23 Jun  5 05:45 /etc/localtime -> /usr/share/zoneinfo/EST
(jammy)root@desktop:~# ln -sf /usr/share/zoneinfo/US/East-Indiana /etc/localtime
(jammy)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata

Current default time zone: 'America/Indiana/Indianapolis'
Local time is now:  Wed Jun  5 06:45:23 EDT 2024.
Universal Time is now:  Wed Jun  5 10:45:23 UTC 2024.

(jammy)root@desktop:~# ln -sf /usr/share/zoneinfo/America/Louisville 
/etc/localtime
(jammy)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata

Current default time zone: 'America/Kentucky/Louisville'
Local time is now:  Wed Jun  5 06:45:34 EDT 2024.
Universal Time is now:  Wed Jun  5 10:45:34 UTC 2024.
```

```
$ schroot-wrapper -p tzdata -e -u root -c focal
(focal)root@desktop:~# dpkg -s tzdata | grep Version
Version: 2024a-0ubuntu0.20.04.1
(focal)root@desktop:~# ln -sf /usr/share/zoneinfo/EST /etc/localtime
(focal)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata
(focal)root@desktop:~# ls -alh /etc/localtime
lrwxrwxrwx 1 root root 23 Jun  5 05:46 /etc/localtime -> /usr/share/zoneinfo/EST
(focal)root@desktop:~# ln -sf /usr/share/zoneinfo/US/East-Indiana /etc/localtime
(focal)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata

Current default time zone: 'America/Indiana/Indianapolis'
Local time is now:  Wed Jun  5 06:46:29 EDT 2024.
Universal Time is now:  Wed Jun  5 10:46:29 UTC 2024.

(focal)root@desktop:~# ln -sf /usr/share/zoneinfo/America/Louisville 
/etc/localtime
(focal)root@desktop:~# dpkg-reconfigure --frontend noninteractive tzdata

Current default time zone: 'America/Kentucky/Louisville'
Local time is now:  Wed Jun  5 06:46:40 EDT 2024.
Universal Time is now:  Wed Jun  5 10:46:40 UTC 2024.
```

** Tags removed: verification-needed verification-needed-focal 
verification-needed-jammy verification-needed-mantic
** Tags added: verification-done verification-done-focal 
verification-done-jammy verification-done-mantic

** Tags removed: foundations-todo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2055718

Title:
  timezone changed unexpectedly from EST to America/Adak or
  America/Indiana/Indianapolis

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/2055718/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2068077] Re: initramfs-tools can't identify root filesystem type

2024-06-05 Thread Benjamin Drung
Thank you for taking the time to report this bug and helping to make
Ubuntu better. I failed to reproduce the issue. I took a jammy VM and
added a label to the boot device:

```
sudo tune2fs -L somelabel /dev/vda3
```

Configured fstab to look for the label:

```
$ grep -w / /etc/fstab | grep -v ^#
LABEL=somelabel /   ext4errors=remount-ro 0   1
```

and successfully updated the initrd:

```
$ sudo update-initramfs -u
update-initramfs: Generating /boot/initrd.img-6.5.0-35-generic
```

I checked the call from `resolve_device`:

```
$ blkid -l  -t LABEL=somelabel -o device
/dev/vda3
```

Can you let mkinitramfs run with `set -x` to get some log messages?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2068077

Title:
  initramfs-tools can't identify root filesystem type

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2068077/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-06-04 Thread Benjamin Drung
I uploaded dracut, initramfs-tools, and miniramfs to oracular and the
SRUs for noble. For easier testing, I also uploaded the noble SRU
packages to https://launchpad.net/~bdrung/+archive/ubuntu/ppa

With the dracut and initramfs-tools SRUs the execution time on the
Raspberry Pi Zero 2W reduces to:

```
bdrung@zero2w:~$ sudo hyperfine --warmup 1 -r 10 "update-initramfs -u"
Benchmark 1: update-initramfs -u
  Time (mean ± σ): 207.655 s ±  7.033 s[User: 39.190 s, System: 156.799 
s]
  Range (min … max):   191.754 s … 216.077 s10 runs
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-06-04 Thread Benjamin Drung
** Changed in: dracut (Ubuntu)
   Importance: Undecided => High

** Changed in: dracut (Ubuntu)
   Status: New => Fix Committed

** Changed in: miniramfs (Ubuntu)
   Importance: Undecided => High

** Changed in: miniramfs (Ubuntu)
   Status: New => Fix Committed

** Also affects: initramfs-tools (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => High

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-06-04 Thread Benjamin Drung
** Description changed:

+ [ Impact ]
+ 
  When compared to Ubuntu 23.10, creating intramfs files with update-
  initramfs takes 2 to 5 times more time on ARM devices.
  
  IIUC, dracut-install usage was added to initramfs-tools to speed up the
  process. But now its way slower. Even running update-initramfs on jammy,
  which doesn't use dracut-install, is way faster then the time taken on
  Noble.
  
  first bad commit -
  
https://github.com/dracutdevs/dracut/commit/3de4c7313260fb600507c9b87f780390b874c870
+ 
+ Updating the initrd on a Raspberry Pi Zero 2W on Ubuntu 24.04 (noble)
+ with initramfs-tools 0.142ubuntu25.1 takes over six minutes:
+ 
+ ```
+ bdrung@zero2w:~$ sudo hyperfine --warmup 1 -r 10 "update-initramfs -u"
+ Benchmark 1: update-initramfs -u
+   Time (mean ± σ): 402.751 s ±  5.592 s[User: 166.316 s, System: 
228.909 s]
+   Range (min … max):   394.380 s … 411.445 s10 runs
+ ```
+ 
+ [ Test Plan ]
+ 
+ 1. Measure `update-initramfs -u` before the update.
+ 2. Log the content of the initrd before the update: `lsinitramfs 
/boot/initrd.img`
+ 3. update dracut-install / initramfs-tools-core
+ 4. Measure `update-initramfs -u`. It should be faster (the performance 
improvements on amd64 should be very small and might be within the measurement 
uncertainty).
+ 5. Check with lsinitramfs that the content of the newly generated initrd 
hasn't changed.
+ 
+ [ Where problems could occur ]
+ 
+ The code that is responsible for including the kernel modules into the
+ initrd is touched. Negative consequences could be that some needed
+ kernel modules will not be included any more (should be covered by the
+ test case) or that building new initrds will fail.
+ 
+ The initramfs-tools fix changes how manual_add_modules behaves.
+ `manual_add_modules` does not copy kernel modules, but queues them for
+ being copied when the newly added function `apply_add_modules` is
+ called.
+ 
+ I checked all instances of calls to `manual_add_modules` for possible
+ regressions (see comment #15). Only miniramfs needs to be adjusted to
+ also call `apply_add_modules`. But this change could break consumers of
+ the `manual_add_modules` function that are outside of the Ubuntu
+ archive. I googled for `apply_add_modules` but found no public outside
+ users.
+ 
+ [ Other Info ]
  
  $ lsb_release -rd
  No LSB modules are available.
  Description:  Ubuntu 24.04 LTS
  Release:  24.04
  
  $ apt-cache policy dracut-install
  dracut-install:
    Installed: 060+5-1ubuntu3
    Candidate: 060+5-1ubuntu3
    Version table:
   *** 060+5-1ubuntu3 500
  500 http://ports.ubuntu.com/ubuntu-ports noble/main arm64 Packages
  100 /var/lib/dpkg/status

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-06-04 Thread Benjamin Drung
** Also affects: lvm2 (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: cryptsetup (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: dracut (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: thin-provisioning-tools (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: miniramfs (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2068026] [NEW] initramfs-tools hook does not support zstd-compressed kernel modules

2024-06-04 Thread Benjamin Drung
Public bug reported:

librem-ec-acpi-dkms in librem-ec-acpi uses:

```
for kmod in $(find "${MODULESDIR}/${dir}" ${exclude:-} -name "$pattern*.ko" 
-print); do
manual_add_modules $(basename ${kmod} .ko)
done
```

vmxnet in open-vm-tools uses:

```
if find "${DESTDIR}"/lib/modules -name pcnet32.ko >/dev/null; then
manual_add_modules vmxnet
fi
```

Ubuntu 24.04 (noble) ships kernel modules compressed (e.g.
pcnet32.ko.zst) and those snippets will not find these compressed
modules.

** Affects: librem-ec-acpi (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: open-vm-tools (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: open-vm-tools (Ubuntu)
   Importance: Undecided
   Status: New

** Package changed: initramfs-tools (Ubuntu) => librem-ec-acpi (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2068026

Title:
  initramfs-tools hook does not support zstd-compressed kernel modules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/librem-ec-acpi/+bug/2068026/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-06-04 Thread Benjamin Drung
While checking those packages, I found hooks that do not support zstd-
compressed kernel modules: bug #2068026

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-06-04 Thread Benjamin Drung
https://salsa.debian.org/kernel-team/initramfs-
tools/-/merge_requests/114 got merged after some iterations. This can be
a breaking change. To restore the previous behavior, call
`apply_add_modules` without arguments after a `manual_add_modules` call.

I checked all Ubuntu source packages that call manual_add_modules for
possible regressions:

```
ac100-tarball-installer
amd64-microcode
aoetools
asahi-scripts
autopkgtest
bcachefs-tools
bcache-tools
bilibop
bootcd
brltty
casper
clevis
cloud-initramfs-tools
cryptsetup
dmraid
flashcache
fsprotect
fuse
fuse3
initramfs-tools
initramfs-tools-ubuntu-core
intel-microcode
librem-ec-acpi
live-boot
ltsp
lvm2
miniramfs
multipath-tools
mythbuntu-diskless
nbd
nvidia-graphics-drivers-384
olpc-xo1
open-infrastructure-system-boot
open-infrastructure-system-tools
open-iscsi
open-vm-tools
osk-sdl
r8168
rapiddisk
s390-tools
sysconfig
tcos
thin-provisioning-tools
unl0kr
v86d
zfcpdump-kernel
zfs-linux
```

amd64-microcode and initramfs-tools have following snippet:

```
if dpkg --compare-versions "${version}" lt 4.4 ; then
manual_add_modules microcode && {
# force_load has broken semanthics when the .ko file is missing
find "${DESTDIR}/${MODULESDIR}" -type f -print | grep -qc 
'/microcode\.ko$' && {
  verbose "modular microcode driver detected"
  force_load microcode
}
}
fi
```

Ubuntu 16.04 LTS "Xenial Xerus" comes with Linux 4.4. Let's assume that
we do not support kernel version < 4.4 in Ubuntu 24.04 LTS "Noble
Numbat".

miniramfs just uses parts from initramfs-tools and need to call
`apply_add_modules`.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067737] Re: umap-learn 0.5.4+dfsg-1 depends on python3-pynndescent but is not available

2024-05-31 Thread Benjamin Drung
Released python-pynndescent 0.5.11-1. This version should auto-sync to
Ubuntu and build.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067737

Title:
  umap-learn 0.5.4+dfsg-1 depends on python3-pynndescent but is not
  available

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/umap-learn/+bug/2067737/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2059156] Re: proposed-migration for m2crypto 0.40.1-2build1

2024-05-31 Thread Benjamin Drung
The diff for 0.40.1-3 does not mention fixing timeout time_t issue. Can
you explain how oracular is fixed? Was this fix forwarded to upstream?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2059156

Title:
  proposed-migration for m2crypto 0.40.1-2build1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/m2crypto/+bug/2059156/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067101] Re: Sync ifcplusplus 0~git20190402.13744d5+dfsg-4 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package ifcplusplus - 0~git20190402.13744d5+dfsg-4
Sponsored for Sudip Mukherjee (sudipmuk)

---
ifcplusplus (0~git20190402.13744d5+dfsg-4) unstable; urgency=medium

  * Team upload.
  * d/control: remove unneeded explicit dependency on libqt5widgets5.
Closes: #1067910
  * Forward the gcc-13 patch upstream.

 -- Michael R. Crusoe   Fri, 29 Mar 2024 10:11:40
+0100

** Changed in: ifcplusplus (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067101

Title:
  Sync ifcplusplus 0~git20190402.13744d5+dfsg-4 (universe) from Debian
  unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ifcplusplus/+bug/2067101/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067224] Re: Sync chatty 0.8.2-1.1 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package chatty - 0.8.3-1
Sponsored for Sudip Mukherjee (sudipmuk)

---
chatty (0.8.3-1) unstable; urgency=medium

  * New upstream release
  * d/control: update dependencies for chatty

 -- Christopher Talbot   Sat, 04 May 2024 14:43:59
-0600

chatty (0.8.2-1.1) unstable; urgency=medium

  * Non-maintainer upload

  [ Julian Andres Klode ]
  * Bump local shlibs for libpurple0t64. (Closes: #1068219)

 -- Sebastian Ramacher   Sat, 13 Apr 2024 23:05:24
+0200

** Changed in: chatty (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067224

Title:
  Sync chatty 0.8.2-1.1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chatty/+bug/2067224/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067102] Re: Sync lcov 2.1~beta2-1 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package lcov - 2.1~beta2-1
Sponsored for Sudip Mukherjee (sudipmuk)

---
lcov (2.1~beta2-1) unstable; urgency=medium

  * New upstream release
  * Depend on python:Depends

 -- Alastair McKinstry   Mon, 08 Apr 2024 16:22:38
+0100

lcov (2.1~beta-1) unstable; urgency=medium

  * New upstream release
  * Depend on libtimedate-perl, python. Closes: #1067687
  * Re-enable tests
  * Add B-D on libdevel-cover-perl

 -- Alastair McKinstry   Tue, 26 Mar 2024 07:07:09
+

lcov (2.0-5) UNRELEASED; urgency=medium

  * Disable multiple threads while building. Tests are failing
with multiple threads.

 -- Sudip Mukherjee   Tue, 23 Jan 2024
21:27:37 +

** Changed in: lcov (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067102

Title:
  Sync lcov 2.1~beta2-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lcov/+bug/2067102/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067227] Re: Sync xpat2 1.07-20+nmu1 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package xpat2 - 1.07-20+nmu1
Sponsored for Sudip Mukherjee (sudipmuk)

---
xpat2 (1.07-20+nmu1) unstable; urgency=medium

  * NMU
  * Fix FTBFS for implicit declaration(s). Closes: #1066684

 -- Steve McIntyre <93...@debian.org>  Thu, 18 Apr 2024 22:21:46 +0100

** Changed in: xpat2 (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067227

Title:
  Sync xpat2 1.07-20+nmu1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xpat2/+bug/2067227/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066954] Re: Sync cpupower-gui 0.7.2-2.2 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package cpupower-gui - 0.7.2-2.2
Sponsored for Hans Joachim Desserud (hjd)

---
cpupower-gui (0.7.2-2.2) unstable; urgency=medium

  [ Julian Andres Klode ]
  * Drop unnecessary libgtk-3-0 dependency, gir1.2-gtk-3.0 pulls it in.
(Closes: #1067174)

 -- Sebastian Ramacher   Sat, 13 Apr 2024 22:20:07
+0200

** Changed in: cpupower-gui (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066954

Title:
  Sync cpupower-gui 0.7.2-2.2 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cpupower-gui/+bug/2066954/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066953] Re: Sync riseup-vpn 0.24.5+ds1-2 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package riseup-vpn - 0.24.5+ds1-2
Sponsored for Hans Joachim Desserud (hjd)

---
riseup-vpn (0.24.5+ds1-2) unstable; urgency=medium

  * d/control: Bump minimum version of golang-go
  * Add Depends on libqt6svg6
  * Add Recommends on qt6-wayland

 -- Nilesh Patra   Fri, 10 May 2024 21:53:35 +0530

riseup-vpn (0.24.5+ds1-1) unstable; urgency=medium

  * New upstream version 0.24.5+ds1 (Rebase patches)
Closes: #1070270
  * Exclude more vendored stuff, update copyrights
  * Update copyright, remove superfluous licenses
  * Update d/install to install helpers from non-symlinks
  * Update d/rules to
+ Use changed location of qmake and lrelease
+ Update PROVIDER and TARGET
+ Add some non-included files via DH_GOLANG_INSTALL_EXTRA
  * Update builddeps and Depends to qt6 variants.
  * Take up upstream patch to fixup package with qt 6.4
  * Add qml6-module-qt5compat-graphicaleffects to depends

 -- Nilesh Patra   Fri, 10 May 2024 19:17:51 +0530

riseup-vpn (0.21.11+ds1-5.1) unstable; urgency=medium

  * Non-maintainer upload

  [ Matthias Klose ]
  * Drop hard-coded dependencies on shared libraries, ${shlibs:Depends}
is working these days. (Closes: #1068433)

 -- Sebastian Ramacher   Sat, 13 Apr 2024 22:46:43
+0200

** Changed in: riseup-vpn (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066953

Title:
  Sync riseup-vpn 0.24.5+ds1-2 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/riseup-vpn/+bug/2066953/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066952] Re: Sync osmo-bts 1.5.0+dfsg1-3 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
This bug was fixed in the package osmo-bts - 1.5.0+dfsg1-3
Sponsored for Hans Joachim Desserud (hjd)

---
osmo-bts (1.5.0+dfsg1-3) unstable; urgency=medium

  * debian/control: update dependencies for time_t transition
(Closes: #1068806)

 -- Thorsten Alteholz   Thu, 11 Apr 2024 22:03:03
+0200

** Changed in: osmo-bts (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066952

Title:
  Sync osmo-bts 1.5.0+dfsg1-3 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/osmo-bts/+bug/2066952/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066466] Re: Sync swig 4.2.1-1 (universe) from Debian unstable (main)

2024-05-31 Thread Benjamin Drung
swig 4.2.1-1 was already synced.

** Changed in: swig (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: swig (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066466

Title:
  Sync swig 4.2.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/swig/+bug/2066466/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2051512] Re: apport ftbfs with Python 3.12 as the default

2024-05-31 Thread Benjamin Drung
** Tags removed: foundations-todo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2051512

Title:
  apport ftbfs with Python 3.12 as the default

To manage notifications about this bug go to:
https://bugs.launchpad.net/apport/+bug/2051512/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067737] [NEW] umap-learn 0.5.4+dfsg-1 depends on python3-pynndescent but is not available

2024-05-31 Thread Benjamin Drung
Public bug reported:

umap-learn 0.5.4+dfsg-1 does not migrate, because it depends on
python3-pynndescent but is not available. python-pynndescent 0.5.8-2 was
removed with following reason: "Debian #1057598, ftbfs, scheduled for
removal in testing, rdep umap-learn"

Please fix python-pynndescent.

** Affects: umap-learn (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: python-pynndescent (Debian)
 Importance: Unknown
 Status: Unknown


** Tags: update-excuse

** Bug watch added: Debian Bug tracker #1057598
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1057598

** Also affects: python-pynndescent (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1057598
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067737

Title:
  umap-learn 0.5.4+dfsg-1 depends on python3-pynndescent but is not
  available

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/umap-learn/+bug/2067737/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067732] [NEW] spopt 0.5.0-4 FTBFS

2024-05-31 Thread Benjamin Drung
Public bug reported:

spopt 0.5.0-4 fails to build from source, because it build-depends on
python3-distutils. This build dependency is not needed. spopt does not
use distutils directly.

After removing the python3-distutils build-dependency, spopt fails to
build because python3-spaghetti is missing. spaghetti was removed from
Ubuntu because it was removed from testing due to
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054759

** Affects: spopt (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: spaghetti (Debian)
 Importance: Unknown
 Status: Unknown

** Affects: spopt (Debian)
 Importance: Unknown
 Status: Unknown


** Tags: ftbfs update-excuse

** Bug watch added: Debian Bug tracker #1054759
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054759

** Also affects: spaghetti (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054759
   Importance: Unknown
   Status: Unknown

** Bug watch added: Debian Bug tracker #1065960
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065960

** Also affects: spopt (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065960
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067732

Title:
  spopt 0.5.0-4 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spopt/+bug/2067732/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067729] [NEW] libpsml-dev: unsatisfiable (Build-)Depends: libxmlf90-dev

2024-05-31 Thread Benjamin Drung
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1071043:

Package: libpsml-dev
Version: 2.0.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package is no longer
installable in sid:

  The following packages have unmet dependencies:
   libpsml-dev : Depends: libxmlf90-dev but it is not installable


Cheers,

Andreas

** Affects: libpsml (Ubuntu)
 Importance: High
 Status: New

** Affects: libpsml (Debian)
 Importance: Undecided
 Status: New


** Tags: ftbfs update-excuse

** Bug watch added: Debian Bug tracker #1071043
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1071043

** Changed in: libpsml (Debian)
 Remote watch: None => Debian Bug tracker #1071043

** Changed in: libpsml (Ubuntu)
   Importance: Undecided => High

** Tags added: ft

** Tags removed: ft
** Tags added: ftbfs update-excuse

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067729

Title:
  libpsml-dev: unsatisfiable (Build-)Depends: libxmlf90-dev

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpsml/+bug/2067729/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067729] Re: libpsml-dev: unsatisfiable (Build-)Depends: libxmlf90-dev

2024-05-31 Thread Benjamin Drung
This package needs xmlf90, but this package is neither in Debian nor in
the NEW queue. But there is packaging done in
https://salsa.debian.org/debichem-team/xmlf90

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067729

Title:
  libpsml-dev: unsatisfiable (Build-)Depends: libxmlf90-dev

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpsml/+bug/2067729/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067730] [NEW] rust-imperative: FTBFS: unsatisfiable build-dependencies

2024-05-31 Thread Benjamin Drung
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1071889:

Package: src:rust-imperative
Version: 1.0.5-1
Severity: serious
Tags: ftbfs

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to
build:


[...]
Install main build dependencies (apt-based resolver)


Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  sbuild-build-depends-main-dummy : Depends: 
librust-rust-stemmers-1+default-dev (>= 1.2.0-~~) but it is not installable
E: Unable to correct problems, you have held broken packages.
apt-get failed.
E: Package installation failed
Not removing build depends: cloned chroot in use



The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:

https://people.debian.org/~sanvila/build-logs/202405/

About the archive rebuild: The build was made on virtual machines
of type m6a.large and r6a.large from AWS, using sbuild and a
reduced chroot with only build-essential packages.

If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and affects, so that this is still visible in the BTS web
page for this package.

Thanks.

** Affects: rust-imperative (Ubuntu)
 Importance: High
 Status: New

** Affects: rust-imperative (Debian)
 Importance: Undecided
 Status: New


** Tags: ftbfs update-excuse

** Bug watch added: Debian Bug tracker #1071889
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1071889

** Changed in: rust-imperative (Debian)
 Remote watch: None => Debian Bug tracker #1071889

** Tags added: update

** Tags removed: update
** Tags added: ftbfs update-excuse

** Changed in: rust-imperative (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067730

Title:
  rust-imperative: FTBFS: unsatisfiable build-dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rust-imperative/+bug/2067730/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067720] Re: pytorch 2.1.2+dfsg-4 FTBFS with llvm 18

2024-05-31 Thread Benjamin Drung
That commit is not enough. The build fails then with:

```
/usr/bin/c++ -DAT_PER_OPERATOR_HEADERS -DCAFFE2_BUILD_MAIN_LIB 
-DFMT_HEADER_ONLY=1 -DHAVE_MALLOC_USABLE_SIZE=1 -DHAVE_MMAP=1 -DHAVE_SHM_OPEN=1 
-DHAVE_SHM_UNLINK=1 -DMINIZ_DISABLE_ZIP_READER_CRC32_CHECKS 
-DONNXIFI_ENABLE_EXT=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DTORCH_ENABLE_LLVM 
-DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_EXTERNAL_MZCRC -DUSE_RPC 
-DUSE_TENSORPIPE -D_FILE_OFFSET_BITS=64 -Dtorch_cpu_EXPORTS 
-I/<>/build/aten/src -I/<>/aten/src 
-I/<>/build -I/<> 
-I/<>/cmake/../third_party/benchmark/include 
-I/usr/lib/llvm-18/include -I/<>/debian/foxi 
-I/<>/build/debian/foxi -I/<>/torch/csrc/api 
-I/<>/torch/csrc/api/include -I/<>/caffe2/aten/src/TH 
-I/<>/build/caffe2/aten/src/TH 
-I/<>/build/caffe2/aten/src 
-I/<>/build/caffe2/../aten/src -I/<>/torch/csrc 
-I/<>/third_party/miniz-2.1.0 
-I/<>/debian/kineto/libkineto/include 
-I/<>/debian/kineto/libkineto/src 
-I/<>/aten/src/ATen/.. -I/<>/c10/.. 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/include 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/src 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/deps/clog/include 
-I/<>/third_party/flatbuffers/include -isystem 
/<>/build/third_party/gloo -isystem 
/<>/cmake/../third_party/gloo -isystem 
/<>/cmake/../third_party/googletest/googlemock/include -isystem 
/<>/cmake/../third_party/googletest/googletest/include -isystem 
/usr/include/opencv4 -isystem /usr/include/eigen3 -isystem 
/<>/caffe2 -Wdate-time -D_FORTIFY_SOURCE=3 -g -O2 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
-fdebug-prefix-map=/<>=/usr/src/pytorch-2.1.2+dfsg-4ubuntu1 
-gsplit-dwarf -Wno-dangling-reference  -I/usr -D_GLIBCXX_USE_CXX11_ABI=1 
-fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DUSE_KINETO -DLIBKINETO_NOCUPTI 
-DLIBKINETO_NOROCTRACER -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK 
-DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type 
-Werror=non-virtual-dtor -Werror=range-loop-construct -Werror=bool-operation 
-Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds 
-Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-function 
-Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing 
-Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=old-style-cast 
-Wno-invalid-partial-specialization -Wno-unused-private-field 
-Wno-aligned-allocation-unavailable -Wno-missing-braces 
-fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable 
-Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format 
-Werror=cast-function-type -Wno-stringop-overflow -DHAVE_AVX512_CPU_DEFINITION 
-DHAVE_AVX2_CPU_DEFINITION -O2 -g -DNDEBUG -std=gnu++17 -fPIC -DCAFFE2_USE_GLOO 
-DTH_HAVE_THREAD -Wall -Wextra -Wno-unused-parameter -Wno-unused-function 
-Wno-unused-result -Wno-missing-field-initializers -Wno-unknown-pragmas 
-Wno-type-limits -Wno-array-bounds -Wno-strict-overflow -Wno-strict-aliasing 
-Wno-missing-braces -Wno-maybe-uninitialized -fvisibility=hidden -O2 -fopenmp 
-Wno-redundant-move -Wno-noexcept-type -MD -MT 
caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o -MF 
caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o.d 
-o caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 
-c /<>/torch/csrc/jit/tensorexpr/llvm_jit.cpp
/<>/torch/csrc/jit/tensorexpr/llvm_jit.cpp: In function 
‘llvm::orc::JITTargetMachineBuilder 
makeTargetMachineBuilder(c10::optional >, 
c10::optional >, 
c10::optional >)’:
/<>/torch/csrc/jit/tensorexpr/llvm_jit.cpp:108:45: error: 
‘Default’ is not a member of ‘llvm::CodeGenOpt’
  108 |   JTMB.setCodeGenOptLevel(llvm::CodeGenOpt::Default);
  | ^~~
/<>/torch/csrc/jit/tensorexpr/llvm_jit.cpp:108:45: note: suggested 
alternatives:
In file included from /<>/aten/src/ATen/core/ivalue_inl.h:12,
 from /<>/aten/src/ATen/core/ivalue.h:1499,
 from /<>/aten/src/ATen/core/List_inl.h:4,
 from /<>/aten/src/ATen/core/List.h:490,
 from /<>/aten/src/ATen/core/IListRef_inl.h:3,
 from /<>/aten/src/ATen/core/IListRef.h:632,
 from /<>/aten/src/ATen/DeviceGuard.h:3,
 from /<>/build/aten/src/ATen/Functions.h:60,
 from 
/<>/torch/csrc/jit/tensorexpr/external_functions.h:4,
 from /<>/torch/csrc/jit/tensorexpr/llvm_jit.cpp:5:
/<>/aten/src/ATen/core/jit_type.h:1704:3: note:   
‘c10::TypeVerbosity::Default’
 1704 |   Default = Full,
  |   ^~~
In file included from /<>/aten/src/ATen/Context.h:4,
 from /<>/build/aten/src/ATen/Functions.h:59:
/<>/aten/src/ATen/LinalgBackend.h:10:37: note:   
‘at::LinalgBackend::Default’
   10 | enum class LinalgBackend : int8_t { Default, Cusolver, Magma };
  |  

[Bug 2067725] [NEW] pymatgen ftbfs with Python 3.12

2024-05-31 Thread Benjamin Drung
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1069219:

Package: src:pymatgen
Version: 2024.1.27+dfsg1-7
Severity: important
Tags: sid trixie ftbfs
User: debian-pyt...@lists.debian.org
Usertags: python3.12


[...]
=== FAILURES 
===
__ TestTransformedStructure.test_snl 
___

self = 

 def test_snl(self):
 self.trans.set_parameter("author", "will")
 with pytest.warns(UserWarning) as warns:
 snl = self.trans.to_snl([("will", "w...@test.com")])
 >   assert len(warns) == 1, "Warning not raised on type conversion 
with other_parameters"
E   AssertionError: Warning not raised on type conversion with 
other_parameters
E   assert 2 == 1
E+  where 2 = len(WarningsChecker(record=True))

/<>/.pybuild/test_python3.12/tests/alchemy/test_materials.py:107: 
AssertionError
 TestLobsterin.test_dict_functionality 
_

self = 

 def test_dict_functionality(self):
 >   assert self.Lobsterinfromfile.get("COHPstartEnergy") == -15.0
E   AssertionError: assert None == -15.0
E+  where None = ('COHPstartEnergy')
E+where  = 
{'cohpstartenergy': -15.0, 'cohpendenergy': 5.0, 'basisset': 
'pbeVaspFit2015', 'gaussiansmearingwidth': 0.1, 'basisfun...4s'], 
'skipdos': True, 'skipcohp': True, 'skipcoop': True, 
'skippopulationanalysis': True, 'skipgrosspopulation': True}.get
E+  where {'cohpstartenergy': -15.0, 'cohpendenergy': 5.0, 
'basisset': 'pbeVaspFit2015', 'gaussiansmearingwidth': 0.1, 
'basisfun...4s'], 'skipdos': True, 'skipcohp': True, 'skipcoop': True, 
'skippopulationanalysis': True, 'skipgrosspopulation': True} = 
.Lobsterinfromfile

.pybuild/test_python3.12/tests/io/lobster/test_inputs.py:1655: 
AssertionError
__ TestVasprun.test_potcar_not_found 
___

self = 

 def test_potcar_not_found(self):
 filepath = f"{TEST_FILES_DIR}/vasprun.xml"
 # Ensure no potcar is found and nothing is updated
 with pytest.warns(UserWarning, match="No POTCAR file with 
matching TITEL fields was found in") as warns:
 vasp_run = Vasprun(filepath, parse_potcar_file=".")
 >   assert len(warns) == 2
E   assert 3 == 2
E+  where 3 = len(WarningsChecker(record=True))

/<>/.pybuild/test_python3.12/tests/io/vasp/test_outputs.py:645: 
AssertionError
_ TestVasprun.test_unconverged 
_

self = 

 def test_unconverged(self):
 filepath = f"{TEST_FILES_DIR}/vasprun.xml.unconverged"
 with pytest.warns(UnconvergedVASPWarning, 
match="vasprun.xml.unconverged is an unconverged VASP run") as warns:
 vasprun_unconverged = Vasprun(filepath, 
parse_potcar_file=False)
 >   assert len(warns) == 1
E   assert 2 == 1
E+  where 2 = len(WarningsChecker(record=True))

/<>/.pybuild/test_python3.12/tests/io/vasp/test_outputs.py:298: 
AssertionError

** Affects: pymatgen (Ubuntu)
 Importance: High
 Status: New

** Affects: pymatgen (Debian)
 Importance: Undecided
 Status: New


** Tags: ftbfs update-excuse

** Bug watch added: Debian Bug tracker #1069219
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1069219

** Changed in: pymatgen (Debian)
 Remote watch: None => Debian Bug tracker #1069219

** Tags added: ftbfs update-excuse

** Changed in: pymatgen (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067725

Title:
  pymatgen ftbfs with Python 3.12

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pymatgen/+bug/2067725/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067725] Re: pymatgen ftbfs with Python 3.12

2024-05-31 Thread Benjamin Drung
Updating to pymatgen 2024.5.1 should fix that failure. That release
contains commit c1a610c259620509d47ca60db11a4ad32d085994 that adds
official support for Python 3.12.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067725

Title:
  pymatgen ftbfs with Python 3.12

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pymatgen/+bug/2067725/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067720] Re: pytorch 2.1.2+dfsg-4 FTBFS with llvm 18

2024-05-31 Thread Benjamin Drung
Looking at the upstream git repository, I found a fix for llvm >= 18:
https://github.com/pytorch/pytorch/pull/115652

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067720

Title:
  pytorch 2.1.2+dfsg-4 FTBFS with llvm 18

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pytorch/+bug/2067720/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067720] [NEW] pytorch 2.1.2+dfsg-4 FTBFS with llvm 18

2024-05-31 Thread Benjamin Drung
Public bug reported:

pytorch 2.1.2+dfsg-4 fails to build from source with llvm 18:

```
[957/1892] /usr/bin/c++ -DAT_PER_OPERATOR_HEADERS -DCAFFE2_BUILD_MAIN_LIB 
-DFMT_HEADER_ONLY=1 -DHAVE_MALLOC_USABLE_SIZE=1 -DHAVE_MMAP=1 -DHAVE_SHM_OPEN=1 
-DHAVE_SHM_UNLINK=1 -DMINIZ_DISABLE_ZIP_READER_CRC32_CHECKS 
-DONNXIFI_ENABLE_EXT=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DTORCH_ENABLE_LLVM 
-DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_EXTERNAL_MZCRC -DUSE_RPC 
-DUSE_TENSORPIPE -D_FILE_OFFSET_BITS=64 -Dtorch_cpu_EXPORTS 
-I/<>/build/aten/src -I/<>/aten/src 
-I/<>/build -I/<> 
-I/<>/cmake/../third_party/benchmark/include 
-I/usr/lib/llvm-18/include -I/<>/debian/foxi 
-I/<>/build/debian/foxi -I/<>/torch/csrc/api 
-I/<>/torch/csrc/api/include -I/<>/caffe2/aten/src/TH 
-I/<>/build/caffe2/aten/src/TH 
-I/<>/build/caffe2/aten/src 
-I/<>/build/caffe2/../aten/src -I/<>/torch/csrc 
-I/<>/third_party/miniz-2.1.0 
-I/<>/debian/kineto/libkineto/include 
-I/<>/debian/kineto/libkineto/src 
-I/<>/aten/src/ATen/.. -I/<>/c10/.. 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/include 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/src 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/deps/clog/include 
-I/<>/third_party/flatbuffers/include -isystem 
/<>/build/third_party/gloo -isystem 
/<>/cmake/../third_party/gloo -isystem 
/<>/cmake/../third_party/googletest/googlemock/include -isystem 
/<>/cmake/../third_party/googletest/googletest/include -isystem 
/usr/include/opencv4 -isystem /usr/include/eigen3 -isystem 
/<>/caffe2 -Wdate-time -D_FORTIFY_SOURCE=3 -g -O2 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-ffile-prefix-map=/<>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
-fdebug-prefix-map=/<>=/usr/src/pytorch-2.1.2+dfsg-4 -gsplit-dwarf 
-Wno-dangling-reference  -I/usr -D_GLIBCXX_USE_CXX11_ABI=1 
-fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DUSE_KINETO -DLIBKINETO_NOCUPTI 
-DLIBKINETO_NOROCTRACER -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK 
-DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type 
-Werror=non-virtual-dtor -Werror=range-loop-construct -Werror=bool-operation 
-Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds 
-Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-function 
-Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing 
-Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=old-style-cast 
-Wno-invalid-partial-specialization -Wno-unused-private-field 
-Wno-aligned-allocation-unavailable -Wno-missing-braces 
-fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable 
-Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format 
-Werror=cast-function-type -Wno-stringop-overflow -DHAVE_AVX512_CPU_DEFINITION 
-DHAVE_AVX2_CPU_DEFINITION -O2 -g -DNDEBUG -std=gnu++17 -fPIC -DCAFFE2_USE_GLOO 
-DTH_HAVE_THREAD -Wall -Wextra -Wno-unused-parameter -Wno-unused-function 
-Wno-unused-result -Wno-missing-field-initializers -Wno-unknown-pragmas 
-Wno-type-limits -Wno-array-bounds -Wno-strict-overflow -Wno-strict-aliasing 
-Wno-missing-braces -Wno-maybe-uninitialized -fvisibility=hidden -O2 -fopenmp 
-Wno-init-list-lifetime -MD -MT 
caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 
-MF 
caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o.d
 -o 
caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 
-c /<>/torch/csrc/jit/tensorexpr/llvm_codegen.cpp
FAILED: 
caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 
/usr/bin/c++ -DAT_PER_OPERATOR_HEADERS -DCAFFE2_BUILD_MAIN_LIB 
-DFMT_HEADER_ONLY=1 -DHAVE_MALLOC_USABLE_SIZE=1 -DHAVE_MMAP=1 -DHAVE_SHM_OPEN=1 
-DHAVE_SHM_UNLINK=1 -DMINIZ_DISABLE_ZIP_READER_CRC32_CHECKS 
-DONNXIFI_ENABLE_EXT=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx -DTORCH_ENABLE_LLVM 
-DUSE_C10D_GLOO -DUSE_DISTRIBUTED -DUSE_EXTERNAL_MZCRC -DUSE_RPC 
-DUSE_TENSORPIPE -D_FILE_OFFSET_BITS=64 -Dtorch_cpu_EXPORTS 
-I/<>/build/aten/src -I/<>/aten/src 
-I/<>/build -I/<> 
-I/<>/cmake/../third_party/benchmark/include 
-I/usr/lib/llvm-18/include -I/<>/debian/foxi 
-I/<>/build/debian/foxi -I/<>/torch/csrc/api 
-I/<>/torch/csrc/api/include -I/<>/caffe2/aten/src/TH 
-I/<>/build/caffe2/aten/src/TH 
-I/<>/build/caffe2/aten/src 
-I/<>/build/caffe2/../aten/src -I/<>/torch/csrc 
-I/<>/third_party/miniz-2.1.0 
-I/<>/debian/kineto/libkineto/include 
-I/<>/debian/kineto/libkineto/src 
-I/<>/aten/src/ATen/.. -I/<>/c10/.. 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/include 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/src 
-I/<>/aten/src/ATen/native/quantized/cpu/qnnpack/deps/clog/include 
-I/<>/third_party/flatbuffers/include -isystem 
/<>/build/third_party/gloo -isystem 
/<>/cmake/../third_party/gloo -isystem 
/<>/cmake/../third_party/googletest/googlemock/include -isystem 
/<>/cmake/../third_party/googletest/googletest/include -isystem 
/usr/include/opencv4 -isystem 

[Bug 2067621] Re: procdump 2.2-1ubuntu1 FTBFS on armhf

2024-05-31 Thread Benjamin Drung
Pushed this backported armv7l detection patch to
https://code.launchpad.net/~bdrung/ubuntu/+source/procdump/+git/procdump/+ref/ubuntu/devel

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067621

Title:
  procdump 2.2-1ubuntu1 FTBFS on armhf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067621/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067602] Re: procdump 2.2-1 FTBFS

2024-05-31 Thread Benjamin Drung
** Tags removed: update-excuse

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067602

Title:
  procdump 2.2-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067602/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067621] Re: procdump 2.2-1ubuntu1 FTBFS on armhf

2024-05-31 Thread Benjamin Drung
Forwarded armv7l detection fix:
https://github.com/Sysinternals/ProcDump-for-Linux/pull/252

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067621

Title:
  procdump 2.2-1ubuntu1 FTBFS on armhf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067621/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1920933] Re: live desktop system booted with ip=dhcp has the right lease, hostname not set at all

2024-05-31 Thread Benjamin Drung
Can you check with lsinitramfs if your initrd includes an /etc/hostname?

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1920933

Title:
  live desktop system booted with ip=dhcp has the right lease, hostname
  not set at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1920933/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067614] Re: inotify-tools 4.23.9.0-1 FTBFS

2024-05-31 Thread Benjamin Drung
Forwarded to Debian: https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=1072273

** Bug watch added: Debian Bug tracker #1072273
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1072273

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067614

Title:
  inotify-tools 4.23.9.0-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/inotify-tools/+bug/2067614/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2063204] Re: Desktop-Live ships /etc/netplan/01-network-manager-all.yaml in addition to /usr/lib/netplan/00-network-manager-all.yaml

2024-05-30 Thread Benjamin Drung
** Tags removed: rls-oo-incoming
** Tags added: foundations-todo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2063204

Title:
  Desktop-Live ships /etc/netplan/01-network-manager-all.yaml in
  addition to /usr/lib/netplan/00-network-manager-all.yaml

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/livecd-rootfs/+bug/2063204/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067071] Re: cannot upgrade from 23.10 to 24.04, error in _install_t64_replacement_packages

2024-05-30 Thread Benjamin Drung
** Tags removed: rls-nn-incoming
** Tags added: foundations-bugs

** Tags removed: foundations-bugs
** Tags added: foundations-todo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067071

Title:
  cannot upgrade from 23.10 to 24.04, error in
  _install_t64_replacement_packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/2067071/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2063094] Re: unattended-upgrades is running forever

2024-05-30 Thread Benjamin Drung
** Tags removed: rls-nn-incoming rls-oo-incoming
** Tags added: foundations-bugs

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2063094

Title:
  unattended-upgrades is running forever

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/2063094/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067120] Re: apport-retrace crashed with subprocess.CalledProcessError in check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu 24.04/apt/var/cache/apt/archives//base-files_13ubun

2024-05-30 Thread Benjamin Drung
** Tags removed: rls-nn-incoming
** Tags added: foundations-todo

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067120

Title:
  apport-retrace crashed with subprocess.CalledProcessError in
  check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu
  24.04/apt/var/cache/apt/archives//base-files_13ubuntu9_amd64.deb',
  '/tmp/apport_sandbox_zj9wto2z']' returned non-zero exit status 2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2067120/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067614] Re: inotify-tools 4.23.9.0-1 FTBFS

2024-05-30 Thread Benjamin Drung
** Changed in: inotify-tools (Ubuntu)
   Importance: Undecided => High

** Changed in: inotify-tools (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067614

Title:
  inotify-tools 4.23.9.0-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/inotify-tools/+bug/2067614/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067602] Re: procdump 2.2-1 FTBFS

2024-05-30 Thread Benjamin Drung
Fixed in procdump 2.2-1ubuntu1 but armhf fails to build: bug #2067621

** Changed in: procdump (Ubuntu)
   Status: New => Fix Committed

** Changed in: procdump (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067602

Title:
  procdump 2.2-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067602/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067621] [NEW] procdump 2.2-1ubuntu1 FTBFS on armhf

2024-05-30 Thread Benjamin Drung
Public bug reported:

procdump 2.2-1ubuntu1 fails to build on armhf:

```
dh clean --no-parallel
   dh_auto_clean -O--no-parallel
make -j1 distclean
make[1]: Entering directory '/<>'
Makefile:31: *** recipe commences before first target.  Stop.
make[1]: Leaving directory '/<>'
```

This failure is caused by failing to detect the architecture:

```
$ uname -p
armv7l
```

When adding armv7l to the list of ARM architectures, the build will fail
with:

```
clang++ -o obj/ProcDumpProfiler.so -DELPP_NO_DEFAULT_LOG_FILE 
-DELPP_THREAD_SAFE -g -pthread -shared --no-undefined -Wno-invalid-noreturn 
-Wno-pragma-pack -Wno-writable-strings -Wno-format-security -fPIC 
-fms-extensions -DHOST_ARM -DPAL_STDCPP_COMPAT -DPLATFORM_UNIX -std=c++11 -I 
profiler/inc -I include profiler/src/ClassFactory.cpp 
profiler/src/ProcDumpProfiler.cpp profiler/src/dllmain.cpp 
profiler/src/corprof_i.cpp profiler/src/easylogging++.cc
profiler/src/ProcDumpProfiler.cpp:406:33: warning: implicit conversion of NULL 
constant to 'ObjectID' (aka 'unsigned int') [-Wnull-conversion]
  406 | entry.exceptionID = NULL;
  |   ~ ^~~~
  | 0
profiler/src/ProcDumpProfiler.cpp:1130:29: warning: implicit conversion of NULL 
constant to 'ClassID' (aka 'unsigned int') [-Wnull-conversion]
 1130 | ClassID parentClassId = NULL;
  | ~   ^~~~
  | 0
profiler/src/ProcDumpProfiler.cpp:1131:38: warning: implicit conversion of NULL 
constant to 'ClassID' (aka 'unsigned int') [-Wnull-conversion]
 1131 | ClassID systemExceptionClassId = NULL;
  | ~~   ^~~~
  |  0
profiler/src/ProcDumpProfiler.cpp:1192:26: warning: comparison between NULL and 
non-pointer ('ClassID' (aka 'unsigned int') and NULL) [-Wnull-arithmetic]
 1192 | }while(parentClassId != NULL);
  |~ ^  
profiler/src/ProcDumpProfiler.cpp:1194:31: warning: comparison between NULL and 
non-pointer ('ClassID' (aka 'unsigned int') and NULL) [-Wnull-arithmetic]
 1194 | if(systemExceptionClassId != NULL)
  |~~ ^  
profiler/src/ProcDumpProfiler.cpp:1255:30: error: use of undeclared identifier 
'PLONG_PTR'
 1255 | msgField = *(PLONG_PTR)(((BYTE *)objectId) + 
pFieldOffsets[fieldIndex].ulOffset);
  |  ^
profiler/src/ProcDumpProfiler.cpp:1256:29: warning: comparison between NULL and 
non-pointer ('LONG_PTR' (aka 'int') and NULL) [-Wnull-arithmetic]
 1256 | if(msgField != NULL)
  | ^  
6 warnings and 1 error generated.
make[1]: *** [Makefile:87: obj/ProcDumpProfiler.so] Error 1
```

Full log: https://launchpadlibrarian.net/732723704/buildlog_ubuntu-
oracular-armhf.procdump_2.2-1ubuntu2~ppa3_BUILDING.txt.gz

** Affects: procdump (Ubuntu)
 Importance: High
 Status: New


** Tags: ftbfs update-excuse

** Changed in: procdump (Ubuntu)
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067621

Title:
  procdump 2.2-1ubuntu1 FTBFS on armhf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067621/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067614] [NEW] inotify-tools 4.23.9.0-1 FTBFS

2024-05-30 Thread Benjamin Drung
Public bug reported:

inotify-tools 4.23.9.0-1 fails to build on Ubuntu:

```
   dh_makeshlibs -a
dpkg-gensymbols: error: some symbols or patterns disappeared in the symbols 
file: see diff output below
dpkg-gensymbols: warning: debian/libinotifytools0/DEBIAN/symbols doesn't match 
completely debian/libinotifytools0.symbols
--- debian/libinotifytools0.symbols (libinotifytools0_4.23.9.0-1_amd64)
+++ dpkg-gensymbolswjloC0   2024-05-29 10:32:22.597059648 +
@@ -67,7 +67,7 @@
  (c++)"record_stats(inotify_event const*)@Base" 4.23.8.0
  (c++)"remove_inotify_watch(watch*)@Base" 4.23.8.0
  (c++)"stat_ptr(watch*, int)@Base" 4.23.8.0
- (c++)"str::~str()@Base" 4.23.8.0
+#MISSING: 4.23.9.0-1# (c++)"str::~str()@Base" 4.23.8.0
  tree_fid@Base 3.21.9.5
  tree_filename@Base 3.11
  tree_wd@Base 3.11
dh_makeshlibs: error: failing due to earlier errors
make: *** [debian/rules:7: binary] Error 25
```

** Affects: inotify-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: ftbfs update-excuse

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067614

Title:
  inotify-tools 4.23.9.0-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/inotify-tools/+bug/2067614/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067602] Re: procdump 2.2-1 FTBFS

2024-05-30 Thread Benjamin Drung
I can reproduce it on an upstream git checkout of 2.2 tag:

```
make CFLAGS="-flto=auto -ffat-lto-objects -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection"
```

Bisect the fix in https://github.com/Sysinternals/ProcDump-for-
Linux/commit/ed78e3e8ef57a52a8c69f4592436321ef6e9b960

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067602

Title:
  procdump 2.2-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067602/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067602] Re: procdump 2.2-1 FTBFS

2024-05-30 Thread Benjamin Drung
** Description changed:

  procdump 2.2-1 fails to build from source on Ubuntu. I can reproduce it
  locally.
  
  ```
+ cc -c -g -o obj/Monitor.o src/Monitor.c -g -O2 -fno-omit-frame-pointer 
-mno-omit-leaf-frame-pointer -ffile-prefix-map=/<>=. -flto=auto 
-ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection 
-fdebug-prefix-map=/<>=/usr/src/procdump-2.2-1 -g -O2 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-ffile-prefix-map=/<>=. -flto=auto -ffat-lto-objects 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection 
-fdebug-prefix-map=/<>=/usr/src/procdump-2.2-1 -fcommon -Wl,-z,now 
-Wdate-time -D_FORTIFY_SOURCE=3 -Wl,-Bsymbolic-functions -flto=auto 
-ffat-lto-objects -Wl,-z,relro -I ./include -pthread -std=gnu99 
-fstack-protector-all -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O2 -fanalyzer 
-Werror
  src/Monitor.c: In function 'WaitForProfilerCompletion':
  src/Monitor.c:1602:5: error: leak of file descriptor 'socket(1, 1, 0)' 
[CWE-775] [-Werror=analyzer-fd-leak]
-  1602 | pthread_mutex_lock(>dotnetMutex);
-   | ^~~~
-   'WaitForProfilerCompletion': events 1-3
- |
- | 1545 | if((s = socket(AF_UNIX, SOCK_STREAM, 0))==-1)
- |  |   ~ ^~~
- |  |   | |
- |  |   | (1) stream socket created here
- |  |   | (2) when 'socket' succeeds
- |  |   (3) following 'false' branch...
- |
-   'WaitForProfilerCompletion': events 4-16
- |
- | 1553 | local.sun_family = AF_UNIX;
- |  |  ^
- |  |  |
- |  |  (4) ...to here
- |..
- | 1557 | if(bind(s, (struct sockaddr *), len)==-1)
- |  |   
- |  |   ||
- |  |   |(5) stream socket bound here
- |  |   |(6) when 'bind' succeeds
- |  |   (7) following 'false' branch...
- |..
- | 1569 | chmod(tmpFolder, 0777);
- |  | ~~
- |  | |
- |  | (8) ...to here
- |..
- | 1577 | if ((pthread_create(, NULL, ProcessMonitor, 
(void *) config)) != 0)
- |  |~  
- |  ||
- |  |(9) following 'false' branch...
- |..
- | 1590 | if(listen(s, MAX_PROFILER_CONNECTIONS)==-1)
- |  |   
- |  |   ||
- |  |   |(10) ...to here
- |  |   |(11) stream socket marked as passive here via 'listen'
- |  |   |(12) when 'listen' succeeds
- |  |   (13) following 'false' branch...
- |..
- | 1602 | pthread_mutex_lock(>dotnetMutex);
- |  | 
- |  | |
- |  | (14) ...to here
- |..
- | 1612 | if((s2 = accept(s, (struct sockaddr *), ))==-1)
- |  |   ~  ~
- |  |   |  |
- |  |   |  (15) when 'accept' fails
- |  |   (16) following 'true' branch...
- |
-   'WaitForProfilerCompletion': event 17
- |
- |./include/Logging.h:51:5:
- |   51 | DiagTrace(format " %s", ##__VA_ARGS__, LOCATION);
- |  | ^~~~
- |  | |
- |  | (17) ...to here
+  1602 | pthread_mutex_lock(>dotnetMutex);
+   | ^~~~
+   'WaitForProfilerCompletion': events 1-3
+ |
+ | 1545 | if((s = socket(AF_UNIX, SOCK_STREAM, 0))==-1)
+ |  |   ~ ^~~
+ |  |   | |
+ |  |   | (1) stream socket created here
+ |  |   | (2) when 'socket' succeeds
+ |  |   (3) following 'false' branch...
+ |
+   'WaitForProfilerCompletion': events 4-16
+ |
+ | 1553 | local.sun_family = AF_UNIX;
+ |  |  ^
+ |  |  |
+ |  |  (4) ...to here
+ |..
+ | 1557 | if(bind(s, (struct sockaddr *), len)==-1)
+ |  |   
+ |  |   ||
+ |  |   |(5) stream socket bound here
+ |  |   |(6) when 'bind' succeeds
+ |  |   (7) following 'false' branch...
+ |..
+ | 1569 | chmod(tmpFolder, 0777);
+ |  | ~~
+ |  | |
+ |  | (8) ...to here
+ |..
+ | 1577 | if ((pthread_create(, NULL, ProcessMonitor, 
(void *) config)) != 0)
+ |  |~
+ |  ||
+ |  |(9) 

[Bug 2067602] [NEW] procdump 2.2-1 FTBFS

2024-05-30 Thread Benjamin Drung
Public bug reported:

procdump 2.2-1 fails to build from source on Ubuntu. I can reproduce it
locally.

```
cc -c -g -o obj/Monitor.o src/Monitor.c -g -O2 -fno-omit-frame-pointer 
-mno-omit-leaf-frame-pointer -ffile-prefix-map=/<>=. -flto=auto 
-ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection 
-fdebug-prefix-map=/<>=/usr/src/procdump-2.2-1 -g -O2 
-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer 
-ffile-prefix-map=/<>=. -flto=auto -ffat-lto-objects 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection 
-fdebug-prefix-map=/<>=/usr/src/procdump-2.2-1 -fcommon -Wl,-z,now 
-Wdate-time -D_FORTIFY_SOURCE=3 -Wl,-Bsymbolic-functions -flto=auto 
-ffat-lto-objects -Wl,-z,relro -I ./include -pthread -std=gnu99 
-fstack-protector-all -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O2 -fanalyzer 
-Werror
src/Monitor.c: In function 'WaitForProfilerCompletion':
src/Monitor.c:1602:5: error: leak of file descriptor 'socket(1, 1, 0)' 
[CWE-775] [-Werror=analyzer-fd-leak]
 1602 | pthread_mutex_lock(>dotnetMutex);
  | ^~~~
  'WaitForProfilerCompletion': events 1-3
|
| 1545 | if((s = socket(AF_UNIX, SOCK_STREAM, 0))==-1)
|  |   ~ ^~~
|  |   | |
|  |   | (1) stream socket created here
|  |   | (2) when 'socket' succeeds
|  |   (3) following 'false' branch...
|
  'WaitForProfilerCompletion': events 4-16
|
| 1553 | local.sun_family = AF_UNIX;
|  |  ^
|  |  |
|  |  (4) ...to here
|..
| 1557 | if(bind(s, (struct sockaddr *), len)==-1)
|  |   
|  |   ||
|  |   |(5) stream socket bound here
|  |   |(6) when 'bind' succeeds
|  |   (7) following 'false' branch...
|..
| 1569 | chmod(tmpFolder, 0777);
|  | ~~
|  | |
|  | (8) ...to here
|..
| 1577 | if ((pthread_create(, NULL, ProcessMonitor, 
(void *) config)) != 0)
|  |~
|  ||
|  |(9) following 'false' branch...
|..
| 1590 | if(listen(s, MAX_PROFILER_CONNECTIONS)==-1)
|  |   
|  |   ||
|  |   |(10) ...to here
|  |   |(11) stream socket marked as passive here via 'listen'
|  |   |(12) when 'listen' succeeds
|  |   (13) following 'false' branch...
|..
| 1602 | pthread_mutex_lock(>dotnetMutex);
|  | 
|  | |
|  | (14) ...to here
|..
| 1612 | if((s2 = accept(s, (struct sockaddr *), ))==-1)
|  |   ~  ~
|  |   |  |
|  |   |  (15) when 'accept' fails
|  |   (16) following 'true' branch...
|
  'WaitForProfilerCompletion': event 17
|
|./include/Logging.h:51:5:
|   51 | DiagTrace(format " %s", ##__VA_ARGS__, LOCATION);
|  | ^~~~
|  | |
|  | (17) ...to here
src/Monitor.c:1615:13: note: in expansion of macro 'Trace'
| 1615 | Trace("WaitForProfilerCompletion: Failed in accept 
call on socket\n");
|  | ^
|
  'WaitForProfilerCompletion': event 18
|
| 1602 | pthread_mutex_lock(>dotnetMutex);
|  | ^~~~
|  | |
|  | (18) 'socket(1, 1, 0)' leaks here
|
cc1: all warnings being treated as errors
```

Full log: https://launchpadlibrarian.net/732490833/buildlog_ubuntu-
oracular-amd64.procdump_2.2-1_BUILDING.txt.gz

** Affects: procdump (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: ftbfs update-excuse

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067602

Title:
  procdump 2.2-1 FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/procdump/+bug/2067602/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2067120] Re: apport-retrace crashed with subprocess.CalledProcessError in check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu 24.04/apt/var/cache/apt/archives//base-files_13ubun

2024-05-30 Thread Benjamin Drung
I tried to construct a test case locally since I do not have access to
bug #2062390. The failure message was different, but also usrmerge
related. Here is the test case:

```
$ divide-by-zero
$ mkdir -p "$PWD/sandbox-config/Ubuntu 24.04"
$ echo noble > "$PWD/sandbox-config/Ubuntu 24.04/codename"
$ cat > "$PWD/sandbox-config/Ubuntu 24.04/sources.list" 

[Bug 2067120] Re: apport-retrace crashed with subprocess.CalledProcessError in check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu 24.04/apt/var/cache/apt/archives//base-files_13ubun

2024-05-30 Thread Benjamin Drung
Simple extraction works:

```
pull-lp-debs base-files 13ubuntu9
mkdir sandbox
dpkg -x base-files_13ubuntu9_amd64.deb sandbox
```

Let's check the Apport code.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2067120

Title:
  apport-retrace crashed with subprocess.CalledProcessError in
  check_call(): Command '['dpkg', '-x', '/srv/vms/apport-retrace/Ubuntu
  24.04/apt/var/cache/apt/archives//base-files_13ubuntu9_amd64.deb',
  '/tmp/apport_sandbox_zj9wto2z']' returned non-zero exit status 2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2067120/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-05-28 Thread Benjamin Drung
Submitted to Debian: https://salsa.debian.org/kernel-team/initramfs-
tools/-/merge_requests/114

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2039957] Re: rmlint 2.9.0-2.5 fails to build: test_stdin.test_stdin_read hangs

2024-05-28 Thread Benjamin Drung
** Changed in: rmlint (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2039957

Title:
  rmlint 2.9.0-2.5 fails to build: test_stdin.test_stdin_read hangs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2039957/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-28 Thread Benjamin Drung
** Changed in: rmlint (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-05-27 Thread Benjamin Drung
Stock noble on a Raspberry Pi Zero 2W:

```
bdrung@zero3:~$ sudo hyperfine -r 5 "update-initramfs -u"
Benchmark 1: update-initramfs -u
  Time (mean ± σ): 415.664 s ±  6.015 s[User: 166.728 s, System: 
232.523 s]
  Range (min … max):   409.139 s … 422.632 s5 runs
```

Replace duplicate calls in thin-provisioning-tools, lvm2, and
cryptsetup:

```
bdrung@zero3:~$ sudo hyperfine -r 5 "update-initramfs -u"
Benchmark 1: update-initramfs -u
  Time (mean ± σ): 375.805 s ±  5.753 s[User: 140.586 s, System: 
218.345 s]
  Range (min … max):   369.914 s … 382.866 s5 runs
```

Suggested further reduction of dracut-install calls via
https://code.launchpad.net/~bdrung/ubuntu/+source/initramfs-
tools/+git/initramfs-tools/+ref/ubuntu/devel:

```
$ sudo hyperfine -r 5 "update-initramfs -u"
Benchmark 1: update-initramfs -u
  Time (mean ± σ): 241.626 s ±  5.278 s[User: 60.018 s, System: 166.183 
s]
  Range (min … max):   235.136 s … 249.194 s5 runs
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1813403] Re: Better kernel core dump defaults [switch to systemd-coredump]

2024-05-27 Thread Benjamin Drung
As of Ubuntu 24.04 (noble) you can install Apport and systemd-coredump
in parallel. See https://discourse.ubuntu.com/t/apport-2-28-0-gained-
systemd-coredump-integration/44910 for details.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1813403

Title:
  Better kernel core dump defaults [switch to systemd-coredump]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1813403/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-24 Thread Benjamin Drung
https://github.com/SCons/scons/pull/4445 added a `funcargs` parameter to
`SCons.Conftest.CheckFunc` in commit
edc14d6647d3819a9c6ee076ccc3c65f2283600b (version 4.7.0). So we need to
update scons.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-24 Thread Benjamin Drung
After applying https://github.com/sahib/rmlint/pull/663
SCons.Conftest.CheckFunc(context, "lgetxattr", "#include
\n#include ") will generate following C code:

```
#include 
#include 
#include 

#if _MSC_VER && !__INTEL_COMPILER
#pragma function(lgetxattr)
#endif

int main(void) {
#if defined (__stub_lgetxattr) || defined (__stub___lgetxattr)
  #error "lgetxattr has a GNU stub, cannot check"
#else
  lgetxattr();
#endif

return 0;
}
```

This will fail to compile on armhf on Ubuntu 24.04 (noble):

```
$ gcc -o test test.c
test.c: In function ‘main’:
test.c:13:11: error: too few arguments to function ‘lgetxattr’
   13 |   lgetxattr();
  |   ^
In file included from test2.c:3:
/usr/include/arm-linux-gnueabihf/sys/xattr.h:67:16: note: declared here
   67 | extern ssize_t lgetxattr (const char *__path, const char *__name,
  |^
```

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-24 Thread Benjamin Drung
Reported to upstream: https://github.com/sahib/rmlint/issues/664

** Also affects: scons (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-24 Thread Benjamin Drung
Partial fix: https://github.com/sahib/rmlint/pull/663

** Bug watch added: github.com/sahib/rmlint/issues #664
   https://github.com/sahib/rmlint/issues/664

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-05-24 Thread Benjamin Drung
I marked thin-provisioning-tools, lvm2, and cryptsetup as affected to
reduce the number of manual_add_modules calls in the initramfs-tools
hooks in those packages. This will help a bit, but will probably not be
enough to make it fast again.

** Also affects: thin-provisioning-tools (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: lvm2 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: cryptsetup (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2039957] Re: rmlint 2.9.0-2.5 fails to build: test_stdin.test_stdin_read hangs

2024-05-24 Thread Benjamin Drung
Cherry-picking https://github.com/sahib/rmlint/pull/557 is not enough. I
am going to package 2.10.2 instead of bisecting the additional needed
commit(s).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2039957

Title:
  rmlint 2.9.0-2.5 fails to build: test_stdin.test_stdin_read hangs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2039957/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-05-23 Thread Benjamin Drung
** Bug watch added: github.com/dracut-ng/dracut-ng/issues #316
   https://github.com/dracut-ng/dracut-ng/issues/316

** Also affects: dracut via
   https://github.com/dracut-ng/dracut-ng/issues/316
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065180] Re: performance regression in dracut-install 060

2024-05-23 Thread Benjamin Drung
** Summary changed:

- performance regression in dracut-install
+ performance regression in dracut-install 060

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065180

Title:
  performance regression in dracut-install 060

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dracut/+bug/2065180/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066995] Re: apport-gtk keeps prompting to report crashes in a loop

2024-05-23 Thread Benjamin Drung
Why is ApportLog empty? Did you remove the content there? Otherwise it
means that /var/log/apport was empty (despite apport collecting
crashes).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066995

Title:
  apport-gtk keeps prompting to report crashes in a loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2066995/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066995] Re: apport-gtk keeps prompting to report crashes in a loop

2024-05-23 Thread Benjamin Drung
Can you provide the journal log from during that time frame? Did that
application crash multiple times?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066995

Title:
  apport-gtk keeps prompting to report crashes in a loop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2066995/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066997] Re: gourmand crashed with ImportError in /usr/lib/python3/dist-packages/extruct/xmldom.py: cannot import name '_ElementStringResult' from 'lxml.etree' (/usr/lib/python3/dist-packages/lxm

2024-05-23 Thread Benjamin Drung
extruct has no autopkgtest. How about adding at least autopkgtest-pkg-
python to catch those kind of issues earlier next time?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066997

Title:
  gourmand crashed with ImportError in /usr/lib/python3/dist-
  packages/extruct/xmldom.py: cannot import name '_ElementStringResult'
  from 'lxml.etree' (/usr/lib/python3/dist-
  packages/lxml/etree.cpython-312-x86_64-linux-gnu.so)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/extruct/+bug/2066997/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-23 Thread Benjamin Drung
Correction: The xattr support checks fails on armhf (but not on other
archs like amd64).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-23 Thread Benjamin Drung
So either fix the missing rm_xattr_mark_deduplicated function or build
rmlint with xattr support.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] Re: rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-23 Thread Benjamin Drung
`rm_xattr_is_deduplicated` is defined in `lib/xattr.c` but this function
is guarded by an HAVE_XATTR check.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2066970] [NEW] rmlint: FTBFS on arm{el, hf}: undefined reference to `rm_xattr_is_deduplicated'

2024-05-23 Thread Benjamin Drung
Public bug reported:

Imported from Debian bug http://bugs.debian.org/1065947:

Source: rmlint
Version: 2.9.0-2.5
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: sramac...@debian.org

https://buildd.debian.org/status/fetch.php?pkg=rmlint=armel=2.9.0-2.5%2Bb1=1710031282=0

gcc -o rmlint -Wl,-z,relro -Wl,-z,now -pthread src/rmlint.o librmlint.a -lblkid 
-ljson-glib-1.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lelf -lm -lelf
/usr/bin/ld: librmlint.a(session.o): in function `rm_session_dedupe_main':
./lib/session.c:227:(.text+0x79c): undefined reference to 
`rm_xattr_is_deduplicated'
/usr/bin/ld: ./lib/session.c:345:(.text+0xaf4): undefined reference to 
`rm_xattr_mark_deduplicated'
collect2: error: ld returned 1 exit status
scons: *** [rmlint] Error 1

Cheers
-- 
Sebastian Ramacher

** Affects: rmlint (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: rmlint (Debian)
 Importance: Undecided
 Status: New

** Bug watch added: Debian Bug tracker #1065947
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065947

** Changed in: rmlint (Debian)
 Remote watch: None => Debian Bug tracker #1065947

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2066970

Title:
  rmlint: FTBFS on arm{el,hf}: undefined reference to
  `rm_xattr_is_deduplicated'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2066970/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2039957] Re: rmlint 2.9.0-2.5 fails to build: test_stdin.test_stdin_read hangs

2024-05-23 Thread Benjamin Drung
It looks like the called binary is hanging. Since `Popen.communicate()`
is called without `timeout` set, it will wait forever to exit. Upstream
has a fix for a hanging case: https://github.com/sahib/rmlint/pull/557

I am currently testing if that will fix the hang in our case.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2039957

Title:
  rmlint 2.9.0-2.5 fails to build: test_stdin.test_stdin_read hangs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rmlint/+bug/2039957/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065662] Re: Please remove armfh binaries for libosmo-sccp from oracular

2024-05-14 Thread Benjamin Drung
Please also remove libosmo-netif since Debian dropped the transition and
decided to only support 64-bit architectures.

** Also affects: libosmo-netif (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065662

Title:
  Please remove armfh binaries for libosmo-sccp from oracular

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libosmo-netif/+bug/2065662/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065662] [NEW] Please remove armfh binaries for libosmo-sccp from oracular

2024-05-14 Thread Benjamin Drung
Public bug reported:

libosmo-sccp 1.6.0+dfsg1-4 says:

  * due to dependencies (libosmo-netif) package no longer builds on
32bit architectures, so we don't need this t64 versions any longer

So please remove the armfh binaries from libosmo-sccp from armhf.

** Affects: libosmo-sccp (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065662

Title:
  Please remove armfh binaries for libosmo-sccp from oracular

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libosmo-sccp/+bug/2065662/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2051407] Re: qemu-net autopkgtest fails: Failed to send exit request: Resource temporarily unavailable

2024-05-11 Thread Benjamin Drung
This failure is gone.

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2051407

Title:
  qemu-net autopkgtest fails: Failed to send exit request: Resource
  temporarily unavailable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2051407/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2048845] Re: Kubuntu Ubuntu-bug reporting snap apps doesnt show clickable bug reporting link

2024-05-11 Thread Benjamin Drung
** Changed in: apport (Ubuntu)
   Status: New => Triaged

** Changed in: apport (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2048845

Title:
  Kubuntu Ubuntu-bug reporting snap apps doesnt show clickable bug
  reporting link

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2048845/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065037] Re: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay

2024-05-10 Thread Benjamin Drung
The ARP check is done to verify that the assigned IP address is not used
in the network. So using --noarp will skip this safety-check. IMO the
users should do such change explicitly if they want to trade safety by
speed (e.g. via a dhcpcd config setting that will be included in the
initrd).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065037] Re: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay

2024-05-10 Thread Benjamin Drung
** Tags removed: verification-needed verification-needed-noble
** Tags added: verification-done verification-done-noble

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064926] Re: dhcpcd stuck for 5 Minutes (300 Seconds) during Boot Process (LUKS/Clevis Autounlock)

2024-05-10 Thread Benjamin Drung
** Tags removed: verification-needed verification-needed-noble
** Tags added: verification-done verification-done-noble

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2064926

Title:
  dhcpcd stuck for 5 Minutes (300 Seconds) during Boot Process
  (LUKS/Clevis Autounlock)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dhcpcd/+bug/2064926/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065037] Re: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay

2024-05-10 Thread Benjamin Drung
** Description changed:

+ [ Impact ]
+ 
+ The boot time can be longer on system that configure their network in
+ the initrd.
+ 
+ [ Test Plan ]
+ 
+ The affected systems show "Sleeping $time seconds before retrying
+ getting a DHCP lease" in their boot log. Once applying the fix, this
+ message should not be found any more and "dhcpcd-10.0.6 starting" should
+ be only logged once (at most once for IPv4 and once for IPv6 depending
+ on the boot parameters).
+ 
+ There are qemu-net and qemu-net-dnsmasq autopkgtests for this area of
+ code.
+ 
+ [ Where problems could occur ]
+ 
+ The DHCP code in the initrd are touched. So the boot can be affected.
+ Also updating initramfs-tools will regenerate the initrd and can cause
+ issues there (like full disks, etc).
+ 
+ [ Original report ]
+ 
  In automatically encrypted Clevis+Tang unlock of LUKS encrypted device
  (dmcrypt/cryptsetup) - on top of which the ZFS Pool for / resides,
  dhcpcd is used in order to obtain automatically an IP address during
  initramfs boot.
  
  During this phase, dhcpcd is called before interfaces have carrier
  causing a 29 seconds boot delay.
  
  Boot delay is currently 45 seconds, instead of the 15 seconds that it
  should.
  
  BUG Initially reported in:
  https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2064926
  
  Relevant Logs:
  ```
  dhcpcd-10.0.6 starting
  [...]
  no interfaces have a carrier
  exiting due to oneshot
  dhcpcd exited
  Sleeping 29 seconds before retrying getting a DHCP lease
  dhcpcd-10.0.6 starting
  ```
  
  A possible workaround would be to manually edit 
/usr/share/initramfs-tools/scripts/functions
  Changing this:
  `for ROUNDTTT in 30 60 90 120; do`
  
  To this:
  `for ROUNDTTT in 5 5 5 5; do`
  
  But the proper solution would be to continuously "scan" the state of the
  Interface (every Second or so), and wait until the interface is UP,
  before deciding to call dhcpcd.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065037] Re: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay

2024-05-10 Thread Benjamin Drung
Yes, here is the debdiff for the uploaded SRU fix.

** Patch added: "initramfs-tools_0.142ubuntu25.1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+attachment/5776988/+files/initramfs-tools_0.142ubuntu25.1.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2062522] Re: std::chrono::locate_zone("Asia/Chungking") fails

2024-05-10 Thread Benjamin Drung
All autopkgtest runs succeeded except four autopkgtest fail on armhf
with tmpfail:

* dateparser
* golang-github-rickb777-date
* prometheus-alertmanager
* reposurgeon

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2062522

Title:
   std::chrono::locate_zone("Asia/Chungking") fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/2062522/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065290] Re: apport does not write .upload file in case of Automatic send

2024-05-10 Thread Benjamin Drung
I cannot reproduce this behaviour. I set `Send error reports to Canonical` to 
`Automatic` and it worked on my noble laptop:
```
$ ls /var/crash/ -1
_usr_bin_divide-by-zero.1000.crash
_usr_bin_divide-by-zero.1000.upload
_usr_bin_divide-by-zero.1000.uploaded
```

Can you share the journal log during your tests?

** Changed in: apport (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065290

Title:
  apport does not write .upload file in case of Automatic send

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2065290/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065290] Re: apport does not write .upload file in case of Automatic send

2024-05-10 Thread Benjamin Drung
** Description changed:

- In the gnome-control-center Diagnostics settings, set the `Send error reports 
to Canoncail` to Automatic. Then generate a crash (eg. divide-by-zero from 
chaos-marmosets package), the .upload fill is missing, hence whoopise does not 
send the error to the error tracker.
+ In the gnome-control-center Diagnostics settings, set the `Send error reports 
to Canonical` to Automatic. Then generate a crash (eg. divide-by-zero from 
chaos-marmosets package), the .upload fill is missing, hence whoopise does not 
send the error to the error tracker.
  I observed this on Jammy and Noble.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065290

Title:
  apport does not write .upload file in case of Automatic send

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/2065290/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065275] Re: package linux-image-5.15.0-106-generic 5.15.0-106.116 failed to install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1

2024-05-09 Thread Benjamin Drung
*** This bug is a duplicate of bug 798414 ***
https://bugs.launchpad.net/bugs/798414

Thank you for taking the time to report this bug and helping to make
Ubuntu better. The relevant dpkg terminal log says:

cp: error writing
'/var/tmp/mkinitramfs_78x5tX//usr/lib/modules/5.15.0-106-generic/kernel/drivers/scsi/isci/isci.ko':
No space left on device

Oder auf Deutsch:

Kein Platz mehr frei auf dem Gerät.

So generating the initramfs fails because your / partition is full.
Please cleanup your root partition and try again. Feel free to continue
to report any other bugs you may find.

** This bug has been marked a duplicate of bug 798414
   update-initramfs should produce a more helpful error message when there 
isn't enough  free space--or provide an automatic tool for removal of old files

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065275

Title:
  package linux-image-5.15.0-106-generic 5.15.0-106.116 failed to
  install/upgrade: run-parts: /etc/kernel/postinst.d/initramfs-tools
  exited with return code 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065275/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065037] Re: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay

2024-05-09 Thread Benjamin Drung
For the black screen, can you open a separate bug report and document
what graphic card you use on that machine and what driver is used on the
running system?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2065037] Re: dhcpcd is called before interfaces have carrier causing a 29 seconds boot delay

2024-05-09 Thread Benjamin Drung
For the black screen, can you open a separate bug report and document
what graphic card you use on that machine and what driver is used on the
running system?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064926] Re: dhcpcd stuck for 5 Minutes (300 Seconds) during Boot Process (LUKS/Clevis Autounlock)

2024-05-09 Thread Benjamin Drung
Yes, I edited the bug description to add the SRU bug sections. There is
no automation for that.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2064926

Title:
  dhcpcd stuck for 5 Minutes (300 Seconds) during Boot Process
  (LUKS/Clevis Autounlock)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dhcpcd/+bug/2064926/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   3   4   5   6   7   8   9   10   >