* [bug#51306] [PATCH] gnu: docker-compose: Update to 1.29.2
@ 2021-10-20 14:59 Olivier Dion via Guix-patches via
2021-10-27 22:41 ` bug#51306: " Ludovic Courtès
0 siblings, 1 reply; 5+ messages in thread
From: Olivier Dion via Guix-patches via @ 2021-10-20 14:59 UTC (permalink / raw)
To: 51306; +Cc: Olivier Dion
* gnu/packages/docker.scm (docker-compose): Update to 1.29.2.
---
gnu/packages/docker.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index 8bac1b89ce..9ab9e86c21 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -7,6 +7,7 @@
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
;;; Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2021 Olivier Dion <olivier.dion@polymtl.ca>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -106,14 +107,14 @@ (define-public python-dockerpty
(define-public docker-compose
(package
(name "docker-compose")
- (version "1.25.4")
+ (version "1.29.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "docker-compose" version))
(sha256
(base32
- "1ww8ckpj3n5jdg63qvmiqx3gk0fsrnynnnqj17fppymbwjzf5fps"))))
+ "1dq9kfak61xx7chjrzmkvbw9mvj9008k7g8q7mwi4x133p9dk32c"))))
(build-system python-build-system)
;; TODO: Tests require running Docker daemon.
(arguments '(#:tests? #f))
--
2.33.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#51306: [PATCH] gnu: docker-compose: Update to 1.29.2
2021-10-20 14:59 [bug#51306] [PATCH] gnu: docker-compose: Update to 1.29.2 Olivier Dion via Guix-patches via
@ 2021-10-27 22:41 ` Ludovic Courtès
2021-10-28 0:46 ` [bug#51306] " Olivier Dion via Guix-patches via
0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2021-10-27 22:41 UTC (permalink / raw)
To: Olivier Dion; +Cc: 51306-done
Olivier Dion <olivier.dion@polymtl.ca> skribis:
> * gnu/packages/docker.scm (docker-compose): Update to 1.29.2.
Applied, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#51306] [PATCH] gnu: docker-compose: Update to 1.29.2
2021-10-27 22:41 ` bug#51306: " Ludovic Courtès
@ 2021-10-28 0:46 ` Olivier Dion via Guix-patches via
2021-10-30 14:01 ` Ludovic Courtès
0 siblings, 1 reply; 5+ messages in thread
From: Olivier Dion via Guix-patches via @ 2021-10-28 0:46 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 51306-done
On Thu, 28 Oct 2021, Ludovic Courtès <ludo@gnu.org> wrote:
> Olivier Dion <olivier.dion@polymtl.ca> skribis:
>
>> * gnu/packages/docker.scm (docker-compose): Update to 1.29.2.
>
> Applied, thanks!
>
> Ludo’.
Note that I just tested, and python-dotenv is missing. After adding it,
Pypi docker version is 3 major versions too old for docker-compose.
Even after bumping it, there's also many other nightmares with
pkg_resources throwing `DistributionNotFound`.
There's probably many things to fixe and I think it would be best to
revert this patch.
Sorry for the inconvenience.
Regards,
Olivier
--
Olivier Dion
Polymtl
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#51306] [PATCH] gnu: docker-compose: Update to 1.29.2
2021-10-28 0:46 ` [bug#51306] " Olivier Dion via Guix-patches via
@ 2021-10-30 14:01 ` Ludovic Courtès
2021-10-30 15:30 ` Olivier Dion via Guix-patches via
0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2021-10-30 14:01 UTC (permalink / raw)
To: Olivier Dion; +Cc: 51306-done
Hi,
Olivier Dion <olivier.dion@polymtl.ca> skribis:
> On Thu, 28 Oct 2021, Ludovic Courtès <ludo@gnu.org> wrote:
>> Olivier Dion <olivier.dion@polymtl.ca> skribis:
>>
>>> * gnu/packages/docker.scm (docker-compose): Update to 1.29.2.
>>
>> Applied, thanks!
>>
>> Ludo’.
>
> Note that I just tested, and python-dotenv is missing. After adding it,
> Pypi docker version is 3 major versions too old for docker-compose.
> Even after bumping it, there's also many other nightmares with
> pkg_resources throwing `DistributionNotFound`.
Oh, too bad this isn’t caught at build time.
> There's probably many things to fixe and I think it would be best to
> revert this patch.
OK, done (will push shortly).
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#51306] [PATCH] gnu: docker-compose: Update to 1.29.2
2021-10-30 14:01 ` Ludovic Courtès
@ 2021-10-30 15:30 ` Olivier Dion via Guix-patches via
0 siblings, 0 replies; 5+ messages in thread
From: Olivier Dion via Guix-patches via @ 2021-10-30 15:30 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 51306-done
On Sat, 30 Oct 2021, Ludovic Courtès <ludo@gnu.org> wrote:
> Hi,
>
> Olivier Dion <olivier.dion@polymtl.ca> skribis:
>
>> On Thu, 28 Oct 2021, Ludovic Courtès <ludo@gnu.org> wrote:
>>> Olivier Dion <olivier.dion@polymtl.ca> skribis:
>>>
>>>> * gnu/packages/docker.scm (docker-compose): Update to 1.29.2.
>>>
>>> Applied, thanks!
>>>
>>> Ludo’.
>>
>> Note that I just tested, and python-dotenv is missing. After adding it,
>> Pypi docker version is 3 major versions too old for docker-compose.
>> Even after bumping it, there's also many other nightmares with
>> pkg_resources throwing `DistributionNotFound`.
>
> Oh, too bad this isn’t caught at build time.
>
>> There's probably many things to fixe and I think it would be best to
>> revert this patch.
>
> OK, done (will push shortly).
No need. See ad39268cdf075f4c4eeb87ed78ce46ca6f817675 :-)
>
> Ludo’.
>
--
Olivier Dion
Polymtl
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-30 15:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-20 14:59 [bug#51306] [PATCH] gnu: docker-compose: Update to 1.29.2 Olivier Dion via Guix-patches via
2021-10-27 22:41 ` bug#51306: " Ludovic Courtès
2021-10-28 0:46 ` [bug#51306] " Olivier Dion via Guix-patches via
2021-10-30 14:01 ` Ludovic Courtès
2021-10-30 15:30 ` Olivier Dion via Guix-patches via
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.