public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: "'Florian Bezdeka' via isar-users" <isar-users@googlegroups.com>
To: Felix Moessbauer <felix.moessbauer@siemens.com>,
	isar-users@googlegroups.com
Cc: christoph.steiger@siemens.com
Subject: Re: [PATCH v2 2/3] debsbom: update to v0.10.2
Date: Tue, 08 Sep 2026 08:13:59 +0200	[thread overview]
Message-ID: <04bc2bac7156f18bfa79cb10feb0fdb323b54a6a.camel@siemens.com> (raw)
In-Reply-To: <20260907123728.335093-3-felix.moessbauer@siemens.com>

On Mon, 2026-09-07 at 14:37 +0200, 'Felix Moessbauer' via isar-users
wrote:
> This brings a couple of bugfixes, as well as support to read the package
> data from a tar file.
> 
> Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
> ---
>  ...bom_0.8.1.bb => python3-debsbom_0.10.1.bb} |  2 +-
>  .../python3-debsbom/python3-debsbom_0.10.2.bb | 43 +++++++++++++++++++
>  2 files changed, 44 insertions(+), 1 deletion(-)
>  rename meta/recipes-support/python3-debsbom/{python3-debsbom_0.8.1.bb => python3-debsbom_0.10.1.bb} (95%)
>  create mode 100644 meta/recipes-support/python3-debsbom/python3-debsbom_0.10.2.bb
> 
> diff --git a/meta/recipes-support/python3-debsbom/python3-debsbom_0.8.1.bb b/meta/recipes-support/python3-debsbom/python3-debsbom_0.10.1.bb
> similarity index 95%
> rename from meta/recipes-support/python3-debsbom/python3-debsbom_0.8.1.bb
> rename to meta/recipes-support/python3-debsbom/python3-debsbom_0.10.1.bb
> index 7fc9a8eb..fa0b9b38 100644
> --- a/meta/recipes-support/python3-debsbom/python3-debsbom_0.8.1.bb
> +++ b/meta/recipes-support/python3-debsbom/python3-debsbom_0.10.1.bb
> @@ -35,7 +35,7 @@ SRC_URI = "git://github.com/siemens/debsbom.git;protocol=https;branch=main; \
>             file://rules \
>             file://0001-Use-old-license-description-in-pyproject.toml.patch \
>             "
> -SRCREV = "a76d4e784f84e73b98d2bbeadd28c602a8c13708"
> +SRCREV = "00c7cc8b8984251e17a716b14602d20397724b59"
>  
>  do_prepare_build[cleandirs] += "${S}/debian"
>  do_prepare_build() {
> diff --git a/meta/recipes-support/python3-debsbom/python3-debsbom_0.10.2.bb b/meta/recipes-support/python3-debsbom/python3-debsbom_0.10.2.bb
> new file mode 100644
> index 00000000..1aec1369
> --- /dev/null
> +++ b/meta/recipes-support/python3-debsbom/python3-debsbom_0.10.2.bb
> @@ -0,0 +1,43 @@
> +# This software is a part of Isar.
> +# Copyright (c) Siemens, 2025
> +#
> +# SPDX-License-Identifier: MIT
> +
> +inherit dpkg
> +
> +FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
> +
> +S = "${WORKDIR}/git"
> +
> +DEPENDS:append:bookworm = " python3-packageurl"
> +DEPENDS:append:noble = " python3-packageurl"
> +
> +S = "${WORKDIR}/git"
> +
> +MAINTAINER = "Christoph Steiger <christoph.steiger@siemens.com>"
> +DPKG_ARCH = "all"
> +DEBIAN_BUILD_DEPENDS = "dh-python, \
> +                        python3-all, \
> +                        python3-setuptools, \
> +                        pybuild-plugin-pyproject, \
> +                        python3-packageurl, \
> +                        python3-debian, \
> +                        python3-requests, \
> +                        python3-zstandard, \
> +                        python3-license-expression, \
> +                        "
> +
> +DEBIAN_DEPENDS = "python3-apt, \${python3:Depends}, \${misc:Depends}"
> +
> +DESCRIPTION = "debsbom generates SBOMs for Debian based distributions."

Hm, debsbom (=debian sbom, right?) has no upstream debian/ directory? As
the tool is part of forky that means someone must have done a the same
work already...

> +
> +SRC_URI = "git://github.com/siemens/debsbom.git;protocol=https;branch=main; \
> +           file://rules \
> +           file://0001-Use-old-license-description-in-pyproject.toml.patch \
> +           "
> +SRCREV = "9b5a5d6be05f1207356223f88b3080bd72722b9f"
> +
> +do_prepare_build[cleandirs] += "${S}/debian"
> +do_prepare_build() {
> +    deb_debianize
> +}
> -- 
> 2.55.0
> 
> -- 
> 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 visit https://groups.google.com/d/msgid/isar-users/20260907123728.335093-3-felix.moessbauer%40siemens.com.

-- 
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 visit https://groups.google.com/d/msgid/isar-users/04bc2bac7156f18bfa79cb10feb0fdb323b54a6a.camel%40siemens.com.

  reply	other threads:[~2026-09-08  6:14 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-07 12:37 [PATCH v2 0/3] Update debsbom tool 'Felix Moessbauer' via isar-users
2026-09-07 12:37 ` [PATCH v2 1/3] imager sbom: simplify invocation of " 'Felix Moessbauer' via isar-users
2026-09-07 12:37 ` [PATCH v2 2/3] debsbom: update to v0.10.2 'Felix Moessbauer' via isar-users
2026-09-08  6:13   ` 'Florian Bezdeka' via isar-users [this message]
2026-09-08  8:10     ` 'Christoph Steiger' via isar-users
2026-09-09  5:48       ` 'MOESSBAUER, Felix' via isar-users
2026-09-07 12:37 ` [PATCH v2 3/3] rootfs sbom: directly use captured apt state without extraction 'Felix Moessbauer' via isar-users

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=04bc2bac7156f18bfa79cb10feb0fdb323b54a6a.camel@siemens.com \
    --to=isar-users@googlegroups.com \
    --cc=christoph.steiger@siemens.com \
    --cc=felix.moessbauer@siemens.com \
    --cc=florian.bezdeka@siemens.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox