guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#35349] [PATCH] gnu: Add cloud-utils.


From: Christopher Baines
Subject: [bug#35349] [PATCH] gnu: Add cloud-utils.
Date: Sat, 20 Apr 2019 22:48:41 +0100

* gnu/packages/admin.scm (cloud-utils): New variable.
---
 gnu/packages/admin.scm | 52 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 3a250eeaa8..84668b849f 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -214,6 +214,58 @@ interface and is based on GNU Guile.")
     (home-page "https://www.gnu.org/software/shepherd/";)
     (properties '((ftp-server . "alpha.gnu.org")))))
 
+(define-public cloud-utils
+  (package
+    (name "cloud-utils")
+    (version "0.31")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://launchpad.net/cloud-utils/trunk/";
+             version "/+download/cloud-utils-" version ".tar.gz"))
+       (sha256
+        (base32
+         "07fl3dlqwdzw4xx7mcxhpkks6dnmaxha80zgs9f6wmibgzni8z0r"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:make-flags
+       (let ((out (assoc-ref %outputs "out")))
+         (list (string-append "BINDIR=" out "/bin")
+               (string-append "MANDIR=" out "/share/man/man1")
+               (string-append "DOCDIR=" out "/share/doc/getmail")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (delete 'check))))
+    (inputs
+     `(("python" ,python)))
+    (home-page "https://launchpad.net/cloud-utils";)
+    (synopsis "Set of utilities for cloud computing environments")
+    (description
+     "This package contains a set of utilities for cloud computing
+environments:
+
address@hidden @bullet
address@hidden @command{cloud-localds} Create a disk for cloud-init to utilize 
nocloud
address@hidden @command{cloud-publish-image} Wrapper for cloud image publishing
address@hidden @command{cloud-publish-tarball} Wrapper for publishing cloud 
tarballs
address@hidden @command{cloud-publish-ubuntu} Import a Ubuntu cloud image
address@hidden @command{ec2metadata} Query and display @acronym{EC2,Amazon 
Elastic
+  Compute Cloud} metadata
address@hidden @command{growpart} Grow a partition to fill the device
address@hidden @command{mount-image-callback} Mount a file and run a command
address@hidden @command{resize-part-image} Resize a partition image to a new 
size
address@hidden @command{ubuntu-cloudimg-query} Get the latest Ubuntu
+  @acronym{AMI,Amazon Machine Image}
address@hidden @command{ubuntu-ec2-run} Run a @acronym{EC2,Amazon Elastic 
Compute
+  Cloud} instance using Ubuntu
address@hidden @command{vcs-run} Obtain a repository, and run a command
address@hidden @command{write-mime-multipart} Handle multipart
+  @acronym{MIME,Multipurpose Internet Mail Extensions} messages
address@hidden itemize")
+    (license license:gpl3)))
+
 (define-public daemontools
   (package
     (name "daemontools")
-- 
2.21.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]