guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Rename sshfs-fuse to sshfs.


From: guix-commits
Subject: 01/01: gnu: Rename sshfs-fuse to sshfs.
Date: Tue, 15 Jan 2019 10:46:13 -0500 (EST)

lfam pushed a commit to branch master
in repository guix.

commit 357b9f9d71464180ca78f58abf3a2810ccb589f3
Author: swedebugia <address@hidden>
Date:   Mon Jan 14 21:03:20 2019 +0100

    gnu: Rename sshfs-fuse to sshfs.
    
    * gnu/packages/linux.scm (sshfs): New variable.
    (sshfs-fuse): Mark as superseded.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/linux.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 8a74cb7..a1e5d00 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1811,9 +1811,9 @@ UnionFS-FUSE additionally supports copy-on-write.")
                #t))))))
     (inputs `(("fuse" ,fuse-static)))))
 
-(define-public sshfs-fuse
+(define-public sshfs
   (package
-    (name "sshfs-fuse")
+    (name "sshfs")
     (version "2.10")
     (source (origin
               (method url-fetch)
@@ -1838,6 +1838,11 @@ up: on the server side there's nothing to do; on the 
client side mounting the
 file system is as easy as logging into the server with an SSH client.")
     (license license:gpl2+)))
 
+(define-public sshfs-fuse
+  (package (inherit sshfs)
+    (name "sshfs-fuse")
+    (properties `((superseded . ,sshfs)))))
+
 (define-public archivemount
   (package
     (name "archivemount")



reply via email to

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