GNU bug report logs - #60173
[PATCH 0/2] Update samba

Previous Next

Package: guix-patches;

Reported by: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Date: Sun, 18 Dec 2022 07:43:02 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 60173 in the body.
You can then email your comments to 60173 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#60173; Package guix-patches. (Sun, 18 Dec 2022 07:43:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 18 Dec 2022 07:43:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/2] Update samba
Date: Sun, 18 Dec 2022 08:40:01 +0100
Hi Guix,

this series updates samba to the latest version and grafts
samba/fixed (used by libsoup) to the latest patch within the
4.15.13 branch.

Cheers

Liliana Marie Prikler (2):
  gnu: samba: Update to 4.17.4.
  gnu: samba/fixed: Update to 4.15.13.

 gnu/packages/samba.scm | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60173; Package guix-patches. (Sun, 18 Dec 2022 07:58:02 GMT) Full text and rfc822 format available.

Message #8 received at 60173 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 60173 <at> debbugs.gnu.org
Subject: [PATCH 1/2] gnu: samba: Update to 4.17.4.
Date: Sun, 18 Dec 2022 08:28:52 +0100
* gnu/packages/samba.scm (samba): Update to 4.17.4.
---
 gnu/packages/samba.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 2a01279161..64f821abc0 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -187,7 +187,7 @@ (define (install dir)
 (define-public samba
   (package
     (name "samba")
-    (version "4.16.4")
+    (version "4.17.4")
     (source
      ;; For updaters: the current PGP fingerprint is
      ;; 81F5E2832BD2545A1897B713AA99442FB680B620.
@@ -196,7 +196,7 @@ (define-public samba
        (uri (string-append "https://download.samba.org/pub/samba/stable/"
                            "samba-" version ".tar.gz"))
        (sha256
-        (base32 "0bvhqinxwpbwp4ayhd9q8ga0w89gnkl1m3nrwpj1fnhjzd4ghclm"))))
+        (base32 "0ds53yz2d8s5yvkka1z9ysnb6bkbppmqmhd4rry71b2cvdwj0lf0"))))
     (build-system gnu-build-system)
     (arguments
      (list
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60173; Package guix-patches. (Sun, 18 Dec 2022 07:58:02 GMT) Full text and rfc822 format available.

Message #11 received at 60173 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 60173 <at> debbugs.gnu.org
Subject: [PATCH 2/2] gnu: samba/fixed: Update to 4.15.13.
Date: Sun, 18 Dec 2022 08:29:07 +0100
* gnu/packages/samba.scm (samba/fixed-patched): New variable.
(samba/fixed): Add replacement for samba/fixed-patched.
---
 gnu/packages/samba.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 64f821abc0..1f2a231596 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -295,7 +295,9 @@ (define-public samba
 (define-public samba/fixed
   ;; Version that rarely changes, depended on by libsoup.
   (hidden-package
-   (package/inherit samba
+   (package
+     (inherit samba)
+     (replacement samba/fixed-patched)
      (version "4.15.3")
      (source
       (origin
@@ -319,6 +321,18 @@ (define-public samba/fixed
             libxslt
             libxml2)))))
 
+(define-public samba/fixed-patched
+  (package
+    (inherit samba/fixed)
+    (version "4.15.13")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://download.samba.org/pub/samba/stable/"
+                           "samba-" version ".tar.gz"))
+       (sha256
+        (base32 "0s29vzn5f42vjhx6h25c7v67n14ymqxn8glqa97d0rajd99y64n4"))))))
+
 (define-public talloc
   (package
     (name "talloc")
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60173; Package guix-patches. (Thu, 22 Dec 2022 20:16:01 GMT) Full text and rfc822 format available.

Message #14 received at 60173 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 60173 <at> debbugs.gnu.org
Subject: [PATCH v2 1/2] gnu: samba: Update to 4.16.8.
Date: Sun, 18 Dec 2022 08:28:52 +0100
* gnu/packages/samba.scm (samba): Update to 4.16.8.
---
 gnu/packages/samba.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 2a01279161..2fe75d0c1a 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -187,7 +187,7 @@ (define (install dir)
 (define-public samba
   (package
     (name "samba")
-    (version "4.16.4")
+    (version "4.16.8")
     (source
      ;; For updaters: the current PGP fingerprint is
      ;; 81F5E2832BD2545A1897B713AA99442FB680B620.
@@ -196,7 +196,7 @@ (define-public samba
        (uri (string-append "https://download.samba.org/pub/samba/stable/"
                            "samba-" version ".tar.gz"))
        (sha256
-        (base32 "0bvhqinxwpbwp4ayhd9q8ga0w89gnkl1m3nrwpj1fnhjzd4ghclm"))))
+        (base32 "11a1vikbijaq7csg49h5ivn25gx84v6wx8z8kgsj1wmkhsf9bcmv"))))
     (build-system gnu-build-system)
     (arguments
      (list
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60173; Package guix-patches. (Thu, 22 Dec 2022 20:16:02 GMT) Full text and rfc822 format available.

Message #17 received at 60173 <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 60173 <at> debbugs.gnu.org
Subject: [PATCH v2 2/2] gnu: samba/fixed: Update to 4.15.13.
Date: Sun, 18 Dec 2022 08:29:07 +0100
* gnu/packages/samba.scm (samba/fixed-patched): New variable.
(samba/fixed): Add replacement for samba/fixed-patched.
---
 gnu/packages/samba.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 2fe75d0c1a..b6cb0a5941 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -295,7 +295,9 @@ (define-public samba
 (define-public samba/fixed
   ;; Version that rarely changes, depended on by libsoup.
   (hidden-package
-   (package/inherit samba
+   (package
+     (inherit samba)
+     (replacement samba/fixed-patched)
      (version "4.15.3")
      (source
       (origin
@@ -319,6 +321,18 @@ (define-public samba/fixed
             libxslt
             libxml2)))))
 
+(define-public samba/fixed-patched
+  (package
+    (inherit samba/fixed)
+    (version "4.15.13")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://download.samba.org/pub/samba/stable/"
+                           "samba-" version ".tar.gz"))
+       (sha256
+        (base32 "0s29vzn5f42vjhx6h25c7v67n14ymqxn8glqa97d0rajd99y64n4"))))))
+
 (define-public talloc
   (package
     (name "talloc")
-- 
2.38.1





Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sat, 31 Dec 2022 07:37:01 GMT) Full text and rfc822 format available.

Notification sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
bug acknowledged by developer. (Sat, 31 Dec 2022 07:37:01 GMT) Full text and rfc822 format available.

Message #22 received at 60173-done <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: 60173-done <at> debbugs.gnu.org
Subject: Re: [PATCH v2 1/2] gnu: samba: Update to 4.16.8.
Date: Sat, 31 Dec 2022 08:36:17 +0100
Am Sonntag, dem 18.12.2022 um 08:28 +0100 schrieb Liliana Marie
Prikler:
> * gnu/packages/samba.scm (samba): Update to 4.16.8.
> ---
QA didn't test this, but rather the older one, which updated to the
incompatible 4.17 line.  Pushed, because the offending package built
locally.

Cheers




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 28 Jan 2023 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 137 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.