2018-06-26 10:43:44 +00:00
|
|
|
%global libsolv_version 0.6.30-1
|
2018-07-20 06:32:02 +00:00
|
|
|
%global libmodulemd_version 1.6.1
|
2018-10-15 07:52:30 +00:00
|
|
|
%global dnf_conflict 3.7.1
|
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
|
|
|
|
|
2018-09-30 03:33:20 +00:00
|
|
|
%if 0%{?rhel} > 7
|
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
|
|
|
|
|
|
|
|
%global _cmake_opts \\\
|
|
|
|
-DENABLE_RHSM_SUPPORT=%{?with_rhsm:ON}%{!?with_rhsm:OFF} \\\
|
|
|
|
%{nil}
|
|
|
|
|
2016-09-29 08:21:59 +00:00
|
|
|
Name: libdnf
|
2018-10-15 07:52:30 +00:00
|
|
|
Version: 0.22.0
|
|
|
|
Release: 1%{?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
|
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}
|
|
|
|
BuildRequires: pkgconfig(librepo)
|
|
|
|
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)
|
|
|
|
BuildRequires: rpm-devel >= 4.11.0
|
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
|
2018-06-26 10:43:44 +00:00
|
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
|
|
BuildRequires: pkgconfig(json-c)
|
|
|
|
BuildRequires: pkgconfig(cppunit)
|
|
|
|
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}
|
|
|
|
|
|
|
|
%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
|
2018-07-20 06:32:02 +00:00
|
|
|
%cmake -DPYTHON_DESIRED:FILEPATH=%{__python2} -DWITH_MAN=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
|
2018-07-20 06:32:02 +00:00
|
|
|
%cmake -DPYTHON_DESIRED:FILEPATH=%{__python3} -DWITH_GIR=0 -DWITH_MAN=0 -Dgtkdoc=0 ../ %{!?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}
|
|
|
|
# Run just the Python tests, not all of them, since
|
|
|
|
# we have coverage of the core from the first build
|
|
|
|
pushd build-py3/python/hawkey/tests
|
|
|
|
make ARGS="-V" test
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%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.*
|
|
|
|
|
|
|
|
%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
|
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
|