Accepting request 906476 from devel:kubic

- Update to version 1.7.1+git20210707.946490c:
  * fix: segmentation fault on arm64 image (#311)
  * Allow initial LDAP bind with user credentials (#246) (#309)
  * deprecate v1beta1/Ingress in chart (#306)
  * document change in tags
  * Updated helm repository
  * Update helm chart to 1.7.0 (#305)
  * update url
  * have edge build
  * build on git tag
  * build docker image on git tag (#304)
  * periodic go vendor update (#303)
  * cross-compile docker image to arm
  * Remove Python and go-bindata (#302)
  * build with go1.16 (#301)
  * Support the Casbin authorization method. (#182)
  * Connect to relational databases using xorm.io (#277)
  * specify v1.15.x when running build (#297)
  * Install go-binddata as a global binary (#295)
  * Create Github action for docker nightlies (#291)
  * Helm2 to 3 (#292)
  * Upgrade go deps (#293)
  * rm compiled binary in repo
  * Add Github actions for go tests
  * Move to Python3
  * Fix go vet failures
  * Fix Docker Hub link in README.md (#282)
  * Fix scope parsing (#274)
  * Returning the "token"-field (#273)
  * Add a Redis-based token storage implementation (#220)

OBS-URL: https://build.opensuse.org/request/show/906476
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/docker_auth?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2021-07-15 22:00:47 +00:00 committed by Git OBS Bridge
commit 124e7fa864
6 changed files with 47 additions and 11 deletions

View File

@ -1,7 +1,8 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="version">1.5.0</param>
<param name="versionformat">1.5.0+git%cd.%h</param>
<param name="version">1.7.1</param>
<param name="versionformat">1.7.1+git%cd.%h</param>
<param name="revision">main</param>
<param name="url">git://github.com/cesanta/docker_auth.git</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>

View File

@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">git://github.com/cesanta/docker_auth.git</param>
<param name="changesrevision">df57ccaa8701a527954bd2a813fedec1b7c86af0</param>
<param name="changesrevision">946490cab077a5ccc1e2139f0a423a11c14d3e2d</param>
</service>
</servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:62af99bfadc5f02fb6539293b6143c64a9964ab287c9923b3589ae1ad833d472
size 10901280

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:33310a00517d538bee675ca456df70042e3d2b8337edcb387bbdbbdc7c11936c
size 3969056

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Thu Jul 15 07:27:02 UTC 2021 - kukuk@suse.com
- Update to version 1.7.1+git20210707.946490c:
* fix: segmentation fault on arm64 image (#311)
* Allow initial LDAP bind with user credentials (#246) (#309)
* deprecate v1beta1/Ingress in chart (#306)
* document change in tags
* Updated helm repository
* Update helm chart to 1.7.0 (#305)
* update url
* have edge build
* build on git tag
* build docker image on git tag (#304)
* periodic go vendor update (#303)
* cross-compile docker image to arm
* Remove Python and go-bindata (#302)
* build with go1.16 (#301)
* Support the Casbin authorization method. (#182)
* Connect to relational databases using xorm.io (#277)
* specify v1.15.x when running build (#297)
* Install go-binddata as a global binary (#295)
* Create Github action for docker nightlies (#291)
* Helm2 to 3 (#292)
* Upgrade go deps (#293)
* rm compiled binary in repo
* Add Github actions for go tests
* Move to Python3
* Fix go vet failures
* Fix Docker Hub link in README.md (#282)
* Fix scope parsing (#274)
* Returning the "token"-field (#273)
* Add a Redis-based token storage implementation (#220)
* Send the scope class as part of the token
-------------------------------------------------------------------
Wed Jan 22 12:06:42 UTC 2020 - kukuk@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package docker_auth
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,14 +17,13 @@
Name: docker_auth
Version: 1.5.0+git20191208.df57cca
Version: 1.7.1+git20210707.946490c
Release: 0
Summary: Authenticaton for container registry with tokens
License: Apache-2.0
URL: https://github.com/cesanta/docker_auth
Source: docker_auth-%{version}.tar.xz
BuildRequires: go1.13
BuildRequires: golang(API) = 1.13
BuildRequires: golang(API) >= 1.16
%ifarch %arm aarch64
BuildRequires: binutils-gold
%endif
@ -37,11 +36,12 @@ control list for every user.
%prep
%setup -q
rm chart/docker-auth/.helmignore
chmod 644 chart/docker-auth/templates/*.*
%build
cd auth_server
# Make the go command working in OBS and on all architectures:
sed -i -e 's|CGO_ENABLED=0 go build -v --ldflags=--s|go build -mod vendor -buildmode=pie -v|g' Makefile
sed -i -e 's|CGO_ENABLED=0 go build -v --ldflags=--s|go build -mod vendor -buildmode=pie -v|g' -e "s|-extldflags '-static' |-extldflags '-pie' |g" Makefile
make
%install