Source: systemd Version: 251.2-5 Severity: important Tags: ftbfs patch User: [email protected] Usertags: rebootstrap
systemd fails to build from source when given the stage1 build profile. It fails to find files relevant to systemd-homed and systemd-userdbd. Looking at debian/rules, I think that they should not be part of stage1 and adding the profile declaration was simply an omission when splitting them off the main systemd package. As such, I propose adding the relevant profile annotations. Doing so makes the stage1 build succeed. Please consider applying the attached patch. Helmut
diff --minimal -Nru systemd-251.2/debian/changelog systemd-251.2/debian/changelog --- systemd-251.2/debian/changelog 2022-06-10 23:51:50.000000000 +0200 +++ systemd-251.2/debian/changelog 2022-06-13 07:48:13.000000000 +0200 @@ -1,3 +1,10 @@ +systemd (251.2-5.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix stage1 build profile. (Closes: #-1) + + -- Helmut Grohne <[email protected]> Mon, 13 Jun 2022 07:48:13 +0200 + systemd (251.2-5) unstable; urgency=medium * Tweak description of systemd-homed package diff --minimal -Nru systemd-251.2/debian/control systemd-251.2/debian/control --- systemd-251.2/debian/control 2022-06-10 23:51:50.000000000 +0200 +++ systemd-251.2/debian/control 2022-06-13 07:48:13.000000000 +0200 @@ -440,6 +440,7 @@ processes before an OOM occurs in kernel space. Package: systemd-userdbd +Build-Profiles: <!stage1> Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends}, @@ -452,6 +453,7 @@ also pick up statically defined JSON user/group records from drop-in files. Package: systemd-homed +Build-Profiles: <!stage1> Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends},
