Skip to content

Commit

Permalink
Address reviewer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
climbfuji committed Oct 3, 2023
1 parent 1692609 commit 8ef2269
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
24 changes: 12 additions & 12 deletions var/spack/repos/builtin/packages/awscli-v2/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from spack.package import *


class AwscliV2(AutotoolsPackage):
class AwscliV2(PythonPackage):
"""This package provides a unified command line interface to Amazon Web Services."""

homepage = "https://docs.aws.amazon.com/cli"
Expand All @@ -19,14 +19,14 @@ class AwscliV2(AutotoolsPackage):
depends_on("[email protected]:", type=("build", "run"))
depends_on("[email protected]:3.8.0", type=("build"))
depends_on("py-pip@22:23", type=("build"))
depends_on("[email protected]:0.4.6")
depends_on("[email protected]:0.19")
depends_on("[email protected]:40.0.1")
depends_on("[email protected]:0.17.21")
depends_on("[email protected]:0.2.7")
depends_on("[email protected]:3.0.38")
depends_on("[email protected]:1.8")
depends_on("[email protected]:0.16.16")
depends_on("[email protected]:2")
depends_on("[email protected]:1.0")
depends_on("[email protected]:1.26")
depends_on("[email protected]:0.4.6", type=("build", "run"))
depends_on("[email protected]:0.19", type=("build", "run"))
depends_on("[email protected]:40.0.1", type=("build", "run"))
depends_on("[email protected]:0.17.21", type=("build", "run"))
depends_on("[email protected]:0.2.7", type=("build", "run"))
depends_on("[email protected]:3.0.38", type=("build", "run"))
depends_on("[email protected]:1.8", type=("build", "run"))
depends_on("py-[email protected]:0.16.16", type=("build", "run"))
depends_on("[email protected]:2", type=("build", "run"))
depends_on("[email protected]:1.0", type=("build", "run"))
depends_on("[email protected]:1.26", type=("build", "run"))
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from spack.package import *


class Awscrt(PythonPackage):
class PyAwscrt(PythonPackage):
"""Python 3 bindings for the AWS Common Runtime."""

homepage = "https://docs.aws.amazon.com/sdkref/latest/guide/common-runtime.html"
Expand All @@ -16,5 +16,4 @@ class Awscrt(PythonPackage):

version("0.16.16", sha256="13075df2c1d7942fe22327b6483274517ee0f6ae765c4e6b6ae9ef5b4c43a827")

depends_on("[email protected]:", type=("build", "run"))
depends_on("py-setuptools", type=("build"))

0 comments on commit 8ef2269

Please sign in to comment.