Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
James Antill
531ec5283f update to latest HEAD
- Add weak deps. support.
- Add cashe support for fs diff.
- Make sure epoch is a string while checking for running kernel. BZ#1200159
- Fix rounding issue in required disk space message.
- Have "yum check" ignore self conflicts.
- Add simple testcase for installing older intermediate kernel. BZ 1063181.
- Don't look for upgrades for install only packages. BZ 1063181.
- check if repos list is empty after excluding disabled repos. BZ 1109473.
- Allow caching local repos. BZ 1125387.
- Expect KB as well as MB in disk requirements message from rpm. BZ 1051931.
- Multiple lvm fixes. BZ 1047793, BZ 1145485.
- Change the sqlite synchronous mode for the history file, to NORMAL.
- Add CAShe config. and objects, use it for MD and packages.
- Add query_install_excludes conf./docs and use it for list/info/search/prov
- Workaround history searching for [abc] character lists failures. BZ 1096147.
- yumRepos.py - preserve queryparams in urls
- Don't traceback in exRepoError() when repo info is not available. BZ 1114183.
- Make check-update respect --quiet option. BZ 1133979.
- Add armv6hl.
- Fix removing installed obsoleted package. BZ 1135715.
2015-08-10 00:57:50 -04:00
James Antill
c4358f7b4b update to latest HEAD
- Add weak deps. support.
- Add cashe support for fs diff.
- Make sure epoch is a string while checking for running kernel. BZ#1200159
- Fix rounding issue in required disk space message.
- Have "yum check" ignore self conflicts.
- Add simple testcase for installing older intermediate kernel. BZ 1063181.
- Don't look for upgrades for install only packages. BZ 1063181.
- check if repos list is empty after excluding disabled repos. BZ 1109473.
- Allow caching local repos. BZ 1125387.
- Expect KB as well as MB in disk requirements message from rpm. BZ 1051931.
- Multiple lvm fixes. BZ 1047793, BZ 1145485.
- Change the sqlite synchronous mode for the history file, to NORMAL.
- Add CAShe config. and objects, use it for MD and packages.
- Add query_install_excludes conf./docs and use it for list/info/search/prov
- Workaround history searching for [abc] character lists failures. BZ 1096147.
- yumRepos.py - preserve queryparams in urls
- Don't traceback in exRepoError() when repo info is not available. BZ 1114183.
- Make check-update respect --quiet option. BZ 1133979.
- Add armv6hl.
- Fix removing installed obsoleted package. BZ 1135715.
2015-08-10 00:57:05 -04:00
c805381c03 fix license handling 2014-08-06 13:59:15 +02:00
2 changed files with 1553 additions and 697 deletions

File diff suppressed because it is too large Load diff

View file

@ -64,7 +64,7 @@ BuildRequires: bash-completion
Summary: RPM package installer/updater/manager
Name: yum
Version: 3.4.3
Release: 152%{?dist}
Release: 154%{?dist}
License: GPLv2+
Group: System Environment/Base
Source0: http://yum.baseurl.org/download/3.4/%{name}-%{version}.tar.gz
@ -424,7 +424,9 @@ exit 0
%files -f %{name}.lang
%defattr(-, root, root, -)
%doc README AUTHORS COPYING TODO ChangeLog PLUGINS
%{!?_licensedir:%global license %%doc}
%license COPYING
%doc README AUTHORS TODO ChangeLog PLUGINS
%if %{move_yum_conf_back}
%config(noreplace) %{_sysconfdir}/yum.conf
%dir %{_sysconfdir}/yum.repos.d
@ -467,7 +469,8 @@ exit 0
%files cron
%defattr(-,root,root)
%doc COPYING
%{!?_licensedir:%global license %%doc}
%license COPYING
%{_sysconfdir}/cron.daily/0yum-daily.cron
%{_sysconfdir}/cron.hourly/0yum-hourly.cron
%config(noreplace) %{_sysconfdir}/yum/yum-cron.conf
@ -507,6 +510,33 @@ exit 0
%endif
%changelog
* Sun Aug 9 2015 James Antill <james at fedoraproject.org> - 3.4.3-154
- update to latest HEAD
- Add weak deps. support.
- Add cashe support for fs diff.
- Make sure epoch is a string while checking for running kernel. BZ#1200159
- Fix rounding issue in required disk space message.
- Have "yum check" ignore self conflicts.
- Add simple testcase for installing older intermediate kernel. BZ 1063181.
- Don't look for upgrades for install only packages. BZ 1063181.
- check if repos list is empty after excluding disabled repos. BZ 1109473.
- Allow caching local repos. BZ 1125387.
- Expect KB as well as MB in disk requirements message from rpm. BZ 1051931.
- Multiple lvm fixes. BZ 1047793, BZ 1145485.
- Change the sqlite synchronous mode for the history file, to NORMAL.
- Add CAShe config. and objects, use it for MD and packages.
- Add query_install_excludes conf./docs and use it for list/info/search/prov
- Workaround history searching for [abc] character lists failures. BZ 1096147.
- yumRepos.py - preserve queryparams in urls
- Don't traceback in exRepoError() when repo info is not available. BZ 1114183.
- Make check-update respect --quiet option. BZ 1133979.
- Add armv6hl.
- Fix removing installed obsoleted package. BZ 1135715.
* Wed Aug 6 2014 Tom Callaway <spot@fedoraproject.org> - 3.4.3-153
- fix license handling
* Wed Jun 18 2014 James Antill <james at fedoraproject.org> - 3.4.3-152
- update to latest HEAD
- Workaround the TypeError in _filter_deps(). BZ 1108625