public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
@ 2024-02-28  9:41 srinuvasan.a
  2024-03-04  6:08 ` srinu
  2024-03-06  7:20 ` Uladzimir Bely
  0 siblings, 2 replies; 9+ messages in thread
From: srinuvasan.a @ 2024-02-28  9:41 UTC (permalink / raw)
  To: isar-users; +Cc: ubely, Srinuvasan A

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

Allow setting the Provides and Replaces field for auto generated control files,
with this changes now user can configure the provides and replaces in the debian/control file.

Recipes can simply setting the Provides and Replaces field now by defining the
DEBIAN_PROVIDES and DEBIAN_REPLACES variable.

Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
 doc/user_manual.md             | 4 ++++
 meta/classes/debianize.bbclass | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/doc/user_manual.md b/doc/user_manual.md
index 747b5ffe..bc730243 100644
--- a/doc/user_manual.md
+++ b/doc/user_manual.md
@@ -936,6 +936,10 @@ For the variables please have a look at the previous example, the following new
 Have a look at the `example-raw` recipe to get an idea how the `dpkg-raw` class can be used to customize your image.
 Note that the package will be build using the whole debian package workflow, so your package will be checked by many debhelper scripts. If those helpers point out quality issues it might be a good idea to fix them. But `example-raw` also shows how rules can still be violated.
 
+Other (optional) customization variables include:
+ - `DEBIAN_PROVIDES` - declare a virtual package to satisfy dependencies
+ - `DEBIAN_REPLACES` - to replace a package with another
+
 ### Prebuilt .deb packages from somewhere
 
 In some cases you might find yourself having a `.deb` that someone else built,
diff --git a/meta/classes/debianize.bbclass b/meta/classes/debianize.bbclass
index 7de98673..adbb5da4 100644
--- a/meta/classes/debianize.bbclass
+++ b/meta/classes/debianize.bbclass
@@ -8,6 +8,8 @@ CHANGELOG_V ??= "${PV}"
 DPKG_ARCH ??= "any"
 DEBIAN_BUILD_DEPENDS ??= ""
 DEBIAN_DEPENDS ??= ""
+DEBIAN_PROVIDES ??= ""
+DEBIAN_REPLACES ??= ""
 DEBIAN_CONFLICTS ??= ""
 DEBIAN_MULTI_ARCH ??= "no"
 DEBIAN_COMPAT ??= "10"
@@ -74,6 +76,8 @@ Build-Depends: debhelper-compat (= ${DEBIAN_COMPAT}), ${DEBIAN_BUILD_DEPENDS}
 Package: ${BPN}
 Architecture: ${DPKG_ARCH}
 Depends: ${DEBIAN_DEPENDS}
+Provides: ${DEBIAN_PROVIDES}
+Replaces: ${DEBIAN_REPLACES}
 Conflicts: ${DEBIAN_CONFLICTS}
 Multi-Arch: ${DEBIAN_MULTI_ARCH}
 Description: ${DESCRIPTION}
-- 
2.34.1


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

