GNU bug report logs -
#27400
[PATCH] gnu: Add python-apache-libcloud.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 27400 in the body.
You can then email your comments to 27400 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#27400
; Package
guix-patches
.
(Fri, 16 Jun 2017 22:12:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Danny Milosavljevic <dannym <at> scratchpost.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 16 Jun 2017 22:12:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python.scm (python-apache-libcloud, python2-apache-libcloud):
New variables.
---
gnu/packages/python.scm | 59 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 352a5f333..5807f046e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -98,6 +98,7 @@
#:use-module (gnu packages readline)
#:use-module (gnu packages sdl)
#:use-module (gnu packages shells)
+ #:use-module (gnu packages ssh)
#:use-module (gnu packages statistics)
#:use-module (gnu packages tex)
#:use-module (gnu packages texinfo)
@@ -15324,3 +15325,61 @@ validating Swagger API specifications.")
(define-public python2-swagger-spec-validator
(package-with-python2 python-swagger-spec-validator))
+
+(define-public python-apache-libcloud
+ (package
+ (name "python-apache-libcloud")
+ (version "2.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "apache-libcloud" version))
+ (sha256
+ (base32
+ "1a71z02ckcxld72k4qgmdnkjan52c4wczncs3p2mp5yafh7dsan7"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-ssh
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "libcloud/compute/ssh.py"
+ (("'ssh'") (string-append "'" (assoc-ref inputs "openssh")
+ "'")))
+ #t))
+ (add-after 'unpack 'patch-tests
+ (lambda _
+ (substitute* "./libcloud/test/test_file_fixtures.py"
+ ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-923>.
+ (("def _ascii") "def _raw_data(self, method, url, body, headers):
+ return (httplib.OK,
+ \"1234abcd\",
+ {\"test\": \"value\"},
+ httplib.responses[httplib.OK])
+ def _ascii"))
+ (substitute* "libcloud/test/compute/test_ssh_client.py"
+ (("class ShellOutSSHClientTests")
+ "@unittest.skip(\"Guix container doesn't have ssh service\")
+class ShellOutSSHClientTests")
+ ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-924>.
+ (("'.xf0.x90.x8d.x88'") "b'\\xF0\\x90\\x8D\\x88'")
+ (("'.xF0', '.x90', '.x8D', '.x88'")
+ "b'\\xF0', b'\\x90', b'\\x8D', b'\\x88'"))
+ #t)))))
+ (inputs
+ `(("openssh" ,openssh)))
+ (propagated-inputs
+ `(("python-paramiko" ,python-paramiko)
+ ("python-requests" ,python-requests)))
+ (native-inputs
+ `(("python-lockfile" ,python-lockfile)
+ ("python-mock" ,python-mock)
+ ("python-requests-mock" ,python-requests-mock)))
+ (home-page "https://libcloud.apache.org/")
+ (synopsis "Unified Cloud API")
+ (description "@code{libcloud} is a Python library for interacting with
+many of the popular cloud service providers using a unified API.")
+ (license license:asl2.0)))
+
+(define-public python2-apache-libcloud
+ (package-with-python2 python-apache-libcloud))
Information forwarded
to
guix-patches <at> gnu.org
:
bug#27400
; Package
guix-patches
.
(Sat, 17 Jun 2017 13:38:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 27400 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Danny Milosavljevic <dannym <at> scratchpost.org> writes:
> * gnu/packages/python.scm (python-apache-libcloud, python2-apache-libcloud):
> New variables.
[...]
> + (modify-phases %standard-phases
> + (add-after 'unpack 'patch-ssh
> + (lambda* (#:key inputs #:allow-other-keys)
> + (substitute* "libcloud/compute/ssh.py"
> + (("'ssh'") (string-append "'" (assoc-ref inputs "openssh")
> + "'")))
Should this not be (assoc-ref inputs "openssh") "/bin/ssh"?
> + #t))
> + (add-after 'unpack 'patch-tests
> + (lambda _
> + (substitute* "./libcloud/test/test_file_fixtures.py"
> + ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-923>.
> + (("def _ascii") "def _raw_data(self, method, url, body, headers):
> + return (httplib.OK,
> + \"1234abcd\",
> + {\"test\": \"value\"},
> + httplib.responses[httplib.OK])
> + def _ascii"))
> + (substitute* "libcloud/test/compute/test_ssh_client.py"
> + (("class ShellOutSSHClientTests")
> + "@unittest.skip(\"Guix container doesn't have ssh service\")
> +class ShellOutSSHClientTests")
> + ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-924>.
> + (("'.xf0.x90.x8d.x88'") "b'\\xF0\\x90\\x8D\\x88'")
> + (("'.xF0', '.x90', '.x8D', '.x88'")
> + "b'\\xF0', b'\\x90', b'\\x8D', b'\\x88'"))
Odd that these substitutions are necessary. Could it be something with
our Python build? Or locale in the build environment? LGTM, anyway.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#27400
; Package
guix-patches
.
(Sat, 17 Jun 2017 18:47:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 27400 <at> debbugs.gnu.org (full text, mbox):
Hi Marius,
On Sat, 17 Jun 2017 15:37:27 +0200
Marius Bakke <mbakke <at> fastmail.com> wrote:
> Should this not be (assoc-ref inputs "openssh") "/bin/ssh"?
Indeed. Thanks!
> > + ;; See <https://issues.apache.org/jira/browse/LIBCLOUD-924>.
> > + (("'.xf0.x90.x8d.x88'") "b'\\xF0\\x90\\x8D\\x88'")
> > + (("'.xF0', '.x90', '.x8D', '.x88'")
> > + "b'\\xF0', b'\\x90', b'\\x8D', b'\\x88'"))
No idea. It works fine with Python 2 - and previous versions of apache-libcloud were Python 2 only.
Let's see what they say.
Pushed as 7ea498e5cd55c056492a778203414ce977350142.
bug closed, send any further explanations to
27400 <at> debbugs.gnu.org and Danny Milosavljevic <dannym <at> scratchpost.org>
Request was from
Danny Milosavljevic <dannym <at> scratchpost.org>
to
control <at> debbugs.gnu.org
.
(Sat, 17 Jun 2017 18:47:03 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 16 Jul 2017 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 67 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.