[dnf/epel7] New version: 8c7d45a

jsilhan jsilhan at fedoraproject.org
Fri Feb 27 15:42:22 UTC 2015


commit 3fd537caa07e7ff89224edbc4eec8c1fd899d5f3
Author: Jan Silhan <jsilhan at redhat.com>
Date:   Fri Feb 27 16:42:19 2015 +0100

    New version: 8c7d45a

 .gitignore |    1 +
 dnf.spec   | 1377 +++++++++++++++++++++++++++++++++++++-----------------------
 sources    |    2 +-
 3 files changed, 863 insertions(+), 517 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index fed4a7c..cd8d54c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +36,4 @@
 /dnf-7d717c7.tar.xz
 /dnf-54f55e0.tar.xz
 /dnf-7bdc9e1.tar.xz
+/dnf-8c7d45a.tar.xz
diff --git a/dnf.spec b/dnf.spec
index c294b15..ce30a8f 100644
--- a/dnf.spec
+++ b/dnf.spec
@@ -1,69 +1,206 @@
-%global gitrev 7bdc9e1
-%global hawkey_version 0.3.16
-%global librepo_version 1.0.0
+%{!?gitrev: %global gitrev 8c7d45a}
+%{!?hawkey_version: %global hawkey_version 0.5.3}
+%{!?librepo_version: %global librepo_version 1.7.5}
+%{!?libcomps_version: %global libcomps_version 0.1.6}
 
 %global confdir %{_sysconfdir}/dnf
 
+%global pluginconfpath %{confdir}/plugins
+%global py2pluginpath %{python_sitelib}/dnf-plugins
+%global py3pluginpath %{python3_sitelib}/dnf-plugins
+
 Name:		dnf
-Version:	0.3.11
-Release:	3.git%{gitrev}%{?dist}
+Version:	0.6.4
+Release:	1%{?snapshot}%{?dist}
 Summary:	Package manager forked from Yum, using libsolv as a dependency resolver
-Group:		System Environment/Base
 # For a breakdown of the licensing, see PACKAGE-LICENSING
 License:	GPLv2+ and GPLv2 and GPL
-URL:		https://github.com/akozumpl/dnf
-Source0:	http://akozumpl.fedorapeople.org/dnf-%{gitrev}.tar.xz
-BuildArch:	noarch
-BuildRequires:	cmake
-BuildRequires:	python2
-BuildRequires:	python-bugzilla
-BuildRequires:	python-hawkey = %{hawkey_version}
+URL:		https://github.com/rpm-software-management/dnf
+# The Source0 tarball can be generated using following commands:
+# git clone http://github.com/rpm-software-management/dnf.git
+# cd dnf/package
+# ./archive
+# tarball will be generated in $HOME/rpmbuild/sources/
+Source0:    http://rpm-software-management.fedorapeople.org/dnf-%{gitrev}.tar.xz
+BuildArch:  noarch
+BuildRequires:  cmake
+BuildRequires:  gettext
+BuildRequires:  python-bugzilla
+BuildRequires:  python-sphinx
+BuildRequires:  systemd
+%if 0%{?fedora} >= 23
+Requires:   python3-dnf = %{version}-%{release}
+%else
+Requires:   python-dnf = %{version}-%{release}
+%endif
+Requires(post):     systemd
+Requires(preun):    systemd
+Requires(postun):   systemd
+%description
+Package manager forked from Yum, using libsolv as a dependency resolver.
+
+%package conf
+Requires:   libreport-filesystem
+Summary:    Configuration files for DNF.
+%description conf
+Configuration files for DNF.
+
+%package -n dnf-yum
+Conflicts:      yum
+Requires:   dnf = %{version}-%{release}
+Summary:    As a Yum CLI compatibility layer, supplies /usr/bin/yum redirecting to DNF.
+%description -n dnf-yum
+As a Yum CLI compatibility layer, supplies /usr/bin/yum redirecting to DNF.
+
+%package -n python-dnf
+Summary:    Python 2 interface to DNF.
+BuildRequires:  pygpgme
+BuildRequires:  pyliblzma
+BuildRequires:  python2
+BuildRequires:  python-hawkey >= %{hawkey_version}
 BuildRequires:  python-iniparse
-BuildRequires:	python-librepo = %{librepo_version}
+BuildRequires:  python-libcomps >= %{libcomps_version}
+BuildRequires:  python-librepo >= %{librepo_version}
 BuildRequires:  python-nose
-BuildRequires:  python-sphinx
 BuildRequires:  rpm-python
+Requires:   dnf-conf = %{version}-%{release}
+Requires:   deltarpm
+Requires:   pygpgme
+Requires:   pyliblzma
+Requires:   python-hawkey >= %{hawkey_version}
+Requires:   python-iniparse
+Requires:   python-libcomps >= %{libcomps_version}
+Requires:   python-librepo >= %{librepo_version}
+Requires:   rpm-python
+%description -n python-dnf
+Python 2 interface to DNF.
+
+%package -n python3-dnf
+Summary:    Python 3 interface to DNF.
+BuildRequires:  python3
+BuildRequires:  python3-devel
+BuildRequires:  python3-hawkey >= %{hawkey_version}
+BuildRequires:  python3-iniparse
+BuildRequires:  python3-libcomps >= %{libcomps_version}
+BuildRequires:  python3-librepo >= %{librepo_version}
+BuildRequires:  python3-nose
+BuildRequires:  python3-pygpgme
+BuildRequires:  rpm-python3
+Requires:   dnf-conf = %{version}-%{release}
+Requires:   deltarpm
+Requires:   python3-hawkey >= %{hawkey_version}
+Requires:   python3-iniparse
+Requires:   python3-libcomps >= %{libcomps_version}
+Requires:   python3-librepo >= %{librepo_version}
+Requires:   python3-pygpgme
+Requires:   rpm-python3
+Obsoletes:  dnf <= 0.6.4-1
+%description -n python3-dnf
+Python 3 interface to DNF.
+
+%package automatic
+Summary:    Alternative CLI to "dnf upgrade" suitable for automatic, regular execution.
 BuildRequires:  systemd
-BuildRequires:  urlgrabber
-Requires:	libreport-filesystem
-Requires:	python-hawkey = %{hawkey_version}
-Requires:	python-iniparse
-Requires:	python-librepo = %{librepo_version}
-Requires:	rpm-python
-Requires:	urlgrabber
-Requires(post):		systemd
-Requires(preun):	systemd
+Requires:   dnf = %{version}-%{release}
+Requires(post):     systemd
+Requires(preun):    systemd
 Requires(postun):	systemd
-
-%description
-Package manager forked from Yum, using libsolv as a dependency resolver.
+%description automatic
+Alternative CLI to "dnf upgrade" suitable for automatic, regular execution.
 
 %prep
 %setup -q -n dnf
+rm -rf py3
+mkdir ../py3
+cp -a . ../py3/
+mv ../py3 ./
 
 %build
 %cmake .
 make %{?_smp_mflags}
 make doc-man
+pushd py3
+%cmake -DPYTHON_DESIRED:str=3 -DWITH_MAN=0 .
+make %{?_smp_mflags}
+popd
 
 %install
-rm -rf $RPM_BUILD_ROOT
 make install DESTDIR=$RPM_BUILD_ROOT
+%find_lang %{name}
+pushd py3
+make install DESTDIR=$RPM_BUILD_ROOT
+popd
+
+mkdir -p $RPM_BUILD_ROOT%{pluginconfpath}
+mkdir -p $RPM_BUILD_ROOT%{py2pluginpath}
+mkdir -p $RPM_BUILD_ROOT%{py3pluginpath}/__pycache__
+mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log
+touch $RPM_BUILD_ROOT%{_localstatedir}/log/%{name}.log
+%if 0%{?fedora} >= 23
+ln -sr $RPM_BUILD_ROOT%{_bindir}/dnf-3 $RPM_BUILD_ROOT%{_bindir}/dnf
+%else
+ln -sr $RPM_BUILD_ROOT%{_bindir}/dnf-2 $RPM_BUILD_ROOT%{_bindir}/dnf
+%endif
+ln -sr $RPM_BUILD_ROOT%{_bindir}/dnf $RPM_BUILD_ROOT%{_bindir}/yum
 
 %check
 make ARGS="-V" test
+pushd py3
+make ARGS="-V" test
+popd
 
-%files
+%files -f %{name}.lang
 %doc AUTHORS README.rst COPYING PACKAGE-LICENSING
 %{_bindir}/dnf
-%{python_sitelib}/dnf/
-%dir %{confdir}
-%config(noreplace) %{confdir}/dnf.conf
-%{_sysconfdir}/libreport/events.d/collect_dnf.conf
 %{_mandir}/man8/dnf.8.gz
-%{_mandir}/man8/dnf.conf.8.gz
+%{_mandir}/man5/dnf.conf.5.gz
+%config %{_sysconfdir}/bash_completion.d/dnf-completion.bash
 %{_unitdir}/dnf-makecache.service
 %{_unitdir}/dnf-makecache.timer
+%{_tmpfilesdir}/dnf.conf
+
+%files conf
+%doc AUTHORS README.rst COPYING PACKAGE-LICENSING
+%dir %{confdir}
+%dir %{pluginconfpath}
+%dir %{confdir}/protected.d
+%config(noreplace) %{confdir}/dnf.conf
+%config(noreplace) %{confdir}/protected.d/dnf.conf
+%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
+%ghost %{_localstatedir}/log/hawkey.log
+%ghost %{_localstatedir}/log/%{name}.log
+%ghost %{_localstatedir}/log/%{name}.rpm.log
+%ghost %{_localstatedir}/log/%{name}.plugin.log
+%config %{_sysconfdir}/bash_completion.d/dnf-completion.bash
+%{_sysconfdir}/libreport/events.d/collect_dnf.conf
+
+%files -n dnf-yum
+%doc AUTHORS README.rst COPYING PACKAGE-LICENSING
+%{_bindir}/yum
+
+%files -n python-dnf
+%{_bindir}/dnf-2
+%doc AUTHORS README.rst COPYING PACKAGE-LICENSING
+%exclude %{python_sitelib}/dnf/automatic
+%{python_sitelib}/dnf/
+%dir %{py2pluginpath}
+
+%files -n python3-dnf
+%doc AUTHORS README.rst COPYING PACKAGE-LICENSING
+%{_bindir}/dnf-3
+%exclude %{python3_sitelib}/dnf/automatic
+%{python3_sitelib}/dnf/
+%dir %{py3pluginpath}
+%dir %{py3pluginpath}/__pycache__
+
+%files automatic
+%doc AUTHORS COPYING PACKAGE-LICENSING
+%{_bindir}/dnf-automatic
+%config(noreplace) %{confdir}/automatic.conf
+%{_mandir}/man8/dnf.automatic.8.gz
+%{_unitdir}/dnf-automatic.service
+%{_unitdir}/dnf-automatic.timer
+%{python_sitelib}/dnf/automatic
 
 %post
 %systemd_post dnf-makecache.timer
@@ -74,488 +211,696 @@ make ARGS="-V" test
 %postun
 %systemd_postun_with_restart dnf-makecache.timer
 
-%changelog
+%post automatic
+%systemd_post dnf-automatic.timer
 
