From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:58065) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gj8kI-0002yL-IB for guix-patches@gnu.org; Mon, 14 Jan 2019 15:22:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gj8kG-0002Zw-MC for guix-patches@gnu.org; Mon, 14 Jan 2019 15:22:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60087) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gj8kE-0002Xc-Rx for guix-patches@gnu.org; Mon, 14 Jan 2019 15:22:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gj8kE-0007hF-IE for guix-patches@gnu.org; Mon, 14 Jan 2019 15:22:02 -0500 Subject: [bug#34079] [PATCH] sshfs rename (Was: Re: Proposal: rename sshfs-fuse -> sshfs) Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:57336) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gj8jw-0002Fl-0n for guix-patches@gnu.org; Mon, 14 Jan 2019 15:21:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gj8bn-000566-R3 for guix-patches@gnu.org; Mon, 14 Jan 2019 15:13:21 -0500 Received: from mx1.riseup.net ([198.252.153.129]:43210) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gj8bl-0004zR-LV for guix-patches@gnu.org; Mon, 14 Jan 2019 15:13:18 -0500 From: swedebugia References: <87o9as9ejt.fsf@gmail.com> <875zwzvqbc.fsf@elephly.net> <20181114172526.GA2408@jasmine.lan> Date: Mon, 14 Jan 2019 21:12:52 +0100 In-Reply-To: <20181114172526.GA2408@jasmine.lan> (Leo Famulari's message of "Wed, 14 Nov 2018 12:25:26 -0500") Message-ID: <87y37nov5n.fsf_-_@riseup.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Leo Famulari Cc: rekado@elephly.net, 34079@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Leo Famulari writes: > On Wed, Nov 14, 2018 at 12:41:59PM +0100, Ricardo Wurmus wrote: >> I have no objections to renaming the package, though you=E2=80=99ll need= to keep >> a definition for =E2=80=9Csshfs-fuse=E2=80=9D to indicate to users that = the package has >> been renamed. > > Right. See the definition of 'letsencrypt' in (gnu packages tls) for an > example of this. Done. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Rename-sshfs-fuse-to-sshfs.patch >From 86536694d40eb42e746b55cac5caa98e28946ed1 Mon Sep 17 00:00:00 2001 From: swedebugia Date: Mon, 14 Jan 2019 21:03:20 +0100 Subject: [PATCH] gnu: Rename sshfs-fuse to sshfs. * gnu/packages/linux.scm (sshfs-fuse): Mark as superseeded. (sshfs): New variable. --- 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 4fb85f2f3..4b70694d2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1810,9 +1810,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) @@ -1837,6 +1837,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") -- 2.19.2 --=-=-=--