public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/
@ 2025-01-10 10:51 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-01-10 10:51 UTC (permalink / raw
  To: gentoo-commits

commit:     6eea76af9f86d894b0aade455682f8b38fce5214
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 10 10:51:16 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 10 10:51:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eea76af

app-containers/docker-credential-helpers: add 0.8.2

Closes: https://bugs.gentoo.org/844574
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-containers/docker-credential-helpers/Manifest  |  1 +
 .../docker-credential-helpers-0.8.2.ebuild         | 50 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/app-containers/docker-credential-helpers/Manifest b/app-containers/docker-credential-helpers/Manifest
index 73b7729ba3f7..0eef5e2f8ddb 100644
--- a/app-containers/docker-credential-helpers/Manifest
+++ b/app-containers/docker-credential-helpers/Manifest
@@ -1 +1,2 @@
 DIST docker-credential-helpers-0.6.3.tar.gz 28971 BLAKE2B b50e4de0f3b126e0118f24f845a94be5e932975ab54ad6e0a52129a56109ecafb021f14986569295242cb0af4ea109d8786b8a5ca8481cc48daad14671841432 SHA512 2d15be8df134bff08eef9461348f07cd57c70c15a0ab044de2e69296c400b8c0e16198c90fd064d5ce83037d0bad57520e7524b0832b7a00e69397203dc90d10
+DIST docker-credential-helpers-0.8.2.tar.gz 283816 BLAKE2B 334ca059b619e5e3528864a99b07eea61b98083989aa8e8b619c83d781caad97fbf5f3ed60879adacf27d81e0b991a38567e1fa2bc27b9a772d86b51437a6e03 SHA512 ca04b7fe78871389c9f968b730c18e2aca2d2a818ce87c1f138efb7dafbfdea7b83c2c16504131d04c295428debee2187036e603dba711369b5de1a3993c2e8c

diff --git a/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild b/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
new file mode 100644
index 000000000000..d49feeba1dbc
--- /dev/null
+++ b/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Suite of programs to use native stores to keep Docker credentials safe"
+HOMEPAGE="https://github.com/docker/docker-credential-helpers"
+SRC_URI="https://github.com/docker/docker-credential-helpers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+IUSE="keyring pass"
+REQUIRED_USE="|| ( keyring pass )"
+RESTRICT="test"
+
+DEPEND="keyring? ( app-crypt/libsecret )"
+RDEPEND="${DEPEND}
+	pass? ( app-admin/pass )
+"
+
+src_compile() {
+	local mymakeflags=(
+		VERSION="${PV}"
+		REVISION="v${PV}"
+	)
+	use keyring && mymakeflags+=( secretservice )
+	use pass && mymakeflags+=( pass )
+	emake -j1 "${mymakeflags[@]}"
+}
+
+src_install() {
+	dobin bin/build/*
+	dodoc MAINTAINERS README.md
+}
+
+pkg_postinst() {
+	if use keyring; then
+		elog "For keyring/kwallet add:\n"
+		elog '		"credStore": "secretservice"'"\n"
+	fi
+	if use pass; then
+		elog "For 'pass' add:\n"
+		elog '		"credStore": "pass"'"\n"
+	fi
+	elog "to your ~/.docker/config.json"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/
@ 2025-01-10 10:54 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-01-10 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     a94179784fe7b384929054d165c96b8d9f3ac9b5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 10 10:52:05 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 10 10:52:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9417978

app-containers/docker-credential-helpers: add github upstream metadata

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-containers/docker-credential-helpers/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-containers/docker-credential-helpers/metadata.xml b/app-containers/docker-credential-helpers/metadata.xml
index 2f589c3c8517..238401d193a9 100644
--- a/app-containers/docker-credential-helpers/metadata.xml
+++ b/app-containers/docker-credential-helpers/metadata.xml
@@ -20,4 +20,7 @@
 			Build pass helper for the pass utility.
 		</flag>
 	</use>
+	<upstream>
+		<remote-id type="github">docker/docker-credential-helpers</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/
@ 2025-01-24 21:17 Jakov Smolić
  0 siblings, 0 replies; 6+ messages in thread
From: Jakov Smolić @ 2025-01-24 21:17 UTC (permalink / raw
  To: gentoo-commits

commit:     b7ea0c3d44c35347a885a6477e06b1739b7d1c2b
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 24 21:17:20 2025 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Jan 24 21:17:20 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ea0c3d

app-containers/docker-credential-helpers: Stabilize 0.8.2 amd64, #948205

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 .../docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild b/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
index d49feeba1dbc..c575976d4a11 100644
--- a/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
+++ b/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/docker/docker-credential-helpers/archive/v${PV}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 
 IUSE="keyring pass"
 REQUIRED_USE="|| ( keyring pass )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/
@ 2025-01-25  0:48 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2025-01-25  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     3b690d084f4c7f291a6546db4399a352a8c94e61
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 25 00:47:52 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 25 00:47:52 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b690d08

app-containers/docker-credential-helpers: Stabilize 0.8.2 arm64, #948205

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild b/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
index c575976d4a11..dfb6fe190584 100644
--- a/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
+++ b/app-containers/docker-credential-helpers/docker-credential-helpers-0.8.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/docker/docker-credential-helpers/archive/v${PV}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 arm64"
 
 IUSE="keyring pass"
 REQUIRED_USE="|| ( keyring pass )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/
@ 2025-01-26 18:37 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-01-26 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     86a5529d7b70591397bf0133ba68d307a95ba6ac
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 25 20:49:14 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 26 18:37:39 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a5529d

app-containers/docker-credential-helpers: drop 0.6.3

Closes: https://bugs.gentoo.org/844574
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-containers/docker-credential-helpers/Manifest  |  1 -
 .../docker-credential-helpers-0.6.3.ebuild         | 55 ----------------------
 2 files changed, 56 deletions(-)

diff --git a/app-containers/docker-credential-helpers/Manifest b/app-containers/docker-credential-helpers/Manifest
index 0eef5e2f8ddb..3f2764f397b8 100644
--- a/app-containers/docker-credential-helpers/Manifest
+++ b/app-containers/docker-credential-helpers/Manifest
@@ -1,2 +1 @@
-DIST docker-credential-helpers-0.6.3.tar.gz 28971 BLAKE2B b50e4de0f3b126e0118f24f845a94be5e932975ab54ad6e0a52129a56109ecafb021f14986569295242cb0af4ea109d8786b8a5ca8481cc48daad14671841432 SHA512 2d15be8df134bff08eef9461348f07cd57c70c15a0ab044de2e69296c400b8c0e16198c90fd064d5ce83037d0bad57520e7524b0832b7a00e69397203dc90d10
 DIST docker-credential-helpers-0.8.2.tar.gz 283816 BLAKE2B 334ca059b619e5e3528864a99b07eea61b98083989aa8e8b619c83d781caad97fbf5f3ed60879adacf27d81e0b991a38567e1fa2bc27b9a772d86b51437a6e03 SHA512 ca04b7fe78871389c9f968b730c18e2aca2d2a818ce87c1f138efb7dafbfdea7b83c2c16504131d04c295428debee2187036e603dba711369b5de1a3993c2e8c

diff --git a/app-containers/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild b/app-containers/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
deleted file mode 100644
index e10a2730beea..000000000000
--- a/app-containers/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Suite of programs to use native stores to keep Docker credentials safe"
-HOMEPAGE="https://github.com/docker/docker-credential-helpers"
-EGO_PN=github.com/docker/docker-credential-helpers
-
-LICENSE="MIT"
-SLOT="0"
-
-if [[ ${PV} = *9999* ]]; then
-	inherit golang-vcs
-else
-	KEYWORDS="amd64 arm64"
-	EGIT_COMMIT="v${PV}"
-	SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-	inherit golang-vcs-snapshot
-fi
-inherit golang-build
-
-IUSE="keyring pass"
-REQUIRED_USE="|| ( keyring pass )"
-RESTRICT="test"
-
-DEPEND="keyring? ( app-crypt/libsecret )"
-RDEPEND="${DEPEND}
-	pass? ( app-admin/pass )
-"
-
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-src_compile() {
-	local -x GOPATH="${WORKDIR}/${P}"
-	use keyring && emake secretservice
-	use pass && emake pass
-}
-
-src_install() {
-	dobin bin/*
-	dodoc CHANGELOG.md MAINTAINERS README.md
-}
-
-pkg_postinst() {
-	if use keyring; then
-		elog "For keyring/kwallet add:\n"
-		elog '		"credStore": "secretservice"'"\n"
-	fi
-	if use pass; then
-		elog "For 'pass' add:\n"
-		elog '		"credStore": "pass"'"\n"
-	fi
-	elog "to your ~/.docker/config.json"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/
@ 2025-03-03 13:30 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2025-03-03 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f308e4bf2de1dc5979a72c6a3425b55ab4d7a608
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  3 12:18:59 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Mar  3 13:30:14 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f308e4bf

app-containers/docker-credential-helpers: add 0.9.0

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-containers/docker-credential-helpers/Manifest  |  1 +
 .../docker-credential-helpers-0.9.0.ebuild         | 50 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/app-containers/docker-credential-helpers/Manifest b/app-containers/docker-credential-helpers/Manifest
index 3f2764f397b8..be746fb53f9b 100644
--- a/app-containers/docker-credential-helpers/Manifest
+++ b/app-containers/docker-credential-helpers/Manifest
@@ -1 +1,2 @@
 DIST docker-credential-helpers-0.8.2.tar.gz 283816 BLAKE2B 334ca059b619e5e3528864a99b07eea61b98083989aa8e8b619c83d781caad97fbf5f3ed60879adacf27d81e0b991a38567e1fa2bc27b9a772d86b51437a6e03 SHA512 ca04b7fe78871389c9f968b730c18e2aca2d2a818ce87c1f138efb7dafbfdea7b83c2c16504131d04c295428debee2187036e603dba711369b5de1a3993c2e8c
+DIST docker-credential-helpers-0.9.0.tar.gz 294861 BLAKE2B b58d7b4a37a53192825ff3ddae1bbbde0f7f6b32d4ffe34c3f6d97e64ebdd59f979efc8f9122db4e5d4085521f0c2574d4e5b2b8912beaa41ed9a25a5a1bc6f8 SHA512 7daddef856555866c727a9655b34265224afdc9128880d10ba53f915f51f486958bf32cf4838cbeada9b870b128377259cc5b79d0f42fdfee00a438194e2afab

diff --git a/app-containers/docker-credential-helpers/docker-credential-helpers-0.9.0.ebuild b/app-containers/docker-credential-helpers/docker-credential-helpers-0.9.0.ebuild
new file mode 100644
index 000000000000..d49feeba1dbc
--- /dev/null
+++ b/app-containers/docker-credential-helpers/docker-credential-helpers-0.9.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Suite of programs to use native stores to keep Docker credentials safe"
+HOMEPAGE="https://github.com/docker/docker-credential-helpers"
+SRC_URI="https://github.com/docker/docker-credential-helpers/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+IUSE="keyring pass"
+REQUIRED_USE="|| ( keyring pass )"
+RESTRICT="test"
+
+DEPEND="keyring? ( app-crypt/libsecret )"
+RDEPEND="${DEPEND}
+	pass? ( app-admin/pass )
+"
+
+src_compile() {
+	local mymakeflags=(
+		VERSION="${PV}"
+		REVISION="v${PV}"
+	)
+	use keyring && mymakeflags+=( secretservice )
+	use pass && mymakeflags+=( pass )
+	emake -j1 "${mymakeflags[@]}"
+}
+
+src_install() {
+	dobin bin/build/*
+	dodoc MAINTAINERS README.md
+}
+
+pkg_postinst() {
+	if use keyring; then
+		elog "For keyring/kwallet add:\n"
+		elog '		"credStore": "secretservice"'"\n"
+	fi
+	if use pass; then
+		elog "For 'pass' add:\n"
+		elog '		"credStore": "pass"'"\n"
+	fi
+	elog "to your ~/.docker/config.json"
+}


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

end of thread, other threads:[~2025-03-03 13:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-03 13:30 [gentoo-commits] repo/gentoo:master commit in: app-containers/docker-credential-helpers/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2025-01-26 18:37 Arthur Zamarin
2025-01-25  0:48 Sam James
2025-01-24 21:17 Jakov Smolić
2025-01-10 10:54 Arthur Zamarin
2025-01-10 10:51 Arthur Zamarin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox