# # spec file for package docker-distribution # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %global debug_package %{nil} Name: docker-credential-secretservice Version: 0.6.0 Release: 1.72 Summary: Leverage Docker credentials with libsecret License: MIT Group: System/Management Url: http://www.docker.io Source0: docker-credential-helpers-%{version}.tar.xz Source1: config.secure.json BuildRequires: go >= 1.6.0 BuildRequires: make BuildRequires: pkg-config BuildRequires: libsecret-devel Requires: libsecret BuildRoot: %{_tmppath}/%{name}-%{version}-build %{?systemd_requires} %description Docker by default uses base64 to store the credentials for the different registries. This behavior can be changed by leveraging the credentials storage to this program, which uses libsecret in Linux. %prep %setup -q -n docker-credential-helpers-%{version} %build export GOPATH=$PWD/go mkdir -p $GOPATH/src/github.com/docker cp -r $PWD/vendor/* $GOPATH/src ln -s $PWD $GOPATH/src/github.com/docker/docker-credential-helpers make %{?_smp_mflags} secretservice %pre cat >&2 < - Modified for CentOS 8. * Wed Jun 27 2018 opensuse-packaging@opensuse.org - Update to version 0.6.0: * pass: better initialization check * Add instructions for pass helper configuration * Bump 0.6.0 * Fix Makefile issues * mkdir fails when `bin` exists * obtaining golint fails if previously installed (w/out the -u flag) * fix test * return "" instead of an error when pass isn't present * pass backend: expose pass initialized flag * add a deb package for pass/secret service backends * A new entry point for calling the cred helpers that allow passing environment variables * Fri Aug 4 2017 opensuse-packaging@opensuse.org - Update to version 0.5.2: * Workaround for Linux 32-bit build * Read version from sources * make linter happy * vet/lint/fmt before release * Update TravisCI to use Go 1.7 * Update TravisCI to use Go 1.8 * Update changelog * Fix storing URLs without scheme (#72) * Bump version 0.5.2 * Thu Mar 9 2017 msabate@suse.com - Initial commit