[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74345] [PATCH 4/9] gnu: awscli: Update to 1.36.0.
From: |
Ricardo Wurmus |
Subject: |
[bug#74345] [PATCH 4/9] gnu: awscli: Update to 1.36.0. |
Date: |
Wed, 13 Nov 2024 18:16:17 +0100 |
* gnu/packages/python-web.scm (awscli): Update to 1.36.0.
[build-system]: Use pyproject-build-system.
[arguments]: Remove build phase 'use-recent-pyyaml; adjust phase
'fix-reference-to-groff.
Change-Id: Ife0dd9d4439e4421275ce658e1073e487cec6e80
---
gnu/packages/python-web.scm | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index e93b32e3b1d..c4c7586e783 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4136,31 +4136,24 @@ (define-public awscli
(package
;; Note: updating awscli typically requires updating botocore as well.
(name "awscli")
- (version "1.22.90")
+ (version "1.36.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri name version))
(sha256
(base32
- "0ky4ax4xh7s8w1l0hwc7w9ii8afvh9nib3kz09qhiqdinxzrlv54"))))
- (build-system python-build-system)
+ "0jhak5bfw2mll333xgnrvaak4wh6ll4alla0mqd073nlkl0q7jcd"))))
+ (build-system pyproject-build-system)
(arguments
;; FIXME: The 'pypi' release does not contain tests.
'(#:tests? #f
#:phases
(modify-phases %standard-phases
- (add-after 'unpack 'use-recent-pyyaml
- (lambda _
- (substitute* '("awscli.egg-info/requires.txt"
- "setup.cfg"
- "setup.py")
- (("<5.5") "<=6"))))
(add-after 'unpack 'fix-reference-to-groff
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "awscli/help.py"
- (("if not self._exists_on_path\\('groff'\\):") "")
- (("raise ExecutableNotFoundError\\('groff'\\)") "")
+ (("if self._exists_on_path\\('groff'\\):") "if True:")
(("cmdline = \\['groff'")
(string-append "cmdline = ['"
(search-input-file inputs "bin/groff")
--
2.46.0
- [bug#74345] Update awscli, Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 1/9] gnu: python-s3transfer: Update to 0.10.3., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 2/9] gnu: python-botocore: Update to 1.35.59., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 4/9] gnu: awscli: Update to 1.36.0.,
Ricardo Wurmus <=
- [bug#74345] [PATCH 5/9] gnu: awscli-2: Add missing inputs., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 3/9] gnu: python-boto3: Update to 1.35.59., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 6/9] gnu: awscli-2: Update to 2.3.1., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 8/9] gnu: Add python-awscrt-for-awscli., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 7/9] gnu: Add python-awscrt., Ricardo Wurmus, 2024/11/13
- [bug#74345] [PATCH 9/9] gnu: Add awscli-2., Ricardo Wurmus, 2024/11/13
- [bug#74345] Update awscli, Sharlatan Hellseher, 2024/11/13
- [bug#74345] Update awscli, Vincent Legoll, 2024/11/13
- [bug#74345] [PATCH v2 00/14] Update awscli, Sharlatan Hellseher, 2024/11/14