[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70112] [PATCH 07/11] gnu: Add podman-compose.
From: |
Tomas Volf |
Subject: |
[bug#70112] [PATCH 07/11] gnu: Add podman-compose. |
Date: |
Sun, 31 Mar 2024 20:35:04 +0200 |
* gnu/packages/containers.scm (podman-compose): New variable.
Change-Id: Ieb5ee4b6e82464599a17ec950be8a7dbb2efa842
---
gnu/packages/containers.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index 36948cf5e2..faea15b8c4 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -34,6 +34,7 @@ (define-module (gnu packages containers)
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
#:use-module (guix build-system meson)
+ #:use-module (guix build-system python)
#:use-module (guix utils)
#:use-module (gnu packages admin)
#:use-module (gnu packages autotools)
@@ -49,6 +50,7 @@ (define-module (gnu packages containers)
#:use-module (gnu packages python)
#:use-module (gnu packages networking)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python-xyz)
#:use-module (gnu packages rust-apps)
#:use-module (gnu packages selinux)
#:use-module (gnu packages version-control)
@@ -532,6 +534,34 @@ (define-public podman
packaged.")
(license license:asl2.0)))
+(define-public podman-compose
+ (package
+ (name "podman-compose")
+ (version "1.0.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/containers/podman-compose";)
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "11dwpifkm20vyi6r3fgmiiqc01mpm4r8l0p5gfh0bawi2gklrhsf"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:tests? #f))
+ (inputs (list python-dotenv
+ python-pyyaml))
+ (home-page "https://github.com/containers/podman-compose";)
+ (synopsis "Implementation of @url{https://compose-spec.io/,,Compose Spec}
+with @code{podman} backend")
+ (description "Provides an implementation of
+@url{https://compose-spec.io/,,Compose Spec} for @code{podman} focused on
+being rootless and not requiring any daemon to be running.")
+ (license license:gpl2)))
+
(define-public buildah
(package
(name "buildah")
--
2.41.0
- [bug#70112] [PATCH 00/11] Update container tooling (podman, buildah), Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 02/11] gnu: podman: Drop obsolete comment., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 03/11] gnu: podman: Update to 5.0.0., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 05/11] gnu: passt: Update to 2024_03_20.71dd405., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 01/11] gnu: crun: Update to 1.14.4., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 04/11] gnu: conmon: Update to 2.1.10., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 06/11] gnu: Add catatonit., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 07/11] gnu: Add podman-compose.,
Tomas Volf <=
- [bug#70112] [PATCH 10/11] gnu: buildah: Update to 1.35.3., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 08/11] gnu: gvisor-tap-vsock: Remove references to go., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 11/11] gnu: buildah: Switch to gnu-build-system., Tomas Volf, 2024/03/31
- [bug#70112] [PATCH 09/11] gnu: podman: Revamp the package., Tomas Volf, 2024/03/31