Accepting request 818063 from home:rhafer:branches:Virtualization:containers

- Update to 2.3.0 (bsc#1173375)
    - Introduce "containerbuild-regionsrv" support and add
      "susecloud" zypper url-resolver plugin to allow building SLE
      containers on public cloud on-demand instances
    - Fix usage with RMT when repositories require authentication
- remove "%gosrc" call to avoid including all the go sources into
  the main package.

OBS-URL: https://build.opensuse.org/request/show/818063
OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/container-suseconnect?expand=0&rev=7
This commit is contained in:
Ralf Haferkamp 2020-07-01 09:57:32 +00:00 committed by Git OBS Bridge
parent c05b10f826
commit 0a9388d844
5 changed files with 28 additions and 12 deletions

View File

@ -5,8 +5,8 @@
<param name="filename">container-suseconnect</param>
<param name="exclude">.git</param>
<param name="versionformat">git.%H</param>
<param name="versionformat">2.2.0</param>
<param name="revision">v2.2.0</param>
<param name="versionformat">2.3.0</param>
<param name="revision">v2.3.0</param>
</service>
<service mode="disabled" name="recompress">
<param name="file">*.tar</param>

View File

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

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:175a9a9171c4e6e02a1db5a7de6b3458a9f920b90a14b464772a2d90df448209
size 98408

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Tue Jun 30 14:14:49 UTC 2020 - Ralf Haferkamp <rhafer@suse.com>
- Update to 2.3.0 (bsc#1173375)
- Introduce "containerbuild-regionsrv" support and add
"susecloud" zypper url-resolver plugin to allow building SLE
containers on public cloud on-demand instances
- Fix usage with RMT when repositories require authentication
- remove "%gosrc" call to avoid including all the go sources into
the main package.
-------------------------------------------------------------------
Thu Nov 28 10:01:56 UTC 2019 - Ralf Haferkamp <rhafer@suse.com>

View File

@ -17,10 +17,12 @@
%global project container-suseconnect
%global import_path github.com/SUSE/%{project}
%global zypp_path /usr/lib/zypp/plugins/services
%global zypp_path /usr/lib/zypp/plugins
%global zypp_services %{zypp_path}/services
%global zypp_urlresolver %{zypp_path}/urlresolver
Name: %{project}
Version: 2.2.0
Version: 2.3.0
Release: 0
Summary: Provides access to repositories inside containers
License: Apache-2.0
@ -52,15 +54,18 @@ export GO111MODULE=off
%install
%goinstall
%gosrc
%gofilelist
%__mkdir_p %{buildroot}/%{zypp_path}
%__ln_s %{_bindir}/%{project} %{buildroot}/%{zypp_path}/%{project}-zypp
%__mkdir_p %{buildroot}/%{zypp_services}
%__mkdir_p %{buildroot}/%{zypp_urlresolver}
%__ln_s %{_bindir}/%{project} %{buildroot}/%{zypp_services}/%{project}-zypp
%__ln_s %{_bindir}/%{project} %{buildroot}/%{zypp_urlresolver}/susecloud
%files -f file.lst
%defattr(-,root,root,-)
%doc README.md LICENSE
%doc README.md
%license LICENSE
%{_bindir}/%{project}
%{zypp_path}/%{project}-zypp
%{zypp_services}/%{project}-zypp
%{zypp_urlresolver}/susecloud
%changelog