public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-compose/
Date: Sun, 10 Apr 2022 19:01:04 +0000 (UTC)	[thread overview]
Message-ID: <1649617244.147e4b863972f25d6e2537a728a4bbc295fea6ac.williamh@gentoo> (raw)

commit:     147e4b863972f25d6e2537a728a4bbc295fea6ac
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 19:00:24 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 19:00:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=147e4b86

app-containers/docker-compose: add 2.4.1

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-containers/docker-compose/Manifest             |  2 +
 .../docker-compose/docker-compose-2.4.1.ebuild     | 50 ++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-containers/docker-compose/Manifest b/app-containers/docker-compose/Manifest
index 5b5df6d21fac..ac2ffc961d31 100644
--- a/app-containers/docker-compose/Manifest
+++ b/app-containers/docker-compose/Manifest
@@ -1,3 +1,5 @@
 DIST docker-compose-1.29.2.tar.gz 320320 BLAKE2B 2d1a6375127fa09661822f7148665161b45bbd234c93444ae31c1d926513fcbc9fb845f8af01d8f11788f24b7517bff5f6cea2a5da9ade897891f2dd728f26bd SHA512 09f2ae2ae7a17ab5fb3e22580f7a80f1a8253f7ad9fc8f29aca432911bcde46ed22030ff3073cdd7eff3d55aaba17f56e628a178ec05c3a9b4f28495d6045111
 DIST docker-compose-2.3.3-deps.tar.xz 486283624 BLAKE2B 1bb2f743ff0ee46e4b5790bc53fadd03ff9cf177c4bd8f28f435eae7f00ceecf475d78cf0a80082066a62c4e97022afaad2b13ac3bb04893914f84b0a756a2b3 SHA512 9ca0dacabe66620108c8017d5ca2bb7fb568b4edb23460d528f81ad9491dd04efb192983a590db965c26781429cba5c6be6eaa91ac51e9a7d8e6ee4adb9b4c09
 DIST docker-compose-2.3.3.tar.gz 270143 BLAKE2B 9ab2863a37402ebcb881797e1d6a170dd9557d14a8174dec4049b55f6f3c106752423ac13d9e2ec1bb95dab83df83e53747519f4ceed91f7d9a5805c630e82e0 SHA512 5986f4f54302fd552c7aeb0cdfbe8d5185744bc2a2fe6f136e1a4009b3b9f68cf7578d3b6a2acb2067ef9a889eb33d159b2daf80140315a29412bda15d2a5446
+DIST docker-compose-2.4.1-deps.tar.xz 110605892 BLAKE2B 042d84818b963c23769e039a930076355cb2ebb2d86c5f8af56f240689012ae7aeff12cf366b46f2bf0fa0799d5f7b825f726686f54db218787e91a6c308ba5f SHA512 28bb292daac3ddf1055c4dd5f0b1920dc8145636e878beaac90863fec8b86e277f6906d82753b62fc7c9f755a9246c223307fad5fb412e41c0ca11b4d60e7e0e
+DIST docker-compose-2.4.1.tar.gz 274404 BLAKE2B 346c9c527630217fdeada28e7329400a910007c5296cf4b8b7f41d90049c51c54c518f82f602b71332d9ecd91eeb65e1135aa18c37fe98ee02b99238cf7dbadb SHA512 0c7611c95955b63a4cc77a4498393c52c7107a4a6fe950dbf2d1181df8f44f682337eb6cc7814e9902551b230507b12a05d1377acac7b2342f829401f1d24651

diff --git a/app-containers/docker-compose/docker-compose-2.4.1.ebuild b/app-containers/docker-compose/docker-compose-2.4.1.ebuild
new file mode 100644
index 000000000000..3946a436a4be
--- /dev/null
+++ b/app-containers/docker-compose/docker-compose-2.4.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2018-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 go-module
+MY_PV=${PV/_/-}
+
+DESCRIPTION="Multi-container orchestration for Docker"
+HOMEPAGE="https://github.com/docker/compose"
+SRC_URI="https://github.com/docker/compose/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND=">=app-containers/docker-cli-20.10.3"
+
+S="${WORKDIR}/compose-${MY_PV}"
+
+src_prepare() {
+	default
+	# do not strip
+	sed -i -e 's/-s -w//' builder.Makefile || die
+}
+
+src_compile() {
+	emake -f builder.Makefile GIT_TAG=v${PV}
+}
+
+src_test() {
+	emake -f builder.Makefile test
+}
+
+src_install() {
+	exeinto /usr/libexec/docker/cli-plugins
+	doexe bin/docker-compose
+	dodoc README.md
+}
+
+pkg_postinst() {
+	has_version =app-containers/docker-compose-1* || return
+	ewarn
+	ewarn "docker-compose 2.x is a sub command of docker"
+	ewarn "Use 'docker compose' from the command line instead of"
+	ewarn "'docker-compose'"
+	ewarn "If you need to keep 1.x around, please run the following"
+	ewarn "command before your next --depclean"
+	ewarn "# emerge --noreplace docker-compose:0"
+}


             reply	other threads:[~2022-04-10 19:01 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-10 19:01 William Hubbs [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-28 19:09 [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-compose/ Sebastian Pipping
2025-03-08 17:05 Sam James
2025-01-14  3:15 William Hubbs
2024-12-20 16:26 William Hubbs
2024-12-20 16:17 William Hubbs
2024-11-24 18:13 Jakov Smolić
2024-11-24 16:22 Sam James
2024-10-03 17:46 Sebastian Pipping
2024-09-28 10:27 Arthur Zamarin
2024-07-02 17:52 William Hubbs
2024-06-14 12:26 Michał Górny
2024-04-12 15:49 William Hubbs
2024-03-22 20:23 Arthur Zamarin
2024-03-22 18:26 Sam James
2024-01-11 18:35 William Hubbs
2024-01-11 18:26 William Hubbs
2023-12-12 23:25 Sebastian Pipping
2023-11-05 19:35 Sebastian Pipping
2023-11-05 19:35 Sebastian Pipping
2023-10-26 19:55 William Hubbs
2023-08-13  4:58 Sam James
2023-08-13  3:21 William Hubbs
2023-08-11 16:06 William Hubbs
2023-08-11 16:06 William Hubbs
2023-08-11 15:20 William Hubbs
2023-07-08 14:05 Sebastian Pipping
2023-04-20  5:01 Sam James
2023-04-19 18:09 Arthur Zamarin
2023-04-16 16:43 Sebastian Pipping
2023-04-13  1:49 Sam James
2023-04-13  1:49 Sam James
2023-04-12 21:06 William Hubbs
2023-04-07  4:56 William Hubbs
2023-04-07  4:13 William Hubbs
2023-03-11 21:43 William Hubbs
2023-03-11  0:34 William Hubbs
2023-03-10 21:35 William Hubbs
2023-03-10  2:34 Sebastian Pipping
2022-11-15  4:10 William Hubbs
2022-11-15  4:10 William Hubbs
2022-09-30  3:41 William Hubbs
2022-09-29 15:35 William Hubbs
2022-06-13 20:27 William Hubbs
2022-06-03 17:13 William Hubbs
2022-05-02 15:23 William Hubbs
2022-03-26 17:07 Arthur Zamarin
2022-03-26  1:37 Sam James
2022-03-17 21:39 William Hubbs
2022-03-17 21:39 William Hubbs
2022-03-16 13:25 Sebastian Pipping
2022-03-15 19:24 William Hubbs
2022-03-15 19:24 William Hubbs
2022-03-15 17:24 William Hubbs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1649617244.147e4b863972f25d6e2537a728a4bbc295fea6ac.williamh@gentoo \
    --to=williamh@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox