[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/28: gnu: Add ruby-net-ftp.
From: |
guix-commits |
Subject: |
04/28: gnu: Add ruby-net-ftp. |
Date: |
Sat, 24 Feb 2024 10:51:08 -0500 (EST) |
htgoebel pushed a commit to branch master
in repository guix.
commit 6e8ad38e4a041266425ff60b294dd2a98c72e094
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Thu Jul 27 00:07:32 2023 +0200
gnu: Add ruby-net-ftp.
* gnu/packages/ruby.scm (ruby-net-ftp): New variable.
---
gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 6556c3a00c..4d6acbb7e8 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4448,6 +4448,29 @@ address. Both IPv4 and IPv6 are supported.")
(home-page "https://github.com/ruby/ipaddr")
(license license:bsd-2)))
+(define-public ruby-net-ftp
+ (package
+ (name "ruby-net-ftp")
+ (version "0.3.4")
+ (source (origin
+ (method git-fetch) ;for tests
+ (uri (git-reference
+ (url "https://github.com/ruby/net-ftp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "11b1sw7c4c7xrhn5li5m0wylw42hp52jp6pqacyb43hkw1m5zr36"))))
+ (build-system ruby-build-system)
+ (propagated-inputs (list ruby-net-protocol ruby-time))
+ (synopsis "File Transfer Protocol client library")
+ (description "This class implements the File Transfer Protocol. If you
+have used a command-line FTP program, and are familiar with the commands, you
+will be able to use this class easily. Some extra features are included to
+take advantage of Ruby's style and strengths.")
+ (home-page "https://github.com/ruby/net-ftp")
+ (license license:bsd-2)))
+
(define-public ruby-net-http-persistent
(package
(name "ruby-net-http-persistent")
- branch master updated (de24aaf13b -> f861793141), guix-commits, 2024/02/24
- 02/28: gnu: Add ruby-excon., guix-commits, 2024/02/24
- 01/28: gnu: Add ruby-test-unit-ruby-core., guix-commits, 2024/02/24
- 03/28: gnu: Add ruby-ipaddr., guix-commits, 2024/02/24
- 04/28: gnu: Add ruby-net-ftp.,
guix-commits <=
- 05/28: gnu: Add ruby-fake-ftp., guix-commits, 2024/02/24
- 07/28: gnu: Add ruby-net-telnet., guix-commits, 2024/02/24
- 09/28: gnu: Add ruby-stringio., guix-commits, 2024/02/24
- 13/28: gnu: Add ruby-specinfra., guix-commits, 2024/02/24
- 14/28: gnu: Add ruby-serverspec., guix-commits, 2024/02/24
- 15/28: gnu: Add ruby-time., guix-commits, 2024/02/24
- 20/28: gnu: Add ruby-vagrant-spec., guix-commits, 2024/02/24
- 21/28: gnu: Add ruby-vagrant-spec-helper-basic., guix-commits, 2024/02/24
- 16/28: gnu: Add ruby-google-protobuf., guix-commits, 2024/02/24
- 06/28: gnu: Add ruby-net-sftp., guix-commits, 2024/02/24