Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: python3-docker-compose-1.29.2
@ 2024-03-21 19:01 SpidFightFR
  2024-03-21 19:10 ` fanyx
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: SpidFightFR @ 2024-03-21 19:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 946 bytes --]

There is a new pull request by SpidFightFR against master on the void-packages repository

https://github.com/SpidFightFR/void-packages python-docker-compose
https://github.com/void-linux/void-packages/pull/49440

New package: python3-docker-compose-1.29.2
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**


#### Local build testing
- I built this PR locally for my native architecture, (x64-GlibC)

Hey guys, just a new little package: python3-docker-compose.

Funny side note: i made the template cuz i needed that package for a personal project lol :smile: 

A patch file from https://github.com/void-linux/void-packages/pull/49440.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-docker-compose-49440.patch --]
[-- Type: text/x-diff, Size: 1489 bytes --]

From a11543490170b4ece18e85b7039a746f80a60516 Mon Sep 17 00:00:00 2001
From: SpidFightFR <spidfight@swisscows.email>
Date: Thu, 21 Mar 2024 19:57:14 +0100
Subject: [PATCH] New package: python3-docker-compose-1.29.2

---
 srcpkgs/python3-docker-compose/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/python3-docker-compose/template

diff --git a/srcpkgs/python3-docker-compose/template b/srcpkgs/python3-docker-compose/template
new file mode 100644
index 00000000000000..8c514fab429b50
--- /dev/null
+++ b/srcpkgs/python3-docker-compose/template
@@ -0,0 +1,15 @@
+# Template file for 'python3-docker-compose'
+pkgname=python3-docker-compose
+version=1.29.2
+revision=1
+build_style=python3-module
+make_check_target="tests/unit" # other tests fail due to needing a running docker daemon
+hostmakedepends="python3-setuptools python3-yaml python3-dotenv python3-jsonschema python3-distro python3-docopt python3-texttable python3-ddt python3-dockerpty"
+depends="python3-requests python3-websocket-client python3-paramiko python3-docker"
+checkdepends="${depends} python3-pytest python3-pytest-timeout python3-pytest-cov"
+short_desc="Python3 library for the Docker Compose"
+maintainer="SpidFightFR <spidfight@swisscows.email>"
+license="Apache-2.0"
+homepage="https://github.com/docker/compose"
+distfiles="${PYPI_SITE}/d/docker-compose/docker-compose-${version}.tar.gz"
+checksum=4c8cd9d21d237412793d18bd33110049ee9af8dab3fe2c213bbd0733959b09b7

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package: python3-docker-compose-1.29.2
  2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
@ 2024-03-21 19:10 ` fanyx
  2024-03-21 19:37 ` SpidFightFR
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: fanyx @ 2024-03-21 19:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 207 bytes --]

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49440#issuecomment-2013382225

Comment:
why not just use `docker compose` from the official implementation?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package: python3-docker-compose-1.29.2
  2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
  2024-03-21 19:10 ` fanyx
@ 2024-03-21 19:37 ` SpidFightFR
  2024-03-21 19:39 ` fanyx
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: SpidFightFR @ 2024-03-21 19:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 369 bytes --]

New comment by SpidFightFR on void-packages repository

https://github.com/void-linux/void-packages/pull/49440#issuecomment-2013491975

Comment:
> why not just use `docker compose` from the official implementation?

Good question.
I used ansible for my project, and ansible doens't quite like the default implementation.
It seeks a python3 module docker compose...

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package: python3-docker-compose-1.29.2
  2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
  2024-03-21 19:10 ` fanyx
  2024-03-21 19:37 ` SpidFightFR
@ 2024-03-21 19:39 ` fanyx
  2024-03-21 19:42 ` SpidFightFR
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: fanyx @ 2024-03-21 19:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 399 bytes --]

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49440#issuecomment-2013502340

Comment:
https://docs.ansible.com/ansible/latest/collections/community/docker/docker_compose_v2_module.html#ansible-collections-community-docker-docker-compose-v2-module

there is a community.docker module that has support for the official `docker compose v2` plugin

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Closed]: New package: python3-docker-compose-1.29.2
  2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
                   ` (3 preceding siblings ...)
  2024-03-21 19:42 ` SpidFightFR
@ 2024-03-21 19:42 ` SpidFightFR
  2024-03-21 19:45 ` SpidFightFR
  5 siblings, 0 replies; 7+ messages in thread
From: SpidFightFR @ 2024-03-21 19:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 773 bytes --]

There's a closed pull request on the void-packages repository

New package: python3-docker-compose-1.29.2
https://github.com/void-linux/void-packages/pull/49440

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**


#### Local build testing
- I built this PR locally for my native architecture, (x64-GlibC)

Hey guys, just a new little package: python3-docker-compose.

Funny side note: i made the template cuz i needed that package for a personal project lol :smile: 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package: python3-docker-compose-1.29.2
  2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
                   ` (2 preceding siblings ...)
  2024-03-21 19:39 ` fanyx
@ 2024-03-21 19:42 ` SpidFightFR
  2024-03-21 19:42 ` [PR PATCH] [Closed]: " SpidFightFR
  2024-03-21 19:45 ` SpidFightFR
  5 siblings, 0 replies; 7+ messages in thread
From: SpidFightFR @ 2024-03-21 19:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 557 bytes --]

New comment by SpidFightFR on void-packages repository

https://github.com/void-linux/void-packages/pull/49440#issuecomment-2013510795

Comment:
> https://docs.ansible.com/ansible/latest/collections/community/docker/docker_compose_v2_module.html#ansible-collections-community-docker-docker-compose-v2-module
> 
> there is a community.docker module that has support for the official `docker compose v2` plugin

ooh... neat!
Sorry i'm new to ansible stuff, i've mainly stick to python-related stuff...
Imma test this out ASAP. Thanks for the heads up !

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: New package: python3-docker-compose-1.29.2
  2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
                   ` (4 preceding siblings ...)
  2024-03-21 19:42 ` [PR PATCH] [Closed]: " SpidFightFR
@ 2024-03-21 19:45 ` SpidFightFR
  5 siblings, 0 replies; 7+ messages in thread
From: SpidFightFR @ 2024-03-21 19:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 220 bytes --]

New comment by SpidFightFR on void-packages repository

https://github.com/void-linux/void-packages/pull/49440#issuecomment-2013521326

Comment:
> No worries! Good luck out there o/

Thank you. It means a lot! :pray: 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-03-21 19:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-21 19:01 [PR PATCH] New package: python3-docker-compose-1.29.2 SpidFightFR
2024-03-21 19:10 ` fanyx
2024-03-21 19:37 ` SpidFightFR
2024-03-21 19:39 ` fanyx
2024-03-21 19:42 ` SpidFightFR
2024-03-21 19:42 ` [PR PATCH] [Closed]: " SpidFightFR
2024-03-21 19:45 ` SpidFightFR

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).