mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

The major changes include: d4451659 Bump 1.26.0 3d94f442 Bump 1.26.0-rc5 1386a855 Merge pull request #7485 from ulyssessouza/fix-https-daemon 8034c96d Bump docker-py 48d09369 Fix flake8 errors 28bf47ce Pin wcwidth==0.1.9 d279b7a8 Bump 1.26.0-rc4 83371df2 Merge branch 'master' into 1.26.x 9c5351cf Merge pull request #7389 from ulyssessouza/general-bumps-for-1_26 836e2b7c General bumps 266d287e Merge pull request #7390 from ulyssessouza/remove-unused-resources d64f3f39 Remove unused files 4e310a94 Merge pull request #7386 from ulyssessouza/bump-python-dotenv-1_13_0 d52b51e8 Bump python-dotenv from 0.11.0 to 0.13.0 64a6a48b Merge pull request #7345 from docker/dependabot/pip/certifi-2020.4.5.1 0979c7a1 Merge pull request #7380 from joehattori/simplify-code ce782b59 Simplify code in compose/config/config.py b7d6dc79 Bump certifi from 2019.11.28 to 2020.4.5.1 c22a2510 Merge pull request #7374 from ulyssessouza/fix-distro-guess a62a1e1d Add "distro" package afc5d205 Merge pull request #7371 from ulyssessouza/bump-openssl-111f 4d2afc07 Merge pull request #7372 from ulyssessouza/update-changelog Have verified on arm/arm64/x86_64 against: https://docs.docker.com/compose/gettingstarted Signed-off-by: Ming Liu <ming.liu@toradex.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
42 lines
1.2 KiB
BlitzBasic
42 lines
1.2 KiB
BlitzBasic
SUMMARY = "Multi-container orchestration for Docker"
|
|
HOMEPAGE = "https://www.docker.com/"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[md5sum] = "f7d54de5db1f17322c09db8157bd160f"
|
|
SRC_URI[sha256sum] = "7e836102d139aca667d6af53f0f4d942c9459ec24d6dd4f0203d74359b0fd311"
|
|
|
|
SRC_URI += "file://0001-setup.py-remove-maximum-version-requirements.patch \
|
|
file://0001-setup.py-import-fastentrypoints.patch \
|
|
"
|
|
|
|
DEPENDS += "${PYTHON_PN}-fastentrypoints-native"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
${PYTHON_PN}-cached-property \
|
|
${PYTHON_PN}-certifi \
|
|
${PYTHON_PN}-chardet \
|
|
${PYTHON_PN}-colorama \
|
|
${PYTHON_PN}-distro \
|
|
${PYTHON_PN}-docker \
|
|
${PYTHON_PN}-docker-pycreds \
|
|
${PYTHON_PN}-dockerpty \
|
|
${PYTHON_PN}-docopt \
|
|
${PYTHON_PN}-dotenv \
|
|
${PYTHON_PN}-fcntl \
|
|
${PYTHON_PN}-idna \
|
|
${PYTHON_PN}-jsonschema \
|
|
${PYTHON_PN}-misc \
|
|
${PYTHON_PN}-paramiko \
|
|
${PYTHON_PN}-pyyaml \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-six \
|
|
${PYTHON_PN}-terminal \
|
|
${PYTHON_PN}-texttable \
|
|
${PYTHON_PN}-urllib3 \
|
|
${PYTHON_PN}-wcwidth \
|
|
${PYTHON_PN}-websocket-client \
|
|
"
|