diff options
Diffstat (limited to 'recipes-containers/podman-compose/podman-compose_git.bb')
-rw-r--r-- | recipes-containers/podman-compose/podman-compose_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes-containers/podman-compose/podman-compose_git.bb b/recipes-containers/podman-compose/podman-compose_git.bb new file mode 100644 index 00000000..7451dffb --- /dev/null +++ b/recipes-containers/podman-compose/podman-compose_git.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "An implementation of docker-compose with podman backend" | ||
2 | LICENSE = "GPL-2.0-only" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
4 | |||
5 | inherit setuptools3 | ||
6 | |||
7 | PV = "1.3.0+git" | ||
8 | SRC_URI = "git://github.com/containers/podman-compose.git;branch=main;protocol=https" | ||
9 | |||
10 | SRCREV = "4d899edeb3d0622a986d90a6b2d7356aa550723e" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | DEPENDS += "python3-pyyaml-native" | ||
15 | |||
16 | RDEPENDS:${PN} += "\ | ||
17 | python3-asyncio \ | ||
18 | python3-dotenv \ | ||
19 | python3-json \ | ||
20 | python3-pyyaml \ | ||
21 | python3-unixadmin \ | ||
22 | " | ||