diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-07-02 11:59:42 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-07-03 23:41:04 -0400 |
commit | 92f976404b7f82c97996ffce94ca2d20be2dcbda (patch) | |
tree | 13e70685abee335bc2b0d3bb7b1370921de56c1d | |
parent | b8f2edd39af6b7ac4461158b0d0382e88e93d6f1 (diff) | |
download | meta-virtualization-92f976404b7f82c97996ffce94ca2d20be2dcbda.tar.gz |
podman-compose: remove pypi inherit to fix do_fetch
* now when pypi uses SRC_URI_prepend since:
https://git.openembedded.org/openembedded-core/commit/?id=8f17b8bce85efb0e9a7e15d0b98a5cf7b6bd9750
both entries end in SRC_URI (because of delayed nature of prepend):
https://files.pythonhosted.org/packages/source/p/podman-compose/podman-compose-0.1.5.tar.gz
git://github.com/containers/podman-compose.git
causing:
ERROR: podman-compose-0.1.5-r0 do_fetch: No checksum specified for '/OE/build/oe-core/downloads/podman-compose-0.1.5.tar.gz', please add at least one to the recipe:
SRC_URI[sha256sum] = "fb229362f188980ea3fbdee2a25d0a2dd6a0b886d925d5213e22e09f1062ebe9"
ERROR: podman-compose-0.1.5-r0 do_fetch: Fetcher failure for URL: 'https://files.pythonhosted.org/packages/source/p/podman-compose/podman-compose-0.1.5.tar.gz'. Missing SRC_URI checksum
ERROR: Logfile of failure stored in: /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/podman-compose/0.1.5-r0/temp/log.do_fetch.55855
drop pypi inherit to restore the previous SRC_URI with just the git:// entry.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/podman-compose/podman-compose_0.1.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-containers/podman-compose/podman-compose_0.1.5.bb b/recipes-containers/podman-compose/podman-compose_0.1.5.bb index bf91705a..1b91a92c 100644 --- a/recipes-containers/podman-compose/podman-compose_0.1.5.bb +++ b/recipes-containers/podman-compose/podman-compose_0.1.5.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "An implementation of docker-compose with podman backend" | |||
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" | 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
4 | 4 | ||
5 | inherit setuptools3 pypi | 5 | inherit setuptools3 |
6 | 6 | ||
7 | SRC_URI = "git://github.com/containers/podman-compose.git;branch=devel" | 7 | SRC_URI = "git://github.com/containers/podman-compose.git;branch=devel" |
8 | 8 | ||