[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74345] [PATCH v2 04/14] gnu: awscli: Update to 1.35.20.
From: |
Sharlatan Hellseher |
Subject: |
[bug#74345] [PATCH v2 04/14] gnu: awscli: Update to 1.35.20. |
Date: |
Thu, 14 Nov 2024 11:52:45 +0000 |
* gnu/packages/python-web.scm (awscli): Update to 1.35.20. Use
G-expressions.
[source]: Swap to git checkout as it contains tests.
[build-system]: Swap to pyproject-build-system.
[phases]: Delete use-recent-pyyaml phase; add set-invorenment phase.
[inputs]: Remove groff, python-colorama-for-awscli, and python-pyyaml-5;
add groff-minimal, python-colorama, and python-pyyaml.
[native-inputs]: Add python-pytest, python-pytest-xdist,
python-setuptools, and python-wheel.
Change-Id: Ib7542a783fe65bb93d9f4cbfb89241190813fde4
---
gnu/packages/python-web.scm | 81 ++++++++++++++++++++++---------------
1 file changed, 49 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index b18248e472..1421936eb6 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4136,47 +4136,64 @@ (define-public awscli
(package
;; Note: updating awscli typically requires updating botocore as well.
(name "awscli")
- (version "1.22.90")
+ (version "1.35.20")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri name version))
+ (method git-fetch) ; no tests in PyPI release
+ (uri (git-reference
+ (url "https://github.com/aws/aws-cli")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "0ky4ax4xh7s8w1l0hwc7w9ii8afvh9nib3kz09qhiqdinxzrlv54"))))
- (build-system python-build-system)
+ (base32 "1hj1hj374hdwb8wq2xw20ywjyrv37s65nfsjzs6k9wa0f629alkf"))))
+ (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'\\)") "")
- (("cmdline = \\['groff'")
- (string-append "cmdline = ['"
- (search-input-file inputs "bin/groff")
- "'"))))))))
+ (list
+ #:test-flags
+ #~(list "--numprocesses" "auto"
+ ;; Tests require networking.
+ "--ignore" "tests/integration"
+ ;; It strugles to set PYTHONPATH.
+ ;;
+ ;; AssertionError: 'argument operation: Invalid choice, valid
+ ;; choices are:' not found in '
+ "-k" (string-append "not test_subscribe_to_shard_removed"
+ " and not test_start_conversation_removed"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-reference-to-groff
+ (lambda _
+ ;; XXX: Consider to use wrap-program instead, it tries to parse
+ ;; the PATH.
+ (substitute* "awscli/help.py"
+ (("if self._exists_on_path\\('groff'\\):") "if 'groff':")
+ (("raise ExecutableNotFoundError\\('groff'\\)") "")
+ (("cmdline = \\['groff'")
+ (format #f "cmdline = ['~a/bin/groff'"
+ #$(this-package-input "groff-minimal"))))))
+ (add-before 'check 'set-environment
+ (lambda _
+ ;; PermissionError: [Errno 13] Permission denied:
+ ;; '/homeless-shelter'
+ (setenv "HOME" "/tmp"))))))
+ (native-inputs
+ (list python-pytest
+ python-pytest-xdist
+ python-setuptools
+ python-wheel))
(inputs
- (list groff
- python-colorama-for-awscli
+ (list groff-minimal
python-botocore
- python-s3transfer
+ python-colorama
python-docutils-0.15
- python-pyyaml-5
- python-rsa))
+ python-pyyaml
+ python-rsa
+ python-s3transfer))
(home-page "https://aws.amazon.com/cli/")
(synopsis "Command line client for AWS")
- (description "AWS CLI provides a unified command line interface to the
-Amazon Web Services (AWS) API.")
+ (description
+ "AWS CLI provides a unified command line interface to the Amazon Web
+Services (AWS) API.")
(license license:asl2.0)))
(define-public awscli-2
--
2.46.0
- [bug#74345] [PATCH 9/9] gnu: Add awscli-2., (continued)
- [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
- [bug#74345] [PATCH v2 06/14] gnu: Remove python-colorama-for-awscli., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 01/14] gnu: python-botocore: Update to 1.35.54., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 13/14] gnu: Add python-awscrt-for-awscli., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 09/14] gnu: awscli: Update to 1.36.0., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 11/14] gnu: awscli-2: Update to 2.3.1., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 04/14] gnu: awscli: Update to 1.35.20.,
Sharlatan Hellseher <=
- [bug#74345] [PATCH v2 07/14] gnu: python-botocore: Update to 1.35.59., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 03/14] gnu: python-boto3: Update to 1.35.54., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 14/14] gnu: Add awscli-2., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 10/14] gnu: awscli-2: Add missing inputs., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 02/14] gnu: python-s3transfer: Update to 0.10.3., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 12/14] gnu: Add python-awscrt., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 05/14] gnu: Remove python-boto., Sharlatan Hellseher, 2024/11/14
- [bug#74345] [PATCH v2 08/14] gnu: python-boto3: Update to 1.35.59., Sharlatan Hellseher, 2024/11/14
- [bug#74345] Update awscli, Sharlatan Hellseher, 2024/11/16