-* Tue Sep 10 2013 Radek Holý <rholy at redhat.com> - 0.3.11-3.git7bdc9e1
-- Fix TypeError raised when _enc called with None (RhBug:1003220) (Radek Holy)
-
-* Tue Sep 3 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.11-2.git54f55e0
-- Adapt to librepo-1.0.0, handle.url is handle.urls now. (Ales Kozumplik)
-- repo: use all mirrors/baseurls when downloading a package. (Ales Kozumplik)
-- Librepo API changes (Zdenek Pavlas)
-- logging: log failed checksum check in verifyLocalPkg() (Ales Kozumplik)
-- strings: fix suggestion to clean metadata to use 'dnf' (RhBug:997403) (Ales Kozumplik)
-
-* Tue Aug 13 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.11-1.git7d717c7
-- fix: UnicodeDecodeError during group install (RhBug:996138) (Ales Kozumplik)
-- doc: update the README, move it to .rst (Ales Kozumplik)
-- doc: dnf.conf.8 missing from the RPM. (Ales Kozumplik)
-- remove: TODO file (Ales Kozumplik)
-- output: in list_transaction() list the active transaction members. (RhBug:977753) (Ales Kozumplik)
-- rename: Output.listTransaction() -> list_transaction(). (Ales Kozumplik)
-- doc: 'best' config option. (Ales Kozumplik)
-- repo: do not let librepo resolve mirrorlists on each package download. (RhBug:979042) (Ales Kozumplik)
-- remove: mdpolicy and mddownloadpolicy from config. (Ales Kozumplik)
-- The DNF default multilib policy is 'best'. (Ales Kozumplik)
-- fix: typo in subj.get_best_query() call. (Ales Kozumplik)
-
-* Mon Jul 22 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.10-1.giteb9dddb
-- repos: skip_if_unavailable is True by default now. (RhBug:984483) (Ales Kozumplik)
-- doc: omitted from 6f70d2b, also mention the related bugzillas. (Ales Kozumplik)
-- doc: why 'dnf provides /bin/python' fails on Fedora. (Ales Kozumplik)
-
-* Thu Jul 4 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.9-1.giteff4c49
-- fix: errors handling messages in do_transaction(). (RhBug:981310) (Ales Kozumplik)
-- fix: typo in 2b4c085 (Ales Kozumplik)
-- fix: unhandled OSError exceptions if MD was renewed during transaction (RhBug:980227) (Ales Kozumplik)
-- remove: update_md.py (Ales Kozumplik)
-- fix: traceback expiring no longer valid repos. (RhBug:979942) (Ales Kozumplik)
-- fix: traceback: accessing base.history from download_packages(). (Ales Kozumplik)
-- api: Base.build_repo factory method. (Ales Kozumplik)
-- python3: absolute imports in cli.main (Ales Kozumplik)
-- refactor: KeyboardInterrupt handling in cli.main. (Ales Kozumplik)
-- repo: pass substituting variables down into librepo's Handle. (RhBug:964584) (Ales Kozumplik)
-
-* Mon Jun 24 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.8-1.git85524ae
-- fix: tracebacks when installing to an empty installroot (RhBug:975858) (Ales Kozumplik)
-- doc: 'dnf erase kernel' erases all the kernels. (Ales Kozumplik)
-- i18n: even if we have a legit encoding, don't assume it covers the entire UCD (RhBug:976652) (Ales Kozumplik)
-- stray self._filelists in Sack. (Ales Kozumplik)
-- fix: traceback on check-update when there's a repo without any source. (RhBug:974866) (Ales Kozumplik)
-- fix: missing os import in i18n.py (RhBug:974427) (Ales Kozumplik)
-- fix: traceback for a regular user when /var/lib/dnf/uuid is not world-readable. (Ales Kozumplik)
-- put user locks in /run/user/$UID/dnf. (Ales Kozumplik)
-- Minimally teach dnf about rpm rpm >= 4.10 scriptlet start and stop callbacks (Panu Matilainen)
-- remove: unnecessary testing for prehistoric rpm versions in callback (Panu Matilainen)
-- remove: unused rpmtrans internal _dopkgtup() helper (Panu Matilainen)
-- remove: unused rpm repackaging support remnants (Panu Matilainen)
-- locking: as an example introduce rpmdb_lock and metadata_cache_lock. (Ales Kozumplik)
-- locking: remove the old global locking code. (Ales Kozumplik)
-- locking: implement and test ProcessLock class. (Ales Kozumplik)
-- Add base_url arg to librepo.download(). (RhBug:968159) (Zdenek Pavlas)
-- remove: unused miscutils.compareVerOnly() (Panu Matilainen)
-- remove: unused miscutils.stringToVersion() and .flagToString() (Panu Matilainen)
-- remove: unused string_to_prco_tuple() and imports used only by it (Panu Matilainen)
-- remove: unused miscutils.rpmOutToStr() (Panu Matilainen)
-- remove: miscutils.formatRequire() (Panu Matilainen)
-- remove: miscutils.rangeCompare() and rangeCheck() (Panu Matilainen)
-- remove: miscutils.pkgTupleFromHeader() (Panu Matilainen)
-- remove: rpmUtils.TransactionWrapper.returnLeafNodes() method (Panu Matilainen)
-- doc: what 'list recent' does. (Ales Kozumplik)
-- Resurrect "list recent" functionality (RhBug:908491) (Panu Matilainen)
-- doc: add bug summaries to the release notes. (Ales Kozumplik)
-
-* Wed May 29 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.7-1.gitf8bdc98
-- ensure the cachedir in Persistor._expired_repos(). (RhBug:967732) (Ales Kozumplik)
-- do not load available repositories into the sack for the erase command. (RhBug:916662) (Ales Kozumplik)
-- Take out the bulk of YumBaseCli.doTransaction() and put in in Base.do_transaction(). (Ales Kozumplik)
-- add noop NoOutputCallback.verify_tsi_package(). (Ales Kozumplik)
-- implement dnf.repo.Repo.__repr__(). (Ales Kozumplik)
-- output: show the RPMDB alternation warning on debug level only. (Ales Kozumplik)
-
-* Mon May 27 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.6-1.git24ce938
-- make the dnf.Base object a context manager. (Ales Kozumplik)
-- de-support YUMPDB, not used. (Ales Kozumplik)
-- persistent data about repositories should be in cachedir. (Ales Kozumplik)
-- YumRPMTransError: use sensible e.value (RhBug:966372) (Zdenek Pavlas)
-- store and use information about forced repo expiry (RhBug:965410) (Ales Kozumplik)
-- update LibrepoCallbackAdaptor. (RhBug:963627) (Zdenek Pavlas)
-- repo: do not try to download or erase packages from a local repo. (RhBug:965114) (Ales Kozumplik)
-- tests: weaken the assertion in test_toplevel(). (Ales Kozumplik)
-- fix: traceback on 'dnf group install i-dont-exist'. (RhBug:964467) (Ales Kozumplik)
-- Handle exceptions in Repo.get_package. (RhBug:963680) (Ales Kozumplik)
-- subject parsing: inform the user if given spec matches no package on install. (RhBug:963133) (Ales Kozumplik)
-- logging: setup provisional logging even before config. (Ales Kozumplik)
-- refactor: dnf.logging, put the setup() methods inside a new class, Logging. (Ales Kozumplik)
-- provides command: there's no reason to output so many empty lines between matches. (Ales Kozumplik)
-
-* Mon May 13 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.5-1.git85c924f
-- recognize 'dnf list upgrades' as an 'dnf list updates' alias. (Ales Kozumplik)
-- transaction: add reinstall as a special action. (Ales Kozumplik)
-- rename: Base.buildTransaction() -> build_transaction() (Ales Kozumplik)
-- remove: dnf.yum.output.pkgname_ui() et al. (Ales Kozumplik)
-- remove: dnf/yum/transactioninfo.py (Ales Kozumplik)
-- transaction: migrate remaining legit uses of tsInfo before it's purged. (Ales Kozumplik)
-- remove: SimpleCliCallBack, _getTxmbr from rpmtrans.py slimming it down. (Ales Kozumplik)
-- transactions: fix post_transaction_output(). (Ales Kozumplik)
-- transaction: make history work again. (Ales Kozumplik)
-- refactor: Base.populate_ts() is now Transaction.populate_rpm_ts(). (Ales Kozumplik)
-- rename: verify_pkg() -> verify_tsi_package(). (Ales Kozumplik)
-- rename: verifyTransaction() -> verify_transaction() (Ales Kozumplik)
-- transactions: reenable transaction verification. (Ales Kozumplik)
-- remove: dnf/cli/callback.py, dnf/yum/callbacks.py. (Ales Kozumplik)
-- populate_ts: handle obsoleting installs. (Ales Kozumplik)
-- transaction: bring rpmtrans.py into a shape where transactions can be tested. (Ales Kozumplik)
-- tests: adapt unit tests to dnf.transaction scheme of things. (Ales Kozumplik)
-- transaction: migrate YumBaseCli.doTransaction() to dnf.transaction. (Ales Kozumplik)
-- transaction: migrate YumOutput.list_transaction() to dnf.transaction. (Ales Kozumplik)
-- transaction: rewrite Base.populate_ts() to use dnf.transaction. (Ales Kozumplik)
-- transaction: use dnf.transaction instead of dnf.yum.transactioninfo in buildTransaction(). (Ales Kozumplik)
-- add dnf.util.group_by_filter() (Ales Kozumplik)
-- transaction: foundations of dnf.Transaction and a test. (Ales Kozumplik)
-- transactions: do not use TransactionData to store the packaging requests. (Ales Kozumplik)
-- tests: rename: test_transaction.py -> test_transactiondata.py (Ales Kozumplik)
-- repo: handle reviving exceptions like any other librepo exception. (RhBug:961549) (Ales Kozumplik)
-- doc: fix spellings of the distro-sync command. (RhBug:959990) (Ales Kozumplik)
-
-* Thu May 2 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.4-1.git03fd687
-- tests: python3 absolute imports. (Ales Kozumplik)
-- tests: rename: tests/base.py -> tests/support.py (Ales Kozumplik)
-- hawkey commit 8d77592 simplifies detecting obsoleted transaction members. (Ales Kozumplik)
-- adapt to hawkey change fe99cd4. (Ales Kozumplik)
-- adapt to hawkey changes f8334df and 0fee231 (Goal.obsoleted_by_package et al.) (Ales Kozumplik)
-- cli, transaction: recognize and report proper obsoletes. (RhBug:887317) (Ales Kozumplik)
-- refactor: get_best_query() and get_best_selector() both accept 'forms' now. (Ales Kozumplik)
-- comps: support 'dnf group install'. (Ales Kozumplik)
-- repo: integrate API improvements in librepo. (Ales Kozumplik)
-- comps: start readding group commands, 'dnf groups summary' works now. (Ales Kozumplik)
-- fix invisible 'repolist -v' output. (Ales Kozumplik)
-- remove: main() methods from the production code. (Ales Kozumplik)
-- cosmetic: remove trailing whitespace in dnf/yum/pgpgmsg.py (Ales Kozumplik)
-- tests: do not create repos/gen. (Ales Kozumplik)
-- comps: fix up Base.read_comps() and Comps.compile() so the comps loading works. (Ales Kozumplik)
-- tests: cosmetics: alphabetically reorder FakeConf items. (Ales Kozumplik)
-- doc: protected_packages not supported. (Ales Kozumplik)
-- tests: add sanity test for dnf.yum.comps (Ales Kozumplik)
-- repo: with timed makecache only try one mirror per repo. (RhBug:922667) (Ales Kozumplik)
-- repo: latest librepo needs explicit perform() to get the metalink. (Ales Kozumplik)
-- repo: clean mirrorlist files too on 'dnf clean'. (Ales Kozumplik)
-- repo: with librepo >= 88c90e3 the "baseurl is the first mirror" hack is gone. (Ales Kozumplik)
-- remove: some unused arch-related methods from dnf.yum.base (Ales Kozumplik)
-- fix typo in the spec. (Ales Kozumplik)
-
-* Wed Apr 17 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.3-3.git91ba5e0
-- packaging: do not run 'systemctl' to enable the timer service manually. (Ales Kozumplik)
-- cosmetic: trailing whitespace in dnf/cli/callback.py (Ales Kozumplik)
-- UI: call updates upgrades. (RhBug:903775) (Ales Kozumplik)
-- doc: the logging setup. (Ales Kozumplik)
-- logging: in logfiles, mark the start of the logging session. (Ales Kozumplik)
-- logging: replace setup_from_dnf_levels with a helpers that takes the conf object. (Ales Kozumplik)
-- put the name of the loglevel into the logfiles (Ales Kozumplik)
-- logging: do not do logging.basicConfig() from CLI. (Ales Kozumplik)
-- remove: dnf.const.LOG_TRANSACTION no longer needed. (Ales Kozumplik)
-- doc: fix documentation build. (Ales Kozumplik)
-- remove: dnf.yum.logginglevels (Ales Kozumplik)
-- finally, setup logging via the new module. (Ales Kozumplik)
-- Migrate the remaining DEBUG_3 and DEBUG_4 levels. (Ales Kozumplik)
-- semi-automatically migrate the old logging levels to the new ones. (Ales Kozumplik)
-- Fix how checking whether the CLI is verbose is done. (Ales Kozumplik)
-- Use the new DNF loggers instead of the old ones. (Ales Kozumplik)
-- add the logger for rpm transactions. (Ales Kozumplik)
-- tests: unified stdout/stderr patching. (Ales Kozumplik)
-- implement dnf.logging module (Ales Kozumplik)
-- refactor: add absolute imports some places so I can have dnf.logging module. (Ales Kozumplik)
-- fix traceback with 'dnf history info <number>'. (Ales Kozumplik)
-- cosmetic: trailing whitespace in comps.py (Ales Kozumplik)
-- refactor: use print() the python3 function-style. (Ales Kozumplik)
-- rename: dnf.exceptions.YumBaseError to dnf.exceptions.Error. (Ales Kozumplik)
-- move: dnf.yum.Errors to dnf.exceptions. (Ales Kozumplik)
-- remove deprecation exceptions and warnings. (Ales Kozumplik)
-- remove: dnf/yum/mdparser.py (Ales Kozumplik)
-- remove: unused exception classes. (Ales Kozumplik)
-- remove: dnf/yum/repoMDObject.py (Ales Kozumplik)
-
-* Mon Apr 8 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.2-1.gitf3818b4
-- remove: dnf.yum.failover. (Ales Kozumplik)
-- 'reviving' repositories using checksum information from metalink. (Ales Kozumplik)
-- dnf.util.touch() accepts 'no_create' parameter now. (Ales Kozumplik)
-- refactor: repo: move checking of existing metadata from _try_cache() to load(). (Ales Kozumplik)
-- refactor: put Repo.load() at the correct place in the class. (Ales Kozumplik)
-- refactor: call repo._Result what it really is: Metadata. (Ales Kozumplik)
-- 'repolist -v' shows the mirrorlists now. (Ales Kozumplik)
-- tests: specify debug_solver in FakeConf too. (Ales Kozumplik)
-- debugging: add '--debugsolver' CLI switch. (Ales Kozumplik)
-- doc: the excludes behavior (RhBug:947258) (Ales Kozumplik)
-- doc: fix failing documentation build after dnf.yum.metalink is gone. (Ales Kozumplik)
-- fix configuration of per-repo excludes. (Ales Kozumplik)
-- tests: repo handle: test the useragent string. (Ales Kozumplik)
-- remove: dnf.yum.metalink. (Ales Kozumplik)
-- remove: ResolveDepCommand. (Ales Kozumplik)
-- support repo.skip_if_unavailable config option. (RhBug:889202) (Ales Kozumplik)
-- refactor: base.sack is no longer a lazy attribute. (Ales Kozumplik)
-- nicer error reporting in repo.py. (Ales Kozumplik)
-- Enable 'interruptible' for librepo operations. (Ales Kozumplik)
-- set user agent for librepo communication too. (RhBug:923384) (Ales Kozumplik)
-- fix superfluous 'None' in the error output. (Ales Kozumplik)
-- don't be pompous about the newlines in error messages. (Ales Kozumplik)
-- fix traceback with --enablerepo=<repo> and an unknown repo <repo>. (Ales Kozumplik)
-- logging: journald was getting the wrong idea about the program name. (Ales Kozumplik)
-- debugging: output the package metadata on '--debugrepodata'. (Ales Kozumplik)
-- fix traceback in UpgradeToCommand.doCheck(). (Ales Kozumplik)
-- also start the dnf-makecache.timer on installation. (Ales Kozumplik)
-
-* Thu Mar 28 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.1-3.git7b1d503
-- makecache: no on_ac_power binary means we should go ahead anyway. (Ales Kozumplik)
-- packaging: run systemd scriptlets so the timer service can be enabled by default. (Ales Kozumplik)
-- :doc release notes - the metadata_expire default has changed. (Ales Kozumplik)
-- :doc start making release notes. (Ales Kozumplik)
-- abrt: change the event to post-create so journalctl works (post-create runs under root) (Ales Kozumplik)
-- :doc clean_requiremennts_on_remove on by default. (Ales Kozumplik)
-- logging: put a log file marker on each run, nicer 'Ext Commands' output. (Ales Kozumplik)
-- :doc explain how timed metadata syncing can be tweaked and disabled. (Ales Kozumplik)
-- Do not execute the timer makecache when running on a battery. (RhBug:919769) (Ales Kozumplik)
-- :doc create dnf.config, describe 'metadata_timer_sync'. (Ales Kozumplik)
-- config defaults: timer makecache every 3 hours, bump default md expiry to 48 hours. (RhBug:892064) (Ales Kozumplik)
-- mechanism for disabling or changing the period of automatic metadata syncing. (RhBug:922664) (Ales Kozumplik)
-- run the regular makecache from a systemd timer (RhBug:878826) (Ales Kozumplik)
-- stop using the obsoleted repo.cache property (RhBug:926871) (Ales Kozumplik)
-- userconfirm() mustn't fail on EOFError. (RhBug:922521) (Ales Kozumplik)
-- :doc document --nogpgcheck and --releasever. (Ales Kozumplik)
-- :doc remove yum.repos and yum.yumRepo from the obsoleted API documentation. (Ales Kozumplik)
-- :doc sort CLI options alphabetically. (Ales Kozumplik)
-- Downgrade only once if multiple old versions are available. (RhBug:921294) (Ales Kozumplik)
-- :refactor, improve base.ts management, use properties. (Ales Kozumplik)
-- Filter rpm.RPMPROB_FILTER_OLDPACKAGE for all transactions whatsover (RhBug:916657) (Ales Kozumplik)
-- :tests :move test_yumbase.py -> test_base.py (Ales Kozumplik)
-- remove: finally drop yum/repos.py and yum/yumRepo.py (Ales Kozumplik)
-
-* Thu Mar 21 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.0-2.git3e52d13
-- repo: use shutil.move instead of os.rename (Ales Kozumplik)
-
-* Wed Mar 20 2013 Aleš Kozumplík <ales at redhat.com> - 0.3.0-1.git4c0def8
-- create the cache dir ourselves. (Ales Kozumplik)
-- have a user_agent const. (Ales Kozumplik)
-- update readme with librepo link, tidy up. (Ales Kozumplik)
-- librepo: add interface for inspecting metadata in more detail. (Ales Kozumplik)
-- librepo: use a context manager for the temp dir. (Ales Kozumplik)
-- librepo: support --cacheonly again. (Ales Kozumplik)
-- librepo: add repo.dump() and test it using ConfigParser and StringIO. (Ales Kozumplik)
-- Make --nogpgcheck work as expected again. (Ales Kozumplik)
-- fix installation of gpg keys for RPM package verification. (Ales Kozumplik)
-- librepo: the latest librepo version has somewhat nicer python bindings. (Ales Kozumplik)
-- librepo: do not clear the packages/ when syncing new MD. (Ales Kozumplik)
-- tests: add testing of Repo.get_package(). (Ales Kozumplik)
-- tests: move rpms and the yum repo to the same folder. (Ales Kozumplik)
-- librepo: refactor dnf.repo.Repo. (Ales Kozumplik)
-- tests: bring dnf.repo.Repo under unit test. (Ales Kozumplik)
-- librepo: force expiring metadata, making 'dnf makecache' work again. (Ales Kozumplik)
-- librepo: downloading packages works again. (Ales Kozumplik)
-- fix bug in LibrepoCallbackAdaptor causing the progreess bar go nuts on 2nd repo. (Ales Kozumplik)
-- repo.gpgcheck does not mean repo.repo_gpgcheck. (Ales Kozumplik)
-- repo: better error reporting in sync() (Ales Kozumplik)
-- tests: make test_configure_repos() pass again. (Ales Kozumplik)
-- delete YumTextMeter. (Ales Kozumplik)
-- librepo: make the text progress bar work again. (Ales Kozumplik)
-- Finally: download repos through librepo. (Ales Kozumplik)
-- Cli._configure_repos() uses get_multiple(). (Ales Kozumplik)
-- base.repos is now a dict itself. (Ales Kozumplik)
-- dnf.repo.Repo: add dummy callback setters. (Ales Kozumplik)
-- tests: RepoDict allows simplifying MockYumBase. (Ales Kozumplik)
-- librepo: use the new Repo and RepoDict. (Ales Kozumplik)
-- add dnf.util.empty(). (Ales Kozumplik)
-- remove: base.add_enable_repo. (Ales Kozumplik)
-- move yum.Base to yum.base.Base. (Ales Kozumplik)
-- strip things out of dnf/yum/__init__.py (Ales Kozumplik)
-- remove: _YumCostExclude, unused. (Ales Kozumplik)
-- removing: trim down dnf.yum.packages. (Ales Kozumplik)
-- removal: pruning imports in dnf.yum.__init__ (Ales Kozumplik)
-- Repo and RepoDict. (Ales Kozumplik)
-- tests: suite hawkey change 54f4f0f introducing make_cache_dir Sack() parameter. (Ales Kozumplik)
-- doc: document clean_requirements_on_remove is on by default. (Ales Kozumplik)
-- remove yum references from the default dnf.conf (RhBug:919714) (Ales Kozumplik)
-- New build: 0.2.22-1 (Ales Kozumplik)
-- New version: dnf-0.2.22 (Ales Kozumplik)
-- move is_glob_pattern() to dnf.util (Ales Kozumplik)
-- validate parameter never used in Base.read_repos() (Ales Kozumplik)
-- cosmetic: refactor: getReposFromConf*() -> read_*_repos() (Ales Kozumplik)
-- refactor: introduce Cli.command property. (Ales Kozumplik)
-- repos: get rid of Base.prerepoconf. (Ales Kozumplik)
-- repos: simplify how repos are set up. (Ales Kozumplik)
-- always use iniparse, do not fallback to ConfigParser. (Ales Kozumplik)
-- 'dnf repolist' is silent. (Ales Kozumplik)
-- enabling/disabling repos doesn't respect the cmdline order. (RhBug:913143) (Ales Kozumplik)
-- install by filenames and globbed filenames (RhBug:912130) (Ales Kozumplik)
-- doc: man page: better describe the input patterns. (Ales Kozumplik)
-- tests: test_installroot_with_etc() broken on other machines. (Ales Kozumplik)
-- fix globbing installs again. (Ales Kozumplik)
-- 'dnf list' shouldn't look for provides. (Ales Kozumplik)
-- pass installroot to the sack. (RhBug:RhBug) (Ales Kozumplik)
-- fix traceback in Cli.configure() with --installroot (Ales Kozumplik)
-- at least do not traceback if history undo doesn't work. (Ales Kozumplik)
-- adapt to new interface hawkey.Subject interface (34bae0c) (Ales Kozumplik)
-- search: try to make the better matches come on top. (Ales Kozumplik)
-- search: perform the search case-insensitive. (Ales Kozumplik)
-- tests: bring the cli.search() method under the test. (Ales Kozumplik)
-- repo: when reverting repomd.xml make sure we reset its srcfile (RhBug:904706) (Ales Kozumplik)
-
-* Fri Mar 1 2013 Aleš Kozumplík <ales at redhat.com> - 0.2.22-1.git97180b8
-- move is_glob_pattern() to dnf.util (Ales Kozumplik)
-- validate parameter never used in Base.read_repos() (Ales Kozumplik)
-- cosmetic: refactor: getReposFromConf*() -> read_*_repos() (Ales Kozumplik)
-- refactor: introduce Cli.command property. (Ales Kozumplik)
-- repos: get rid of Base.prerepoconf. (Ales Kozumplik)
-- repos: simplify how repos are set up. (Ales Kozumplik)
-- always use iniparse, do not fallback to ConfigParser. (Ales Kozumplik)
-- 'dnf repolist' is silent. (Ales Kozumplik)
-- enabling/disabling repos doesn't respect the cmdline order. (RhBug:913143) (Ales Kozumplik)
-- install by filenames and globbed filenames (RhBug:912130) (Ales Kozumplik)
-- doc: man page: better describe the input patterns. (Ales Kozumplik)
-- tests: test_installroot_with_etc() broken on other machines. (Ales Kozumplik)
-- fix globbing installs again. (Ales Kozumplik)
-- 'dnf list' shouldn't look for provides. (Ales Kozumplik)
-- pass installroot to the sack. (RhBug:915048) (Ales Kozumplik)
-- fix traceback in Cli.configure() with --installroot (Ales Kozumplik)
-- at least do not traceback if history undo doesn't work. (Ales Kozumplik)
-- adapt to new interface hawkey.Subject interface (34bae0c) (Ales Kozumplik)
-- search: try to make the better matches come on top. (Ales Kozumplik)
-- search: perform the search case-insensitive. (Ales Kozumplik)
-- tests: bring the cli.search() method under the test. (Ales Kozumplik)
-- repo: when reverting repomd.xml make sure we reset its srcfile (RhBug:904706) (Ales Kozumplik)
-
-* Mon Feb 11 2013 Aleš Kozumplík <ales at redhat.com> - 0.2.21-1.git050524e
-- Selector.get_best_selector() should be able to handle simple version (not just EVR). (Ales Kozumplik)
-- remove YumUtilBase(). (Ales Kozumplik)
-- Do not check for unfinished transactions in Base.buildTransaction() (RhBug:902810) (Ales Kozumplik)
-- list command accepts NEVRA combinations as arguments. (RhBug:901833) (Ales Kozumplik)
-- tests: fix Cli.configure() test to pass without the main system conffile present. (Ales Kozumplik)
-- tests: test toplevel from test_sanity. (Ales Kozumplik)
-- case-insensitive matching in Subject. (Ales Kozumplik)
-
-* Wed Jan 30 2013 Aleš Kozumplík <ales at redhat.com> - 0.2.20-2.gite7d9c11
-- cosmetic: trailing whitespace in dnf.yum.callbacks (Ales Kozumplik)
-- rename 'YumBase' to 'Base'. (Ales Kozumplik)
-- remove base.yumvar property. (Ales Kozumplik)
-- Get rid of preconf. (Ales Kozumplik)
-- BaseConfig.overrides() (Ales Kozumplik)
-- YumOptionParser._non_nones2dict() (Ales Kozumplik)
-- cosmetic: trailing whitespace in dnf.yum.parser (Ales Kozumplik)
-- Make the Base object accessible from the toplevel 'dnf' module. (Ales Kozumplik)
-- Config option for the default userinput answer. (Ales Kozumplik)
-- tests: reflect changes to querying updates in hawkey commit 961ca40. (Ales Kozumplik)
-
-* Fri Jan 18 2013 Aleš Kozumplík <ales at redhat.com> - 0.2.20-1.gitdec970f
-- fix '--exclude' command-line option (related RhBug:871892)
-- Introduce --best switch to force trying latest packages in transactions ( RhBug:882211)
-- fix '--disablerepo' (related RhBug:871892)
-- Tell RPM it's OK to downgrade during dist-sync (RhBug:894339)
-- 'dnf install' should skip already installed packages and say so. (RhBug:882851)
-
-* Thu Jan 3 2013 Aleš Kozumplík <ales at redhat.com> - 0.2.19-1.gitb901926
-- options parsing: do not access repositories before cache_c is ready. (RhBug:889706)
-- move to the latest hawkey using libsolv-0.2.3
-
-* Mon Dec 17 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.18-1.git3701ad6
-- Allow specifying removal with 'name.arch' and others (RhBug:877449)
-- install: use Subject class to allow installation by provides (RhBug:880303)
-- Remove rpmdb_warn_checks() and friends. (RhBug:884623)
-- DNF should not allow .src.rpm installation (RhBug:884603).
-- Some DNF commands require different Goal/Solver configuration. (RhBug:873079)
-- Match ordinary package provides in 'dnf provides <provide>', not just files. (RhBug:871892)
-- doc: update how arguments to commands can be specified.
-
-* Mon Nov 26 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.17-1.git6a055e6
-- fix UnicodeDecodeError crash in history.py. (RhBug:877332)
-- Support the 'dnf upgrade-to' command.
-- fix: transaction traceback when rpmdb contains a package with no HDRID (RhBug:878823)
-- Enable 'dnf distro-sync'.
-
-* Thu Nov 15 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.16-1.git9f050eb
-- massive dead code removals accross the code base (3k LOC dropped)
-- fix match_counter.sorted() tracebacks if its empty. (RhBug:873875)
-- fix: callback error in some rpm transactions because of nonexistent Package.verEQ.
-- Plain 'dnf update' ignores packages with broken deps. (RhBug:872948)
-- support 'dnf upgrade' syntax to do the same thing as 'dnf update'.
-- refactor: YumCommand is just Command now.
-- Split Cli out of the YumBaseCli eintopf.
-- Enable 'dnf reinstall <pkg> again.
-
-* Thu Nov 8 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.15-3.git5d85f6b
-- support full NEVRA specification for the erase and install commands. (RhBug: 867553)
-- Enable check-update command. (RhBug: 868810)
-- Support listing patterned obsoletes.
-- fix traceback: list --showduplicates.
-
-* Wed Oct 17 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.14-2.git4831982
-- works against hawkey-0.3.0
-- search: sort so same matched keywords stay next to each other.
-- Add custom ABRT collector.
-- fix: _preload_file() does the right thing when destfn does not exist.
-- Make the logfiles readable by everyone.
-- yumRepo: log when we are leaving MD files behind and don't know why.
-- Support globs in the install command when multilib_policy is 'best'. (RhBug: 864710)
-- Fix failing unit tests on i686.
-
-* Fri Oct 5 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.13-1.gitda60a96
-- fix: traceback in YumBase.verifyTransaction() for local .rpms.
-- Enable the 'clean' command. (RhBug: 853940)
-- download no sqlite metadata.
-- Reenable the search command. (RhBug: 853940)
-
-* Fri Sep 21 2012 Aleš Kozumplík <ales at redhat.com> - 0.2.12-1.git832ecd1
-- fix 'dnf --version'. (RhBug: 857710)
-- Latest hawkey compatibilities.
-- Run 'make check' when building the RPM.
-
-* Thu Sep 13 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.11-1.git9da1268
-- Make 'dnf help' work. (RhBug: 853923)
-- Add the man page. (RhBug: 853923)
-
-* Thu Aug 30 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.10-1.gitb06d183
-- Latest hawkey compatibilities.
-- RhBug: 852803
-
-* Thu Aug 23 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.9-1.git5dea6e7
-- Latest hawkey compatibilities.
-- RhBug: 847098
-
-* Mon Aug 6 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.7-6.git8ac0959
-- Maintenance build to conform the new hawkey repo loading APIs.
-
-* Tue Jul 24 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.7-5.git632e1eb
-- Clean dependencies during 'dnf erase'.
-- fixed: readline problems under pdb.
-- 'dnf info' now works.
-- removal: yum.sqlitesack, yum.packageSack and RPMDBPackageSack.
-
-* Wed Jul 18 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.2.7-3.gitb74addd
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Mon Jul 16 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.7-2.gitb74addd
-- Add missing rpmUtils.error.
-
-* Mon Jul 16 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.7-1.git3f2389e
-- First Fedora rawhide build.
-
-* Wed Jul 11 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-11.gitb1f1c08
-- More licensing changes.
-
-* Mon Jul 9 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-10.git964faae
-- Licensing changes.
-
-* Thu Jun 21 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-9.gitb4aa5c1
-- More spec fixes.
-
-* Tue Jun 19 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-8.gitb4aa5c1
-- Fix rpmlint issues.
-
-* Wed Jun 13 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-6.git9d95cc5
-- Depend on the latest python-hawkey.
-
-* Tue Jun 12 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-4.git2791093
-- Fix missing cli/__init__.py
-
-* Fri Jun 8 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.6-3	.git365322d
-- Logging improvements.
-
-* Wed May 16 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.5-2.gitf594065
-- erase: remove dependants along with their dependency.
-
-* Mon May 14 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.4-3.gite3adb52
-- Use cron to prefetch metadata.
-- Always loads filelists (attempts to fix some resolving problems).
-
-* Mon May 7 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.3-1.gitbbc0801
-- Fix assert in hawkey's sack.c.
-
-* Fri May 4 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.2-6.git6787583
-- support plain 'dnf update'.
-- disable plugins.
-
-* Thu Apr 26 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.1-2.gitde732f5
-- Create 'etc/dnf/dnf.conf'.
+%preun automatic
+%systemd_preun dnf-automatic.timer
 
