* [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm
@ 2023-07-22 2:30 Srinuvasan Arjunan
2023-07-22 8:30 ` Henning Schild
2023-07-22 10:22 ` Henning Schild
0 siblings, 2 replies; 4+ messages in thread
From: Srinuvasan Arjunan @ 2023-07-22 2:30 UTC (permalink / raw)
To: isar-users; +Cc: ubely, Srinuvasan A
From: Srinuvasan A <srinuvasan.a@siemens.com>
In downstream layer we try to cross-building packages for bullseye,
but it throws the below error:
| Reading package lists...
| Building dependency tree...
| Package apt-utils is not available, but is referred to by another package.
| This may mean that the package is missing, has been obsoleted, or
| is only available from another source
| However the following packages replace it:
| apt:armhf apt
|
| E: Package 'apt-utils' has no installation candidate
| WARNING: exit code 100 from a shell command.
I hope the APT resolver (/usr/lib/apt/solvers/apt) only demands for
bookworm, hence it's enabled based on BASE_DISTRO_CODENAME.
Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb
index 255d693..9738a1c 100644
--- a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb
+++ b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb
@@ -16,7 +16,7 @@ ROOTFS_BASE_DISTRO = "${HOST_BASE_DISTRO}"
SBUILD_CHROOT_PREINSTALL ?= " \
${SBUILD_CHROOT_PREINSTALL_COMMON} \
crossbuild-essential-${DISTRO_ARCH} \
- apt-utils \
+ ${@ 'apt-utils' if d.getVar('BASE_DISTRO_CODENAME') == 'bookworm' else ''} \
"
SBUILD_CHROOT_PREINSTALL:riscv64 ?= " \
--
2.34.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm
2023-07-22 2:30 [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm Srinuvasan Arjunan
@ 2023-07-22 8:30 ` Henning Schild
2023-07-22 10:22 ` Henning Schild
1 sibling, 0 replies; 4+ messages in thread
From: Henning Schild @ 2023-07-22 8:30 UTC (permalink / raw)
To: Srinuvasan Arjunan; +Cc: isar-users, ubely, Srinuvasan A
Am Sat, 22 Jul 2023 08:00:29 +0530
schrieb Srinuvasan Arjunan <srinuvasan_a@mentor.com>:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
>
> In downstream layer we try to cross-building packages for bullseye,
> but it throws the below error:
>
> | Reading package lists...
> | Building dependency tree...
> | Package apt-utils is not available, but is referred to by another
> package. | This may mean that the package is missing, has been
> obsoleted, or | is only available from another source
> | However the following packages replace it:
> | apt:armhf apt
> |
> | E: Package 'apt-utils' has no installation candidate
> | WARNING: exit code 100 from a shell command.
>
> I hope the APT resolver (/usr/lib/apt/solvers/apt) only demands for
> bookworm, hence it's enabled based on BASE_DISTRO_CODENAME.
>
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> ---
> meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git
> a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb
> b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb index
> 255d693..9738a1c 100644 ---
> a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb +++
> b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb @@ -16,7
> +16,7 @@ ROOTFS_BASE_DISTRO = "${HOST_BASE_DISTRO}"
> SBUILD_CHROOT_PREINSTALL ?= " \ ${SBUILD_CHROOT_PREINSTALL_COMMON} \
> crossbuild-essential-${DISTRO_ARCH} \
> - apt-utils \
> + ${@ 'apt-utils' if d.getVar('BASE_DISTRO_CODENAME') ==
> 'bookworm' else ''} \ "
This is wrong because you want to say >= bookworm and all affected
ubuntus and raspbians. If distro names need to be listed rather list
the old ones currently supported in isar. But a list is just hard to
maintain, even if it has to shrink over time instead of grow.
Henning
>
> SBUILD_CHROOT_PREINSTALL:riscv64 ?= " \
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm
2023-07-22 2:30 [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm Srinuvasan Arjunan
2023-07-22 8:30 ` Henning Schild
@ 2023-07-22 10:22 ` Henning Schild
2023-07-22 11:23 ` Srinuvasan Arjunan
1 sibling, 1 reply; 4+ messages in thread
From: Henning Schild @ 2023-07-22 10:22 UTC (permalink / raw)
To: Srinuvasan Arjunan; +Cc: isar-users, ubely, Srinuvasan A
Am Sat, 22 Jul 2023 08:00:29 +0530
schrieb Srinuvasan Arjunan <srinuvasan_a@mentor.com>:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
>
> In downstream layer we try to cross-building packages for bullseye,
> but it throws the below error:
>
> | Reading package lists...
> | Building dependency tree...
> | Package apt-utils is not available, but is referred to by another
> package. | This may mean that the package is missing, has been
> obsoleted, or | is only available from another source
> | However the following packages replace it:
> | apt:armhf apt
> |
> | E: Package 'apt-utils' has no installation candidate
> | WARNING: exit code 100 from a shell command.
Are you maybe not running against a real/full debian mirror?
apt-utils is available for bullseye
https://packages.debian.org/bullseye/apt-utils
and for buster if you want
https://packages.debian.org/buster/apt-utils
both including armhf
What you describe here would have been found by CI.
I suggest you rebuild your partial mirror and include that package, or
carry that patch in your layer.
Henning
> I hope the APT resolver (/usr/lib/apt/solvers/apt) only demands for
> bookworm, hence it's enabled based on BASE_DISTRO_CODENAME.
>
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> ---
> meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git
> a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb
> b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb index
> 255d693..9738a1c 100644 ---
> a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb +++
> b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb @@ -16,7
> +16,7 @@ ROOTFS_BASE_DISTRO = "${HOST_BASE_DISTRO}"
> SBUILD_CHROOT_PREINSTALL ?= " \ ${SBUILD_CHROOT_PREINSTALL_COMMON} \
> crossbuild-essential-${DISTRO_ARCH} \
> - apt-utils \
> + ${@ 'apt-utils' if d.getVar('BASE_DISTRO_CODENAME') ==
> 'bookworm' else ''} \ "
>
> SBUILD_CHROOT_PREINSTALL:riscv64 ?= " \
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm
2023-07-22 10:22 ` Henning Schild
@ 2023-07-22 11:23 ` Srinuvasan Arjunan
0 siblings, 0 replies; 4+ messages in thread
From: Srinuvasan Arjunan @ 2023-07-22 11:23 UTC (permalink / raw)
To: Henning Schild; +Cc: Srinuvasan Arjunan, isar-users, ubely, Srinuvasan A
[-- Attachment #1: Type: text/plain, Size: 2850 bytes --]
On Sat, Jul 22, 2023 at 3:52 PM 'Henning Schild' via isar-users <
isar-users@googlegroups.com> wrote:
> Am Sat, 22 Jul 2023 08:00:29 +0530
> schrieb Srinuvasan Arjunan <srinuvasan_a@mentor.com>:
>
> > From: Srinuvasan A <srinuvasan.a@siemens.com>
> >
> > In downstream layer we try to cross-building packages for bullseye,
> > but it throws the below error:
> >
> > | Reading package lists...
> > | Building dependency tree...
> > | Package apt-utils is not available, but is referred to by another
> > package. | This may mean that the package is missing, has been
> > obsoleted, or | is only available from another source
> > | However the following packages replace it:
> > | apt:armhf apt
> > |
> > | E: Package 'apt-utils' has no installation candidate
> > | WARNING: exit code 100 from a shell command.
>
> Are you maybe not running against a real/full debian mirror?
>
> apt-utils is available for bullseye
> https://packages.debian.org/bullseye/apt-utils
> and for buster if you want
> https://packages.debian.org/buster/apt-utils
>
> both including armhf
>
> What you describe here would have been found by CI.
>
> I suggest you rebuild your partial mirror and include that package, or
> carry that patch in your layer.
>
Yes i am not using a real/full debian mirror, i found that my mirror
doesn't have that package, let's try to include that one.
Thanks,
Srinu
>
> Henning
>
> > I hope the APT resolver (/usr/lib/apt/solvers/apt) only demands for
> > bookworm, hence it's enabled based on BASE_DISTRO_CODENAME.
> >
> > Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> > ---
> > meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git
> > a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb
> > b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb index
> > 255d693..9738a1c 100644 ---
> > a/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb +++
> > b/meta/recipes-devtools/sbuild-chroot/sbuild-chroot-host.bb @@ -16,7
> > +16,7 @@ ROOTFS_BASE_DISTRO = "${HOST_BASE_DISTRO}"
> > SBUILD_CHROOT_PREINSTALL ?= " \ ${SBUILD_CHROOT_PREINSTALL_COMMON} \
> > crossbuild-essential-${DISTRO_ARCH} \
> > - apt-utils \
> > + ${@ 'apt-utils' if d.getVar('BASE_DISTRO_CODENAME') ==
> > 'bookworm' else ''} \ "
> >
> > SBUILD_CHROOT_PREINSTALL:riscv64 ?= " \
>
> --
> You received this message because you are subscribed to the Google Groups
> "isar-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to isar-users+unsubscribe@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/isar-users/20230722122211.34dbcd13%40md1za8fc.ad001.siemens.net
> .
>
[-- Attachment #2: Type: text/html, Size: 4732 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-22 11:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-22 2:30 [PATCH] sbuild-chroot/sbuild-chroot-host: enable apt-utils only for bookworm Srinuvasan Arjunan
2023-07-22 8:30 ` Henning Schild
2023-07-22 10:22 ` Henning Schild
2023-07-22 11:23 ` Srinuvasan Arjunan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox