Update subscription-manager to 1.23.3-1
Resolves: #1606435 - Rename the async module for compatibility with python 3.7; ENT-737 Resolves: #1596294 - Fix displayin RHSM Spoke in Initial Setup (jhnidek@redhat.com) Resolves: #1609048 - Replacement of imp module with importlib; ENT-758
This commit is contained in:
parent
eeecceb850
commit
71252c96ec
2
.gitignore
vendored
2
.gitignore
vendored
@ -87,3 +87,5 @@
|
||||
/subscription-manager-cockpit-1.23.1.tar.gz
|
||||
/subscription-manager-1.23.2.tar.gz
|
||||
/subscription-manager-cockpit-1.23.2.tar.gz
|
||||
/subscription-manager-1.23.3.tar.gz
|
||||
/subscription-manager-cockpit-1.23.3.tar.gz
|
||||
|
4
sources
4
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (subscription-manager-1.23.2.tar.gz) = b5616c1ec812e8fbdc18f8773657707b089adb664ff3e0d06873f9d2c052b3fad8edf3a555e31f7b08ce432c6ebeefaa51d772b3a050665a42896330356c7e3d
|
||||
SHA512 (subscription-manager-cockpit-1.23.2.tar.gz) = fccd587e97fb75e12e471bc5e831f4bffd84781bdb35c5127807418a47eb858d416d08a878724e500f5a5cb46d9b5dcc6699d2325252ccf3687106c5fc63a85b
|
||||
SHA512 (subscription-manager-1.23.3.tar.gz) = 82b985ac7aa3ccb83383634f35f345ae6e8b84451d8ba008a9d191d933fee4504de6a5517330ec47092c3994ac2883f8ee61e007a75fb23ebe4f0ca0025457d0
|
||||
SHA512 (subscription-manager-cockpit-1.23.3.tar.gz) = fe7cbdb33a1cef555421a03c0ee8d6060dfcd970f26b4933c6241b345ac9112a60cd7714652a076cd9ffb837609f038f44ba1ede19de68390066f2dff1a17194
|
||||
|
@ -130,7 +130,7 @@
|
||||
%define subpackages SUBPACKAGES="%{?include_syspurpose:syspurpose}"
|
||||
|
||||
Name: subscription-manager
|
||||
Version: 1.23.2
|
||||
Version: 1.23.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Tools and libraries for subscription and repository management
|
||||
Group: System Environment/Base
|
||||
@ -798,6 +798,14 @@ install -m 644 %{_builddir}/%{buildsubdir}/etc-conf/ca/redhat-uep.pem %{buildroo
|
||||
%{python_sitearch}/subscription_manager/gui/data/ui/*.ui
|
||||
%{python_sitearch}/subscription_manager/gui/data/glade/*.glade
|
||||
%{python_sitearch}/subscription_manager/gui/data/icons/*.svg
|
||||
%{_datadir}/icons/hicolor/16x16/apps/*.png
|
||||
%{_datadir}/icons/hicolor/22x22/apps/*.png
|
||||
%{_datadir}/icons/hicolor/24x24/apps/*.png
|
||||
%{_datadir}/icons/hicolor/32x32/apps/*.png
|
||||
%{_datadir}/icons/hicolor/48x48/apps/*.png
|
||||
%{_datadir}/icons/hicolor/96x96/apps/*.png
|
||||
%{_datadir}/icons/hicolor/256x256/apps/*.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/*.svg
|
||||
%if %{with python3}
|
||||
%{python_sitearch}/subscription_manager/gui/__pycache__
|
||||
%endif
|
||||
@ -833,14 +841,6 @@ install -m 644 %{_builddir}/%{buildsubdir}/etc-conf/ca/redhat-uep.pem %{buildroo
|
||||
%{_datadir}/omf/subscription-manager/subscription-manager-C.omf
|
||||
|
||||
%{_datadir}/applications/subscription-manager-gui.desktop
|
||||
%{_datadir}/icons/hicolor/16x16/apps/*.png
|
||||
%{_datadir}/icons/hicolor/22x22/apps/*.png
|
||||
%{_datadir}/icons/hicolor/24x24/apps/*.png
|
||||
%{_datadir}/icons/hicolor/32x32/apps/*.png
|
||||
%{_datadir}/icons/hicolor/48x48/apps/*.png
|
||||
%{_datadir}/icons/hicolor/96x96/apps/*.png
|
||||
%{_datadir}/icons/hicolor/256x256/apps/*.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/*.svg
|
||||
%{_datadir}/appdata/subscription-manager-gui.appdata.xml
|
||||
|
||||
# desktop config files
|
||||
@ -907,6 +907,7 @@ install -m 644 %{_builddir}/%{buildsubdir}/etc-conf/ca/redhat-uep.pem %{buildroo
|
||||
%{python3_sitelib}/syspurpose/{*.py*,__pycache__/*}
|
||||
|
||||
%attr(755, root, root) %{_sbindir}/syspurpose
|
||||
%attr(644,root,root) %{_sysconfdir}/rhsm/syspurpose/valid_fields.json
|
||||
%endif
|
||||
|
||||
%files -n subscription-manager-plugin-container
|
||||
@ -1080,6 +1081,20 @@ gtk-update-icon-cache -f %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Aug 13 2018 Christopher Snyder <csnyder@redhat.com> 1.23.3-1
|
||||
- 1606435: Rename the async module for compatibility with python 3.7; ENT-737
|
||||
(csnyder@redhat.com)
|
||||
- Cockpit/Syspurpose service integration fix (aparadka@redhat.com)
|
||||
- Display both new and old value in syspurpose diff message
|
||||
(csnyder@redhat.com)
|
||||
- Fix sending single value of addons. (jhnidek@redhat.com)
|
||||
- Fix synchronization of usage with candlepin (jhnidek@redhat.com)
|
||||
- 1596294: Fix displayin RHSM Spoke in Initial Setup (jhnidek@redhat.com)
|
||||
- Syspurpose field value lists [ENT-766] (wpoteat@redhat.com)
|
||||
- ENT-717: Syncing of syspurpose store with candlepin (jhnidek@redhat.com)
|
||||
- 1609048: Replacement of imp module with importlib; ENT-758
|
||||
(jhnidek@redhat.com)
|
||||
|
||||
* Fri Aug 03 2018 Christopher Snyder <csnyder@redhat.com> 1.23.2-1
|
||||
- Move "nose" to test requirements for syspurpose (csnyder@redhat.com)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user