public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming
@ 2025-11-21  2:38 srinuvasan.a via isar-users
  2025-11-21  2:38 ` [PATCH 2/2] meta/recipes-bsp/optee-os: align source package name with BPN srinuvasan.a via isar-users
  2025-11-26  9:47 ` [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming Zhihang Wei
  0 siblings, 2 replies; 3+ messages in thread
From: srinuvasan.a via isar-users @ 2025-11-21  2:38 UTC (permalink / raw)
  To: isar-users; +Cc: Srinuvasan A

From: Srinuvasan A <srinuvasan.a@siemens.com>

Building the -native variant fails due to conflicting source package
identifiers. Using the base package name (BPN) provides a consistent
source name for both native and non-native recipes, avoiding the
conflict.

Err Logs:
Log data follows:
| DEBUG: Executing shell function do_dpkg_source
| dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1)
| dpkg-source: error: source package has two conflicting values - u-boot-iot2050-native and u-boot-iot2050
| WARNING: exit code 2 from a shell command.

Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
 meta/recipes-bsp/u-boot/files/debian/control.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/u-boot/files/debian/control.tmpl b/meta/recipes-bsp/u-boot/files/debian/control.tmpl
index b68e0d65..bf8a81de 100644
--- a/meta/recipes-bsp/u-boot/files/debian/control.tmpl
+++ b/meta/recipes-bsp/u-boot/files/debian/control.tmpl
@@ -1,4 +1,4 @@
-Source: ${PN}
+Source: ${BPN}
 Section: admin
 Priority: optional
 Standards-Version: ${DEBIAN_STANDARDS_VERSION}
-- 
2.34.1

-- 
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/20251121023853.425234-1-srinuvasan.a%40siemens.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 2/2] meta/recipes-bsp/optee-os: align source package name with BPN
  2025-11-21  2:38 [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming srinuvasan.a via isar-users
@ 2025-11-21  2:38 ` srinuvasan.a via isar-users
  2025-11-26  9:47 ` [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming Zhihang Wei
  1 sibling, 0 replies; 3+ messages in thread
From: srinuvasan.a via isar-users @ 2025-11-21  2:38 UTC (permalink / raw)
  To: isar-users; +Cc: Srinuvasan A

From: Srinuvasan A <srinuvasan.a@siemens.com>

Using PN causes conflicting source identifiers when building -native.
Basing the source name on BPN unifies naming across recipe variants and
avoids the conflict.

Err Logs:
Log data follows:
| DEBUG: Executing shell function do_dpkg_source
| dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1)
| dpkg-source: error: source package has two conflicting values - optee-os-iot2050-native and optee-os-iot2050
| WARNING: exit code 2 from a shell command.

Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
 meta/recipes-bsp/optee-os/files/debian/control.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/optee-os/files/debian/control.tmpl b/meta/recipes-bsp/optee-os/files/debian/control.tmpl
index e6a9df30..d1d21272 100644
--- a/meta/recipes-bsp/optee-os/files/debian/control.tmpl
+++ b/meta/recipes-bsp/optee-os/files/debian/control.tmpl
@@ -1,4 +1,4 @@
-Source: ${PN}
+Source: ${BPN}
 Section: admin
 Priority: optional
 Standards-Version: ${DEBIAN_STANDARDS_VERSION}
-- 
2.34.1

-- 
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/20251121023853.425234-2-srinuvasan.a%40siemens.com.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming
  2025-11-21  2:38 [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming srinuvasan.a via isar-users
  2025-11-21  2:38 ` [PATCH 2/2] meta/recipes-bsp/optee-os: align source package name with BPN srinuvasan.a via isar-users
@ 2025-11-26  9:47 ` Zhihang Wei
  1 sibling, 0 replies; 3+ messages in thread
From: Zhihang Wei @ 2025-11-26  9:47 UTC (permalink / raw)
  To: srinuvasan.a, isar-users

Both were applied to next, thanks.

On 11/21/25 03:38, srinuvasan.a via isar-users wrote:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
>
> Building the -native variant fails due to conflicting source package
> identifiers. Using the base package name (BPN) provides a consistent
> source name for both native and non-native recipes, avoiding the
> conflict.
>
> Err Logs:
> Log data follows:
> | DEBUG: Executing shell function do_dpkg_source
> | dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1)
> | dpkg-source: error: source package has two conflicting values - u-boot-iot2050-native and u-boot-iot2050
> | WARNING: exit code 2 from a shell command.
>
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> ---
>   meta/recipes-bsp/u-boot/files/debian/control.tmpl | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-bsp/u-boot/files/debian/control.tmpl b/meta/recipes-bsp/u-boot/files/debian/control.tmpl
> index b68e0d65..bf8a81de 100644
> --- a/meta/recipes-bsp/u-boot/files/debian/control.tmpl
> +++ b/meta/recipes-bsp/u-boot/files/debian/control.tmpl
> @@ -1,4 +1,4 @@
> -Source: ${PN}
> +Source: ${BPN}
>   Section: admin
>   Priority: optional
>   Standards-Version: ${DEBIAN_STANDARDS_VERSION}

-- 
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/e8e5c64b-ffa4-4cd0-9e21-31f6feb05771%40ilbers.de.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-11-26  9:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-21  2:38 [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming srinuvasan.a via isar-users
2025-11-21  2:38 ` [PATCH 2/2] meta/recipes-bsp/optee-os: align source package name with BPN srinuvasan.a via isar-users
2025-11-26  9:47 ` [PATCH 1/2] meta/recipes-bsp/u-boot: use BPN for source package naming Zhihang Wei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox