From 32007a30e1cfff6cfc580e2644d96d21803b8799 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Thu, 16 Jun 2022 11:27:21 +0200 Subject: [PATCH] awscli: set branch parameter in SRC_URI This silences the following warning: WARNING: awscli-1.20.54-r0 do_cleanall: URL: git://github.com/aws/aws-cli.git;protocol=https does not set any branch parameter. The future default branch used by tools and repositories is uncertain and we will therefore soon require this is set in all git urls. --- recipes-support/awscli/awscli_1.20.54.bb | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes-support/awscli/awscli_1.20.54.bb diff --git a/recipes-support/awscli/awscli_1.20.54.bb b/recipes-support/awscli/awscli_1.20.54.bb new file mode 100644 index 000000000..38637f26c --- /dev/null +++ b/recipes-support/awscli/awscli_1.20.54.bb @@ -0,0 +1,29 @@ +SUMMARY = "Universal Command Line Interface for Amazon Web Services" +HOMEPAGE = "https://github.com/aws/aws-cli" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7970352423db76abb33cbe303884afbf" + +SRC_URI = "git://github.com/aws/aws-cli.git;protocol=https;branch=master" +SRCREV = "bf9bb5b60cd24b97d642646c7f7d6c17e320c576" +S = "${WORKDIR}/git" + +inherit setuptools3 + +RDEPENDS:${PN} += " \ + python3-botocore \ + python3-docutils \ + python3-s3transfer \ + python3-pyyaml \ + python3-colorama \ + python3-distro \ + python3-unixadmin \ + python3-ruamel-yaml \ + python3-prompt-toolkit \ + python3-sqlite3 \ + python3-misc \ + python3-rsa \ + python3-dateutil \ + python3-urllib3 \ + python3-jmespath \ + groff \ +"