unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#30136] [PATCH] gnu: Add curlftpfs.
@ 2018-01-16 10:08 Danny Milosavljevic
  2018-01-16 14:45 ` Ludovic Courtès
  2018-01-16 16:03 ` Marius Bakke
  0 siblings, 2 replies; 3+ messages in thread
From: Danny Milosavljevic @ 2018-01-16 10:08 UTC (permalink / raw)
  To: 30136

* gnu/packages/linux.scm (curlftpfs): New variable.
---
 gnu/packages/linux.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index c33a8c2e5..efe5d90c9 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -57,6 +57,7 @@
   #:use-module (gnu packages calendar)
   #:use-module (gnu packages check)
   #:use-module (gnu packages crypto)
+  #:use-module (gnu packages curl)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages datastructures)
@@ -1833,6 +1834,41 @@ 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 curlftpfs
+  (package
+    (name "curlftpfs")
+    (version "0.9.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/curlftpfs/curlftpfs/" version
+                           "/curlftpfs-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-test
+           (lambda _
+             ;; One of the 512-Byte block counts is definitely wrong.
+             ;; See <https://sourceforge.net/p/curlftpfs/bugs/73/>.
+             (substitute* "tests/ftpfs-ls_unittest.c"
+              (("4426192") "12814800"))
+             #t)))))
+    (inputs
+     `(("curl" ,curl)
+       ("glib" ,glib)
+       ("fuse", fuse)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://curlftpfs.sourceforge.net/")
+    (synopsis "Mount remote filesystems over FTP")
+    (description
+     "This is a file system client based on the FTP File Transfer Protocol.")
+    (license license:gpl2+)))
+
 (define-public archivemount
   (package
     (name "archivemount")

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

* [bug#30136] [PATCH] gnu: Add curlftpfs.
  2018-01-16 10:08 [bug#30136] [PATCH] gnu: Add curlftpfs Danny Milosavljevic
@ 2018-01-16 14:45 ` Ludovic Courtès
  2018-01-16 16:03 ` Marius Bakke
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2018-01-16 14:45 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 30136

Danny Milosavljevic <dannym@scratchpost.org> skribis:

> * gnu/packages/linux.scm (curlftpfs): New variable.

[...]

> +    (home-page "http://curlftpfs.sourceforge.net/")
> +    (synopsis "Mount remote filesystems over FTP")

Rather “file system” (two words).  :-)

Otherwise LGTM, thanks!

Ludo’.

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

* [bug#30136] [PATCH] gnu: Add curlftpfs.
  2018-01-16 10:08 [bug#30136] [PATCH] gnu: Add curlftpfs Danny Milosavljevic
  2018-01-16 14:45 ` Ludovic Courtès
@ 2018-01-16 16:03 ` Marius Bakke
  1 sibling, 0 replies; 3+ messages in thread
From: Marius Bakke @ 2018-01-16 16:03 UTC (permalink / raw)
  To: Danny Milosavljevic, 30136

[-- Attachment #1: Type: text/plain, Size: 479 bytes --]

Danny Milosavljevic <dannym@scratchpost.org> writes:

> * gnu/packages/linux.scm (curlftpfs): New variable.

Maybe better suited in (gnu packages file-systems)?  Linux.scm is
growing fast.

And for something completely off-topic: can you please configure your
mail client to wrap lines at <80 characters (typically 72)?  Reading
your mails on a wide screen is tiring since I have to scan the whole
screen for every line, whereas with shorter lines I can read at least 2x
faster.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2018-01-16 16:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-16 10:08 [bug#30136] [PATCH] gnu: Add curlftpfs Danny Milosavljevic
2018-01-16 14:45 ` Ludovic Courtès
2018-01-16 16:03 ` Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).