unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/4] gnu: python-rsa: Update to 3.4.2.
@ 2016-10-16  1:54 Leo Famulari
  2016-10-16  1:54 ` [PATCH 2/4] gnu: python-botocore: Update to 1.4.62 Leo Famulari
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Leo Famulari @ 2016-10-16  1:54 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/python.scm (python-rsa, python2-rsa): Update to 3.4.2.
---
 gnu/packages/python.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6207896..485aba9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7772,14 +7772,14 @@ text.")
 (define-public python-rsa
   (package
    (name "python-rsa")
-   (version "3.2")
+   (version "3.4.2")
    (source
     (origin
      (method url-fetch)
      (uri (pypi-uri "rsa" version))
      (sha256
       (base32
-       "0xwp929g7lvb1sghxfpqlxvgg96qcwqdbhh27sjplx30n3xp3wrh"))))
+       "1dcxvszbikgzh99ybdc7jq0zb9wspy2ds8z9mjsqiyv3q884xpr5"))))
    (build-system python-build-system)
    (inputs
     `(("python-pyasn1" ,python-pyasn1)
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] gnu: python-botocore: Update to 1.4.62.
  2016-10-16  1:54 [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Leo Famulari
@ 2016-10-16  1:54 ` Leo Famulari
  2016-10-16  1:55 ` [PATCH 3/4] gnu: Add python-s3transfer Leo Famulari
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2016-10-16  1:54 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/python.scm (python-botocore, python2-botocore): Update to 1.4.62.
---
 gnu/packages/python.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 485aba9..6a81455 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7879,14 +7879,14 @@ document.")
 (define-public python-botocore
   (package
    (name "python-botocore")
-   (version "1.3.17")
+   (version "1.4.62")
    (source
     (origin
      (method url-fetch)
      (uri (pypi-uri "botocore" version))
      (sha256
       (base32
-       "08vpvdixx1c1lfv6vzjig68bpiir7wfyhzf49ysxgvhbprg5ra0w"))))
+       "1zxczlwqy9bl27d9bc5x99mb5mcsxm350240lp5nx7014xb311lj"))))
    (build-system python-build-system)
    (inputs
     `(("python-dateutil" ,python-dateutil-2)
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] gnu: Add python-s3transfer.
  2016-10-16  1:54 [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Leo Famulari
  2016-10-16  1:54 ` [PATCH 2/4] gnu: python-botocore: Update to 1.4.62 Leo Famulari
@ 2016-10-16  1:55 ` Leo Famulari
  2016-10-16  1:55 ` [PATCH 4/4] gnu: awscli: Update to 1.11.5 Leo Famulari
  2016-10-19 15:10 ` [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Ludovic Courtès
  3 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2016-10-16  1:55 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/python.scm (python-s3transfer, python2-s3transfer): New
variable.
---
 gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6a81455..900e6ae 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -11030,3 +11030,34 @@ with an associated set of resolve methods that know how to fetch data.")
 provide extendible implementations of common aspects of a cloud so that you can
 focus on building massively scalable web applications.")
     (license license:expat)))
+
+(define-public python-s3transfer
+  (package
+    (name "python-s3transfer")
+    (version "0.1.8")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "s3transfer" version))
+              (sha256
+               (base32
+                "1jivjkp3xqif9gzr5fiq28jsskmh50vzzd7ldsb4rbyiw1iyv3hy"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-docutils" ,python-docutils)))
+    (inputs
+     `(("python-botocore" ,python-botocore)))
+    (synopsis "Amazon S3 Transfer Manager")
+    (description "S3transfer is a Python library for managing Amazon S3
+transfers.")
+    (home-page "https://github.com/boto/s3transfer")
+    (license license:asl2.0)
+    (properties `((python2-variant . ,(delay python2-s3transfer))))))
+
+(define-public python2-s3transfer
+  (let ((base (package-with-python2 (strip-python2-variant python-s3transfer))))
+    (package
+      (inherit base)
+      (native-inputs
+       `(("python2-futures" ,python2-futures)
+         ("python2-setuptools" ,python2-setuptools)
+         ,@(package-native-inputs base))))))
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] gnu: awscli: Update to 1.11.5.
  2016-10-16  1:54 [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Leo Famulari
  2016-10-16  1:54 ` [PATCH 2/4] gnu: python-botocore: Update to 1.4.62 Leo Famulari
  2016-10-16  1:55 ` [PATCH 3/4] gnu: Add python-s3transfer Leo Famulari
@ 2016-10-16  1:55 ` Leo Famulari
  2016-10-19 15:10 ` [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Ludovic Courtès
  3 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2016-10-16  1:55 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/python.scm (awscli): Update to 1.11.5.
[source]: Use pypi-uri.
[inputs]: Add python-s3transfer.
---
 gnu/packages/python.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 900e6ae..3694309 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7909,16 +7909,14 @@ interface to the Amazon Web Services (AWS) API.")
 (define-public awscli
   (package
    (name "awscli")
-   (version "1.9.17")
+   (version "1.11.5")
    (source
     (origin
      (method url-fetch)
-     (uri (string-append
-           "https://pypi.python.org/packages/source/a/awscli/awscli-"
-           version ".tar.gz"))
+     (uri (pypi-uri name version))
      (sha256
       (base32
-       "1nj7jqvlpq57hfhby1njsbf8303gapa3njc4dramr6p3ffzvfi2i"))))
+       "0lclasm0wnayd3b8zl9l91i32nbgrhh0ncf9lksss4cv0myfwmfg"))))
    (build-system python-build-system)
    (inputs
     `(("python-colorama" ,python-colorama)
@@ -7930,7 +7928,8 @@ interface to the Amazon Web Services (AWS) API.")
       ("python-sphinx" ,python-sphinx)
       ("python-tox" ,python-tox)
       ("python-wheel" ,python-wheel)
-      ("python-botocore" ,python-botocore)))
+      ("python-botocore" ,python-botocore)
+      ("python-s3transfer" ,python-s3transfer)))
    (home-page "http://aws.amazon.com/cli/")
    (synopsis "Command line client for AWS")
    (description "AWS CLI provides a unified command line interface to the
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/4] gnu: python-rsa: Update to 3.4.2.
  2016-10-16  1:54 [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Leo Famulari
                   ` (2 preceding siblings ...)
  2016-10-16  1:55 ` [PATCH 4/4] gnu: awscli: Update to 1.11.5 Leo Famulari
@ 2016-10-19 15:10 ` Ludovic Courtès
  2016-10-19 17:13   ` Leo Famulari
  3 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2016-10-19 15:10 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

Hi Leo,

I haven’t built the packages but the 4 patches look good to me.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/4] gnu: python-rsa: Update to 3.4.2.
  2016-10-19 15:10 ` [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Ludovic Courtès
@ 2016-10-19 17:13   ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2016-10-19 17:13 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

On Wed, Oct 19, 2016 at 05:10:03PM +0200, Ludovic Courtès wrote:
> Hi Leo,
> 
> I haven’t built the packages but the 4 patches look good to me.

Okay, pushed!

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-10-19 17:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-16  1:54 [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Leo Famulari
2016-10-16  1:54 ` [PATCH 2/4] gnu: python-botocore: Update to 1.4.62 Leo Famulari
2016-10-16  1:55 ` [PATCH 3/4] gnu: Add python-s3transfer Leo Famulari
2016-10-16  1:55 ` [PATCH 4/4] gnu: awscli: Update to 1.11.5 Leo Famulari
2016-10-19 15:10 ` [PATCH 1/4] gnu: python-rsa: Update to 3.4.2 Ludovic Courtès
2016-10-19 17:13   ` Leo Famulari

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).