Accepting request 972884 from home:mstrigl
- 0.177.0 * switch to python3 in osc-wrapper and make python3 explicit * allow formatting of the sccache uri * show repository state and details * a few minor fixes and improvements in credentials handling * order credential managers by priority * kernel keyring is now supported as credential manager * support regex based name filtering in core.get_prj_results() * revision parsing parseRevisionOption(): cleanup and make logic consistent * use sr_ids[0] for superseding (fixes issues with superseding requests containing many packages * download logs and metadata in subdirs named by packages when osc getbinaries is issued on project level or in multibuild case - spec file: * recommed python-keyring-keyutils for new kernel keyring backend OBS-URL: https://build.opensuse.org/request/show/972884 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/osc?expand=0&rev=358
This commit is contained in:
parent
45b66f493a
commit
c9f1bc334b
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
|||||||
pkgname=osc
|
pkgname=osc
|
||||||
pkgver=0.176.0
|
pkgver=0.177.0
|
||||||
pkgrel=0
|
pkgrel=0
|
||||||
pkgdesc="Open Build Service client"
|
pkgdesc="Open Build Service client"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
|
4
_service
4
_service
@ -1,7 +1,7 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="version">0.176.0</param>
|
<param name="version">0.177.0</param>
|
||||||
<param name="revision">0.176.0</param>
|
<param name="revision">0.177.0</param>
|
||||||
<param name="url">https://github.com/openSUSE/osc.git</param>
|
<param name="url">https://github.com/openSUSE/osc.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
</service>
|
</service>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
osc (0.176.0-0) unstable; urgency=low
|
osc (0.177.0-0) unstable; urgency=low
|
||||||
- Update to 0.174.0:
|
- Update to 0.174.0:
|
||||||
- fix password deletion via "osc config -d <apiurl> pass"
|
- fix password deletion via "osc config -d <apiurl> pass"
|
||||||
- support changing the password store via "osc config <apiurl>
|
- support changing the password store via "osc config <apiurl>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ad691dee3249f5cc6c8e3601a3cec8aefc2d0666c648383ae8a44a32fb1f744a
|
|
||||||
size 374915
|
|
3
osc-0.177.0.tar.gz
Normal file
3
osc-0.177.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:366aa9d01cbdf9434892649aa72821f67801232cca790cbc8636c50f9b252338
|
||||||
|
size 376845
|
20
osc.changes
20
osc.changes
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 26 07:53:48 UTC 2022 - Marco Strigl <marco.strigl@suse.com>
|
||||||
|
|
||||||
|
- 0.177.0
|
||||||
|
* switch to python3 in osc-wrapper and make python3 explicit
|
||||||
|
* allow formatting of the sccache uri
|
||||||
|
* show repository state and details
|
||||||
|
* a few minor fixes and improvements in credentials handling
|
||||||
|
* order credential managers by priority
|
||||||
|
* kernel keyring is now supported as credential manager
|
||||||
|
* support regex based name filtering in core.get_prj_results()
|
||||||
|
* revision parsing parseRevisionOption(): cleanup and make logic consistent
|
||||||
|
* use sr_ids[0] for superseding (fixes issues with superseding requests
|
||||||
|
containing many packages
|
||||||
|
* download logs and metadata in subdirs named by packages when osc getbinaries
|
||||||
|
is issued on project level or in multibuild case
|
||||||
|
|
||||||
|
- spec file:
|
||||||
|
* recommed python-keyring-keyutils for new kernel keyring backend
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 28 17:34:00 UTC 2022 - Daniel Mach <daniel.mach@suse.com>
|
Mon Feb 28 17:34:00 UTC 2022 - Daniel Mach <daniel.mach@suse.com>
|
||||||
|
|
||||||
|
2
osc.dsc
2
osc.dsc
@ -1,6 +1,6 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: osc
|
Source: osc
|
||||||
Version: 0.176.0-0
|
Version: 0.177.0-0
|
||||||
Binary: osc
|
Binary: osc
|
||||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||||
Architecture: any
|
Architecture: any
|
||||||
|
6
osc.spec
6
osc.spec
@ -27,7 +27,7 @@
|
|||||||
%define use_python python
|
%define use_python python
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%define version_unconverted 0.176.0
|
%define version_unconverted 0.177.0
|
||||||
%define osc_plugin_dir %{_prefix}/lib/osc-plugins
|
%define osc_plugin_dir %{_prefix}/lib/osc-plugins
|
||||||
%define macros_file macros.osc
|
%define macros_file macros.osc
|
||||||
%if ! %{defined _rpmmacrodir}
|
%if ! %{defined _rpmmacrodir}
|
||||||
@ -35,7 +35,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: osc
|
Name: osc
|
||||||
Version: 0.176.0
|
Version: 0.177.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Open Build Service Commander
|
Summary: Open Build Service Commander
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -98,8 +98,10 @@ Conflicts: build < 20200106
|
|||||||
%if 0%{?suse_version} > 1000 || 0%{?mandriva_version} || 0%{?mdkversion} || 0%{?fedora} >= 29 || 0%{?rhel} >= 8
|
%if 0%{?suse_version} > 1000 || 0%{?mandriva_version} || 0%{?mdkversion} || 0%{?fedora} >= 29 || 0%{?rhel} >= 8
|
||||||
%if %{with python3}
|
%if %{with python3}
|
||||||
Recommends: python3-keyring
|
Recommends: python3-keyring
|
||||||
|
Recommends: python3-keyring-keyutils
|
||||||
%else
|
%else
|
||||||
Recommends: python-keyring
|
Recommends: python-keyring
|
||||||
|
Recommends: python-keyring-keyutils
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?rhel} && 0%{?rhel} < 6
|
%if 0%{?rhel} && 0%{?rhel} < 6
|
||||||
|
Loading…
Reference in New Issue
Block a user