public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH zfsonlinux 1/2] build: switch upload target to bullseye
@ 2021-07-21  8:12 Fabian Grünbichler
  2021-07-21  8:12 ` [pve-devel] [PATCH zfsonlinux 2/2] d/control: add transitional zfs-dbg package Fabian Grünbichler
  2021-07-21  9:12 ` [pve-devel] applied: [PATCH zfsonlinux 1/2] build: switch upload target to bullseye Thomas Lamprecht
  0 siblings, 2 replies; 4+ messages in thread
From: Fabian Grünbichler @ 2021-07-21  8:12 UTC (permalink / raw)
  To: pve-devel

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 5c42aed..ad2a695 100644
--- a/Makefile
+++ b/Makefile
@@ -79,4 +79,4 @@ distclean: clean
 
 .PHONY: upload
 upload: ${DEBS}
-	tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve,pmg --dist buster --arch amd64
+	tar -cf - ${DEBS} | ssh repoman@repo.proxmox.com -- upload --product pve,pmg --dist bullseye --arch amd64
-- 
2.30.2





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

* [pve-devel] [PATCH zfsonlinux 2/2] d/control: add transitional zfs-dbg package
  2021-07-21  8:12 [pve-devel] [PATCH zfsonlinux 1/2] build: switch upload target to bullseye Fabian Grünbichler
@ 2021-07-21  8:12 ` Fabian Grünbichler
  2021-07-21  9:12   ` [pve-devel] applied: " Thomas Lamprecht
  2021-07-21  9:12 ` [pve-devel] applied: [PATCH zfsonlinux 1/2] build: switch upload target to bullseye Thomas Lamprecht
  1 sibling, 1 reply; 4+ messages in thread
From: Fabian Grünbichler @ 2021-07-21  8:12 UTC (permalink / raw)
  To: pve-devel

suggesting the new -dbgsym packages without having a strict dependency
on a specific version of the library packages, like the old no longer
built zfs-dbg package had.

this commit can be reverted after the package has been uploaded once, or
kept for one release cycle if we might do the -dbgsym migration in
oldstable as well to avoid the oldstable zfs-dbg package version
overtaking the transitional one here.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
---

Notes:
    it only suggests to avoid pulling in new, unneeded libraries via their -dbgsym
    packages (e.g., libpam-zfs is not installed by default)

    tested with a downgrade to zfs 2.0.4-pve1 including zfs-dbg and then
    upgrading.

 debian/control | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/debian/control b/debian/control
index 118d896..89f5139 100644
--- a/debian/control
+++ b/debian/control
@@ -265,3 +265,17 @@ Description: Solaris Porting Layer user-space utilities for Linux (dummy)
  to Linux primitives.
  .
  This is a transitional dummy package. It can safely be removed.
+
+Package: zfs-dbg
+Section: contrib/metapackages
+Architecture: all
+Suggests: libnvpair3linux-dbgsym,
+         libpam-zfs-dbgsym,
+         libuutil3linux-dbgsym,
+         libzfs4linux-dbgsym,
+         libzfsbootenv1linux-dbgsym,
+         libzpool4linux-dbgsym,
+         zfs-test-dbgsym,
+         zfsutils-linux-dbgsym,
+         zfs-zed-dbgsym,
+Description: Transitional package. It can be safely removed.
-- 
2.30.2





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

* [pve-devel] applied: [PATCH zfsonlinux 1/2] build: switch upload target to bullseye
  2021-07-21  8:12 [pve-devel] [PATCH zfsonlinux 1/2] build: switch upload target to bullseye Fabian Grünbichler
  2021-07-21  8:12 ` [pve-devel] [PATCH zfsonlinux 2/2] d/control: add transitional zfs-dbg package Fabian Grünbichler
@ 2021-07-21  9:12 ` Thomas Lamprecht
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2021-07-21  9:12 UTC (permalink / raw)
  To: Proxmox VE development discussion, Fabian Grünbichler

On 21.07.21 10:12, Fabian Grünbichler wrote:
> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> ---
>  Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
>

applied, with the followup of adding pbs here like you mentioned off-list, thanks!




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

* [pve-devel] applied: [PATCH zfsonlinux 2/2] d/control: add transitional zfs-dbg package
  2021-07-21  8:12 ` [pve-devel] [PATCH zfsonlinux 2/2] d/control: add transitional zfs-dbg package Fabian Grünbichler
@ 2021-07-21  9:12   ` Thomas Lamprecht
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2021-07-21  9:12 UTC (permalink / raw)
  To: Proxmox VE development discussion, Fabian Grünbichler

On 21.07.21 10:12, Fabian Grünbichler wrote:
> suggesting the new -dbgsym packages without having a strict dependency
> on a specific version of the library packages, like the old no longer
> built zfs-dbg package had.
> 
> this commit can be reverted after the package has been uploaded once, or
> kept for one release cycle if we might do the -dbgsym migration in
> oldstable as well to avoid the oldstable zfs-dbg package version
> overtaking the transitional one here.
> 
> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> ---
> 
> Notes:
>     it only suggests to avoid pulling in new, unneeded libraries via their -dbgsym
>     packages (e.g., libpam-zfs is not installed by default)
> 
>     tested with a downgrade to zfs 2.0.4-pve1 including zfs-dbg and then
>     upgrading.
> 
>  debian/control | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
>

applied, thanks!




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

end of thread, other threads:[~2021-07-21  9:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-21  8:12 [pve-devel] [PATCH zfsonlinux 1/2] build: switch upload target to bullseye Fabian Grünbichler
2021-07-21  8:12 ` [pve-devel] [PATCH zfsonlinux 2/2] d/control: add transitional zfs-dbg package Fabian Grünbichler
2021-07-21  9:12   ` [pve-devel] applied: " Thomas Lamprecht
2021-07-21  9:12 ` [pve-devel] applied: [PATCH zfsonlinux 1/2] build: switch upload target to bullseye Thomas Lamprecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal