Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Docker compose update
@ 2020-09-01  8:06 kartikynwa
  2020-09-03  4:36 ` kartikynwa
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: kartikynwa @ 2020-09-01  8:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kartikynwa/void-packages docker-compose-update
https://github.com/void-linux/void-packages/pull/24588

Docker compose update


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

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

From 9ecf37a0b465e1611a020c2541cbe46cc152f466 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Tue, 1 Sep 2020 12:58:30 +0530
Subject: [PATCH 1/3] New packages: python-dotenv-0.14.0, python3-dotenv-0.14.0

---
 srcpkgs/python-dotenv/template | 29 +++++++++++++++++++++++++++++
 srcpkgs/python3-dotenv         |  1 +
 2 files changed, 30 insertions(+)
 create mode 100644 srcpkgs/python-dotenv/template
 create mode 120000 srcpkgs/python3-dotenv

diff --git a/srcpkgs/python-dotenv/template b/srcpkgs/python-dotenv/template
new file mode 100644
index 00000000000..cd3787d9ba9
--- /dev/null
+++ b/srcpkgs/python-dotenv/template
@@ -0,0 +1,29 @@
+# Template file for 'python-dotenv'
+pkgname=python-dotenv
+version=0.14.0
+revision=1
+archs=noarch
+build_style=python-module
+hostmakedepends="python-setuptools python3-setuptools"
+depends="python-click"
+short_desc="Module to get and set variables in .env files (Python2)"
+maintainer="Kartik Singh <kartik.ynwa@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://github.com/theskumar/python-dotenv"
+distfiles="https://github.com/theskumar/python-dotenv/archive/v${version}.tar.gz"
+checksum=ed0ccb333acaa02a12a9510fef1909fca891e8da454ba24777b4ce407f403b5f
+
+post_install() {
+	vlicense LICENSE
+}
+
+python3-dotenv_package() {
+	archs=noarch
+	depends="python3-click"
+	short_desc="${short_desc/Python2/Python3}"
+	pkg_install() {
+		vmove usr/bin/dotenv3
+		vmove usr/lib/python3*
+		vlicense LICENSE
+	}
+}
diff --git a/srcpkgs/python3-dotenv b/srcpkgs/python3-dotenv
new file mode 120000
index 00000000000..3e338bfa253
--- /dev/null
+++ b/srcpkgs/python3-dotenv
@@ -0,0 +1 @@
+python-dotenv
\ No newline at end of file

From 2c401f85ee8b79f7b5171ca150f7f11a2c29a446 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Tue, 1 Sep 2020 13:00:42 +0530
Subject: [PATCH 2/3] python-docker, python3-docker: update to 4.3.1

---
 srcpkgs/python-docker/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index 1a325bd6c46..4d004057a37 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -1,6 +1,6 @@
 # Template file for 'python-docker'
 pkgname=python-docker
-version=4.2.0
+version=4.3.1
 revision=1
 archs=noarch
 wrksrc="docker-${version}"
@@ -13,7 +13,7 @@ maintainer="Sergi Alvarez <pancake@nopcode.org>"
 license="Apache-2.0"
 homepage="https://github.com/docker/docker-py"
 distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
-checksum=ddae66620ab5f4bce769f64bcd7934f880c8abe6aa50986298db56735d0f722e
+checksum=bad94b8dd001a8a4af19ce4becc17f41b09f228173ffe6a4e0355389eef142f2
 
 python3-docker_package() {
 	archs=noarch

From e3019b9a6097571b9497c85d5ae496ae8dd0ec13 Mon Sep 17 00:00:00 2001
From: Kartik Singh <kartik.ynwa@gmail.com>
Date: Tue, 1 Sep 2020 13:01:29 +0530
Subject: [PATCH 3/3] docker-compose: update to 2.26.1

---
 srcpkgs/docker-compose/template | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index d381a1091d0..ad6b6ebff29 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,6 +1,6 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
-version=1.25.5
+version=1.26.2
 revision=1
 archs=noarch
 wrksrc="compose-${version}"
@@ -9,19 +9,15 @@ hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-jsonschema python3-docker>=3.7.0
  python3-dockerpty python3-websocket-client python3-requests python3-docopt
  python3-yaml python3-six python3-texttable python3-cached-property
- python3-paramiko>=2.4.2"
+ python3-paramiko>=2.4.2 python3-dotenv python3-distro python3-pysocks"
 short_desc="Tool to define and run multi-container Docker applications"
 maintainer="pancake <pancake@nopcode.org>"
 license="Apache-2.0"
 homepage="https://docs.docker.com/compose/"
 distfiles="https://github.com/docker/compose/archive/${version}.tar.gz"
-checksum=c04d4858b456f5806618fe7a49fadd3f1ccb8f10cf6e499bcf7fdee80a93c21a
+checksum=a4999bcb838ca9e88ff992fedd7a32ab71f97ae081696f8bf26fa1da54aaffe6
 
 
-pre_build() {
-	# relax texttable and requests upper bound
-	sed -i '/texttable/s/, < 0.10//;/requests/s/, < 2\.21//' setup.py
-}
 post_install() {
 	vinstall contrib/completion/bash/docker-compose 644 \
 		usr/share/bash-completion/completions docker-compose

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PR PATCH] docker-compose: update to 2.24.7
@ 2024-03-08 14:22 filiprojek
  2024-04-06 20:25 ` [PR PATCH] [Merged]: docker-compose: update to 2.26.1 cinerea0
  0 siblings, 1 reply; 11+ messages in thread
