2019-10-14 13:16:10 +00:00
|
|
|
%global libsolv_version 0.7.6-3
|
2018-07-20 06:32:02 +00:00
|
|
|
%global libmodulemd_version 1.6.1
|
2019-07-03 11:47:04 +00:00
|
|
|
%global librepo_version 1.10.0
|
2019-10-01 11:18:05 +00:00
|
|
|
%global dnf_conflict 4.2.11
|
2018-06-26 10:43:44 +00:00
|
|
|
%global swig_version 3.0.12
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%bcond_with valgrind
|
|
|
|
|
|
|
|
# Do not build bindings for python3 for RHEL <= 7
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
|
|
%bcond_with python3
|
|
|
|
%else
|
|
|
|
%bcond_without python3
|
|
|
|
%endif
|
|
|
|
|
2019-07-03 11:47:04 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
%global rpm_version 4.14.2
|
|
|
|
%else
|
|
|
|
%global rpm_version 4.14.2.1-4
|
|
|
|
%endif
|
|
|
|
|
2018-11-22 08:41:51 +00:00
|
|
|
%if 0%{?rhel} > 7 || 0%{?fedora} > 29
|
2018-09-25 08:19:41 +00:00
|
|
|
# Disable python2 build by default
|
|
|
|
%bcond_with python2
|
|
|
|
%else
|
|
|
|
%bcond_without python2
|
|
|
|
%endif
|
|
|
|
|
2018-07-20 06:32:02 +00:00
|
|
|
%if 0%{?rhel} && ! 0%{?centos}
|
2017-01-06 10:22:30 +00:00
|
|
|
%bcond_without rhsm
|
|
|
|
%else
|
|
|
|
%bcond_with rhsm
|
|
|
|
%endif
|
|
|
|
|
2019-08-24 13:57:17 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
%bcond_with zchunk
|
|
|
|
%else
|
|
|
|
%bcond_without zchunk
|
|
|
|
%endif
|
|
|
|
|
2017-01-06 10:22:30 +00:00
|
|
|
%global _cmake_opts \\\
|
|
|
|
-DENABLE_RHSM_SUPPORT=%{?with_rhsm:ON}%{!?with_rhsm:OFF} \\\
|
|
|
|
%{nil}
|
|
|
|
|
2016-09-29 08:21:59 +00:00
|
|
|
Name: libdnf
|
2019-10-01 07:55:52 +00:00
|
|
|
Version: 0.35.5
|
2019-10-22 09:54:48 +00:00
|
|
|
Release: 4%{?dist}
|
2016-09-29 08:21:59 +00:00
|
|
|
Summary: Library providing simplified C and Python API to libsolv
|
|
|
|
License: LGPLv2+
|
2016-12-19 10:45:23 +00:00
|
|
|
URL: https://github.com/rpm-software-management/libdnf
|
2017-01-06 10:22:30 +00:00
|
|
|
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
2019-02-13 10:08:38 +00:00
|
|
|
Patch0001: 0001-Revert-9309e92332241ff1113433057c969cebf127734e.patch
|
2019-10-14 13:16:10 +00:00
|
|
|
Patch0002: 0001-Use-POOL_FLAG_WHATPROVIDESWITHDISABLED.patch
|
2019-10-22 09:54:48 +00:00
|
|
|
Patch0003: 0003-Fix-leaking-log-handlers-in-Sack.patch
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: gcc
|
2018-06-26 10:43:44 +00:00
|
|
|
BuildRequires: gcc-c++
|
2016-09-29 08:21:59 +00:00
|
|
|
BuildRequires: libsolv-devel >= %{libsolv_version}
|
2019-03-12 09:59:50 +00:00
|
|
|
BuildRequires: pkgconfig(librepo) >= %{librepo_version}
|
2016-09-29 08:21:59 +00:00
|
|
|
BuildRequires: pkgconfig(check)
|
|
|
|
%if %{with valgrind}
|
|
|
|
BuildRequires: valgrind
|
|
|
|
%endif
|
2017-06-12 10:58:31 +00:00
|
|
|
BuildRequires: pkgconfig(gio-unix-2.0) >= 2.46.0
|
2016-09-29 08:21:59 +00:00
|
|
|
BuildRequires: pkgconfig(gtk-doc)
|
2019-07-03 11:47:04 +00:00
|
|
|
BuildRequires: rpm-devel >= %{rpm_version}
|
2017-01-06 10:22:30 +00:00
|
|
|
%if %{with rhsm}
|
2018-07-20 06:32:02 +00:00
|
|
|
BuildRequires: pkgconfig(librhsm) >= 0.0.3
|
2017-01-06 10:22:30 +00:00
|
|
|
%endif
|
2019-08-24 13:59:20 +00:00
|
|
|
%if %{with zchunk}
|
2019-09-03 18:48:54 +00:00
|
|
|
BuildRequires: pkgconfig(zck) >= 0.9.11
|
2019-08-24 13:59:20 +00:00
|
|
|
%endif
|
2018-06-26 10:43:44 +00:00
|
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
|
|
BuildRequires: pkgconfig(json-c)
|
|
|
|
BuildRequires: pkgconfig(cppunit)
|
2018-12-12 09:42:38 +00:00
|
|
|
BuildRequires: pkgconfig(libcrypto)
|
2018-06-26 10:43:44 +00:00
|
|
|
BuildRequires: pkgconfig(modulemd) >= %{libmodulemd_version}
|
2018-08-13 12:11:32 +00:00
|
|
|
BuildRequires: pkgconfig(smartcols)
|
2018-07-27 10:20:35 +00:00
|
|
|
BuildRequires: gettext
|
2018-09-07 08:42:14 +00:00
|
|
|
BuildRequires: gpgme-devel
|
2016-09-29 08:21:59 +00:00
|
|
|
|
2018-06-26 10:43:44 +00:00
|
|
|
Requires: libmodulemd%{?_isa} >= %{libmodulemd_version}
|
2016-09-29 08:21:59 +00:00
|
|
|
Requires: libsolv%{?_isa} >= %{libsolv_version}
|
2019-03-12 09:59:50 +00:00
|
|
|
Requires: librepo%{?_isa} >= %{librepo_version}
|
2016-09-29 08:21:59 +00:00
|
|
|
|
2019-08-07 10:40:30 +00:00
|
|
|
%if %{without python2}
|
|
|
|
# Obsoleted from here so we can track the fast growing version easily.
|
|
|
|
# We intentionally only obsolete and not provide, this is a broken upgrade
|
|
|
|
# prevention, not providing the removed functionality.
|
|
|
|
Obsoletes: python2-%{name} < %{version}-%{release}
|
|
|
|
Obsoletes: python2-hawkey < %{version}-%{release}
|
|
|
|
Obsoletes: python2-hawkey-debuginfo < %{version}-%{release}
|
|
|
|
Obsoletes: python2-libdnf-debuginfo < %{version}-%{release}
|
|
|
|
%endif
|
|
|
|
|
2016-09-29 08:21:59 +00:00
|
|
|
%description
|
|
|
|
A Library providing simplified C and Python API to libsolv.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: libsolv-devel%{?_isa} >= %{libsolv_version}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development files for %{name}.
|
|
|
|
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2018-06-26 10:43:44 +00:00
|
|
|
%package -n python2-%{name}
|
|
|
|
%{?python_provide:%python_provide python2-%{name}}
|
|
|
|
Summary: Python 2 bindings for the libdnf library.
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
BuildRequires: python2-devel
|
2018-09-07 08:42:14 +00:00
|
|
|
%if 0%{?rhel} == 7
|
|
|
|
BuildRequires: python-sphinx
|
|
|
|
BuildRequires: swig3 >= %{swig_version}
|
|
|
|
%else
|
2018-06-26 10:43:44 +00:00
|
|
|
BuildRequires: python2-sphinx
|
|
|
|
BuildRequires: swig >= %{swig_version}
|
2018-09-07 08:42:14 +00:00
|
|
|
%endif
|
2018-06-26 10:43:44 +00:00
|
|
|
|
|
|
|
%description -n python2-%{name}
|
|
|
|
Python 2 bindings for the libdnf library.
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2018-06-26 10:43:44 +00:00
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
%package -n python3-%{name}
|
|
|
|
%{?python_provide:%python_provide python3-%{name}}
|
|
|
|
Summary: Python 3 bindings for the libdnf library.
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
BuildRequires: swig >= %{swig_version}
|
|
|
|
|
|
|
|
%description -n python3-%{name}
|
|
|
|
Python 3 bindings for the libdnf library.
|
|
|
|
%endif
|
|
|
|
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2016-09-29 08:21:59 +00:00
|
|
|
%package -n python2-hawkey
|
|
|
|
Summary: Python 2 bindings for the hawkey library
|
|
|
|
%{?python_provide:%python_provide python2-hawkey}
|
|
|
|
BuildRequires: python2-devel
|
2017-07-01 13:18:54 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
2016-09-29 08:21:59 +00:00
|
|
|
BuildRequires: python-nose
|
2017-07-01 13:18:54 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: python2-nose
|
|
|
|
%endif
|
2016-09-29 08:21:59 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2018-06-29 10:18:47 +00:00
|
|
|
Requires: python2-%{name} = %{version}-%{release}
|
2016-09-29 08:21:59 +00:00
|
|
|
# Fix problem with hawkey - dnf version incompatibility
|
|
|
|
# Can be deleted for distros where only python2-dnf >= 2.0.0
|
|
|
|
Conflicts: python2-dnf < %{dnf_conflict}
|
|
|
|
Conflicts: python-dnf < %{dnf_conflict}
|
|
|
|
|
|
|
|
%description -n python2-hawkey
|
|
|
|
Python 2 bindings for the hawkey library.
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
%package -n python3-hawkey
|
|
|
|
Summary: Python 3 bindings for the hawkey library
|
|
|
|
%{?python_provide:%python_provide python3-hawkey}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-nose
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2018-06-29 10:18:47 +00:00
|
|
|
Requires: python3-%{name} = %{version}-%{release}
|
2016-09-29 08:21:59 +00:00
|
|
|
# Fix problem with hawkey - dnf version incompatibility
|
|
|
|
# Can be deleted for distros where only python3-dnf >= 2.0.0
|
|
|
|
Conflicts: python3-dnf < %{dnf_conflict}
|
2018-06-29 10:18:47 +00:00
|
|
|
# Obsoletes F27 packages
|
2017-11-07 11:06:47 +00:00
|
|
|
Obsoletes: platform-python-hawkey < %{version}-%{release}
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%description -n python3-hawkey
|
|
|
|
Python 3 bindings for the hawkey library.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%prep
|
2018-01-30 08:27:56 +00:00
|
|
|
%autosetup -p1
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2016-09-29 08:21:59 +00:00
|
|
|
mkdir build-py2
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2016-09-29 08:21:59 +00:00
|
|
|
%if %{with python3}
|
|
|
|
mkdir build-py3
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%build
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2016-09-29 08:21:59 +00:00
|
|
|
pushd build-py2
|
2019-08-24 19:14:27 +00:00
|
|
|
%cmake -DPYTHON_DESIRED:FILEPATH=%{__python2} -DWITH_MAN=OFF ../ %{!?with_zchunk:-DWITH_ZCHUNK=OFF} %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{_cmake_opts}
|
2016-09-29 08:21:59 +00:00
|
|
|
%make_build
|
|
|
|
popd
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
pushd build-py3
|
2019-08-24 19:14:27 +00:00
|
|
|
%cmake -DPYTHON_DESIRED:FILEPATH=%{__python3} -DWITH_GIR=0 -DWITH_MAN=0 -Dgtkdoc=0 ../ %{!?with_zchunk:-DWITH_ZCHUNK=OFF} %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{_cmake_opts}
|
2016-09-29 08:21:59 +00:00
|
|
|
%make_build
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%check
|
|
|
|
if [ "$(id -u)" == "0" ] ; then
|
|
|
|
cat <<ERROR 1>&2
|
|
|
|
Package tests cannot be run under superuser account.
|
|
|
|
Please build the package as non-root user.
|
|
|
|
ERROR
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-06-26 10:43:44 +00:00
|
|
|
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2016-09-29 08:21:59 +00:00
|
|
|
pushd build-py2
|
|
|
|
make ARGS="-V" test
|
|
|
|
popd
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2016-09-29 08:21:59 +00:00
|
|
|
%if %{with python3}
|
2019-10-01 11:18:05 +00:00
|
|
|
# If we didn't run the general tests yet, do it now.
|
|
|
|
%if %{without python2}
|
|
|
|
pushd build-py3
|
|
|
|
make ARGS="-V" test
|
|
|
|
popd
|
|
|
|
%else
|
|
|
|
# Otherwise, run just the Python tests, not all of
|
|
|
|
# them, since we have coverage of the core from the
|
|
|
|
# first build
|
2016-09-29 08:21:59 +00:00
|
|
|
pushd build-py3/python/hawkey/tests
|
|
|
|
make ARGS="-V" test
|
|
|
|
popd
|
|
|
|
%endif
|
2019-10-01 11:18:05 +00:00
|
|
|
%endif
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%install
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2016-09-29 08:21:59 +00:00
|
|
|
pushd build-py2
|
|
|
|
%make_install
|
|
|
|
popd
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2016-09-29 08:21:59 +00:00
|
|
|
%if %{with python3}
|
|
|
|
pushd build-py3
|
|
|
|
%make_install
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
|
2018-07-27 10:20:35 +00:00
|
|
|
%find_lang %{name}
|
|
|
|
|
2018-06-29 09:46:00 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
2018-06-26 10:43:44 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
2018-06-29 09:46:00 +00:00
|
|
|
%else
|
|
|
|
%ldconfig_scriptlets
|
|
|
|
%endif
|
2016-09-29 08:21:59 +00:00
|
|
|
|
2018-07-27 10:20:35 +00:00
|
|
|
%files -f %{name}.lang
|
2016-09-29 08:21:59 +00:00
|
|
|
%license COPYING
|
2018-06-26 10:43:44 +00:00
|
|
|
%doc README.md AUTHORS
|
2016-09-29 08:21:59 +00:00
|
|
|
%{_libdir}/%{name}.so.*
|
2019-08-07 10:40:30 +00:00
|
|
|
%dir %{_libdir}/libdnf/
|
|
|
|
%dir %{_libdir}/libdnf/plugins/
|
2018-12-12 09:42:38 +00:00
|
|
|
%{_libdir}/libdnf/plugins/README
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc %{_datadir}/gtk-doc/html/%{name}/
|
|
|
|
%{_libdir}/%{name}.so
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%{_includedir}/%{name}/
|
2018-06-26 10:43:44 +00:00
|
|
|
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2018-06-26 10:43:44 +00:00
|
|
|
%files -n python2-%{name}
|
|
|
|
%{python2_sitearch}/%{name}/
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2018-06-26 10:43:44 +00:00
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
%files -n python3-%{name}
|
|
|
|
%{python3_sitearch}/%{name}/
|
|
|
|
%endif
|
2016-09-29 08:21:59 +00:00
|
|
|
|
2018-09-25 08:19:41 +00:00
|
|
|
%if %{with python2}
|
2016-09-29 08:21:59 +00:00
|
|
|
%files -n python2-hawkey
|
|
|
|
%{python2_sitearch}/hawkey/
|
2018-09-25 08:19:41 +00:00
|
|
|
%endif # with python2
|
2016-09-29 08:21:59 +00:00
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
%files -n python3-hawkey
|
|
|
|
%{python3_sitearch}/hawkey/
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%changelog
|
2019-10-22 09:54:48 +00:00
|
|
|
* Tue Oct 22 2019 Ales Matej <amatej@redhat.com> - 0.35.5-4
|
|
|
|
- Fix leaking log handlers in Sack that can cause a crash (RhBug:1758737)
|
|
|
|
|
2019-10-14 13:16:10 +00:00
|
|
|
* Mon Oct 14 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.5-3
|
|
|
|
- Add POOL_FLAG_WHATPROVIDESWITHDISABLED flag into pool.
|
|
|
|
- Resolves: 1737469
|
|
|
|
|
2019-10-01 11:18:05 +00:00
|
|
|
* Tue Oct 01 2019 Ales Matej <amatej@redhat.com> - 0.35.5-2
|
|
|
|
- Fix dnf-conflict version
|
|
|
|
|
2019-10-01 07:55:52 +00:00
|
|
|
* Tue Oct 01 2019 Ales Matej <amatej@redhat.com> - 0.35.5-1
|
|
|
|
- Update to 0.35.5
|
|
|
|
- Fix crash in PackageKit (RhBug:1636803)
|
|
|
|
- Do not create @System.solv files (RhBug:1707995)
|
|
|
|
- Set LRO_CACHEDIR so zchunk works again (RhBug:1739867)
|
|
|
|
- Don't reinstall modified packages with the same NEVRA (RhBug:1644241)
|
|
|
|
- Fix bug when moving temporary repository metadata after download (RhBug:1700341)
|
|
|
|
- Improve detection of extras packages by comparing (name, arch) pair instead of full NEVRA (RhBuh:1684517)
|
|
|
|
- Improve handling multilib packages in the history command (RhBug:1728637)
|
|
|
|
- Repo download: use full error description into the exception text (RhBug:1741442)
|
|
|
|
- Properly close hawkey.log (RhBug:1594016)
|
|
|
|
- Fix dnf updateinfo --update to not list advisories for packages updatable only from non-enabled modules
|
|
|
|
- Apply modular filtering by package name (RhBug:1702729)
|
|
|
|
- Fully enable the modular fail safe mechanism (RhBug:1616167)
|
|
|
|
|
2019-08-24 13:57:17 +00:00
|
|
|
* Sat Sep 14 2019 Jonathan Dieter <jdieter@gmail.com> - 0.35.3-5
|
|
|
|
- Set LRO_CACHEDIR so zchunk works again
|
|
|
|
|
2019-09-11 15:21:58 +00:00
|
|
|
* Wed Sep 11 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.3-4
|
|
|
|
- Backport patch to fix reinstalling packages with a different buildtime - part II
|
|
|
|
|
2019-10-22 09:54:48 +00:00
|
|
|
* Tue Sep 10 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.3-3
|
2019-09-10 07:31:40 +00:00
|
|
|
- Backport patch to fix reinstalling packages with a different buildtime
|
|
|
|
|
2019-08-15 16:33:11 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.35.3-2
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-07 10:40:30 +00:00
|
|
|
* Tue Aug 13 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.3-1
|
|
|
|
- Update to 0.35.3
|
|
|
|
- Make libdnf own its plugin directory (RhBug:1714265)
|
|
|
|
- Don't disable nonexistent but required repositories (RhBug:1689331)
|
|
|
|
- Set priority of dnf.conf.d drop-ins
|
|
|
|
- Fix toString() to not insert [] (RhBug:1584442)
|
|
|
|
- Ignore trailing blank lines in config (RhBug:1722493)
|
|
|
|
- Fix handling large number of filenames on input (RhBug:1690915)
|
|
|
|
- Detect armv7 with crypto extension only on arm version >= 8
|
|
|
|
- A new standardized User-Agent field consisting of the libdnf and OS version
|
|
|
|
(including the variant) (RhBug:1156007)
|
|
|
|
- Add basic countme support (RhBug:1647454)
|
|
|
|
|
2019-07-29 08:39:51 +00:00
|
|
|
* Mon Jul 29 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-4
|
|
|
|
- Rebuilt for librepo 1.10.5
|
|
|
|
|
2019-07-25 13:05:45 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.35.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-18 07:10:54 +00:00
|
|
|
* Mon Jul 22 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-2
|
|
|
|
- Backport patch to fix attaching and detaching of libsolvRepo and
|
|
|
|
repo_internalize_trigger() (RhBug:1727343,1727424)
|
|
|
|
|
2019-07-03 11:47:04 +00:00
|
|
|
* Thu Jul 04 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-1
|
|
|
|
- Update to 0.35.1
|
|
|
|
- Enhance logging handling
|
|
|
|
- Do not log DEBUG messages by default
|
|
|
|
- Also add subkeys when adding GPG keys
|
|
|
|
- [module] Fix swig binding for getModuleDependencies()
|
|
|
|
- Skip invalid key files in "/etc/pki/rpm-gpg" with warning (RhBug:1644040)
|
|
|
|
- Enable timestamp preserving for downloaded data (RhBug:1688537)
|
|
|
|
- Set default to skip_if_unavailable=false (RhBug:1679509)
|
|
|
|
- Add configuration option skip_if_unavailable (RhBug:1689931)
|
|
|
|
- Fix 'database is locked' error (RhBug:1631533)
|
|
|
|
- Replace the 'Failed to synchronize cache' message (RhBug:1712055)
|
|
|
|
- Fix 'no such table: main.trans_cmdline' error (RhBug:1596540)
|
|
|
|
- Add support of modular FailSafe (RhBug:1623128) (temporarily with warnings
|
|
|
|
instead of errors when installing modular RPMs without modular metadata)
|
|
|
|
- Add support of DNF main config file in context; used by PackageKit and
|
|
|
|
microdnf (RhBug:1689331)
|
|
|
|
- Exit gpg-agent after repokey import (RhBug:1650266)
|
|
|
|
|
2019-06-10 22:13:19 +00:00
|
|
|
* Mon Jun 10 22:13:19 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.31.0-5
|
|
|
|
- Rebuild for RPM 4.15
|
|
|
|
|
2019-06-10 15:42:02 +00:00
|
|
|
* Mon Jun 10 15:42:02 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.31.0-4
|
|
|
|
- Rebuild for RPM 4.15
|
|
|
|
|
2019-07-03 11:47:04 +00:00
|
|
|
* Fri May 03 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.31.0-3
|
2019-05-03 11:07:45 +00:00
|
|
|
- Backport patches to reintroduce hawkeyRepo
|
|
|
|
|
2019-04-25 13:14:40 +00:00
|
|
|
* Thu Apr 25 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.31.0-1
|
|
|
|
- Update to 0.31.0
|
|
|
|
- Installroot now requires absolute path
|
|
|
|
- Support "_none_" value for repo option "proxy" (RhBug:1680272)
|
|
|
|
- Add support for Module advisories
|
|
|
|
- Add support for xml:base attribute from primary.xml (RhBug:1691315)
|
|
|
|
- Improve detection of Platform ID (RhBug:1688462)
|
|
|
|
|
2019-03-27 11:56:49 +00:00
|
|
|
* Wed Mar 27 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.28.1-1
|
|
|
|
- Update to 0.28.1
|
|
|
|
- Return empty query if incorrect reldep (RhBug:1687135)
|
|
|
|
- ConfigParser: Improve compatibility with Python ConfigParser and dnf-plugin-spacewalk (RhBug:1692044)
|
|
|
|
- ConfigParser: Unify default set of string represenation of boolean values
|
|
|
|
- Fix segfault when interrupting dnf process (RhBug:1610456)
|
|
|
|
|
2019-03-12 09:59:50 +00:00
|
|
|
* Mon Mar 11 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.28.0-1
|
|
|
|
- Update to 0.28.0
|
|
|
|
- Exclude module pkgs that have conflict
|
|
|
|
- Enhance config parser to preserve order of data, and keep comments and format
|
|
|
|
- Improve ARM detection
|
|
|
|
- Add support for SHA-384
|
|
|
|
|
2019-02-19 14:00:17 +00:00
|
|
|
* Tue Feb 19 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.26.0-2
|
|
|
|
- Backport patches for zchunk
|
|
|
|
|
2019-02-13 10:08:38 +00:00
|
|
|
* Wed Feb 13 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.26.0-1
|
|
|
|
- Update to 0.26.0-1
|
|
|
|
- Enhance modular solver to handle enabled and default module streams differently (RhBug:1648839)
|
|
|
|
- Add support of wild cards for modules (RhBug:1644588)
|
|
|
|
- Revert commit that adds best as default behavior
|
|
|
|
|
2019-02-01 06:57:39 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-12 09:42:38 +00:00
|
|
|
* Wed Dec 12 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.24.1-1
|
|
|
|
- Update to 0.24.1
|
|
|
|
- Add support for zchunk
|
|
|
|
- Enhance LIBDNF plugins support
|
|
|
|
- Enhance sorting for module list (RhBug:1590358)
|
|
|
|
- [repo] Check whether metadata cache is expired (RhBug:1539620,1648274)
|
|
|
|
- [DnfRepo] Add methods for alternative repository metadata type and download (RhBug:1656314)
|
|
|
|
- Remove installed profile on module enable or disable (RhBug:1653623)
|
|
|
|
- [sack] Implement dnf_sack_get_rpmdb_version()
|
|
|
|
|
2018-11-22 08:41:51 +00:00
|
|
|
* Thu Nov 22 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.3-1
|
|
|
|
- Permanently disable Python2 build for Fedora 30+
|
|
|
|
- Update to 0.22.3
|
|
|
|
- Modify solver_describe_decision to report cleaned (RhBug:1486749)
|
|
|
|
- [swdb] create persistent WAL files (RhBug:1640235)
|
|
|
|
- Relocate ModuleContainer save hook (RhBug:1632518)
|
|
|
|
- [transaction] Fix transaction item lookup for obsoleted packages (RhBug: 1642796)
|
|
|
|
- Fix memory leaks and memory allocations
|
|
|
|
- [repo] Possibility to extend downloaded repository metadata
|
|
|
|
|
2018-11-07 16:25:17 +00:00
|
|
|
* Wed Nov 07 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-8
|
2018-11-07 11:32:54 +00:00
|
|
|
- Backport fixes for RHBZ#1642796 from upstream master
|
|
|
|
|
2018-10-30 13:48:05 +00:00
|
|
|
* Tue Oct 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.22.0-7
|
|
|
|
- Rebuild for libsolv 0.7
|
|
|
|
|
2018-10-23 08:36:15 +00:00
|
|
|
* Tue Oct 23 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-6
|
|
|
|
- Add patch Relocate-ModuleContainer-save-hook-RhBug1632518
|
|
|
|
- Add patch Test-if-sack-is-present-and-run-save-module-persistor-RhBug1632518
|
|
|
|
|
2018-10-20 08:28:04 +00:00
|
|
|
* Sat Oct 20 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-5
|
|
|
|
- remove problematic patch Relocate-ModuleContainer-save-hook-RhBug1632518
|
|
|
|
|
2018-10-19 15:19:26 +00:00
|
|
|
* Fri Oct 19 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-4
|
|
|
|
- backport Relocate-ModuleContainer-save-hook-RhBug1632518
|
|
|
|
|
|
|
|
* Thu Oct 18 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-3
|
2018-10-18 15:24:15 +00:00
|
|
|
- bacport swdb-create-persistent-WAL-files-RhBug1640235
|
|
|
|
|
|
|
|
* Wed Oct 17 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-2
|
2018-10-17 12:02:36 +00:00
|
|
|
- backport Modify-solver_describe_decision-to-report-cleaned-RhBug1486749
|
|
|
|
- backport history-Fix-crash-in-TransactionItemaddReplacedBy
|
|
|
|
|
2018-10-15 07:52:30 +00:00
|
|
|
* Mon Oct 15 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-1
|
|
|
|
- Update to 0.22.0
|
|
|
|
- Fix segfault in repo_internalize_trigger (RhBug:1375895)
|
|
|
|
- Change sorting of installonly packages (RhBug:1627685)
|
|
|
|
- [swdb] Fixed pattern searching in history db (RhBug:1635542)
|
|
|
|
- Check correctly gpg for repomd when refresh is used (RhBug:1636743)
|
|
|
|
- [conf] Provide additional VectorString methods for compatibility with Python list.
|
|
|
|
- [plugins] add plugin loading and hooks into libdnf
|
|
|
|
|
2018-09-30 03:33:20 +00:00
|
|
|
* Sat Sep 29 2018 Kevin Fenzi <kevin@scrye.com> - 0.20.0-2
|
|
|
|
- Temp re-enable python2 subpackages to get rawhide composing again.
|
|
|
|
|
2018-09-25 08:19:41 +00:00
|
|
|
* Tue Sep 25 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.20.0-1
|
|
|
|
- [module] Report module solver errors
|
|
|
|
- [module] Enhance module commands and errors
|
|
|
|
- [transaction] Fixed several problems with SWDB
|
|
|
|
- Remove unneeded regex URL tests (RhBug:1598336)
|
|
|
|
- Allow quoted values in ini files (RhBug:1624056)
|
|
|
|
- Filter out not unique set of solver problems (RhBug:1564369)
|
|
|
|
- Disable python2 build for Fedora 30+
|
|
|
|
|
2018-09-18 22:35:00 +00:00
|
|
|
* Tue Sep 18 2018 Adam Williamson <awilliam@redhat.com> - 0.19.1-3
|
|
|
|
- Backport PR #585 for an update crash bug (#1629340)
|
|
|
|
|
2018-09-14 08:24:00 +00:00
|
|
|
* Fri Sep 14 2018 Kalev Lember <klember@redhat.com> - 0.19.1-2
|
|
|
|
- Backport a fix for a packagekit crasher / F29 Beta blocker (#1626851)
|
|
|
|
|
2018-09-10 11:22:47 +00:00
|
|
|
* Mon Sep 10 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.19.1-1
|
|
|
|
- Fix compilation errors on gcc-4.8.5
|
|
|
|
- [module] Allow module queries on disabled modules
|
|
|
|
|
2018-09-07 08:42:14 +00:00
|
|
|
* Fri Sep 07 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.19.0-1
|
|
|
|
- [query] Reldeps can contain a space char (RhBug:1612462)
|
|
|
|
- [transaction] Avoid adding duplicates via Transaction::addItem()
|
|
|
|
- Fix compilation errors on gcc-4.8.5
|
|
|
|
- [module] Make available ModuleProfile using SWIG
|
|
|
|
- [module] Redesign module disable and reset
|
|
|
|
|
2018-08-13 15:39:17 +00:00
|
|
|
* Mon Aug 13 2018 Daniel Mach <dmach@redhat.com> - 0.17.2-1
|
|
|
|
- [sqlite3] Change db locking mode to DEFAULT.
|
|
|
|
- [doc] Add libsmartcols-devel to devel deps.
|
|
|
|
|
2018-08-13 12:11:32 +00:00
|
|
|
* Mon Aug 13 2018 Daniel Mach <dmach@redhat.com> - 0.17.1-1
|
|
|
|
- [module] Solve a problem in python constructor of NSVCAP if no version.
|
|
|
|
- [translations] Update translations from zanata.
|
|
|
|
- [transaction] Fix crash after using dnf.comps.CompsQuery and forking the process in Anaconda.
|
|
|
|
- [module] Support for resetting module state.
|
|
|
|
- [output] Introduce wrapper for smartcols.
|
|
|
|
|
2018-08-10 17:37:57 +00:00
|
|
|
* Fri Aug 10 2018 Adam Williamson <awilliam@redhat.com> - 0.17.0-2
|
|
|
|
- Backport fix that prevented anaconda running dnf in a subprocess (#546)
|
|
|
|
|
2018-08-07 12:09:22 +00:00
|
|
|
* Tue Aug 07 2018 Daniel Mach <dmach@redhat.com> - 0.17.0-1
|
|
|
|
- [conf] Add module_platform_id option.
|
|
|
|
- [module] Add ModulePackageContainer class.
|
|
|
|
- [module] Add ModulePersistor class.
|
|
|
|
- [sack] Module filtering made available in python API
|
|
|
|
- [sack] Module auto-enabling according to installed packages
|
|
|
|
|
2018-07-27 12:55:17 +00:00
|
|
|
* Fri Jul 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.16.1-3
|
|
|
|
- Rebuild for new binutils
|
|
|
|
|
2018-07-27 12:40:32 +00:00
|
|
|
* Fri Jul 27 2018 Daniel Mach <dmach@redhat.com> - 0.16.1-2
|
2018-07-27 10:20:35 +00:00
|
|
|
- [module] Implement 'module_hotfixes' conf option to skip filtering RPMs from hotfix repos.
|
|
|
|
- [goal] Fix distupgrade filter, allow downgrades.
|
|
|
|
- [context] Allow to set module platform in context.
|
|
|
|
- [module] Introduce proper modular dependency solving.
|
|
|
|
- [module] Platform pseudo-module based on /etc/os-release.
|
|
|
|
- [goal] Add Goal::listSuggested().
|
|
|
|
- [l10n] Support for translations, add gettext build dependency.
|
|
|
|
|
2018-07-20 06:32:02 +00:00
|
|
|
* Sun Jul 22 2018 Daniel Mach <dmach@redhat.com> - 0.16.0-1
|
|
|
|
- Fix RHSM plugin
|
|
|
|
- Add support for logging
|
|
|
|
- Bump minimal libmodulemd version to 1.6.1
|
|
|
|
|
2018-07-13 07:59:54 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-29 10:18:47 +00:00
|
|
|
* Fri Jun 29 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.15.2-1
|
|
|
|
- Update to 0.15.1
|
|
|
|
- Resolves: rhbz#1595487
|
|
|
|
|
2018-06-29 09:46:00 +00:00
|
|
|
* Fri Jun 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.15.1-2
|
|
|
|
- Restore proper ldconfig_scriptlets
|
|
|
|
|
2018-06-26 14:27:00 +00:00
|
|
|
* Tue Jun 26 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.15.1-1
|
|
|
|
- Update to 0.15.1
|
2018-06-26 10:43:44 +00:00
|
|
|
|
2018-06-15 10:59:36 +00:00
|
|
|
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.11.1-6
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-02-07 21:28:16 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-30 08:27:56 +00:00
|
|
|
* Tue Jan 30 2018 Igor Gnatenko <ignatenko@redhat.com> - 0.11.1-4
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2017-11-07 11:06:47 +00:00
|
|
|
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.11.1-3
|
|
|
|
- Use better Obsoletes for platform-python
|
|
|
|
|
2017-11-03 21:38:37 +00:00
|
|
|
* Fri Nov 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.11.1-2
|
|
|
|
- Remove platform-python subpackage
|
|
|
|
|
2017-10-16 07:14:01 +00:00
|
|
|
* Mon Oct 16 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.11.1-1
|
|
|
|
- Rerelease of 0.11.1-1
|
|
|
|
- Improvement query performance
|
|
|
|
- Run file query in hy_subject_get_best_solution only for files (arguments that start with ``/`` or
|
|
|
|
``*/``)
|
|
|
|
- Resolves: rhbz#1498207 - DNF crash during upgrade installation F26 -> F27
|
|
|
|
|
2017-10-10 10:38:38 +00:00
|
|
|
* Tue Oct 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.11.0-1
|
|
|
|
- Update to 0.11.0
|
|
|
|
|
2017-10-06 14:39:52 +00:00
|
|
|
* Mon Oct 02 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.10.1-2
|
2017-10-02 08:10:25 +00:00
|
|
|
- Rerelease of 0.10.1-1
|
|
|
|
|
2017-09-27 10:28:54 +00:00
|
|
|
* Wed Sep 27 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.10.1-1
|
|
|
|
- Update to 0.10.1
|
|
|
|
- It improves query performance with name and arch filters. Also nevra filter will now
|
|
|
|
handle string with or without epoch.
|
|
|
|
- Additionally for python bindings it renames NEVRA._has_just_name() to NEVRA.has_just_name() due
|
|
|
|
to movement of code into c part of library.
|
|
|
|
- Resolves: rhbz#1260242 - --exclude does not affect dnf remove's removal of requirements
|
|
|
|
- Resolves: rhbz#1485881 - DNF claims it cannot install package, which have been already installed
|
|
|
|
- Resolves: rhbz#1361187 - [abrt] python-ipython-console: filter_updown(): python3.5 killed by SIGABRT
|
|
|
|
|
2017-09-15 06:10:00 +00:00
|
|
|
* Fri Sep 15 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-8
|
|
|
|
- Disable platform python on old releases
|
|
|
|
|
2017-08-15 12:42:13 +00:00
|
|
|
* Tue Aug 15 2017 Lumír Balhar <lbalhar@redhat.com> - 0.9.3-7
|
|
|
|
- Add platform-python subpackage
|
|
|
|
|
2017-08-11 08:36:14 +00:00
|
|
|
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-6
|
|
|
|
- Rebuilt after RPM update (№ 3)
|
|
|
|
|
2017-08-10 20:09:17 +00:00
|
|
|
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-5
|
|
|
|
- Rebuilt for RPM soname bump
|
|
|
|
|
2017-08-10 18:25:52 +00:00
|
|
|
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-4
|
|
|
|
- Rebuilt for RPM soname bump
|
|
|
|
|
2017-08-03 01:21:41 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 18:43:48 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-24 12:00:13 +00:00
|
|
|
* Mon Jul 24 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.3-1
|
|
|
|
- Update to 0.9.3
|
|
|
|
|
2017-07-01 13:18:54 +00:00
|
|
|
* Sat Jul 01 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.2-1
|
|
|
|
- Update to 0.9.2
|
|
|
|
|
2017-06-12 10:58:31 +00:00
|
|
|
* Mon Jun 12 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.1-1
|
|
|
|
- Update to 0.9.1
|
|
|
|
|
2017-05-22 07:55:54 +00:00
|
|
|
* Mon May 22 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.0-1
|
|
|
|
- Update to 0.9.0
|
|
|
|
|
2017-05-02 07:53:05 +00:00
|
|
|
* Tue May 02 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.8.2-1
|
|
|
|
- Update to 0.8.2
|
|
|
|
|
2017-03-24 07:58:45 +00:00
|
|
|
* Fri Mar 24 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.8.1-1
|
|
|
|
- Update to 0.8.1
|
|
|
|
|
2017-03-21 08:56:57 +00:00
|
|
|
* Tue Mar 21 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.8.0-1
|
|
|
|
- Update to 0.8.0
|
|
|
|
|
2017-02-20 20:36:05 +00:00
|
|
|
* Mon Feb 20 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.4-1
|
|
|
|
- Update to 0.7.4
|
|
|
|
|
2017-02-10 14:46:49 +00:00
|
|
|
* Fri Feb 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.3-1
|
|
|
|
- Update to 0.7.3
|
|
|
|
|
2017-02-08 14:33:21 +00:00
|
|
|
* Wed Feb 08 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.2-1
|
|
|
|
- 0.7.2
|
|
|
|
|
2017-01-06 10:22:30 +00:00
|
|
|
* Fri Jan 06 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.1-1
|
|
|
|
- 0.7.1
|
|
|
|
|
2016-12-21 11:09:31 +00:00
|
|
|
* Wed Dec 21 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.7.0-0.7gitf9b798c
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-19 10:45:23 +00:00
|
|
|
* Mon Dec 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.0-0.6gitf9b798c
|
|
|
|
- Use new upstream URL
|
|
|
|
|
2016-12-13 12:19:42 +00:00
|
|
|
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 0.7.0-0.5gitf9b798c
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-06 11:35:00 +00:00
|
|
|
* Tue Dec 06 2016 Martin Hatina <mhatina@redhat.com> - 0.7.0-0.4gitf9b798c
|
2016-12-06 09:45:58 +00:00
|
|
|
- Increase conflict version of dnf
|
|
|
|
|
2016-12-01 12:07:47 +00:00
|
|
|
* Thu Dec 01 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.0-0.3gitf9b798c
|
|
|
|
- Update to latest snapshot
|
|
|
|
|
2016-11-04 16:44:57 +00:00
|
|
|
* Fri Nov 04 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.7.0-0.2git8bd77f8
|
|
|
|
- Update to latest snapshot
|
|
|
|
|
2016-09-29 08:21:59 +00:00
|
|
|
* Thu Sep 29 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.7.0-0.1git179c0a6
|
|
|
|
- Initial package
|