-* Wed Apr 25 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.2.0-2.git70753dd
-- New version.
+%postun automatic
+%systemd_postun_with_restart dnf-automatic.timer
+
+%changelog
 
-* Thu Apr 12 2012 Aleš Kozumplík <akozumpl at redhat.com> - 0.1-0.git833c054
-- Initial package.
+* Fri Feb 27 2015 Jan Silhan <jsilhan at redhat.com> - 0.6.4-1
+- revert of e56dd41, does not fix BZ:1109927 now (Jan Silhan)
+- revert of 516aad9, does not fix BZ:1071854 now (Jan Silhan)
+- removed unused dnf-makecache.cron (Jan Silhan)
+- renamed erase command to remove (RhBug:1160806) (Jan Silhan)
+- spec: made python3-dnf package installed by default in f23 (Jan Silhan)
+- AUTHORS: changed email address (Jan Silhan)
+- doc: improve the documentation of the "install" command (Radek Holy)
+- "dnf install non-existent" should fail (Radek Holy)
+- tests: add some tests of Base.install (Radek Holy)
+- tests: add some tests of Base.package_install (Radek Holy)
+- Revert "doesn't upgrade packages by installing local packages" (RhBug:1160950) (Radek Holy)
+- lint: fix all Pylint errors in test_install (Radek Holy)
+- tests: add some tests to test_install (Radek Holy)
+- tests: improve some tests in test_install (Radek Holy)
+- cosmetic: reorder tests in test_install (Radek Holy)
+- cosmetic: rename some tests in test_install and add some docstrings (Radek Holy)
+- AUTHORS: updated (Jan Silhan)
+- Add support for armv6hl (Peter Hjalmarsson)
+- doc: subject.__init__(): what is pkg_spec (Jan Silhan)
+- doc: mentioning raising IOError from Base.fill_sack() (Jan Silhan)
+- option_parser: fixed splitting multiple values (RhBug:1186710) (Jan Silhan)
+- AUTHORS: updated (Jan Silhan)
+- Standardize words describing boolean data type (Christopher Meng)
+- build 0.6.4-1 (Jan Silhan)
+- Adapt to librepo-1.7.13, metalink and mirrorlist are not loaded anymore when the repo is local. (Radek Holy)
+- not raises value error when no metadata exist (Jan Silhan)
+- README: fixed formating 2 (Jan Silhan)
+- README: fixed formating (Jan Silhan)
+- README: expanded DNF installation options (Jan Silhan)
+- allow snapshot versions (Michael Mraka)
+- simple script to build test package (Michael Mraka)
+- more standard way to find out latest commit (Michael Mraka)
+- let package version be specified on commandline (Michael Mraka)
+- New version: 0.6.4 (Jan Silhan)
+- Remove lock files during boot (RhBug:1154476) (Michal Luscon)
+- doc: groups are ordered not categories (Jan Silhan)
+- doc: added Package attributes to API (Jan Silhan)
+- README: link to bug reporting guide (Jan Silhan)
+- README: the official documentation is on readthedoc (Jan Silhan)
+- i18n: unicode encoding does not throw error (RhBug:1155877) (Jan Silhan)
+- conf: added minrate repo option (Related:RhBug:1175466) (Jan Silhan)
+- conf: added timeout repo option (RhBug:1175466) (Jan Silhan)
+- doc: api_queries: add 'file' filter description (RhBug:1186461) (Igor Gnatenko)
+- Adapt to librepo-1.7.13, metalink and mirrorlist are not loaded anymore when the repo is local. (Radek Holy)
+- not raises value error when no metadata exist (Jan Silhan)
+- Remove lock files during boot (RhBug:1154476) (Michal Luscon)
+- doc: groups are ordered not categories (Jan Silhan)
+- doc: added Package attributes to API (Jan Silhan)
+- README: link to bug reporting guide (Jan Silhan)
+- README: the official documentation is on readthedoc (Jan Silhan)
+- i18n: unicode encoding does not throw error (RhBug:1155877) (Jan Silhan)
+- conf: added minrate repo option (Related:RhBug:1175466) (Jan Silhan)
+- conf: added timeout repo option (RhBug:1175466) (Jan Silhan)
+- doc: api_queries: add 'file' filter description (RhBug:1186461) (Igor Gnatenko)
+- doc: documenting enablegroups (Jan Silhan)
+- log: printing metadata timestamp (RhBug:1170156) (Jan Silhan)
+- base: setup default cachedir value (RhBug:1184943) (Michal Luscon)
+- orders groups/environments by display_order tag (RhBug:1177002) (Jan Silhan)
+- no need to call create_cmdline_repo (Jan Silhan)
+- base: package-spec matches all packages which the name glob pattern fits (RhBug:1169165) (Michal Luscon)
+- doc: move dnf.conf to appropriate man page section (RhBug:1167982) (Michal Luscon)
+- tests: add test for blocking process lock (Michal Luscon)
+- lock: fix several race conditions in process lock mechanism (Michal Luscon)
+- base: use blocking process lock during download phase (RhBug:1157233) (Michal Luscon)
+- Update the Source0 generation commands in dnf.spec.in file (Parag Nemade)
+- Enhancement to dnf.spec.in file which follows current fedora packaging guidelines (Parag Nemade)
+- doc: add some examples and documentation of the core use case (RhBug:1138096) (Radek Holy)
+- bash-completion: enable downgrading packages for local files (RhBug:1181189) (Igor Gnatenko)
+- group: prints plain package name when package not in any repo (RhBug:1181397) (Jan Silhan)
+- spec: own __pycache__ for python 3 (Igor Gnatenko)
+- changed hawkey.log dir to /var/log (RhBug:1175434) (Jan Silhan)
+- bash-completion: handle sqlite errors (Igor Gnatenko)
+- use LANG=C when invoking 'dnf help' and 'sed' with regular expressions (Jakub Dorňák)
+- spec: own __pycache__ directory for py3 (Igor Gnatenko)
+- doc: mentioning Install command accepts path to local rpm package (Jan Silhan)
+- groups: in erase and install cmd non-existent group does not abort transaction (Jan Silhan)
+- doc: running tests in README (Jan Silhan)
+- api: transaction: added install_set and remove_set (RhBug:1162887) (Jan Silhan)
+- cosmetic: fixed some typos in documentation (Jan Silhan)
+- groups: environments described after @ sign works (RhBug:1156084) (Jan Silhan)
+- own /etc/dnf/protected.d (RhBug:1175098) (Jan Silhan)
+- i18n: computing width of char right (RhBug:1174136) (Jan Silhan)
+- cosmetic: renamed _splitArg -> _split_arg (Jan Silhan)
+- conf: removed include name conflict (RhBug:1055910) (Jan Silhan)
+- output: removed unpredictible decision based on probability introduced in ab4d2c5 (Jan Silhan)
+- output: history list is not limited to 20 records (RhBug:1155918) (Jan Silhan)
+- doc: referenced forgotten bug fix to release notes (Jan Silhan)
+- cosmetic: doc: removed duplicated word (Jan Silhan)
+- doc: described unavailable package corner case with skip_if_unavailable option (RhBug:1119030) (Jan Silhan)
+- log: replaced size with maxsize directive (RhBug:1177394) (Jan Silhan)
+- spec: fixed %ghost log file names (Jan Silhan)
+
+* Mon Dec 8 2014 Jan Silhan <jsilhan at redhat.com> - 0.6.3-2
+- logging: reverted naming from a6dde81
+
+* Mon Dec 8 2014 Jan Silhan <jsilhan at redhat.com> - 0.6.3-1
+- transifex update (Jan Silhan)
+- bash-completion: don't query if we trying to use local file (RhBug:1153543) (Igor Gnatenko)
+- bash-completion: fix local completion (RhBug:1151231) (Igor Gnatenko)
+- bash-completion: use sqlite cache from dnf-plugins-core (Igor Gnatenko)
+- base: output a whole list of installed packages with glob pattern (RhBug:1163063) (Michal Luscon)
+- cli: _process_demands() does not respect --caheonly (RhBug:1151854) (Michal Luscon)
+- new authors added (Jan Silhan)
+- install: allow installation of provides with glob (Related:RhBug:1148353) (Michal Luscon)
+- tests: removed mock patch for _, P_ (Jan Silhan)
+- fixed error summary traceback (RhBug:1151740) (Jan Silhan)
+- doc: swap command alternative mentioned (RhBug:1110780) (Jan Silhan)
+- base: package_reinstall works only with the same package versions (Jan Silhan)
+- base: package_install allows install different arch of installed package (Jan Silhan)
+- base: package_downgrade prints message on failure (Jan Silhan)
+- base: package_upgrade does not reinstall or downgrade (RhBug:1149972) (Jan Silhan)
+- groups: searches also within localized names (RhBug:1150474) (Jan Silhan)
+- Run tests with C locales. (Daniel Mach)
+- Adds new motd emitter for dnf-automatic (RhBug:995537) (Kushal Das)
+- Fix wrong cache directory path used to clean up binary cache (Satoshi Matsumoto)
+- fix: traceback in history info <name> (RhBug: 1149952) (Tim Lauridsen)
+- logging: added logrotate script for hawkey.log (RhBug:1149350) (Jan Silhan)
+- output: renamed displayPkgsInGroups (Jan Silhan)
+- logging: renamed log files (RhBug:1074715)" (Jan Silhan)
+- comps: Environment differentiates optional and mandatory groups (Jan Silhan)
+- group info handles environments (RhBug:1147523) (Jan Silhan)
+- deltarpm enabled by default (RhBug:1148208) (Jan Silhan)
+- doc: deplist command (Jan Silhan)
+- doc: minor fixes + repo references changed (Jan Silhan)
+- spec: requires rpm-plugin-systemd-inhibit (RhBug:1109927) (Jan Silhan)
+
+* Fri Oct 3 2014 Jan Silhan <jsilhan at redhat.com> - 0.6.2-1
+- transifex update (Jan Silhan)
+- refactor: move MakeCacheCommand out into its own file. (Ales Kozumplik)
+- api: add dnf.cli.CliError. (Ales Kozumplik)
+- Update user_faq.rst (Stef Krie)
+- Make --refresh play nice with lazy commands. (Ales Kozumplik)
+- bash-completion: more faster completing install/remove (Igor Gnatenko)
+- bash-completion: complete 'clean|groups|repolist' using help (Igor Gnatenko)
+- Allow some commands to use stale metadata. (RhBug:909856) (Ales Kozumplik)
+- does not install new pkgs when updating from local pkgs (RhBug:1134893) (Jan Silhan)
+- doesn't upgrade packages by installing local packages (Related:RhBug:1138700) (Jan Silhan)
+- refactor: repo: separate concepts of 'expiry' and 'sync strategy'. (Ales Kozumplik)
+- fix: dnf.cli.util.* leaks file handles. (Ales Kozumplik)
+- remove: YumRPMTransError. (Ales Kozumplik)
+- rename: Base's runTransaction -> _run_transaction(). (Ales Kozumplik)
+- drop unused parameter of Base.verify_transaction(). (Ales Kozumplik)
+- bash-completion: new completion from scratch (RhBug:1070902) (Igor Gnatenko)
+- py3: add queue.Queue to pycomp. (Ales Kozumplik)
+- locking: store lockfiles with the resource they are locking. (RhBug:1124316) (Ales Kozumplik)
+- groups: marks reason 'group' for packages that have no record yet (RhBug:1136584) (Jan Silhan)
+- goal: renamed undefined name variable (Jan Silhan)
+- refactor: split out and clean up the erase command. (Ales Kozumplik)
+- py3: fix traceback in fmtColumns() on a non-subscriptable 'columns'. (Ales Kozumplik)
+- groups: allow erasing depending packages on remove (RhBug:1135861) (Ales Kozumplik)
+- history: fixed wrong set operation (RhBug:1136223) (Jan Silhan)
+- base: does not reinstall pkgs from local rpms with install command (RhBug:1122617) (Jan Silhan)
+- refactor: crypto: drop the integer keyid representation altogether. (Ales Kozumplik)
+- crypto: fix importing rpmfusion keys. (RhBug:1133830) (Ales Kozumplik)
+- refactor: crypto: Key is a class, not an "info" dict. (Ales Kozumplik)
+- repos: fix total downloaded size reporting for cached packages. (RhBug:1121184) (Ales Kozumplik)
+
+* Thu Aug 28 2014 Jan Silhan <jsilhan at redhat.com> - 0.6.1-1
+- packaging: add dnf-yum. (Ales Kozumplik)
+- cli: added plugins missing hint (RhBug:1132335) (Jan Silhan)
+- using ts.addReinstall for package reinstallation (RhBug:1071854) (Jan Silhan)
+- Add history redo command. (Radek Holy)
+- Add a TransactionConverter class. (Radek Holy)
+- bash-completion: complete `help` with commands (Igor Gnatenko)
+- bash-completion: generate commands dynamically (Igor Gnatenko)
+- base: group_install accepts glob exclude names (RhBug:1131969) (Jan Silhan)
+- README: changed references to new repo location (Jan Silhan)
+- transifex update (Jan Silhan)
+- syntax: fixed indentation (Jan Silhan)
+- removed lt.po which was accidentally added in c2e9b39 (Jan Silhan)
+- lint: fix convention violations in the new source files (Radek Holy)
+- Fix setting of the resolving demand for repo-pkgs command. (Radek Holy)
+- Add repository-packages remove-or-distro-sync command. (RhBug:908764) (Radek Holy)
+- fix: traceback that GroupPersistor._original might not exist. (RhBug:1130878) (Ales Kozumplik)
+- pycomp: drop to_ord(). (Ales Kozumplik)
+- refactor: crypto.keyids_from_pubring() using _extract_signing_subkey(). (Ales Kozumplik)
+- fix: another 32-bit hex() problem in crypto. (Ales Kozumplik)
+- remove: pgpmsg.py. (Ales Kozumplik)
+- replace the whole of pgpmsg.py with gpgme and a dummy context. (Ales Kozumplik)
+- cosmetic: sort methods of Repo according to the coding standard. (Ales Kozumplik)
+- Fix dnf.crypto.keyinfo2keyid(). (Ales Kozumplik)
+- util: get rid of an inconvenient 'default_handle' constant. (Ales Kozumplik)
+- simplify misc.import_key_to_pubring()'s signature. (Ales Kozumplik)
+- cleanup: header of dnf.yum.pgpmsg. (Ales Kozumplik)
+- crypto: add crypto.retrieve() and drop Base._retrievePublicKey() (Ales Kozumplik)
+- cosmetic: order of functions in dnf.crypto. (Ales Kozumplik)
+- unicode: fixed locale.format error (RhBug:1130432) (Jan Silhan)
+- remove: misc.valid_detached_sig(). (Ales Kozumplik)
+- tests: some tests for dnf.crypto. (Ales Kozumplik)
+- crypto: use pubring_dir() context manager systematically. (Ales Kozumplik)
+- Drop unused argument from getgpgkeyinfo(). (Ales Kozumplik)
+- remove: Base._log_key_import(). (Ales Kozumplik)
+- doc: cosmetic: conf_ref: maintain alphabetical order of the options. (Ales Kozumplik)
+- crypto: document crypto options for repo. (Ales Kozumplik)
+- crypto: fixup procgpgkey() to work with Py3 bytes. (Ales Kozumplik)
+- dnf.util.urlopen(): do not create unicode streams for Py3 and bytes for Py2 by default. (Ales Kozumplik)
+- lint: delinting of the repo_gpgcheck patchset. (Ales Kozumplik)
+- Add CLI parts to let the user confirm key imports. (RhBug:1118236) (Ales Kozumplik)
+- gpg: make key decoding work under Py3. (Ales Kozumplik)
+- crypto: add dnf.crypto and fix things up so untrusted repo keys can be imported. (Ales Kozumplik)
+- transifex update (Jan Silhan)
+- syntax: fixed indentation (Jan Silhan)
+- packaging: pygpgme is a requirement. (Ales Kozumplik)
+- remove: support for gpgcakey gets dropped for now. (Ales Kozumplik)
+- repo: smarter _DetailedLibrepoError construction. (Ales Kozumplik)
+- repo: nicer error message on librepo's perform() failure. (Ales Kozumplik)
+- get_best_selector returns empty selector instead of None (Jan Silhan)
+- packaging: add automatic's systemd unit files. (RhBug:1109915) (Ales Kozumplik)
+- automatic: handle 'security' update_cmd. (Ales Kozumplik)
+
+* Tue Aug 12 2014 Aleš Kozumplík <ales at redhat.com> - 0.6.0-1
+- lint: fix convention violations in the new source files (Radek Holy)
+- Add "updateinfo [<output>] [<availability>] security" command. (RhBug:850912) (Radek Holy)
+- Add "updateinfo [<output>] [<availability>] bugfix" command. (Radek Holy)
+- Add "updateinfo [<output>] [<availability>] enhancement" command. (Radek Holy)
+- Add "updateinfo [<output>] [<availability>] [<package-name>...]" command. (Radek Holy)
+- Add "updateinfo [<output>] [<availability>] [<advisory>...]" command. (Radek Holy)
+- Add "updateinfo [<output>] all" command. (Radek Holy)
+- Add "updateinfo [<output>] updates" command. (Radek Holy)
+- Add "updateinfo [<output>] installed" command. (Radek Holy)
+- Add "-v updateinfo info" command. (Radek Holy)
+- Add "updateinfo info" command. (Radek Holy)
+- Add "updateinfo list" command. (Radek Holy)
+- Add "updateinfo available" command. (Radek Holy)
+- Add "updateinfo summary" command. (Radek Holy)
+- Add basic updateinfo command. (Radek Holy)
+- test: add updateinfo to the testing repository (Radek Holy)
+- test: support adding directory repos to Base stubs (Radek Holy)
+- test: really don't break other tests with the DRPM fixture (Radek Holy)
+- Load UpdateInfo.xml during the sack preparation. (Radek Holy)
+- Add Repo.updateinfo_fn. (Radek Holy)
+- lint: add Selector calls to false positives, it's a hawkey type. (Ales Kozumplik)
+- removed recursive calling of ucd in DownloadError (Jan Silhan)
+- does not throw error when selector is empty (RhBug:1127206) (Jan Silhan)
+- remove etc/version-groups.conf, not used. (Ales Kozumplik)
+- lint: dnf.conf.parser (Ales Kozumplik)
+- rename: dnf.conf.parser.varReplace()->substitute() (Ales Kozumplik)
+- pycomp: add urlparse/urllib.parser. (Ales Kozumplik)
+- move: dnf.yum.parser -> dnf.conf.parser. (Ales Kozumplik)
+- packaging: add dnf-automatic subpackage. (Ales Kozumplik)
+- doc: properly list the authors. (Ales Kozumplik)
+- automatic: add documentation, including dnf.automatic(8) man page. (Ales Kozumplik)
+- dnf-automatic: tool supplying the yum-cron functionality. (Ales Kozumplik)
+- doc: cosmetic: fixed indent in proxy directive (Jan Silhan)
+- include directive support added (RhBug:1055910) (Jan Silhan)
+- refactor: move MultiCallList to util. (Ales Kozumplik)
+- cli: do not output that extra starting newline in list_transaction(). (Ales Kozumplik)
+- refactor: extract CLI cachedir magic to cli.cachedir_fit. (Ales Kozumplik)
+- transifex update (Jan Silhan)
+- move: test_output to tests/cli. (Ales Kozumplik)
+- refactor: move Term into its own module. (Ales Kozumplik)
+- refactoring: cleanup and linting in dnf.exceptions. (Ales Kozumplik)
+- lint: test_cli.py (Ales Kozumplik)
+- lint: rudimentary cleanups in tests.support. (Ales Kozumplik)
+- refactor: loggers are module-level variables. (Ales Kozumplik)
+- groups: promote unknown-reason installed packages to 'group' on group install. (RhBug:1116666) (Ales Kozumplik)
+- c82267f refactoring droppped plugins.run_transaction(). (Ales Kozumplik)
+- cli: sort packages in the transaction summary. (Ales Kozumplik)
+- refactor: cli: massively simplify how errors are propagated from do_transaction(). (Ales Kozumplik)
+- groups: rearrange things in CLI so user has to confirm the group changes. (Ales Kozumplik)
+- groups: commiting the persistor data should only happen at one place. (Ales Kozumplik)
+- groups: visualizing the groups transactions. (Ales Kozumplik)
+- Add dnf.util.get_in() to navigate nested dicts with sequences of keys. (Ales Kozumplik)
+- group persistor: generate diffs between old and new DBs. (Ales Kozumplik)
+- Better quoting in dnf_pylint. (Ales Kozumplik)
+- lint: logging.py. (Ales Kozumplik)
+- Do not print tracebacks to the tty on '-d 10' (RhBug:1118272) (Ales Kozumplik)
+- search: do not double-report no matches. (Ales Kozumplik)
+- refactor: move UpgradeToCommand to its own module. (Ales Kozumplik)
+
+* Mon Jul 28 2014 Aleš Kozumplík <ales at redhat.com> - 0.5.5-1
+- packaging: also add pyliblzma to BuildRequires. (Ales Kozumplik)
+- essential cleanup in dnf.yum.misc, removing a couple of functions too. (Ales Kozumplik)
+- remove: Base.findDeps and friends. (Ales Kozumplik)
+- Make pyliblzma a requriement. (RhBug:1123688) (Ales Kozumplik)
+- whole user name can contain non-ascii chars (RhBug:1121280) (Jan Silhan)
+- Straighten up the exceptions when getting a packages header. (RhBug:1122900) (Ales Kozumplik)
+- tests: refactor: rename test_resource_path() -> resource_path() and use it more. (Ales Kozumplik)
+- transifex update (Jan Silhan)
+- remove: conf.commands. (Ales Kozumplik)
+- proxy username and password, for both CLI and API. (RhBug:1120583) (Ales Kozumplik)
+- conf: only 'main' is a reserved section name. (Ales Kozumplik)
+- refactoring: cleanup a couple of lint warnings in base.py. (Ales Kozumplik)
+- refactoring: move repo reading implementation out of dnf.Base. (Ales Kozumplik)
+- refactor: repo_setopts is a CLI thing and doesn't belong to Base. (Ales Kozumplik)
+- refactor: move cleanup methods to dnf.cli.commands.clean. (Ales Kozumplik)
+- depsolving: doesn't install both architectures of pkg by filename (RhBug:1100946) (Jan Silhan)
+- refactor: put CleanCommand in its own module. (Ales Kozumplik)
+- cli: avoid 'Error: None' output on malformed CLI commands. (Ales Kozumplik)
+- remove the special SIGQUIT handler. (Ales Kozumplik)
+- api: In Repo(), cachedir is a required argument. (Ales Kozumplik)
+- api: better describe how Repos should be created, example. (RhBug:1117789) (Ales Kozumplik)
+- Base._conf lasts the lifetime of Base and can be passed via constructor. (Ales Kozumplik)
+- doc: faq: having Yum and DNF installed at the same time. (Ales Kozumplik)
+- remove: protected_packages config option, it has been ignored. (Ales Kozumplik)
+- fix: misleading error message when no repo is enabled. (Ales Kozumplik)
+
+* Wed Jul 16 2014 Aleš Kozumplík <ales at redhat.com> - 0.5.4-1
+- pkg name from rpm transaction callback is in Unicode (RhBug:1118796) (Jan Silhan)
+- packaging: python3-dnf depends on dnf. (RhBug:1119032) (Ales Kozumplik)
+- Ship /usr/bin/dnf-3 to run DNF under Py3. (RhBug:1117678) (Ales Kozumplik)
+- packaging: own /etc/dnf/plugins. (RhBug:1118178) (Ales Kozumplik)
+- fix: pluginconfpath is a list. (Ales Kozumplik)
+- cosmetic: use classmethod as a decorator in config.py. (Ales Kozumplik)
+- cleanup: imports in dnf.cli.output (Ales Kozumplik)
+- lint: straightforward lint fixes in dnf.cli.output. (Ales Kozumplik)
+- Repo.__setattr__ has to use the parsed value. (Ales Kozumplik)
+- Repo priorities. (RhBug:1048973) (Ales Kozumplik)
+- repo: simplify how things are propagated to repo.hawkey_repo. (Ales Kozumplik)
+- refactor: concentrate Repo.hawkey_repo construction in Repo.__init__(). (Ales Kozumplik)
+- bash-completion: Update command and option lists, sort in same order as --help (Ville Skyttä)
+- bash-completion: Use grep -E instead of deprecated egrep (Ville Skyttä)
+- output: fixed identation of info command output (Jan Silhan)
+- i18n: calculates right width of asian utf-8 strings (RhBug:1116544) (Jan Silhan)
+- transifex update + renamed po files to Fedora conventions (Jan Silhan)
+- remove: CLI: --randomwait (Ales Kozumplik)
+- cli: fix: --installroot has to be used with --releasever (RhBug:1117293) (Ales Kozumplik)
+- Base.reset(goal=True) also resets the group persistor (RhBug:1116839) (Ales Kozumplik)
+- tests: fix failing DistroSync.test_distro_sync(). (Ales Kozumplik)
+- logging: RPM transaction markers are too loud. (Ales Kozumplik)
+- logging: silence drpm a bit. (Ales Kozumplik)
+- logging: put timing functionality into one place. (Ales Kozumplik)
+- repolist: fix traceback with disabled repos. (RhBug:1116845) (Ales Kozumplik)
+- refactor: cleanups in repolist. (Ales Kozumplik)
+- lint: remove some unused imports. (Ales Kozumplik)
+- cli: break out the repolsit command into a separate module. (Ales Kozumplik)
+- does not crash with non-ascii user name (RhBug:1108908) (Jan Silhan)
+- doc: document 'pluginpath' configuration option. (RhBug:1117102) (Ales Kozumplik)
+- Spelling fixes (Ville Skyttä)
+- cli: Fix software name in --version help (Ville Skyttä)
+- doc: ip_resolve documented at two places. remove one. (Ales Kozumplik)
+
+* Thu Jul 3 2014 Aleš Kozumplík <ales at redhat.com> - 0.5.3-1
+- packaging: bump hawkey dep to 0.4.17. (Ales Kozumplik)
+- api: remove Base.select_group(). (Ales Kozumplik)
+- tests: cleanup our base test case classes a bit. (Ales Kozumplik)
+- Add DNF itself among the protected packages. (Ales Kozumplik)
+- api: plugins: add the resolved() hook. (Ales Kozumplik)
+- api: expose Transaction introspecting in the API. (RhBug:1067156) (Ales Kozumplik)
+- api: add basic documentation for dnf.package.Package. (Ales Kozumplik)
+- tests: cosmetic: conf.protected_packages is ignored, drop it in FakeConf. (Ales Kozumplik)
+- cli: simplify exception handling more. (Ales Kozumplik)
+- Fixed a minor typo in user_faq - 'intall' should be 'install' (Martin Preisler)
+- fixed encoding of parsed config line (RhBug:1110800) (Jan Silhan)
+- syntax: replaced tab with spaces (Jan Silhan)
+- doc: acknowledge the existence of plugins on the man page (RhBug:1112669) (Ales Kozumplik)
+- improve the 'got root?' message of why a transaction couldn't start. (RhBug:1111569) (Ales Kozumplik)
+- traceback in Base.do_transaction. to_utf8() is gone since 06fb280. (Ales Kozumplik)
+- fix traceback from broken string formatting in _retrievePublicKey(). (RhBug:1111997) (Ales Kozumplik)
+- doc: replace Yum with DNF in command_ref.rst (Viktor Ashirov)
+- Fix a missing s in the title (mscherer)
+- api: add dnf.rpm.detect_releasever() (Ales Kozumplik)
+- Detect distroverpkg from 'system-release(release)' (RhBug:1047049) (Ales Kozumplik)
+- bulid: add dnf/conf to cmake. (Ales Kozumplik)
+- lint: clean up most lint messages in dnf.yum.config (Ales Kozumplik)
+- remove: couple of dead-code methods in dnf.yum.config. (Ales Kozumplik)
+- api: document client's responsibility to preset the substitutions. (RhBug:1104757) (Ales Kozumplik)
+- move: rpmUtils -> rpm. (Ales Kozumplik)
+- refactor: move yumvar out into its proper module dnf.conf.substitutions. (Ales Kozumplik)
+- refactor: turn dnf.conf into a package. (Ales Kozumplik)
+- doc: api_base.rst pointing to nonexistent method. (Ales Kozumplik)
+- remove: some logging from Transaction.populate_rpm_ts(). (Ales Kozumplik)
+- Update cli_vs_yum.rst (James Pearson)
+- api: doc: queries relation specifiers, with an example. (RhBug:1105009) (Ales Kozumplik)
+- doc: phrasing in ip_resolve documentation. (Ales Kozumplik)
+- cli: refactored transferring cmdline options to conf (Jan Silhan)
+- cli: added -4/-6 option for using ipv4/ipv6 connection (RhBug:1093420) (Jan Silhan)
+- cosmetic: empty set inicialization (Jan Silhan)
+- repo: improve the RepoError message to include URL. (Ales Kozumplik)
+- remove: dnf.yum.config.writeRawRepoFile(). (Ales Kozumplik)
+- remove: bunch of (now) blank config options. (Ales Kozumplik)
+- removed unique function (Jan Silhan)
+- tests: mock.assert_has_calls() enforces its iterable arguments in py3.4. (Ales Kozumplik)
+- logging: improve how repolist logs the total number of packages. (Ales Kozumplik)
+- logging: Base.close() should not log to the terminal. (Ales Kozumplik)
+
+* Wed May 28 2014 Aleš Kozumplík <ales at redhat.com> - 0.5.2-1
+- doc: packaging: add license block to each .rst. (Ales Kozumplik)
+- cosmetic: replaced yum with dnf in comment (Jan Silhan)
+- takes non-ascii cmd line input (RhBug:1092777) (Jan Silhan)
+- replaced 'unicode' conversion functions with 'ucd' (RhBug:1095861) (Jan Silhan)
+- using write_to_file py2/py3 compatibility write function (Jan Silhan)
+- encoding: all encode methods are using utf-8 coding instead of default ascii (Jan Silhan)
+- fixed rpmbuild warning of missing file (Jan Silhan)
+- transifex update (Jan Silhan)
+- fixed typos in comments (Jan Silhan)
+- Drop --debugrepodata and susetags generation with it. (Ales Kozumplik)
+- doc: document --debugsolver. (Ales Kozumplik)
+- fix: 'dnf repo-pkgs' failures (RhBug:1092006) (Radek Holy)
+- lint: make dnf_pylint take '-s' that suppresses line/column numbers. (Ales Kozumplik)
+- doc: cli_vs_yum: we do not promote installs to the obsoleting package. (RhBug:1096506) (Ales Kozumplik)
+- dealing with installonlies, we always need RPMPROB_FILTER_OLDPACKAGE (RhBug:1095580) (Ales Kozumplik)
+- transifex update (Jan Silhan)
+- arch: recognize noarch as noarch's basearch. (RhBug:1094594) (Ales Kozumplik)
+- pylint: clean up dnf.repo. (Ales Kozumplik)
+- sslverify: documentation and bumped librepo require. (Ales Kozumplik)
+- repos: support sslverify setting. (RhBug:1076045) (Ales Kozumplik)
+- search: exact matches should propagate higher. (RhBug:1093888) (Ales Kozumplik)
+- refactor: concentrate specific search functionality in commands.search. (Ales Kozumplik)
+- refactor: SearchCommand in its own file. (Ales Kozumplik)
+- pylint: fix around one hundred pylint issues in dnf.base. (Ales Kozumplik)
+- pylint: add simple pylint script (Ales Kozumplik)
+- autoerase: write out the debugdata used to calculate redundant packages. (Ales Kozumplik)
+- cosmetic: fix pylint comment in test_group.py. (Ales Kozumplik)
+- refactor: err_mini_usage() is public. (Ales Kozumplik)
+- refactor: fix several pylint errors in dnf.cli.commands.group. (Ales Kozumplik)
+- fix: 'dnf remove' is deprecated so autoremove should be autoerase. (Ales Kozumplik)
+- doc: command_ref: remove the deprecated aliases from the initial list. (Ales Kozumplik)
+- Add autoremove command. (RhBug:963345) (Ales Kozumplik)
+- refactor: Base.push_userinstalled() is public. (Ales Kozumplik)
+- Remove sudo from dnf-completion.bash RhBug:1073457 (Elad Alfassa)
+- exclude switch takes <package-spec> as a parameter (Jan Silhan)
+- using nevra glob query during list command (RhBug:1083679) (Jan Silhan)
+- removed rpm.RPMPROB_FILTER_REPLACEOLDFILES filter flag (Jan Silhan)
+- test: changed tests according to new distro-sync behavior (Jan Silhan)
+- packaging: cosmetic: copyright years in bin/dnf. (Ales Kozumplik)
+- bin/dnf: run the python interpreter with -OO. (Ales Kozumplik)
+
+* Fri May 2 2014 Aleš Kozumplík <ales at redhat.com> - 0.5.1-1
+- drpm: output stats (RhBug:1065882) (Ales Kozumplik)
+- refactor: architectures. (Ales Kozumplik)
+- cli: be lot less verbose about dep processing. (Ales Kozumplik)
+- groups: do not error out if group install/remove produces no RPM transaction. (Ales Kozumplik)
+- fix: do not traceback on comps remove operations if proper pkg reasons can not be found. (Ales Kozumplik)
+- fix: tracebacks in 'group remove ...' (Ales Kozumplik)
+- groups: move all the logic of persistor saving from main.py to Base. (Ales Kozumplik)
+- groups: auto-saving the groups persistor. (RhBug:1089864) (Ales Kozumplik)
+- transifex update (Jan Silhan)
+- remove: profiling code from cli.main. (Ales Kozumplik)
+- remove: removal of dead code (Miroslav Suchý)
+- doc: changes to rhbug.py to work on readthedocs.org. (Ales Kozumplik)
+- doc: build the documentation without any dependencies (on DNF or anything else). (Ales Kozumplik)
+- doc: make clear where one should expect bin/dnf (Miroslav Suchý)
+- abrt: disable abrt for 'dnf makecache timer' run from systemd.service. (RhBug:1081753) (Ales Kozumplik)
+- remove: stray itertools import from group.py. (Ales Kozumplik)
+
+* Wed Apr 23 2014 Aleš Kozumplík <ales at redhat.com> - 0.5.0-1
+- doc: fix formatting in api_cli.rst. (Ales Kozumplik)
+- doc: document operation of 'group upgrade'. (Ales Kozumplik)
+- comps: ensure only packages of 'group' reason get deleted on 'group erase'. (Ales Kozumplik)
+- comps: store 'group' reason when installing a group-membering package. (Ales Kozumplik)
+- Override Goal.get_reason(). (Ales Kozumplik)
+- Add dnf.goal.Goal deriving from hawkey.Goal. (Ales Kozumplik)
+- fix: encoding of yumdb directory names in py3. (Ales Kozumplik)
+- tests: clean up the functions that load seeded comps a bit. (Ales Kozumplik)
+- remove: cli._*aybeYouMeant(). (Ales Kozumplik)
+- simplify groups/envs API methods in Base a lot. (Ales Kozumplik)
+- tests: add test for Base._translate_comps_pkg_types() (Ales Kozumplik)
+- refactor: move the group listing etc. methods() away from Base into GroupCommand. (Ales Kozumplik)
+- api: add group.upgrade opration to Base and CLI (RhBug:1029022) (Ales Kozumplik)
+- remove: OriginalGroupPersistor. (Ales Kozumplik)
+- groups: store format version of the groups db. (Ales Kozumplik)
+- groups: saving the persistent data. (Ales Kozumplik)
+- refactor: extract out the transactioning part of _main(). (Ales Kozumplik)
+- groups: Integrate the redone componenets with Base. (Ales Kozumplik)
+- Add comps Solver. (Ales Kozumplik)
+- groups: redo the GroupPersistor class. (Ales Kozumplik)
+- doc: faq: why we don't check for root. (RhBug:1088166) (Ales Kozumplik)
+- cosmetic: reordered import statements (Jan Silhan)
+- added --refresh option (RhBug:1064226) (Jan Silhan)
+- added forgotten import (Jan Silhan)
+- fixed import errors after yum/i18n.py removal (Jan Silhan)
+- removed to_utf8 from yum/i18n.py (Jan Silhan)
+- removed to_str from yum/i18n.py (Jan Silhan)
+- removed utf8_text_fill from yum/i18n.py (Jan Silhan)
+- removed utf8_width from yum/i18n.py (Jan Silhan)
+- removed utf8_width_fill from yum/i18n.py (Jan Silhan)
+- removed to_unicode from yum/i18n.py (Jan Silhan)
+- make all strings unicode_literals implicitly (Jan Silhan)
+- moved _, P_ to dnf/i18n.py (Jan Silhan)
+- removed utf8_valid from yum/i18n.py (Jan Silhan)
+- removed str_eq from yum/i18n.py (Jan Silhan)
+- removed exception2msg from yum/i18n.py (Jan Silhan)
+- removed dummy_wrapper from yum/i18n.py (Jan Silhan)
+- cosmetics: leave around the good things from 660c3e5 (documentation, UT). (Ales Kozumplik)
+- Revert "fix: provides are not recognized for erase command. (RhBug:1087063)" (Ales Kozumplik)
+- fix: provides are not recognized for erase command. (RhBug:1087063) (Ales Kozumplik)
+- test: fix UsageTest test, so it work without dnf is installed on the system PEP8 cleanup (Tim Lauridsen)
+- cleanup: getSummary() and getUsage() can be dropped entirely now. (Ales Kozumplik)
+- test: use Command.usage & Command.summary API in unittest (Tim Lauridsen)
+- show plugin commands in separate block api: add new public Command.usage & Command.summary API cleanup: make Commands (Tim Lauridsen)
+- tests: move libcomps test to a separate test file. (Ales Kozumplik)
+- refactor: put DistoSyncCommand into its own file (Tim Lauridsen)
+- refactor: commands.group: _split_extcmd is a static method. (Ales Kozumplik)
+- GroupsCommand: make the way comps are searched more robust. (RhBug:1051869) (Ales Kozumplik)
+- tests: move GroupCommand tests to a more proper place. (Ales Kozumplik)
+- fix leak: Base.__del__ causes GC-uncollectable circles. (Ales Kozumplik)
+- gruops: 'list' and similar commands should run without root. (RhBug:1080331) (Ales Kozumplik)
+- refactor: conf is given to Output on instantiation. (Ales Kozumplik)
+- remove: Command.done_command_once and Command.hidden. (Ales Kozumplik)
+- [doc] improve documentation of '--best' (RhBug:1084553) (Ales Kozumplik)
+- api: Command.base and Command.cli are API attributes. (Ales Kozumplik)
+- demands: similarly to 78661a4, commands should set the exit success_exit_status directly. (Ales Kozumplik)
+- demands: commands requiring resolving dymamically need to set the demand now. (Ales Kozumplik)
+- doc: typo in group doc. (RhBug:1084139) (Ales Kozumplik)
+- api: Base.resolve() takes allow_erasing. (RhBug:1073859) (Ales Kozumplik)
+- refactor: OptionParser._checkAbsInstallRoot is static. (Ales Kozumplik)
+- option_parser: remove base dependency. (Ales Kozumplik)
+- move: dnf.cli.cli.OptionParser -> dnf.cli.option_parser.OptionParser. (Ales Kozumplik)
+- doc: 'clean packages' incorrectly mentions we do not delete cached packages. (RhBug:1083767) (Ales Kozumplik)
+- fix: TypeError in dnf history info <id> (RHBug: #1082230) (Tim Lauridsen)
+- Start new version: 0.5.0. (Ales Kozumplik)
+- remove: instance attrs of Base, namely cacheonly. (Ales Kozumplik)
+- tests: remove: support.MockCli. (Ales Kozumplik)
+- tests: fix locale independence. (Radek Holy)
+- cleanups in cli.OptionParser. (Ales Kozumplik)
+- fix: PendingDeprecationWarning from RPM in gpgKeyCheck(). (Ales Kozumplik)
+- api: add Cli.demands.root_user (RhBug:1062889) (Ales Kozumplik)
+- api: add Cli.demands and Command.config() to the API (RhBug:1062884) (Ales Kozumplik)
+- Integrate DemandSheet into CLI. (Ales Kozumplik)
+- Command.configure() takes the command arguments like run(). (Ales Kozumplik)
+- Add dnf.cli.demand.DemandSheet. (Ales Kozumplik)
+- remove: dead code for deplist, version and check-rpmdb commands. (Ales Kozumplik)
+- sync with transifex (Jan Silhan)
+- removed _enc method that did nothing without specspo (Jan Silhan)
+- fixed local reinstall error (Jan Silhan)
+- Fix Term.MODE setting under Python 3 in case of incapable tty stdout. (Radek Holy)
+- tests: move Term tests to better file. (Radek Holy)
+- refactor: move ReinstallCommand in its own module. (Ales Kozumplik)
+- rename: yumbase (case insensitive) -> base. (Ales Kozumplik)
+- fixed py3 error thrown by search command (Jan Silhan)
+- fixed wrong named variable (Jan Silhan)
+- fixed local downgrade error (Jan Silhan)
+- doc: fix Package references that are ambiguous now. (Ales Kozumplik)
+- fix: resource leak in yum.misc.checksum() under py3. (Ales Kozumplik)
+- fix: leak: couple of files objects left open. (Ales Kozumplik)
+- fix PendingDepreaction warning from rpm in _getsysver(). (Ales Kozumplik)
+- repo: Repo.cachedir is not a list. (Ales Kozumplik)
+- api: add Base.package_install et al. and Base.add_remote_rpm(). (RhBug:1079519) (Ales Kozumplik)
+- tests: fix tests broken under foreign locale after 32818b2. (Ales Kozumplik)
+- refactor: move install, downgrade and upgrade commands into separate modules. (Ales Kozumplik)
+- tests: refactor: make Term tests more isolated. (Radek Holy)
+- tests: fix terminfo capability independence. (Radek Holy)
+- api: explain that Base is a context manager with a close(). (Ales Kozumplik)
+- cosmetic: move stuff around in comps. (Ales Kozumplik)
+- api: groups: add comps.Package, add group.package_iter(). (RhBug:1079932) (Ales Kozumplik)
+- fixed installation of conflicted packages (RhBug:1061780) (Jan Silhan)
+- removed never executed code based on _ts_saved_file variable (Jan Silhan)
+- added logrotate script and ownership of log files to dnf (RhBug:1064211) (Jan Silhan)
+- fixed: highlight characters broken under py3 (RhBug:1076884) (Jan Silhan)
+- remove: base.deselectGroup(). it is not used. (Ales Kozumplik)
+- tests: fix broken InstallMultilib.test_install_src_fails(). (Ales Kozumplik)
+- groups: support manipulation with environments (RhBug:1063666) (Ales Kozumplik)
+- add dnf.util.partition(). (Ales Kozumplik)
+- refactor: RepoPersistor: use the global logger instead of an instance variable. (Ales Kozumplik)
+- groups: besides installed groups also store persistently the environments. (Ales Kozumplik)
+- rename: persistor.Groups -> ClonableDict. (Ales Kozumplik)
+- doc: cli_vs_yum: typography in bandwidth limiting section. (Ales Kozumplik)
+- doc: cli_vs_yum: we do not partially allow operations that install .srpm. (RhBug:1080489) (Ales Kozumplik)
+- refactor: imports order in cli/commands/__init__.py. (Ales Kozumplik)
+- refactor: groups: make all commands use _patterns2groups(). (Ales Kozumplik)
+- kernel: remove kernel-source from const.INSTALLONLYPKGS. (Ales Kozumplik)
+- build: 0.4.19-1 (Ales Kozumplik)
+- New version: 0.4.19 (Ales Kozumplik)
+- downloads: bump number of downloaded files on a skip. (RhBug:1079621) (Ales Kozumplik)
+- packaging: add dnf.cli.commands to the installation. (Ales Kozumplik)
+- refactor: put GroupCommand into its separate module. (Ales Kozumplik)
+- rename: make cli.commands a subpackage. (Ales Kozumplik)
+- AUTHORS: added Albert. (Ales Kozumplik)
+- test: fixed CacheTest.test_noroot() when running as root (Albert Uchytil)
+- AUTHORS: added Tim. (Ales Kozumplik)
+- fixes TypeError: '_DownloadErrors' object is not iterable (RhBug:1078832) (Tim Lauridsen)
+- fixed not including .mo files (Jan Silhan)
+- comps: _by_pattern() no longer does the comma splitting. (Ales Kozumplik)
+
+* Mon Mar 24 2014 Aleš Kozumplík <ales at redhat.com> - 0.4.19-1
+- downloads: bump number of downloaded files on a skip. (RhBug:1079621) (Ales Kozumplik)
+- packaging: add dnf.cli.commands to the installation. (Ales Kozumplik)
+- refactor: put GroupCommand into its separate module. (Ales Kozumplik)
+- rename: make cli.commands a subpackage. (Ales Kozumplik)
+- AUTHORS: added Albert. (Ales Kozumplik)
+- test: fixed CacheTest.test_noroot() when running as root (Albert Uchytil)
+- AUTHORS: added Tim. (Ales Kozumplik)
+- fixes TypeError: '_DownloadErrors' object is not iterable (RhBug:1078832) (Tim Lauridsen)
+- fixed not including .mo files (Jan Silhan)
+- comps: _by_pattern() no longer does the comma splitting. (Ales Kozumplik)
+- including .mo files correctly (Jan Silhan)
+- tests: fix locale independence. (Radek Holy)
+- remove: unused trashy methods in dnf.yum.misc. (Ales Kozumplik)
+- persistor: do not save Groups if it didn't change (RhBug:1077173) (Ales Kozumplik)
+- tests: simplify the traceback logging. (Ales Kozumplik)
+- main: log IO errors etc. thrown even during Base.__exit__. (Ales Kozumplik)
+- logging: do not log IOError tracebacks in verbose mode. (Ales Kozumplik)
+- refactor: move out main._main()'s inner error handlers. (Ales Kozumplik)
+- added gettext as a build dependency  for translation files (Jan Silhan)
+- translation: updated .pot file and fetched fresh .po files from transifex (Jan Silhan)
+- removed redundant word from persistor translation (Jan Silhan)
+- translation: show relative path in generated pot file (Jan Silhan)
+- refactor: replaced type comparisons with isinstance (Jan Silhan)
+- translation: added mo files generation and including them in rpm package (Jan Silhan)
+- removed unused imports in base.py (Jan Silhan)
+- doc: typo in Base.group_install(). (Ales Kozumplik)
+
+* Mon Mar 17 2014 Aleš Kozumplík <ales at redhat.com> - 0.4.18-1
+- api: drop items deprecated since 0.4.9 or earlier. (Ales Kozumplik)
+- api: deprecate Base.select_group() (Ales Kozumplik)
+- doc: document the group marking operations. (Ales Kozumplik)
+- api: add Base.group_install() with exclude capability. (Ales Kozumplik)
+- groups: recognize 'mark install' instead of 'mark-install'. (Ales Kozumplik)
+- Allow installing optional packages from a group. (RhBug:1067136) (Ales Kozumplik)
+- groups: add installing groups the object marking style. (Ales Kozumplik)
+- groups: add Base.group_remove(). (Ales Kozumplik)
+- groups: add support for marking/unmarking groups. (Ales Kozumplik)
+- groups: add dnf.persistor.GroupPersistor(), to store the installed groups. (Ales Kozumplik)
+- logging: log plugin import tracebacks on the subdebug level. (Ales Kozumplik)
+- rename: dnf.persistor.Persistor -> RepoPersistor. (Ales Kozumplik)
+- doc: update README and FAQ with the unabbreviated name. (Ales Kozumplik)
+- groups: fix grouplist crashes with new libcomps. (Ales Kozumplik)
+- Do not terminate for unreadable repository config. (RhBug:1071212) (Ales Kozumplik)
+- cli: get rid of ridiculous slashes and the file:// scheme on config read fails. (Ales Kozumplik)
+- repo: log more than nothing about a remote repo MD download. (Ales Kozumplik)
+- drpm: fallback to .rpm download on drpm rebuild error. (RhBug:1071501) (Ales Kozumplik)
+- remove: Base.download_packages()' inner function mediasort(). (Ales Kozumplik)
+- tests: tidy up the imports, in particular import mock from support. (Ales Kozumplik)
+- changed documentation of distro-sync command (Jan Silhan)
+- added distro-sync explicit packages support (RhBug:963710) (Jan Silhan)
+- renamed testcase to distro_sync_all (Jan Silhan)
+- Minor spelling (Arjun Temurnikar)
+- i18n: translate repo sync error message. (Ales Kozumplik)
+- add support for ppc64le (Dennis Gilmore)
+- there is no arch called arm64 it is aarch64 (Dennis Gilmore)
+
+* Wed Mar 5 2014 Aleš Kozumplík <ales at redhat.com> - 0.4.17-1
+- doc: in the faq, warn users who might install rawhide packages on stable. (RhBug:1071677) (Ales Kozumplik)
+- cli: better format the download errors report. (Ales Kozumplik)
+- drpm: properly report applydeltarpm errors. (RhBug:1071501) (Ales Kozumplik)
+- fixed Japanese translatated message (RhBug:1071455) (Jan Silhan)
+- generated and synchronized translations with transifex (Jan Silhan)
+- added transifex support to cmake (gettext-export, gettext-update) (Jan Silhan)
+- api: expose RepoDict.get_matching() and RepoDict.all() (RhBug:1071323) (Ales Kozumplik)
+- api: add Repo.set_progress_bar() to the API. (Ales Kozumplik)
+- tests: test_cli_progress uses StringIO to check the output. (Ales Kozumplik)
+- downloads: fix counting past 100% on mirror failures (RhBug:1070598) (Ales Kozumplik)
+- repo: log callback calls to librepo. (Ales Kozumplik)
+- Add repository-packages remove-or-reinstall command. (Radek Holy)
+- Support negative filtering by new repository name in Base.reinstall. (Radek Holy)
+- Support removal N/A packages in Base.reinstall. (Radek Holy)
+- Add repository-packages remove command. (Radek Holy)
+- refactor: Reduce amount of code in repository-packages subcommands. (Radek Holy)
+- Support filtering by repository name in Base.remove. (Radek Holy)
+- remove: BaseCli.erasePkgs (Radek Holy)
+- Add repository-packages reinstall command. (Radek Holy)
+- exceptions: improve empty key handling in DownloadError.__str__(). (Ales Kozumplik)
+- downloads: fix fatal error message return value from download_payloads() (RhBug:1071518) (Ales Kozumplik)
+- fixes problem with TypeError in Base.read_comps() in python3 (RhBug:1070710) (Tim Lauridsen)
+- fix read_comps: not throwing exceptions when repo has no repodata (RhBug:1059704) (Jan Silhan)
+- not decompressing groups when --cacheonly option is set (RhBug:1058224) (Jan Silhan)
+- added forgotten import (Jan Silhan)
+- Add repository-packages move-to command. (Radek Holy)
+- Add repository-packages reinstall-old command. (Radek Holy)
+- Support filtering by repository name in Base.reinstall. (Radek Holy)
+- tests: test effects instead of mock calls. (Radek Holy)
+- Wrap some recently added long lines. (Radek Holy)
+- remove: BaseCli.reinstallPkgs (Radek Holy)
+- repos: repos can never expire. (RhBug:1069538) (Ales Kozumplik)
+- build: rebuild with 9d95442 (updated summaries_cache). (Ales Kozumplik)
+- doc: update summaries_cache. (Ales Kozumplik)
+
+* Wed Feb 26 2014 Aleš Kozumplík <ales at redhat.com> - 0.4.16-1
+- fix: ensure MDPayload always has a valid progress attribute. (RhBug:1069996) (Ales Kozumplik)
+- refactor: Move repo-pkgs upgrade-to to a standalone class instead of reusing the UpgradeToCommand. (Radek Holy)
+- remove: BaseCli.updatePkgs (Radek Holy)
+- refactor: Remove the reference to updatePkgs from UpgradeSubCommand. (Radek Holy)
+- refactor: Remove the reference to updatePkgs from UpgradeCommand. (Radek Holy)
+- refactor: Move repo-pkgs upgrade to a standalone class instead of reusing the UpgradeCommand. (Radek Holy)
+- remove: BaseCli.installPkgs (Radek Holy)
+- refactor: Remove the reference to installPkgs from InstallSubCommand. (Radek Holy)
+- refactor: Remove the reference to installPkgs from InstallCommand. (Radek Holy)
+- refactor: Move repo-pkgs install to a standalone class instead of reusing the InstallCommand. (Radek Holy)
+- Revert "Support filtering by repository name in install_groupie." (Radek Holy)
+- Revert "Support filtering by repository name in Base.select_group." (Radek Holy)
+- Drop group filtering by repository name from installPkgs. (Radek Holy)
+- Drop "repo-pkgs install @Group" support. (Radek Holy)
+- refactor: Move CheckUpdateCommand.check_updates to BaseCli. (Radek Holy)
+- refactor: Move repo-pkgs check-update to a standalone class instead of reusing the CheckUpdateCommand. (Radek Holy)
+- refactor: Move repo-pkgs list to a standalone class instead of reusing the ListCommand. (Radek Holy)
+- tests: Add tests of repo-pkgs info against the documentation. (Radek Holy)
+- Fix "repo-pkgs info installed" behavior with respect to the documentation. (Radek Holy)
+- refactor: Move MockBase methods to BaseStubMixin. (Radek Holy)
+- refactor: Move repo-pkgs info to a standalone class instead of reusing the InfoCommand. (Radek Holy)
+- refactor: Move InfoCommand._print_packages to BaseCli.output_packages. (Radek Holy)
diff --git a/sources b/sources
index 4336ade..a123db0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-28851ba5e502499b98516ad58374240f  dnf-7bdc9e1.tar.xz
+40f5b75760adbe3b0f6007eb1510817e  dnf-8c7d45a.tar.xz


More information about the scm-commits mailing list