Edit

IABSD.fr/ports/sysutils/awscli/patches

Branch :

  • Show log

    Commit

  • Author : ajacoutot
    Date : 2026-09-16 00:08:28
    Hash : 5bfbc076
    Message : Drop v1 of the aws-cli: it enteref maintenance mode on July 15, 2026 and will reach end-of-support on July 15, 2027. v2 is a drop-in replacement for most use cases, and there's no point in maintaining 2 versions in tree. v1 can still be installed with pip if needed. "Yay" on the idea from sthen@ rsadowski@ joel@ (maintainer of v2)

  • patch-pyproject_toml
  • Index: pyproject.toml
    --- pyproject.toml.orig
    +++ pyproject.toml
    @@ -1,6 +1,6 @@
     [build-system]
     requires = [
    -"flit_core>=3.7.1,<3.12.1",
    +"flit_core",
     ]
     build-backend = "pep517"
     backend-path = ["backends"]
    @@ -32,20 +32,20 @@ classifiers = [
     ]
     dependencies = [
         "colorama>=0.2.5,<0.4.7",
    -    "docutils>=0.10,<0.20",
    -    "ruamel_yaml>=0.15.0,<=0.19.1",
    +    "docutils",
    +    "ruamel_yaml",
         # ruamel_yaml only requires ruamel_yaml_clib for Python versions
         # less than or equal to Python 3.10. In order to ensure we have
         # a consistent dependency closure across all Python versions,
         # we explicitly include ruamel_yaml_clib as a dependency.
    -    "ruamel_yaml_clib>=0.2.0,<=0.2.15",
    -    "prompt-toolkit>=3.0.24,<3.0.52",
    -    "distro>=1.5.0,<1.9.0",
    +    "ruamel_yaml_clib",
    +    "prompt-toolkit",
    +    "distro",
         "awscrt==0.31.2",
    -    "python-dateutil>=2.1,<=2.9.0",
    -    "jmespath>=0.7.1,<1.1.0",
    +    "python-dateutil",
    +    "jmespath",
         "urllib3>=1.25.4,<=2.6.3",
    -    "wcwidth<0.3.0",
    +    "wcwidth",
     ]
     dynamic = ["version"]