emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#45403: closed ([PATCH] gnu: zfs: Split into packages specific for ea


From: GNU bug Tracking System
Subject: bug#45403: closed ([PATCH] gnu: zfs: Split into packages specific for each of our major supported kernel versions.)
Date: Fri, 08 Jan 2021 15:52:01 +0000

Your message dated Fri, 08 Jan 2021 15:50:59 +0000
with message-id 
<2r7IOZWhDUrtijdxF7PIYyQGG9cAEdOl7txgyZi6hBKGAtU1fMY6Y2oQkjmAMA_C1TtKQHTH62WLaGtSzsABkQTumQQtm0t-GxJ0Jx9xgfo=@protonmail.com>
and subject line Re: [PATCH] gnu: zfs: Split into packages specific for each of 
our major supported kernel versions.
has caused the debbugs.gnu.org bug report #45403,
regarding [PATCH] gnu: zfs: Split into packages specific for each of our major 
supported kernel versions.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
45403: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=45403
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: zfs: Split into packages specific for each of our major supported kernel versions. Date: Thu, 24 Dec 2020 10:59:56 +0000
Fixes: https://issues.guix.gnu.org/45401

Untested --- no idea how to repoint my guix to a temporary commit on my local 
file repo, would appreciate any guidance.


>From 242ee858b057f1c3ca4a80c9c449f710c5b1ff96 Mon Sep 17 00:00:00 2001
From: raid5atemyhomework <raid5atemyhomework@protonmail.com>
Date: Thu, 24 Dec 2020 10:54:17 +0000
Subject: [PATCH] gnu: zfs: Split into packages specific for each of our major
 supported kernel versions.

---
 gnu/packages/file-systems.scm | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index af587f73fe..d3cdeda4fb 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -843,7 +843,7 @@ APFS.")
       (home-page "https://github.com/sgan81/apfs-fuse";)
       (license license:gpl2+))))

-(define-public zfs
+(define zfs-base
   (package
     (name "zfs")
     (version "0.8.5")
@@ -954,6 +954,35 @@ originally developed for Solaris and is now maintained by 
the OpenZFS
 community.")
     (license license:cddl1.0)))

+(define-public zfs
+  (package
+    (inherit zfs-base)
+    (description
+     (string-append (package-description zfs-base)
+                    "
+
+This package is deprecated, use linux-VERSION-zfs packages instead."))))
+
+(define (make-linux-zfs linux-libre)
+  (package
+    (inherit zfs-base)
+    (arguments
+     `(#:linux ,linux-libre)
+       ,@(package-arguments zfs-base))
+    (description
+     (string-append (package-description zfs-base)
+                    "
+
+This package will be compiled to work with the linux-libre "
+                    (package-version linux-libre)
+                    " kernel."))))
+
+(define-public linux-5.9-zfs (make-linux-zfs linux-libre-5.9))
+(define-public linux-5.4-zfs (make-linux-zfs linux-libre-5.4))
+(define-public linux-4.19-zfs (make-linux-zfs linux-libre-4.19))
+(define-public linux-4.14-zfs (make-linux-zfs linux-libre-4.14))
+(define-public linux-4.4-zfs (make-linux-zfs linux-libre-4.4))
+
 (define-public mergerfs
   (package
     (name "mergerfs")
--
2.29.2




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: zfs: Split into packages specific for each of our major supported kernel versions. Date: Fri, 08 Jan 2021 15:50:59 +0000
Close in favor of 45692


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]