public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-credential-helpers/
@ 2019-05-03  7:15 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2019-05-03  7:15 UTC (permalink / raw
  To: gentoo-commits

commit:     00581305676b1b485a95d24af7d9a656c8c74f65
Author:     Rafael Kitover <rkitover <AT> gmail <DOT> com>
AuthorDate: Thu May  2 22:20:48 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May  3 07:15:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00581305

app-emulation/docker-credential-helpers: new package

New ebuild for docker-credential-helpers, which has helper programs for
docker to store your password and other sensitive information.

This ebuild builds either docker-credential-secretservice, which uses
the D-Bus secret service API to talk to either kwallet or gnome-keyring;
or docker-credential-pass which relies on the pass utility; or both
depending on USE flags.

The supported USE flags are:

- 'gnome-keyring': build secretservice helper

- 'pass': build pass helper

A message is printed via elog() upon successful merge about how to use
the helper with docker.

Signed-off-by: Rafael Kitover <rkitover <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/9805
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-emulation/docker-credential-helpers/Manifest   |  1 +
 .../docker-credential-helpers-0.6.0.ebuild         | 58 ++++++++++++++++++++++
 .../docker-credential-helpers/metadata.xml         | 27 ++++++++++
 3 files changed, 86 insertions(+)

diff --git a/app-emulation/docker-credential-helpers/Manifest b/app-emulation/docker-credential-helpers/Manifest
new file mode 100644
index 00000000000..487217d743a
--- /dev/null
+++ b/app-emulation/docker-credential-helpers/Manifest
@@ -0,0 +1 @@
+DIST docker-credential-helpers-0.6.0.tar.gz 27441 BLAKE2B 6517f069782d5a496d3f140d86e5b1f32f197e9209ed61f75bfb9ba29cf0e1fa509bdbbbce2defc14ad0abe316632683cfad25e7ac9a6a1d70c3289e0ad489f5 SHA512 359e8ec700f423ce0687f13ce02946007f90456abe86659a87c59419ebde5e79adb4d28ee5e6a9762a44cfd65648c247629a5273326abf18a8880bee637e74d8

diff --git a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.0.ebuild b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.0.ebuild
new file mode 100644
index 00000000000..d1223733ba0
--- /dev/null
+++ b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2001-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A 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"
+	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="gnome-keyring pass"
+REQUIRED_USE="|| ( gnome-keyring pass )"
+RESTRICT="test"
+
+DEPEND="gnome-keyring? ( app-crypt/libsecret )"
+
+RDEPEND="(
+	${DEPEND}
+	pass? ( app-admin/pass )
+)
+"
+
+S=${WORKDIR}/${P}/src/${EGO_PN}
+
+src_compile() {
+	local -x GOPATH="${WORKDIR}/${P}"
+	use gnome-keyring && emake secretservice
+	use pass && emake pass
+}
+
+src_install() {
+	dobin bin/*
+	dodoc CHANGELOG.md MAINTAINERS README.md
+}
+
+pkg_postinst() {
+	if use gnome-keyring; then
+		elog "For gnome-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"
+}

diff --git a/app-emulation/docker-credential-helpers/metadata.xml b/app-emulation/docker-credential-helpers/metadata.xml
new file mode 100644
index 00000000000..1e58ef54d4d
--- /dev/null
+++ b/app-emulation/docker-credential-helpers/metadata.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <longdescription>
+		A suite of programs to use native stores to keep Docker credentials
+		safe.  Currently provides docker-credential-secretservice to use the
+		D-Bus secret service APIs, and docker-credential-pass to use the
+		pass framework.
+    </longdescription>
+	<maintainer type="person">
+		<email>rkitover@gmail.com</email>
+		<name>Rafael Kitover</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<use>
+		<flag name="gnome-keyring">
+			Build secretservice helper which works with gnome-keyring or kwallet
+			using D-Bus.
+		</flag>
+		<flag name="pass">
+			Build pass helper for the pass utility.
+		</flag>
+	</use>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-credential-helpers/
@ 2019-07-08 10:19 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2019-07-08 10:19 UTC (permalink / raw
  To: gentoo-commits

commit:     255484bb6b84b327dc333ae4899309cbf1e90ded
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  8 10:15:55 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul  8 10:18:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255484bb

app-emulation/docker-credential-helpers: Fix inconsistent indent

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-emulation/docker-credential-helpers/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/docker-credential-helpers/metadata.xml b/app-emulation/docker-credential-helpers/metadata.xml
index 1e58ef54d4d..196e66de1e6 100644
--- a/app-emulation/docker-credential-helpers/metadata.xml
+++ b/app-emulation/docker-credential-helpers/metadata.xml
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-    <longdescription>
+	<longdescription>
 		A suite of programs to use native stores to keep Docker credentials
 		safe.  Currently provides docker-credential-secretservice to use the
 		D-Bus secret service APIs, and docker-credential-pass to use the
 		pass framework.
-    </longdescription>
+	</longdescription>
 	<maintainer type="person">
 		<email>rkitover@gmail.com</email>
 		<name>Rafael Kitover</name>


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

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-credential-helpers/
@ 2019-08-10  5:06 Joonas Niilola
  0 siblings, 0 replies; 6+ messages in thread
From: Joonas Niilola @ 2019-08-10  5:06 UTC (permalink / raw
  To: gentoo-commits

commit:     967e6e8779995d82dfcee5313447ba9dc72280ac
Author:     Rafael Kitover <rkitover <AT> gmail <DOT> com>
AuthorDate: Fri Aug  9 19:55:21 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Aug 10 05:06:41 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967e6e87

app-emulation/docker-credential-helpers: add 0.6.3

Both stores tested to work correctly.

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Rafael Kitover <rkitover <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12637
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-emulation/docker-credential-helpers/Manifest   |  1 +
 .../docker-credential-helpers-0.6.3.ebuild         | 58 ++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-emulation/docker-credential-helpers/Manifest b/app-emulation/docker-credential-helpers/Manifest
index 487217d743a..8e9ab64e45b 100644
--- a/app-emulation/docker-credential-helpers/Manifest
+++ b/app-emulation/docker-credential-helpers/Manifest
@@ -1 +1,2 @@
 DIST docker-credential-helpers-0.6.0.tar.gz 27441 BLAKE2B 6517f069782d5a496d3f140d86e5b1f32f197e9209ed61f75bfb9ba29cf0e1fa509bdbbbce2defc14ad0abe316632683cfad25e7ac9a6a1d70c3289e0ad489f5 SHA512 359e8ec700f423ce0687f13ce02946007f90456abe86659a87c59419ebde5e79adb4d28ee5e6a9762a44cfd65648c247629a5273326abf18a8880bee637e74d8
+DIST docker-credential-helpers-0.6.3.tar.gz 28971 BLAKE2B b50e4de0f3b126e0118f24f845a94be5e932975ab54ad6e0a52129a56109ecafb021f14986569295242cb0af4ea109d8786b8a5ca8481cc48daad14671841432 SHA512 2d15be8df134bff08eef9461348f07cd57c70c15a0ab044de2e69296c400b8c0e16198c90fd064d5ce83037d0bad57520e7524b0832b7a00e69397203dc90d10

diff --git a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
new file mode 100644
index 00000000000..3f46440c7bb
--- /dev/null
+++ b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A 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"
+	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="gnome-keyring pass"
+REQUIRED_USE="|| ( gnome-keyring pass )"
+RESTRICT="test"
+
+DEPEND="gnome-keyring? ( app-crypt/libsecret )"
+
+RDEPEND="(
+	${DEPEND}
+	pass? ( app-admin/pass )
+)
+"
+
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_compile() {
+	local -x GOPATH="${WORKDIR}/${P}"
+	use gnome-keyring && emake secretservice
+	use pass && emake pass
+}
+
+src_install() {
+	dobin bin/*
+	dodoc CHANGELOG.md MAINTAINERS README.md
+}
+
+pkg_postinst() {
+	if use gnome-keyring; then
+		elog "For gnome-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-emulation/docker-credential-helpers/
@ 2020-03-03 14:54 Joonas Niilola
  0 siblings, 0 replies; 6+ messages in thread
From: Joonas Niilola @ 2020-03-03 14:54 UTC (permalink / raw
  To: gentoo-commits

commit:     2a5e4ccac7b9a5f00df4fd7f7aa5f147cc97d828
Author:     Rafael Kitover <rkitover <AT> gmail <DOT> com>
AuthorDate: Sun Mar  1 22:50:43 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Mar  3 14:53:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5e4cca

app-emulation/docker-credential-helpers: Drop 0.6.0

Security vulnerability in versions prior to 0.6.3.

Bug: https://bugs.gentoo.org/711214
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Rafael Kitover <rkitover <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14819
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-emulation/docker-credential-helpers/Manifest   |  1 -
 .../docker-credential-helpers-0.6.0.ebuild         | 58 ----------------------
 2 files changed, 59 deletions(-)

diff --git a/app-emulation/docker-credential-helpers/Manifest b/app-emulation/docker-credential-helpers/Manifest
index 8e9ab64e45b..73b7729ba3f 100644
--- a/app-emulation/docker-credential-helpers/Manifest
+++ b/app-emulation/docker-credential-helpers/Manifest
@@ -1,2 +1 @@
-DIST docker-credential-helpers-0.6.0.tar.gz 27441 BLAKE2B 6517f069782d5a496d3f140d86e5b1f32f197e9209ed61f75bfb9ba29cf0e1fa509bdbbbce2defc14ad0abe316632683cfad25e7ac9a6a1d70c3289e0ad489f5 SHA512 359e8ec700f423ce0687f13ce02946007f90456abe86659a87c59419ebde5e79adb4d28ee5e6a9762a44cfd65648c247629a5273326abf18a8880bee637e74d8
 DIST docker-credential-helpers-0.6.3.tar.gz 28971 BLAKE2B b50e4de0f3b126e0118f24f845a94be5e932975ab54ad6e0a52129a56109ecafb021f14986569295242cb0af4ea109d8786b8a5ca8481cc48daad14671841432 SHA512 2d15be8df134bff08eef9461348f07cd57c70c15a0ab044de2e69296c400b8c0e16198c90fd064d5ce83037d0bad57520e7524b0832b7a00e69397203dc90d10

diff --git a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.0.ebuild b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.0.ebuild
deleted file mode 100644
index d1223733ba0..00000000000
--- a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2001-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A 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"
-	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="gnome-keyring pass"
-REQUIRED_USE="|| ( gnome-keyring pass )"
-RESTRICT="test"
-
-DEPEND="gnome-keyring? ( app-crypt/libsecret )"
-
-RDEPEND="(
-	${DEPEND}
-	pass? ( app-admin/pass )
-)
-"
-
-S=${WORKDIR}/${P}/src/${EGO_PN}
-
-src_compile() {
-	local -x GOPATH="${WORKDIR}/${P}"
-	use gnome-keyring && emake secretservice
-	use pass && emake pass
-}
-
-src_install() {
-	dobin bin/*
-	dodoc CHANGELOG.md MAINTAINERS README.md
-}
-
-pkg_postinst() {
-	if use gnome-keyring; then
-		elog "For gnome-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-emulation/docker-credential-helpers/
@ 2020-10-06 14:00 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2020-10-06 14:00 UTC (permalink / raw
  To: gentoo-commits

commit:     074c6daafaa7c5fff1f3f2ff6cca9e8ce1c32aca
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  6 14:00:43 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  6 14:00:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074c6daa

app-emulation/docker-credential-helpers: Keyword 0.6.3 arm64, #741670

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

 .../docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
index 3f46440c7bb..1b1d5979dcf 100644
--- a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
+++ b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SLOT="0"
 if [[ ${PV} = *9999* ]]; then
 	inherit golang-vcs
 else
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 	EGIT_COMMIT="v${PV}"
 	SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
 	inherit golang-vcs-snapshot


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

* [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-credential-helpers/
@ 2021-04-29 14:19 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-04-29 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     49e642186373fac1eab297c0b8e632c9217191a2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 06:43:43 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 14:18:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49e64218

app-emulation/docker-credential-helpers: Stabilize 0.6.3 amd64, #786567

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

 .../docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
index 1b1d5979dcf..ea5a5b0037d 100644
--- a/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
+++ b/app-emulation/docker-credential-helpers/docker-credential-helpers-0.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SLOT="0"
 if [[ ${PV} = *9999* ]]; then
 	inherit golang-vcs
 else
-	KEYWORDS="~amd64 ~arm64"
+	KEYWORDS="amd64 ~arm64"
 	EGIT_COMMIT="v${PV}"
 	SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
 	inherit golang-vcs-snapshot


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

end of thread, other threads:[~2021-04-29 14:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-08 10:19 [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-credential-helpers/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2021-04-29 14:19 Sam James
2020-10-06 14:00 Sam James
2020-03-03 14:54 Joonas Niilola
2019-08-10  5:06 Joonas Niilola
2019-05-03  7:15 Michał Górny

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