all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: 68990@debbugs.gnu.org
Subject: [bug#68990] [PATCH 28/28] gnu: Add ruby-fog-libvirt.
Date: Thu,  8 Feb 2024 10:35:58 +0100	[thread overview]
Message-ID: <6109248b114ce377e476ffe80fbb3cd8c352272c.1707383695.git.h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <cover.1707383694.git.h.goebel@crazy-compilers.com>

* gnu/packages/ruby.scm (ruby-fog-libvirt): New variable.
---
 gnu/packages/ruby.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index dc6f6a1b29..2a21bf8bc6 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -90,6 +90,7 @@ (define-module (gnu packages ruby)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages valgrind)
   #:use-module (gnu packages version-control)
+  #:use-module (gnu packages virtualization)
   #:use-module (gnu packages web-browsers)
   #:use-module (gnu packages serialization)
   #:use-module (guix packages)
@@ -9784,6 +9785,32 @@ (define-public ruby-fog-xml
     (home-page "https://github.com/fog/fog-xml")
     (license license:expat)))
 
+(define-public ruby-fog-libvirt
+  (package
+    (name "ruby-fog-libvirt")
+    (version "0.12.0")
+    (source (origin
+              (method git-fetch)        ; for tests
+              (uri (git-reference
+                    (url "https://github.com/fog/fog-libvirt")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0b1qafb0l24anmr8fviwhp9vj14g0fic0mkg9n1i11h68zhqkj2v"))))
+    (build-system ruby-build-system)
+    (native-inputs (list ruby-minitest-stub-const ruby-mocha ruby-net-ssh
+                         ruby-netrc ruby-octokit ruby-pry ruby-rubocop
+                         ruby-shindo ruby-simplecov ruby-yard ))
+    (propagated-inputs (list ruby-fog-core ruby-fog-json ruby-fog-xml
+                             ruby-json ruby-libvirt))
+    (synopsis "Ruby libvirt provider, either standalone or as a module for
+@code{fog}")
+    (description "This library can be used as a module for @code{fog} or as
+standalone libvirt provider.  @code{fog} is a Ruby cloud services library.")
+    (home-page "https://github.com/fog/fog-libvirt")
+    (license license:expat)))
+
 (define-public ruby-pry-byebug
   (package
     (name "ruby-pry-byebug")
-- 
2.41.0





  parent reply	other threads:[~2024-02-08  9:38 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-08  9:28 [bug#68990] [PATCH 00/28] Some ruby packages Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 01/28] gnu: Add ruby-test-unit-ruby-core Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 02/28] gnu: Add ruby-excon Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 03/28] gnu: Add ruby-ipaddr Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 04/28] gnu: Add ruby-net-ftp Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 05/28] gnu: Add ruby-fake-ftp Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 06/28] gnu: Add ruby-net-sftp Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 07/28] gnu: Add ruby-net-telnet Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 08/28] gnu: Add ruby-pairing-heap Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 09/28] gnu: Add ruby-stringio Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 10/28] gnu: Add ruby-stream Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 11/28] gnu: Add ruby-rgl Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 12/28] gnu: Add ruby-sfl Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 13/28] gnu: Add ruby-specinfra Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 14/28] gnu: Add ruby-serverspec Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 15/28] gnu: Add ruby-time Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 16/28] gnu: Add ruby-google-protobuf Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 17/28] gnu: Add ruby-googleapis-common-protos-types Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 18/28] gnu: Add ruby-grpc Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 19/28] gnu: Add ruby-vagrant-cloud Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 20/28] gnu: Add ruby-vagrant-spec Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 21/28] gnu: Add ruby-vagrant-spec-helper-basic Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 22/28] gnu: Add ruby-hashicorp-checkpoint Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 23/28] gnu: ruby-childprocess: Update to 4.1.0 Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 24/28] gnu: Add ruby-libvirt Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 25/28] gnu: Add ruby-fog-core Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 26/28] gnu: Add ruby-fog-json Hartmut Goebel
2024-02-08  9:35 ` [bug#68990] [PATCH 27/28] gnu: Add ruby-fog-xml Hartmut Goebel
2024-02-08  9:35 ` Hartmut Goebel [this message]
     [not found] ` <handler.68990.B.170738456723129.ack@debbugs.gnu.org>
2024-02-24 15:55   ` bug#68990: Acknowledgement ([PATCH 00/28] Some ruby packages) Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6109248b114ce377e476ffe80fbb3cd8c352272c.1707383695.git.h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=68990@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.