* Re: [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
  2024-02-28  9:41 [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES srinuvasan.a
@ 2024-03-04  6:08 ` srinu
  2024-03-04 12:15   ` Uladzimir Bely
  2024-03-06  7:20 ` Uladzimir Bely
  1 sibling, 1 reply; 9+ messages in thread
From: srinu @ 2024-03-04  6:08 UTC (permalink / raw)
  To: isar-users


[-- Attachment #1.1: Type: text/plain, Size: 2567 bytes --]

Hi Uladzimir,

Can you please merge this changes if no objection.

Thanks,
Srinu

On Wednesday, February 28, 2024 at 3:11:58 PM UTC+5:30 
srinuv...@siemens.com wrote:

> From: Srinuvasan A <srinuv...@siemens.com>
>
> Allow setting the Provides and Replaces field for auto generated control 
> files,
> with this changes now user can configure the provides and replaces in the 
> debian/control file.
>
> Recipes can simply setting the Provides and Replaces field now by defining 
> the
> DEBIAN_PROVIDES and DEBIAN_REPLACES variable.
>
> Signed-off-by: Srinuvasan A <srinuv...@siemens.com>
> ---
> doc/user_manual.md | 4 ++++
> meta/classes/debianize.bbclass | 4 ++++
> 2 files changed, 8 insertions(+)
>
> diff --git a/doc/user_manual.md b/doc/user_manual.md
> index 747b5ffe..bc730243 100644
> --- a/doc/user_manual.md
> +++ b/doc/user_manual.md
> @@ -936,6 +936,10 @@ For the variables please have a look at the previous 
> example, the following new
> Have a look at the `example-raw` recipe to get an idea how the `dpkg-raw` 
> class can be used to customize your image.
> Note that the package will be build using the whole debian package 
> workflow, so your package will be checked by many debhelper scripts. If 
> those helpers point out quality issues it might be a good idea to fix them. 
> But `example-raw` also shows how rules can still be violated.
>
> +Other (optional) customization variables include:
> + - `DEBIAN_PROVIDES` - declare a virtual package to satisfy dependencies
> + - `DEBIAN_REPLACES` - to replace a package with another
> +
> ### Prebuilt .deb packages from somewhere
>
> In some cases you might find yourself having a `.deb` that someone else 
> built,
> diff --git a/meta/classes/debianize.bbclass 
> b/meta/classes/debianize.bbclass
> index 7de98673..adbb5da4 100644
> --- a/meta/classes/debianize.bbclass
> +++ b/meta/classes/debianize.bbclass
> @@ -8,6 +8,8 @@ CHANGELOG_V ??= "${PV}"
> DPKG_ARCH ??= "any"
> DEBIAN_BUILD_DEPENDS ??= ""
> DEBIAN_DEPENDS ??= ""
> +DEBIAN_PROVIDES ??= ""
> +DEBIAN_REPLACES ??= ""
> DEBIAN_CONFLICTS ??= ""
> DEBIAN_MULTI_ARCH ??= "no"
> DEBIAN_COMPAT ??= "10"
> @@ -74,6 +76,8 @@ Build-Depends: debhelper-compat (= ${DEBIAN_COMPAT}), 
> ${DEBIAN_BUILD_DEPENDS}
> Package: ${BPN}
> Architecture: ${DPKG_ARCH}
> Depends: ${DEBIAN_DEPENDS}
> +Provides: ${DEBIAN_PROVIDES}
> +Replaces: ${DEBIAN_REPLACES}
> Conflicts: ${DEBIAN_CONFLICTS}
> Multi-Arch: ${DEBIAN_MULTI_ARCH}
> Description: ${DESCRIPTION}
> -- 
> 2.34.1
>
>

[-- Attachment #1.2: Type: text/html, Size: 3134 bytes --]

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

* Re: [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
  2024-03-04  6:08 ` srinu
@ 2024-03-04 12:15   ` Uladzimir Bely
  0 siblings, 0 replies; 9+ messages in thread
From: Uladzimir Bely @ 2024-03-04 12:15 UTC (permalink / raw)
  To: srinu, isar-users

On Sun, 2024-03-03 at 22:08 -0800, 'srinu' via isar-users wrote:
> Hi Uladzimir,
> 
> Can you please merge this changes if no objection.
> 
> Thanks,
> Srinu
> 

Hello Srinuvasan,

We are going to perform a new release today. All the targets were
already tested and adding any new patches on top will results in
postponing the release.
As your patch is not a fix but improvement we plan to apply it right
after the tagging.


> On Wednesday, February 28, 2024 at 3:11:58 PM UTC+5:30
> srinuv...@siemens.com wrote:
> > From: Srinuvasan A <srinuv...@siemens.com>
> > 
> > Allow setting the Provides and Replaces field for auto generated
> > control files,
> > with this changes now user can configure the provides and replaces
> > in the debian/control file.
> > 
> > Recipes can simply setting the Provides and Replaces field now by
> > defining the
> > DEBIAN_PROVIDES and DEBIAN_REPLACES variable.
> > 
> > Signed-off-by: Srinuvasan A <srinuv...@siemens.com>


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

* Re: [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
  2024-02-28  9:41 [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES srinuvasan.a
  2024-03-04  6:08 ` srinu
@ 2024-03-06  7:20 ` Uladzimir Bely
  1 sibling, 0 replies; 9+ messages in thread
From: Uladzimir Bely @ 2024-03-06  7:20 UTC (permalink / raw)
  To: srinuvasan.a, isar-users

On Wed, 2024-02-28 at 15:11 +0530, srinuvasan.a@siemens.com wrote:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
> 
> Allow setting the Provides and Replaces field for auto generated
> control files,
> with this changes now user can configure the provides and replaces in
> the debian/control file.
> 
> Recipes can simply setting the Provides and Replaces field now by
> defining the
> DEBIAN_PROVIDES and DEBIAN_REPLACES variable.
> 
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> ---
>  doc/user_manual.md             | 4 ++++
>  meta/classes/debianize.bbclass | 4 ++++
>  2 files changed, 8 insertions(+)
> 
> diff --git a/doc/user_manual.md b/doc/user_manual.md
> index 747b5ffe..bc730243 100644
> --- a/doc/user_manual.md
> +++ b/doc/user_manual.md
> @@ -936,6 +936,10 @@ For the variables please have a look at the
> previous example, the following new
>  Have a look at the `example-raw` recipe to get an idea how the
> `dpkg-raw` class can be used to customize your image.
>  Note that the package will be build using the whole debian package
> workflow, so your package will be checked by many debhelper scripts.
> If those helpers point out quality issues it might be a good idea to
> fix them. But `example-raw` also shows how rules can still be
> violated.
>  
> +Other (optional) customization variables include:
> + - `DEBIAN_PROVIDES` - declare a virtual package to satisfy
> dependencies
> + - `DEBIAN_REPLACES` - to replace a package with another
> +
>  ### Prebuilt .deb packages from somewhere
>  
>  In some cases you might find yourself having a `.deb` that someone
> else built,
> diff --git a/meta/classes/debianize.bbclass
> b/meta/classes/debianize.bbclass
> index 7de98673..adbb5da4 100644
> --- a/meta/classes/debianize.bbclass
> +++ b/meta/classes/debianize.bbclass
> @@ -8,6 +8,8 @@ CHANGELOG_V ??= "${PV}"
>  DPKG_ARCH ??= "any"
>  DEBIAN_BUILD_DEPENDS ??= ""
>  DEBIAN_DEPENDS ??= ""
> +DEBIAN_PROVIDES ??= ""
> +DEBIAN_REPLACES ??= ""
>  DEBIAN_CONFLICTS ??= ""
>  DEBIAN_MULTI_ARCH ??= "no"
>  DEBIAN_COMPAT ??= "10"
> @@ -74,6 +76,8 @@ Build-Depends: debhelper-compat (=
> ${DEBIAN_COMPAT}), ${DEBIAN_BUILD_DEPENDS}
>  Package: ${BPN}
>  Architecture: ${DPKG_ARCH}
>  Depends: ${DEBIAN_DEPENDS}
> +Provides: ${DEBIAN_PROVIDES}
> +Replaces: ${DEBIAN_REPLACES}
>  Conflicts: ${DEBIAN_CONFLICTS}
>  Multi-Arch: ${DEBIAN_MULTI_ARCH}
>  Description: ${DESCRIPTION}

Applied to next, thanks.

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

* Re: [PATCH] debianize: Introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
  2024-02-13 12:56 [PATCH] debianize: Introduce " Srinuvasan Arjunan
  2024-02-13 18:48 ` Florian Bezdeka
@ 2024-02-16  6:38 ` Uladzimir Bely
  1 sibling, 0 replies; 9+ messages in thread
From: Uladzimir Bely @ 2024-02-16  6:38 UTC (permalink / raw)
  To: isar-users; +Cc: cedric.hombourger, Srinuvasan

On Tue, 2024-02-13 at 18:26 +0530, Srinuvasan Arjunan wrote:
> From: Srinuvasan <srinuvasan.a@siemens.com>
> 
> Allow setting the Provides and Replaces field for auto generated
> control files,
> with this changes now user can configure the provides and replaces in
> the debian/control file.
> 
> Recipes can simply setting the Provides and Replaces field now by
> defining the
> DEBIAN_PROVIDES and DEBIAN_REPLACES variable.
> 
> Signed-off-by: Srinuvasan <srinuvasan.a@siemens.com>
> ---
>  meta/classes/debianize.bbclass | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/meta/classes/debianize.bbclass
> b/meta/classes/debianize.bbclass
> index 16f3638d..72afea88 100644
> --- a/meta/classes/debianize.bbclass
> +++ b/meta/classes/debianize.bbclass
> @@ -8,6 +8,8 @@ CHANGELOG_V ??= "${PV}"
>  DPKG_ARCH ??= "any"
>  DEBIAN_BUILD_DEPENDS ??= ""
>  DEBIAN_DEPENDS ??= ""
> +DEBIAN_PROVIDES ??= ""
> +DEBIAN_REPLACES ??= ""

This looks like considering my comment in the same patch from Cedric
Hombourger
(https://groups.google.com/g/isar-users/c/fpPkw0WxQno/m/CLIq3fo8BwAJ),
but this patch misses original modification of user_manual.md.

>  DEBIAN_CONFLICTS ??= ""
>  DEBIAN_MULTI_ARCH ??= "no"
>  DESCRIPTION ??= "must not be empty"
> @@ -77,6 +79,8 @@ Build-Depends: debhelper (>= ${compat}),
> ${DEBIAN_BUILD_DEPENDS}
>  Package: ${BPN}
>  Architecture: ${DPKG_ARCH}
>  Depends: ${DEBIAN_DEPENDS}
> +Provides: ${DEBIAN_PROVIDES}
> +Replaces: ${DEBIAN_REPLACES}
>  Conflicts: ${DEBIAN_CONFLICTS}
>  Multi-Arch: ${DEBIAN_MULTI_ARCH}
>  Description: ${DESCRIPTION}
> -- 
> 2.39.2
> 


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

* Re: [PATCH] debianize: Introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
  2024-02-13 12:56 [PATCH] debianize: Introduce " Srinuvasan Arjunan
@ 2024-02-13 18:48 ` Florian Bezdeka
  2024-02-16  6:38 ` Uladzimir Bely
  1 sibling, 0 replies; 9+ messages in thread
From: Florian Bezdeka @ 2024-02-13 18:48 UTC (permalink / raw)
  To: Srinuvasan Arjunan, isar-users; +Cc: cedric.hombourger, Srinuvasan

On Tue, 2024-02-13 at 18:26 +0530, Srinuvasan Arjunan wrote:
> From: Srinuvasan <srinuvasan.a@siemens.com>

Something is wrong with your mail setup. The From: header 
is "Srinuvasan Arjunan <srinuvasan_a@mentor.com>" while your singed-
off-by and the From: part of the body is set to "Srinuvasan
<srinuvasan.a@siemens.com>"

> 
> Allow setting the Provides and Replaces field for auto generated control files,
> with this changes now user can configure the provides and replaces in the debian/control file.
> 
> Recipes can simply setting the Provides and Replaces field now by defining the
> DEBIAN_PROVIDES and DEBIAN_REPLACES variable.
> 
> Signed-off-by: Srinuvasan <srinuvasan.a@siemens.com>


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

* [PATCH] debianize: Introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
@ 2024-02-13 12:56 Srinuvasan Arjunan
  2024-02-13 18:48 ` Florian Bezdeka
  2024-02-16  6:38 ` Uladzimir Bely
  0 siblings, 2 replies; 9+ messages in thread
From: Srinuvasan Arjunan @ 2024-02-13 12:56 UTC (permalink / raw)
  To: isar-users; +Cc: cedric.hombourger, Srinuvasan

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

Allow setting the Provides and Replaces field for auto generated control files,
with this changes now user can configure the provides and replaces in the debian/control file.

Recipes can simply setting the Provides and Replaces field now by defining the
DEBIAN_PROVIDES and DEBIAN_REPLACES variable.

Signed-off-by: Srinuvasan <srinuvasan.a@siemens.com>
---
 meta/classes/debianize.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/debianize.bbclass b/meta/classes/debianize.bbclass
index 16f3638d..72afea88 100644
--- a/meta/classes/debianize.bbclass
+++ b/meta/classes/debianize.bbclass
@@ -8,6 +8,8 @@ CHANGELOG_V ??= "${PV}"
 DPKG_ARCH ??= "any"
 DEBIAN_BUILD_DEPENDS ??= ""
 DEBIAN_DEPENDS ??= ""
+DEBIAN_PROVIDES ??= ""
+DEBIAN_REPLACES ??= ""
 DEBIAN_CONFLICTS ??= ""
 DEBIAN_MULTI_ARCH ??= "no"
 DESCRIPTION ??= "must not be empty"
@@ -77,6 +79,8 @@ Build-Depends: debhelper (>= ${compat}), ${DEBIAN_BUILD_DEPENDS}
 Package: ${BPN}
 Architecture: ${DPKG_ARCH}
 Depends: ${DEBIAN_DEPENDS}
+Provides: ${DEBIAN_PROVIDES}
+Replaces: ${DEBIAN_REPLACES}
 Conflicts: ${DEBIAN_CONFLICTS}
 Multi-Arch: ${DEBIAN_MULTI_ARCH}
 Description: ${DESCRIPTION}
-- 
2.39.2


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

* Re: [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
  2023-11-14 19:05 [PATCH] debianize: introduce " Cedric Hombourger
@ 2023-11-16  7:07 ` Uladzimir Bely
  0 siblings, 0 replies; 9+ messages in thread
From: Uladzimir Bely @ 2023-11-16  7:07 UTC (permalink / raw)
  To: Cedric Hombourger, isar-users

On Tue, 2023-11-14 at 20:05 +0100, 'Cedric Hombourger' via isar-users
wrote:
> When optimizing an embedded system (and mostly for advanced users),
> dpkg-raw may be used to generate virtual packages to replace larger
> packages that would otherwise be pulled to satisfy image
> dependencies.
> 
> Signed-off-by: Cedric Hombourger <cedric.hombourger@siemens.com>
> ---
>  doc/user_manual.md             | 4 ++++
>  meta/classes/debianize.bbclass | 2 ++
>  2 files changed, 6 insertions(+)
> 
> diff --git a/doc/user_manual.md b/doc/user_manual.md
> index ecb987f4..0649ceeb 100644
> --- a/doc/user_manual.md
> +++ b/doc/user_manual.md
> @@ -906,6 +906,10 @@ For the variables please have a look at the
> previous example, the following new
>  Have a look at the `example-raw` recipe to get an idea how the
> `dpkg-raw` class can be used to customize your image.
>  Note that the package will be build using the whole debian package
> workflow, so your package will be checked by many debhelper scripts.
> If those helpers point out quality issues it might be a good idea to
> fix them. But `example-raw` also shows how rules can still be
> violated.
>  
> +Other (optional) customization variables include:
> + - `DEBIAN_PROVIDES` - declare a virtual package to satisfy
> dependencies
> + - `DEBIAN_REPLACES` - to replace a package with another
> +
>  ### Prebuilt .deb packages from somewhere
>  
>  In some cases you might find yourself having a `.deb` that someone
> else built,
> diff --git a/meta/classes/debianize.bbclass
> b/meta/classes/debianize.bbclass
> index 16f3638d..df7c5b50 100644
> --- a/meta/classes/debianize.bbclass
> +++ b/meta/classes/debianize.bbclass
> @@ -78,6 +78,8 @@ Package: ${BPN}
>  Architecture: ${DPKG_ARCH}
>  Depends: ${DEBIAN_DEPENDS}
>  Conflicts: ${DEBIAN_CONFLICTS}
> +Provides: ${DEBIAN_PROVIDES}
> +Replaces: ${DEBIAN_REPLACES}

Would not this somehow lead to broken control file if these new
variables are not defined / not used in the recipe? For other vars here
(e.g., DEBIAN_CONFLICTS, DEBIAN_DEPENDS) we at least have a weak
assignments (??= "") on top of debianize.bbclass.

>  Multi-Arch: ${DEBIAN_MULTI_ARCH}
>  Description: ${DESCRIPTION}
>  EOF
> -- 
> 2.39.2
> 


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

* [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES
@ 2023-11-14 19:05 Cedric Hombourger
  2023-11-16  7:07 ` Uladzimir Bely
  0 siblings, 1 reply; 9+ messages in thread
From: Cedric Hombourger @ 2023-11-14 19:05 UTC (permalink / raw)
  To: isar-users; +Cc: Cedric Hombourger

When optimizing an embedded system (and mostly for advanced users),
dpkg-raw may be used to generate virtual packages to replace larger
packages that would otherwise be pulled to satisfy image dependencies.

Signed-off-by: Cedric Hombourger <cedric.hombourger@siemens.com>
---
 doc/user_manual.md             | 4 ++++
 meta/classes/debianize.bbclass | 2 ++
 2 files changed, 6 insertions(+)

diff --git a/doc/user_manual.md b/doc/user_manual.md
index ecb987f4..0649ceeb 100644
--- a/doc/user_manual.md
+++ b/doc/user_manual.md
@@ -906,6 +906,10 @@ For the variables please have a look at the previous example, the following new
 Have a look at the `example-raw` recipe to get an idea how the `dpkg-raw` class can be used to customize your image.
 Note that the package will be build using the whole debian package workflow, so your package will be checked by many debhelper scripts. If those helpers point out quality issues it might be a good idea to fix them. But `example-raw` also shows how rules can still be violated.
 
+Other (optional) customization variables include:
+ - `DEBIAN_PROVIDES` - declare a virtual package to satisfy dependencies
+ - `DEBIAN_REPLACES` - to replace a package with another
+
 ### Prebuilt .deb packages from somewhere
 
 In some cases you might find yourself having a `.deb` that someone else built,
diff --git a/meta/classes/debianize.bbclass b/meta/classes/debianize.bbclass
index 16f3638d..df7c5b50 100644
--- a/meta/classes/debianize.bbclass
+++ b/meta/classes/debianize.bbclass
@@ -78,6 +78,8 @@ Package: ${BPN}
 Architecture: ${DPKG_ARCH}
 Depends: ${DEBIAN_DEPENDS}
 Conflicts: ${DEBIAN_CONFLICTS}
+Provides: ${DEBIAN_PROVIDES}
+Replaces: ${DEBIAN_REPLACES}
 Multi-Arch: ${DEBIAN_MULTI_ARCH}
 Description: ${DESCRIPTION}
 EOF
-- 
2.39.2


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

end of thread, other threads:[~2024-03-06  7:20 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-28  9:41 [PATCH] debianize: introduce DEBIAN_PROVIDES and DEBIAN_REPLACES srinuvasan.a
2024-03-04  6:08 ` srinu
2024-03-04 12:15   ` Uladzimir Bely
2024-03-06  7:20 ` Uladzimir Bely
  -- strict thread matches above, loose matches on Subject: below --
2024-02-13 12:56 [PATCH] debianize: Introduce " Srinuvasan Arjunan
2024-02-13 18:48 ` Florian Bezdeka
2024-02-16  6:38 ` Uladzimir Bely
2023-11-14 19:05 [PATCH] debianize: introduce " Cedric Hombourger
2023-11-16  7:07 ` Uladzimir Bely

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