2014-04-15 17:01:53 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-05-13 16:45:41 -04:00
|
|
|
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-02-21 13:24:54 -05:00
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2015-03-05 12:14:43 -05:00
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2018-01-05 00:03:46 -05:00
|
|
|
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-02-15 00:22:07 -05:00
|
|
|
;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
|
2014-04-15 17:01:53 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages ftp)
|
2015-02-21 13:24:54 -05:00
|
|
|
#:use-module ((guix licenses) #:select (gpl2+ gpl3+ clarified-artistic))
|
2014-04-15 17:01:53 -04:00
|
|
|
#:use-module (guix build-system gnu)
|
2015-02-21 13:24:54 -05:00
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (gnu packages)
|
2016-11-05 13:28:42 -04:00
|
|
|
#:use-module (gnu packages autotools)
|
2017-02-15 00:22:07 -05:00
|
|
|
#:use-module (gnu packages check)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages databases)
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2016-11-05 13:28:42 -04:00
|
|
|
#:use-module (gnu packages gettext)
|
2017-02-15 00:27:11 -05:00
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages libidn)
|
2014-04-15 17:01:53 -04:00
|
|
|
#:use-module (gnu packages ncurses)
|
2017-02-15 00:27:11 -05:00
|
|
|
#:use-module (gnu packages nettle)
|
2014-04-15 17:01:53 -04:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2017-02-15 00:27:11 -05:00
|
|
|
#:use-module (gnu packages readline)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 15:41:22 -04:00
|
|
|
#:use-module (gnu packages tls)
|
2017-02-15 00:27:11 -05:00
|
|
|
#:use-module (gnu packages wxwidgets)
|
|
|
|
#:use-module (gnu packages xml))
|
2014-04-15 17:01:53 -04:00
|
|
|
|
|
|
|
(define-public lftp
|
|
|
|
(package
|
|
|
|
(name "lftp")
|
2017-10-09 18:06:04 -04:00
|
|
|
(version "4.8.3")
|
2014-04-15 17:01:53 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2017-02-01 07:14:14 -05:00
|
|
|
;; See https://lftp.tech/get.html for mirrors.
|
|
|
|
(uri (list (string-append "https://lftp.tech/ftp/lftp-"
|
2015-05-13 16:45:41 -04:00
|
|
|
version ".tar.xz")
|
2016-12-13 00:15:52 -05:00
|
|
|
(string-append "https://lftp.tech/ftp/old/lftp-"
|
2017-02-01 07:14:14 -05:00
|
|
|
version ".tar.xz")
|
|
|
|
(string-append "ftp://ftp.st.ryukoku.ac.jp/pub/network/"
|
|
|
|
"ftp/lftp/lftp-" version ".tar.xz")))
|
2014-04-15 17:01:53 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2017-10-09 18:06:04 -04:00
|
|
|
"12y77jlfs4x4zvcah92mw2h2sb4j0bvbaxkh3wwsm8gs392ywyny"))))
|
2014-04-15 17:01:53 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("zlib" ,zlib)
|
|
|
|
("readline" ,readline)
|
|
|
|
("gnutls" ,gnutls)))
|
2016-10-18 16:46:51 -04:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; Disable tests that require network access, which is most of them.
|
|
|
|
(add-before 'check 'disable-impure-tests
|
|
|
|
(lambda _
|
|
|
|
(substitute* "tests/Makefile"
|
|
|
|
(("(ftp-cls-l|ftp-list|http-get)\\$\\(EXEEXT\\)") "")
|
|
|
|
(("lftp-https-get ") "")))))
|
|
|
|
#:configure-flags
|
|
|
|
(list (string-append "--with-readline="
|
|
|
|
(assoc-ref %build-inputs "readline")))))
|
2016-12-13 00:15:52 -05:00
|
|
|
(home-page "https://lftp.tech/")
|
2014-04-15 17:01:53 -04:00
|
|
|
(synopsis "Command-line file transfer program")
|
|
|
|
(description
|
|
|
|
"LFTP is a sophisticated FTP/HTTP client, and a file transfer program
|
|
|
|
supporting a number of network protocols. Like Bash, it has job control and
|
|
|
|
uses the Readline library for input. It has bookmarks, a built-in mirror
|
|
|
|
command, and can transfer several files in parallel. It was designed with
|
|
|
|
reliability in mind.")
|
|
|
|
(license gpl3+)))
|
2014-11-19 11:37:35 -05:00
|
|
|
|
|
|
|
(define-public ncftp
|
|
|
|
(package
|
|
|
|
(name "ncftp")
|
|
|
|
(version "3.2.5")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "ftp://ftp.ncftp.com/ncftp/ncftp-"
|
|
|
|
version "-src.tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0hlx12i0lwi99qsrx7nccf4nvwjj2gych4yks5y179b1ax0y5sxl"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
;; Use the right 'rm' and 'ls'.
|
|
|
|
(substitute* (cons "configure"
|
|
|
|
(find-files "."
|
|
|
|
"^(Makefile\\.in|.*\\.sh)$"))
|
|
|
|
(("/bin/(rm|ls)" _ command)
|
|
|
|
command))
|
|
|
|
|
|
|
|
;; This is free software, avoid any confusion.
|
|
|
|
(substitute* (find-files "." "\\.c$")
|
|
|
|
(("a freeware program")
|
|
|
|
"free software"))))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2016-10-19 11:00:35 -04:00
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; This is an old 'configure' script that doesn't
|
|
|
|
;; understand variables passed as arguments.
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(setenv "CONFIG_SHELL" (which "sh"))
|
|
|
|
(setenv "SHELL" (which "sh"))
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
(string-append "--prefix=" out)))))))
|
|
|
|
#:tests? #f)) ;there are no tests
|
2014-11-19 11:37:35 -05:00
|
|
|
(inputs `(("ncurses" ,ncurses)))
|
|
|
|
(home-page "http://www.ncftp.com/ncftp/")
|
|
|
|
(synopsis "Command-line File Transfer Protocol (FTP) client")
|
|
|
|
(description
|
|
|
|
"NcFTP Client (or just NcFTP) is a set of command-line programs to access
|
|
|
|
File Transfer Protocol (FTP) servers. This includes 'ncftp', an interactive
|
|
|
|
FTP browser, as well as non-interactive commands such as 'ncftpput' and
|
|
|
|
'ncftpget'.")
|
|
|
|
(license clarified-artistic)))
|
2015-02-21 13:24:54 -05:00
|
|
|
|
|
|
|
|
|
|
|
(define-public weex
|
|
|
|
(package
|
|
|
|
(name "weex")
|
2016-11-05 13:28:42 -04:00
|
|
|
(version "2.8.2")
|
2015-02-21 13:24:54 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
2016-11-05 13:28:42 -04:00
|
|
|
(string-append "mirror://sourceforge/weex/weex/"
|
|
|
|
"/weex_" version ".tar.gz"))
|
2015-02-21 13:24:54 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-11-05 13:28:42 -04:00
|
|
|
"1ir761hjncr1bamaqcw9j7x57xi3s9jax3223bxwbq30a0vsw1pd"))))
|
2015-02-21 13:24:54 -05:00
|
|
|
(build-system gnu-build-system)
|
2016-11-05 13:28:42 -04:00
|
|
|
(native-inputs
|
|
|
|
`(("automake" ,automake)
|
|
|
|
("autoconf" ,autoconf)
|
2016-11-18 12:26:08 -05:00
|
|
|
("gettext" ,gettext-minimal)))
|
2015-02-21 13:24:54 -05:00
|
|
|
(arguments
|
2016-10-21 12:33:09 -04:00
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
gnu: Put autoconf-related phases immediately after the 'unpack phase.
* gnu/packages/audio.scm (audacity, rtmidi)[arguments]: Correct phases
accordingly.
* gnu/packages/bioinformatics.scm (mash, seek, vsearch, emboss,
htslib-for-sambamba)[arguments]: Likewise.
* gnu/packages/ci.scm (cuirass)[arguments]: Likewise.
* gnu/packages/compression.scm (minizip, xdelta)[arguments]: Likewise.
* gnu/packages/cpp.scm (libzen)[arguments]: Likewise.
* gnu/packages/crypto.scm (opendht)[arguments]: Likewise.
* gnu/packages/databases.scm (4store, mdbtools)[arguments]: Likewise.
* gnu/packages/debug.scm (stress-make)[arguments]: Likewise.
* gnu/packages/dns.scm (dnscrypt-proxy, dnscrypt-wrapper)[arguments]:
Likewise.
* gnu/packages/emacs.scm (emacs-pdf-tools)[arguments]: Likewise.
* gnu/packages/embedded.scm (libjaylink, openocd)[arguments]: Likewise.
* gnu/packages/engineering.scm (gerbv)[arguments]: Likewise.
* gnu/packages/erlang.scm (erlang)[arguments]: Likewise.
* gnu/packages/ftp.scm (weex)[arguments]: Likewise.
* gnu/packages/gnome.scm (dia)[arguments]: Likewise.
* gnu/packages/gnunet.scm (gnurl, guile-gnunet)[arguments]: Likewise.
* gnu/packages/gtk.scm (guile-rsvg, graphene)[arguments]: Likewise.
* gnu/packages/guile.scm (guildhall, guile-ics, guile-sqlite3)[arguments]:
Likewise.
* gnu/packages/ibus.scm (ibus-libpinyin)[arguments]: Likewise.
* gnu/packages/irc.scm (weechat)[arguments]: Likewise.
* gnu/packages/java.scm (classpath-devel)[arguments]: Likewise.
* gnu/packages/libreoffice.scm (libetonyek)[arguments]: Likewise.
* gnu/packages/libusb.scm (hidapi)[arguments]: Likewise.
* gnu/packages/linux.scm (gpm)[arguments]: Likewise.
* gnu/packages/logging.scm (glog)[arguments]: Likewise.
* gnu/packages/machine-learning.scm (ghmm)[arguments]: Likewise.
* gnu/packages/mail.scm (dovecot-trees, dovecot-libsodium-plugin, esmtp)
[arguments]: Likewise.
* gnu/packages/messaging.scm (freetalk, libmesode, libstrophe)[arguments]:
Likewise.
* gnu/packages/microcom.scm (microcom)[arguments]: Likewise.
* gnu/packages/ocaml.scm (ocaml-ssl)[arguments]: Likewise.
* gnu/packages/parallel.scm (slurm)[arguments]: Likewise.
* gnu/packages/pdf.scm (libharu)[arguments]: Likewise.
* gnu/packages/samba.scm (cifs-utils)[arguments]: Likewise.
* gnu/packages/serialization.scm (msgpack)[arguments]: Likewise.
* gnu/packages/shells.scm (scsh)[arguments]: Likewise.
* gnu/packages/telephony.scm (libiax2)[arguments]: Likewise.
* gnu/packages/textutils.scm (dotconf)[arguments]: Likewise.
* gnu/packages/version-control.scm (findnewest)[arguments]: Likewise.
* gnu/packages/video.scm (libmediainfo, mediainfo)[arguments]: Likewise.
2017-07-30 21:02:35 -04:00
|
|
|
(add-after 'unpack 'bootstrap
|
2016-11-05 13:28:42 -04:00
|
|
|
(lambda _ (zero? (system* "autoreconf" "-vfi")))))))
|
2015-02-21 13:24:54 -05:00
|
|
|
(home-page "http://weex.sourceforge.net/")
|
|
|
|
(synopsis "Non-interactive client for FTP synchronization")
|
|
|
|
(description
|
|
|
|
"Weex is a utility designed to automate the task of remotely
|
|
|
|
maintaining a web page or other FTP archive. It synchronizes a set of
|
|
|
|
local files to a remote server by performing uploads and remote deletes
|
|
|
|
as required.")
|
|
|
|
(license gpl2+)))
|
2017-02-15 00:22:07 -05:00
|
|
|
|
|
|
|
(define-public libfilezilla
|
|
|
|
(package
|
|
|
|
(name "libfilezilla")
|
2018-01-05 00:03:46 -05:00
|
|
|
(version "0.11.2")
|
2017-02-15 00:22:07 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://download.filezilla-project.org/"
|
|
|
|
name "/" name "-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-01-05 00:03:46 -05:00
|
|
|
"0wl42yxrha633dbh1vcbhrpsd7sv4zwskbmlpx549ygnzi39krcn"))))
|
2017-02-15 00:22:07 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
2017-08-27 15:26:59 -04:00
|
|
|
`(("cppunit" ,cppunit)
|
|
|
|
("pkg-config" ,pkg-config)))
|
2017-02-15 00:22:07 -05:00
|
|
|
(home-page "https://lib.filezilla-project.org")
|
|
|
|
(synopsis "Cross-platform C++ library used by Filezilla client")
|
|
|
|
(description
|
|
|
|
"This package provides some basic functionality to build high-performing,
|
2018-01-04 23:09:15 -05:00
|
|
|
platform-independent programs.
|
|
|
|
|
|
|
|
Some of the highlights include:
|
|
|
|
@itemize
|
|
|
|
@item
|
|
|
|
A type-safe, multi-threaded event system that's simple to use yet efficient.
|
|
|
|
@item
|
|
|
|
Timers for periodic events.
|
|
|
|
@item
|
|
|
|
A @code{datetime} class that not only tracks timestamp but also their accuracy,
|
|
|
|
which simplifies dealing with timestamps originating from different sources.
|
|
|
|
@item
|
|
|
|
Simple process handling for spawning child processes with redirected input and
|
|
|
|
output.
|
|
|
|
@end itemize\n")
|
2017-02-15 00:22:07 -05:00
|
|
|
(license gpl2+)))
|
2017-02-15 00:27:11 -05:00
|
|
|
|
|
|
|
(define-public filezilla
|
|
|
|
(package
|
|
|
|
(name "filezilla")
|
2018-01-04 23:15:58 -05:00
|
|
|
(version "3.29.0")
|
2017-02-15 00:27:11 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://sourceforge.net/projects/" name
|
|
|
|
"/files/FileZilla_Client/" version
|
|
|
|
"/FileZilla_" version "_src" ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-01-04 23:15:58 -05:00
|
|
|
"0najf2w6p5j4qc8jmglx6j63mph749s5p90lz2nkmwwwy5sfvlga"))))
|
2017-02-15 00:27:11 -05:00
|
|
|
(build-system gnu-build-system)
|
2017-03-04 23:02:51 -05:00
|
|
|
(arguments
|
|
|
|
;; Don't let filezilla phone home to check for updates.
|
|
|
|
'(#:configure-flags '("--disable-autoupdatecheck")))
|
2017-02-15 00:27:11 -05:00
|
|
|
(native-inputs
|
|
|
|
`(("gettext" ,gettext-minimal)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("pugixml" ,pugixml)
|
|
|
|
("xdg-utils" ,xdg-utils)))
|
|
|
|
(inputs
|
|
|
|
`(("dbus" ,dbus)
|
|
|
|
("gnutls" ,gnutls)
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
("libfilezilla" ,libfilezilla)
|
|
|
|
("libidn" ,libidn)
|
|
|
|
("nettle" ,nettle)
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
("wxwidgets" ,wxwidgets)))
|
|
|
|
(home-page "https://filezilla-project.org")
|
|
|
|
(synopsis "Full-featured graphical FTP/FTPS/SFTP client")
|
|
|
|
(description
|
|
|
|
"Filezilla client supports FTP, FTP over SSL/TLS (FTPS),
|
|
|
|
SSH File Transfer Protocol (SFTP), HTTP/1.1, SOCKS5, FTP-Proxy, IPv6
|
|
|
|
and others features such as bookmarks, drag and drop, filename filters,
|
|
|
|
directory comparison and more.")
|
|
|
|
(license gpl2+)
|
|
|
|
(properties '((upstream-name . "FileZilla")))))
|