[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
25/28: gnu: Add ruby-fog-core.
From: |
guix-commits |
Subject: |
25/28: gnu: Add ruby-fog-core. |
Date: |
Sat, 24 Feb 2024 10:51:13 -0500 (EST) |
htgoebel pushed a commit to branch master
in repository guix.
commit 4e238aa2b0e426b951edc5e0276a37169f4473d7
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Sun Aug 6 17:53:22 2023 +0200
gnu: Add ruby-fog-core.
* gnu/packages/ruby.scm (ruby-fog-core): New variable.
---
gnu/packages/ruby.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 3b5554bee5..88fc3bd23a 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -9696,6 +9696,36 @@ native C API.")
(home-page "https://ruby.libvirt.org/")
(license license:lgpl2.1+)))
+(define-public ruby-fog-core
+ (package
+ (name "ruby-fog-core")
+ (version "2.4.0")
+ (source (origin
+ (method git-fetch) ; for tests
+ (uri (git-reference
+ (url "https://github.com/fog/fog-core")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "184vpi81az7raz98652m7d98ikabdl9di37dgal0adr76q57j03c"))))
+ (build-system ruby-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'set-home
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
+ (native-inputs (list ruby-minitest-stub-const))
+ (propagated-inputs (list ruby-builder ruby-excon ruby-formatador
+ ruby-mime-types))
+ (synopsis "Shared classes and tests for fog providers and services")
+ (description "@code{fog} is a Ruby cloud services library. This package
+provides shared classes and tests for @code{fog} providers and services.")
+ (home-page "https://github.com/fog/fog-core")
+ (license license:expat)))
+
(define-public ruby-pry-byebug
(package
(name "ruby-pry-byebug")
- 06/28: gnu: Add ruby-net-sftp., (continued)
- 06/28: gnu: Add ruby-net-sftp., guix-commits, 2024/02/24
- 11/28: gnu: Add ruby-rgl., guix-commits, 2024/02/24
- 12/28: gnu: Add ruby-sfl., guix-commits, 2024/02/24
- 08/28: gnu: Add ruby-pairing-heap., guix-commits, 2024/02/24
- 10/28: gnu: Add ruby-stream., guix-commits, 2024/02/24
- 19/28: gnu: Add ruby-vagrant-cloud., guix-commits, 2024/02/24
- 22/28: gnu: Add ruby-hashicorp-checkpoint., guix-commits, 2024/02/24
- 23/28: gnu: ruby-childprocess: Update to 4.1.0., guix-commits, 2024/02/24
- 17/28: gnu: Add ruby-googleapis-common-protos-types., guix-commits, 2024/02/24
- 18/28: gnu: Add ruby-grpc., guix-commits, 2024/02/24
- 25/28: gnu: Add ruby-fog-core.,
guix-commits <=
- 24/28: gnu: Add ruby-libvirt., guix-commits, 2024/02/24
- 27/28: gnu: Add ruby-fog-xml., guix-commits, 2024/02/24
- 26/28: gnu: Add ruby-fog-json., guix-commits, 2024/02/24
- 28/28: gnu: Add ruby-fog-libvirt., guix-commits, 2024/02/24