From: filiprojek @ 2024-03-08 14:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/filiprojek/void-packages docker-compose
https://github.com/void-linux/void-packages/pull/49192

docker-compose: update to 2.24.7
#### Testing the changes
- I tested the changes in this PR: **YES**

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


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

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

From 55238d33b7a9eb09c522ba72873d3b91b81e1a23 Mon Sep 17 00:00:00 2001
From: Filip Rojek <filip@filiprojek.cz>
Date: Fri, 8 Mar 2024 14:28:32 +0100
Subject: [PATCH] docker-compose: update to 2.24.7

---
 srcpkgs/docker-compose/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index 998bc9d07a0064..51a434d02d722a 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -1,6 +1,6 @@
 # Template file for 'docker-compose'
 pkgname=docker-compose
-version=2.24.6
+version=2.24.7
 revision=1
 build_style=go
 go_import_path="github.com/docker/compose/v2"
@@ -13,7 +13,7 @@ license="Apache-2.0"
 homepage="https://docs.docker.com/compose/"
 changelog="https://github.com/docker/compose/releases"
 distfiles="https://github.com/docker/compose/archive/refs/tags/v${version}.tar.gz"
-checksum=14fffeba19b82c8e5a9cdf6d873522a11ee4e25bbb86bbdf468795274429db70
+checksum=f671c42b2189372e2128a0abf218c04cc92693ef8960c3d26aab60bf7ca4febf
 
 post_install() {
 	vmkdir usr/libexec/docker/cli-plugins

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

end of thread, other threads:[~2024-04-06 20:25 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-01  8:06 [PR PATCH] Docker compose update kartikynwa
2020-09-03  4:36 ` kartikynwa
2020-09-03  6:39 ` [PR PATCH] [Updated] " kartikynwa
2020-09-03  6:51 ` docker-compose: update to 2.26.1 kartikynwa
2020-09-03  6:51 ` kartikynwa
2020-09-03  6:56 ` kartikynwa
2020-09-03 14:33 ` kartikynwa
2020-09-03 18:39 ` [PR PATCH] [Updated] " kartikynwa
2020-09-03 18:46 ` kartikynwa
2020-09-03 18:58 ` [PR PATCH] [Merged]: " ahesford
2024-03-08 14:22 [PR PATCH] docker-compose: update to 2.24.7 filiprojek
2024-04-06 20:25 ` [PR PATCH] [Merged]: docker-compose: update to 2.26.1 cinerea0

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).