[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65131] [PATCH 28/32] gnu: Add ruby-fog-core.
From: |
Hartmut Goebel |
Subject: |
[bug#65131] [PATCH 28/32] gnu: Add ruby-fog-core. |
Date: |
Mon, 7 Aug 2023 20:26:32 +0200 |
* 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 c1aff21e51..fb45a52c9e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -9656,6 +9656,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.3.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
+ "1s355ldv5wv0zv2irnraj4z70jgrhhk8ypgxr2wig3mr77px5b8g"))))
+ (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")
--
2.30.9
- [bug#65131] [PATCH 15/32] gnu: Add ruby-google-protobuf., (continued)
- [bug#65131] [PATCH 15/32] gnu: Add ruby-google-protobuf., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 19/32] gnu: Add ruby-vagrant-spec., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 21/32] gnu: Add ruby-hashicorp-checkpoint., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 14/32] gnu: Add ruby-time., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 17/32] gnu: Add ruby-grpc., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 20/32] gnu: Add ruby-vagrant-spec-helper-basic., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 22/32] gnu: ruby-childprocess: Update to 4.1.0., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 23/32] gnu: Add vagrant., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 25/32] gnu: Add vagrant-cachier., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 26/32] gnu: Add vagrant-reload., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 28/32] gnu: Add ruby-fog-core.,
Hartmut Goebel <=
- [bug#65131] [PATCH 30/32] gnu: Add ruby-fog-xml., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 32/32] gnu: Add vagrant-libvirt., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 24/32] gnu: Add vagrant-vai., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 27/32] gnu: Add ruby-libvirt., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 29/32] gnu: Add ruby-fog-json., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 31/32] gnu: Add ruby-fog-libvirt., Hartmut Goebel, 2023/08/07