Update subscription-manager to 1.10.8-1
Resolves: #1030604 - Handle 400 code for add override (mstead@redhat.com) Resolves: #1034574 - Alternate message based on why no repos exist in GUI Resolves: #1034396 - No longer require entitlements to run repo-override command Resolves: #1033741 - Refresh Overrides CP connection when dialog is shown Resolves: #1033690 - Updated repo-overrides not supported message (mstead@redhat.com) Resolves: #1034649 - Only allow repolib to update override cache if supported by the Resolves: #1032673 - Warn on add override if repo doesn't exist (mstead@redhat.com) Resolves: #1030996 - Fixed usage text for repo-override add/remove options Resolves: #1032243 - Updated the redhat.repo warning (mstead@redhat.com) Resolves: #1021013 - Change wording on firstboot address screen (alikins@redhat.com) Resolves: #1020539 - Show proxy info if no RHN in firstboot (alikins@redhat.com)
This commit is contained in:
parent
0d3c7e1165
commit
3fc32b3c9c
1
.gitignore
vendored
1
.gitignore
vendored
@ -32,3 +32,4 @@
|
|||||||
/subscription-manager-1.10.3.tar.gz
|
/subscription-manager-1.10.3.tar.gz
|
||||||
/subscription-manager-1.10.5.tar.gz
|
/subscription-manager-1.10.5.tar.gz
|
||||||
/subscription-manager-1.10.7.tar.gz
|
/subscription-manager-1.10.7.tar.gz
|
||||||
|
/subscription-manager-1.10.8.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
7f7d9be966791c255f62939a4d28b196 subscription-manager-1.10.7.tar.gz
|
bcef7ed5d45332b5f6f1daa36d69334d subscription-manager-1.10.8.tar.gz
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: subscription-manager
|
Name: subscription-manager
|
||||||
Version: 1.10.7
|
Version: 1.10.8
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Tools and libraries for subscription and repository management
|
Summary: Tools and libraries for subscription and repository management
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@ -31,7 +31,7 @@ Requires: python-ethtool
|
|||||||
Requires: python-iniparse
|
Requires: python-iniparse
|
||||||
Requires: pygobject2
|
Requires: pygobject2
|
||||||
Requires: virt-what
|
Requires: virt-what
|
||||||
Requires: python-rhsm >= 1.10.6
|
Requires: python-rhsm >= 1.10.8
|
||||||
Requires: dbus-python
|
Requires: dbus-python
|
||||||
Requires: yum >= 3.2.19-15
|
Requires: yum >= 3.2.19-15
|
||||||
Requires: usermode
|
Requires: usermode
|
||||||
@ -188,6 +188,7 @@ rm -rf %{buildroot}
|
|||||||
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/logrotate.d/subscription-manager
|
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/logrotate.d/subscription-manager
|
||||||
%{_sysconfdir}/bash_completion.d/subscription-manager
|
%{_sysconfdir}/bash_completion.d/subscription-manager
|
||||||
%{_sysconfdir}/bash_completion.d/rct
|
%{_sysconfdir}/bash_completion.d/rct
|
||||||
|
%{_sysconfdir}/bash_completion.d/rhsm-debug
|
||||||
%{_sysconfdir}/bash_completion.d/rhn-migrate-classic-to-rhsm
|
%{_sysconfdir}/bash_completion.d/rhn-migrate-classic-to-rhsm
|
||||||
%{_sysconfdir}/bash_completion.d/rhsm-icon
|
%{_sysconfdir}/bash_completion.d/rhsm-icon
|
||||||
%{_sysconfdir}/bash_completion.d/rhsmcertd
|
%{_sysconfdir}/bash_completion.d/rhsmcertd
|
||||||
@ -278,10 +279,18 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/rhsm/rct/printing.py*
|
%{_datadir}/rhsm/rct/printing.py*
|
||||||
%attr(755,root,root) %{_bindir}/rct
|
%attr(755,root,root) %{_bindir}/rct
|
||||||
|
|
||||||
|
# Include consumer debug CLI tool
|
||||||
|
%dir %{_datadir}/rhsm/rhsm_debug
|
||||||
|
%{_datadir}/rhsm/rhsm_debug/__init__.py*
|
||||||
|
%{_datadir}/rhsm/rhsm_debug/cli.py*
|
||||||
|
%{_datadir}/rhsm/rhsm_debug/*commands.py*
|
||||||
|
%attr(755,root,root) %{_bindir}/rhsm-debug
|
||||||
|
|
||||||
%doc
|
%doc
|
||||||
%{_mandir}/man8/subscription-manager.8*
|
%{_mandir}/man8/subscription-manager.8*
|
||||||
%{_mandir}/man8/rhsmcertd.8*
|
%{_mandir}/man8/rhsmcertd.8*
|
||||||
%{_mandir}/man8/rct.8*
|
%{_mandir}/man8/rct.8*
|
||||||
|
%{_mandir}/man8/rhsm-debug.8*
|
||||||
%doc LICENSE
|
%doc LICENSE
|
||||||
|
|
||||||
|
|
||||||
@ -391,6 +400,27 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Dec 06 2013 ckozak <ckozak@redhat.com> 1.10.8-1
|
||||||
|
- 1030604: Handle 400 code for add override (mstead@redhat.com)
|
||||||
|
- Use backed to ensure a refreshed Overrides object (mstead@redhat.com)
|
||||||
|
- 1034574: Alternate message based on why no repos exist in GUI
|
||||||
|
(mstead@redhat.com)
|
||||||
|
- 1034396: No longer require entitlements to run repo-override command
|
||||||
|
(mstead@redhat.com)
|
||||||
|
- 1033741: Refresh Overrides CP connection when dialog is shown
|
||||||
|
(mstead@redhat.com)
|
||||||
|
- 1033690: Updated repo-overrides not supported message (mstead@redhat.com)
|
||||||
|
- 1034649: Only allow repolib to update override cache if supported by the
|
||||||
|
server (mstead@redhat.com)
|
||||||
|
- 1032673: Warn on add override if repo doesn't exist (mstead@redhat.com)
|
||||||
|
- 1030996: Fixed usage text for repo-override add/remove options
|
||||||
|
(mstead@redhat.com)
|
||||||
|
- 1032243: Updated the redhat.repo warning (mstead@redhat.com)
|
||||||
|
- Use local ent certs to list attached pools (ckozak@redhat.com)
|
||||||
|
- 1021013: Change wording on firstboot address screen (alikins@redhat.com)
|
||||||
|
- 1020539: Show proxy info if no RHN in firstboot (alikins@redhat.com)
|
||||||
|
- Make zip file of consumer information for debugging (wpoteat@redhat.com)
|
||||||
|
|
||||||
* Thu Nov 14 2013 ckozak <ckozak@redhat.com> 1.10.7-1
|
* Thu Nov 14 2013 ckozak <ckozak@redhat.com> 1.10.7-1
|
||||||
- 998033: Handle Unauthorized/Forbidden exceptions in CLI/GUI
|
- 998033: Handle Unauthorized/Forbidden exceptions in CLI/GUI
|
||||||
(mstead@redhat.com)
|
(mstead@redhat.com)
|
||||||
|
Loading…
Reference in New Issue
Block a user