From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:50043) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hHxuy-0006mN-0t for guix-patches@gnu.org; Sat, 20 Apr 2019 17:53:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hHxuw-0002AG-Oj for guix-patches@gnu.org; Sat, 20 Apr 2019 17:53:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33411) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hHxuw-0002AA-MF for guix-patches@gnu.org; Sat, 20 Apr 2019 17:53:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hHxuw-0003lh-KW for guix-patches@gnu.org; Sat, 20 Apr 2019 17:53:02 -0400 Subject: [bug#35349] [PATCH] gnu: Add cloud-utils. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:49885) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hHxug-0006hq-4o for guix-patches@gnu.org; Sat, 20 Apr 2019 17:52:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hHxqn-0000HN-7y for guix-patches@gnu.org; Sat, 20 Apr 2019 17:48:46 -0400 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:58248) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hHxqn-0000Es-2h for guix-patches@gnu.org; Sat, 20 Apr 2019 17:48:45 -0400 Received: from localhost (71.38.6.51.dyn.plus.net [51.6.38.71]) by mira.cbaines.net (Postfix) with ESMTPSA id 19F9C16E94 for ; Sat, 20 Apr 2019 22:48:42 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 0caf64c9 for ; Sat, 20 Apr 2019 21:48:41 +0000 (UTC) From: Christopher Baines Date: Sat, 20 Apr 2019 22:48:41 +0100 Message-Id: <20190420214841.26758-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35349@debbugs.gnu.org * 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"))))) =20 +(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=3D" out "/bin") + (string-append "MANDIR=3D" out "/share/man/man1") + (string-append "DOCDIR=3D" 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: + +@itemize @bullet +@item @command{cloud-localds} Create a disk for cloud-init to utilize no= cloud +@item @command{cloud-publish-image} Wrapper for cloud image publishing +@item @command{cloud-publish-tarball} Wrapper for publishing cloud tarba= lls +@item @command{cloud-publish-ubuntu} Import a Ubuntu cloud image +@item @command{ec2metadata} Query and display @acronym{EC2,Amazon Elasti= c + Compute Cloud} metadata +@item @command{growpart} Grow a partition to fill the device +@item @command{mount-image-callback} Mount a file and run a command +@item @command{resize-part-image} Resize a partition image to a new size +@item @command{ubuntu-cloudimg-query} Get the latest Ubuntu + @acronym{AMI,Amazon Machine Image} +@item @command{ubuntu-ec2-run} Run a @acronym{EC2,Amazon Elastic Compute + Cloud} instance using Ubuntu +@item @command{vcs-run} Obtain a repository, and run a command +@item @command{write-mime-multipart} Handle multipart + @acronym{MIME,Multipurpose Internet Mail Extensions} messages +@end itemize") + (license license:gpl3))) + (define-public daemontools (package (name "daemontools") --=20 2.21.0