jdieter / rpms / libdnf

Forked from rpms/libdnf 4 years ago
Clone
294a06c
%global libsolv_version 0.7.4-1
e6f566d
%global libmodulemd_version 1.6.1
4d74dad
%global librepo_version 1.10.0
0ea609c
%global dnf_conflict 4.2.8-2
a5902b6
%global swig_version 3.0.12
10b3abe
10b3abe
%bcond_with valgrind
10b3abe
10b3abe
# Do not build bindings for python3 for RHEL <= 7
10b3abe
%if 0%{?rhel} && 0%{?rhel} <= 7
10b3abe
%bcond_with python3
10b3abe
%else
10b3abe
%bcond_without python3
10b3abe
%endif
10b3abe
4d74dad
%if 0%{?rhel}
4d74dad
    %global rpm_version 4.14.2
4d74dad
%else
4d74dad
    %global rpm_version 4.14.2.1-4
4d74dad
%endif
4d74dad
2177a6c
%if 0%{?rhel} > 7 || 0%{?fedora} > 29
1936b50
# Disable python2 build by default
1936b50
%bcond_with python2
1936b50
%else
1936b50
%bcond_without python2
1936b50
%endif
1936b50
e6f566d
%if 0%{?rhel} && ! 0%{?centos}
bbda173
%bcond_without rhsm
bbda173
%else
bbda173
%bcond_with rhsm
bbda173
%endif
bbda173
0019f41
%if 0%{?rhel}
0019f41
%bcond_with zchunk
0019f41
%else
0019f41
%bcond_without zchunk
0019f41
%endif
0019f41
bbda173
%global _cmake_opts \\\
bbda173
    -DENABLE_RHSM_SUPPORT=%{?with_rhsm:ON}%{!?with_rhsm:OFF} \\\
bbda173
    %{nil}
bbda173
10b3abe
Name:           libdnf
9fae4bd
Version:        0.35.2
0019f41
Release:        4%{?dist}
10b3abe
Summary:        Library providing simplified C and Python API to libsolv
10b3abe
License:        LGPLv2+
fe6fa2e
URL:            https://github.com/rpm-software-management/libdnf
bbda173
Source0:        %{url}/archive/%{version}/%{name}-%{version}.tar.gz
93a6b2d
Patch0001:      0001-Revert-9309e92332241ff1113433057c969cebf127734e.patch
4d74dad
# Do not the change of include skip_if_unavailable fedault to false for Fedora < 31
4d74dad
# https://fedoraproject.org/wiki/Changes/Set_skip_if_unavailable_default_to_false
4d74dad
Patch0002:      0002-Revert-Set-default-to-skip_if_unavailablefalse-RhBug1679509.patch
4d74dad
# Temporary patch to not fail on modular RPMs without modular metadata
4d74dad
# until the infrastructure is ready
4d74dad
Patch0003:      0003-Revert-consequences-of-Fail-Safe-mechanism.patch
9fae4bd
# https://bugzilla.redhat.com/show_bug.cgi?id=1691430
9fae4bd
Patch0004:      0004-hy_detect_arch-detect-crypto-only-on-arm-version--8.patch
0ea609c
Patch0005:      0004-Mark-job-goalupgrade-with-sltr-as-targeted.patch
5da1713
Patch0006:      0005-Apply-targeted-upgrade-only-for-selector-with-packages.patch
0019f41
# Temporary until patch is upstreamed
0019f41
# https://bugzilla.redhat.com/show_bug.cgi?id=1739867
0019f41
Patch0007:      libdnf-0.35-fix-zchunk.patch
4179b5a
10b3abe
BuildRequires:  cmake
10b3abe
BuildRequires:  gcc
a5902b6
BuildRequires:  gcc-c++
10b3abe
BuildRequires:  libsolv-devel >= %{libsolv_version}
44bae0b
BuildRequires:  pkgconfig(librepo) >= %{librepo_version}
10b3abe
BuildRequires:  pkgconfig(check)
10b3abe
%if %{with valgrind}
10b3abe
BuildRequires:  valgrind
10b3abe
%endif
bfefa27
BuildRequires:  pkgconfig(gio-unix-2.0) >= 2.46.0
10b3abe
BuildRequires:  pkgconfig(gtk-doc)
4d74dad
BuildRequires:  rpm-devel >= %{rpm_version}
bbda173
%if %{with rhsm}
e6f566d
BuildRequires:  pkgconfig(librhsm) >= 0.0.3
bbda173
%endif
0019f41
%if %{with zchunk}
4179b5a
BuildRequires:  pkgconfig(zck) >= 0.9.11
0019f41
%endif
a5902b6
BuildRequires:  pkgconfig(sqlite3)
a5902b6
BuildRequires:  pkgconfig(json-c)
a5902b6
BuildRequires:  pkgconfig(cppunit)
c10381b
BuildRequires:  pkgconfig(libcrypto)
a5902b6
BuildRequires:  pkgconfig(modulemd) >= %{libmodulemd_version}
fa7be84
BuildRequires:  pkgconfig(smartcols)
edda643
BuildRequires:  gettext
f80cc28
BuildRequires:  gpgme-devel
10b3abe
a5902b6
Requires:       libmodulemd%{?_isa} >= %{libmodulemd_version}
10b3abe
Requires:       libsolv%{?_isa} >= %{libsolv_version}
44bae0b
Requires:       librepo%{?_isa} >= %{librepo_version}
10b3abe
9fae4bd
%if %{without python2}
9fae4bd
# Obsoleted from here so we can track the fast growing version easily.
9fae4bd
# We intentionally only obsolete and not provide, this is a broken upgrade
9fae4bd
# prevention, not providing the removed functionality.
9fae4bd
Obsoletes:      python2-%{name} < %{version}-%{release}
9fae4bd
Obsoletes:      python2-hawkey < %{version}-%{release}
9fae4bd
Obsoletes:      python2-hawkey-debuginfo < %{version}-%{release}
9fae4bd
Obsoletes:      python2-libdnf-debuginfo < %{version}-%{release}
9fae4bd
%endif
9fae4bd
10b3abe
%description
10b3abe
A Library providing simplified C and Python API to libsolv.
10b3abe
10b3abe
%package devel
10b3abe
Summary:        Development files for %{name}
10b3abe
Requires:       %{name}%{?_isa} = %{version}-%{release}
10b3abe
Requires:       libsolv-devel%{?_isa} >= %{libsolv_version}
10b3abe
10b3abe
%description devel
10b3abe
Development files for %{name}.
10b3abe
1936b50
%if %{with python2}
a5902b6
%package -n python2-%{name}
a5902b6
%{?python_provide:%python_provide python2-%{name}}
a5902b6
Summary:        Python 2 bindings for the libdnf library.
a5902b6
Requires:       %{name}%{?_isa} = %{version}-%{release}
a5902b6
BuildRequires:  python2-devel
f80cc28
%if 0%{?rhel} == 7
f80cc28
BuildRequires:  python-sphinx
f80cc28
BuildRequires:  swig3 >= %{swig_version}
f80cc28
%else
a5902b6
BuildRequires:  python2-sphinx
a5902b6
BuildRequires:  swig >= %{swig_version}
f80cc28
%endif
a5902b6
a5902b6
%description -n python2-%{name}
a5902b6
Python 2 bindings for the libdnf library.
1936b50
%endif # with python2
a5902b6
a5902b6
%if %{with python3}
a5902b6
%package -n python3-%{name}
a5902b6
%{?python_provide:%python_provide python3-%{name}}
a5902b6
Summary:        Python 3 bindings for the libdnf library.
a5902b6
Requires:       %{name}%{?_isa} = %{version}-%{release}
a5902b6
BuildRequires:  python3-devel
a5902b6
BuildRequires:  python3-sphinx
a5902b6
BuildRequires:  swig >= %{swig_version}
a5902b6
a5902b6
%description -n python3-%{name}
a5902b6
Python 3 bindings for the libdnf library.
a5902b6
%endif
a5902b6
1936b50
%if %{with python2}
10b3abe
%package -n python2-hawkey
10b3abe
Summary:        Python 2 bindings for the hawkey library
10b3abe
%{?python_provide:%python_provide python2-hawkey}
10b3abe
BuildRequires:  python2-devel
Igor Gnatenko 8a2c2ce
%if 0%{?rhel} && 0%{?rhel} <= 7
10b3abe
BuildRequires:  python-nose
Igor Gnatenko 8a2c2ce
%else
Igor Gnatenko 8a2c2ce
BuildRequires:  python2-nose
Igor Gnatenko 8a2c2ce
%endif
10b3abe
Requires:       %{name}%{?_isa} = %{version}-%{release}
22b4e0e
Requires:       python2-%{name} = %{version}-%{release}
10b3abe
# Fix problem with hawkey - dnf version incompatibility
10b3abe
# Can be deleted for distros where only python2-dnf >= 2.0.0
10b3abe
Conflicts:      python2-dnf < %{dnf_conflict}
10b3abe
Conflicts:      python-dnf < %{dnf_conflict}
10b3abe
10b3abe
%description -n python2-hawkey
10b3abe
Python 2 bindings for the hawkey library.
1936b50
%endif # with python2
10b3abe
10b3abe
%if %{with python3}
10b3abe
%package -n python3-hawkey
10b3abe
Summary:        Python 3 bindings for the hawkey library
10b3abe
%{?python_provide:%python_provide python3-hawkey}
10b3abe
BuildRequires:  python3-devel
10b3abe
BuildRequires:  python3-nose
10b3abe
Requires:       %{name}%{?_isa} = %{version}-%{release}
22b4e0e
Requires:       python3-%{name} = %{version}-%{release}
10b3abe
# Fix problem with hawkey - dnf version incompatibility
10b3abe
# Can be deleted for distros where only python3-dnf >= 2.0.0
10b3abe
Conflicts:      python3-dnf < %{dnf_conflict}
22b4e0e
# Obsoletes F27 packages
9664c3c
Obsoletes:      platform-python-hawkey < %{version}-%{release}
10b3abe
10b3abe
%description -n python3-hawkey
10b3abe
Python 3 bindings for the hawkey library.
10b3abe
%endif
10b3abe
10b3abe
%prep
Igor Gnatenko edcb1ba
%autosetup -p1
1936b50
%if %{with python2}
10b3abe
mkdir build-py2
1936b50
%endif # with python2
10b3abe
%if %{with python3}
10b3abe
mkdir build-py3
10b3abe
%endif
10b3abe
10b3abe
%build
1936b50
%if %{with python2}
10b3abe
pushd build-py2
f5fc72d
  %cmake -DPYTHON_DESIRED:FILEPATH=%{__python2} -DWITH_MAN=OFF ../ %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{!?with_zchunk:-DWITH_ZCHUNK=OFF} %{_cmake_opts}
10b3abe
  %make_build
10b3abe
popd
1936b50
%endif # with python2
10b3abe
10b3abe
%if %{with python3}
10b3abe
pushd build-py3
f5fc72d
  %cmake -DPYTHON_DESIRED:FILEPATH=%{__python3} -DWITH_GIR=0 -DWITH_MAN=0 -Dgtkdoc=0 ../ %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{!?with_zchunk:-DWITH_ZCHUNK=OFF} %{_cmake_opts}
10b3abe
  %make_build
10b3abe
popd
10b3abe
%endif
10b3abe
10b3abe
%check
10b3abe
if [ "$(id -u)" == "0" ] ; then
10b3abe
        cat <<ERROR 1>&2
10b3abe
Package tests cannot be run under superuser account.
10b3abe
Please build the package as non-root user.
10b3abe
ERROR
10b3abe
        exit 1
10b3abe
fi
a5902b6
1936b50
%if %{with python2}
10b3abe
pushd build-py2
10b3abe
  make ARGS="-V" test
10b3abe
popd
1936b50
%endif # with python2
10b3abe
%if %{with python3}
10b3abe
# Run just the Python tests, not all of them, since
10b3abe
# we have coverage of the core from the first build
10b3abe
pushd build-py3/python/hawkey/tests
10b3abe
  make ARGS="-V" test
10b3abe
popd
10b3abe
%endif
10b3abe
10b3abe
%install
1936b50
%if %{with python2}
10b3abe
pushd build-py2
10b3abe
  %make_install
10b3abe
popd
1936b50
%endif # with python2
10b3abe
%if %{with python3}
10b3abe
pushd build-py3
10b3abe
  %make_install
10b3abe
popd
10b3abe
%endif
10b3abe
edda643
%find_lang %{name}
edda643
e8b7251
%if 0%{?rhel} && 0%{?rhel} <= 7
a5902b6
%post -p /sbin/ldconfig
a5902b6
%postun -p /sbin/ldconfig
e8b7251
%else
e8b7251
%ldconfig_scriptlets
e8b7251
%endif
10b3abe
edda643
%files -f %{name}.lang
10b3abe
%license COPYING
a5902b6
%doc README.md AUTHORS
10b3abe
%{_libdir}/%{name}.so.*
9fae4bd
%dir %{_libdir}/libdnf/
9fae4bd
%dir %{_libdir}/libdnf/plugins/
c10381b
%{_libdir}/libdnf/plugins/README
10b3abe
10b3abe
%files devel
10b3abe
%doc %{_datadir}/gtk-doc/html/%{name}/
10b3abe
%{_libdir}/%{name}.so
10b3abe
%{_libdir}/pkgconfig/%{name}.pc
10b3abe
%{_includedir}/%{name}/
a5902b6
1936b50
%if %{with python2}
a5902b6
%files -n python2-%{name}
a5902b6
%{python2_sitearch}/%{name}/
1936b50
%endif # with python2
a5902b6
a5902b6
%if %{with python3}
a5902b6
%files -n python3-%{name}
a5902b6
%{python3_sitearch}/%{name}/
a5902b6
%endif
10b3abe
1936b50
%if %{with python2}
10b3abe
%files -n python2-hawkey
10b3abe
%{python2_sitearch}/hawkey/
1936b50
%endif # with python2
10b3abe
10b3abe
%if %{with python3}
10b3abe
%files -n python3-hawkey
10b3abe
%{python3_sitearch}/hawkey/
10b3abe
%endif
10b3abe
10b3abe
%changelog
0019f41
* Sat Sep 14 2019 Jonathan Dieter <jdieter@gmail.com> - 0.35.2-4
0019f41
- Rebuild for zchunk enabled librepo
0019f41
5da1713
* Wed Sep 11 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.2-3
5da1713
- Backport patch to fix reinstalling packages with a different buildtime - part II
5da1713
0ea609c
* Thu Sep 10 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.35.2-2
0ea609c
- Backport patch to fix reinstalling packages with a different buildtime
0ea609c
9fae4bd
* Wed Aug 14 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.2-1
9fae4bd
- Update to 0.35.2
9fae4bd
- Make libdnf own its plugin directory (RhBug:1714265)
9fae4bd
- Don't disable nonexistent but required repositories (RhBug:1689331)
9fae4bd
- Set priority of dnf.conf.d drop-ins
9fae4bd
- Fix toString() to not insert [] (RhBug:1584442)
9fae4bd
- Ignore trailing blank lines in config (RhBug:1722493)
9fae4bd
- Fix handling large number of filenames on input (RhBug:1690915)
9fae4bd
- Detect armv7 with crypto extension only on arm version >= 8
9fae4bd
9bc84ec
* Tue Jul 30 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-3
9bc84ec
- Rebuilt for librepo 1.10.5
9bc84ec
43fdf5d
* Thu Jul 18 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-2
43fdf5d
- Backport patch to fix attaching and detaching of libsolvRepo and
43fdf5d
  repo_internalize_trigger() (RhBug:1727343,1727424)
43fdf5d
4d74dad
* Thu Jul 04 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.35.1-1
4d74dad
- Update to 0.35.1
4d74dad
- Enhance logging handling
4d74dad
- Do not log DEBUG messages by default
4d74dad
- Also add subkeys when adding GPG keys
4d74dad
- [module] Fix swig binding for getModuleDependencies()
4d74dad
- Skip invalid key files in "/etc/pki/rpm-gpg" with warning (RhBug:1644040)
4d74dad
- Enable timestamp preserving for downloaded data (RhBug:1688537)
4d74dad
- Add configuration option skip_if_unavailable (RhBug:1689931)
4d74dad
- Fix 'database is locked' error (RhBug:1631533)
4d74dad
- Replace the 'Failed to synchronize cache' message (RhBug:1712055)
4d74dad
- Fix 'no such table: main.trans_cmdline' error (RhBug:1596540)
4d74dad
- Add support of modular FailSafe (RhBug:1623128) (temporarily with warnings
4d74dad
  instead of errors when installing modular RPMs without modular metadata)
4d74dad
- Add support of DNF main config file in context; used by PackageKit and
4d74dad
  microdnf (RhBug:1689331)
4d74dad
- Exit gpg-agent after repokey import (RhBug:1650266)
4d74dad
4d74dad
* Fri May 03 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.31.0-3
edd249f
- Backport patches to reintroduce hawkeyRepo
edd249f
294a06c
* Thu Apr 25 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.31.0-1
294a06c
- Update to 0.31.0
294a06c
- Installroot now requires absolute path
294a06c
- Support "_none_" value for repo option "proxy" (RhBug:1680272)
294a06c
- Add support for Module advisories
294a06c
- Add support for xml:base attribute from primary.xml (RhBug:1691315)
294a06c
- Improve detection of Platform ID (RhBug:1688462)
294a06c
ad7e265
* Wed Mar 27 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.28.1-1
ad7e265
- Update to 0.28.1
ad7e265
- Return empty query if incorrect reldep (RhBug:1687135)
ad7e265
- ConfigParser: Improve compatibility with Python ConfigParser and dnf-plugin-spacewalk (RhBug:1692044)
ad7e265
- ConfigParser: Unify default set of string represenation of boolean values
ad7e265
- Fix segfault when interrupting dnf process (RhBug:1610456)
ad7e265
44bae0b
* Mon Mar 11 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.28.0-1
44bae0b
- Update to 0.28.0
44bae0b
- Exclude module pkgs that have conflict
44bae0b
- Enhance config parser to preserve order of data, and keep comments and format
44bae0b
- Improve ARM detection
44bae0b
- Add support for SHA-384
44bae0b
cca5ea3
* Tue Feb 19 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.26.0-2
cca5ea3
- Backport patches for zchunk
cca5ea3
93a6b2d
* Wed Feb 13 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.26.0-1
93a6b2d
- Update to 0.26.0-1
93a6b2d
- Enhance modular solver to handle enabled and default module streams differently (RhBug:1648839)
93a6b2d
- Add support of wild cards for modules (RhBug:1644588)
93a6b2d
- Revert commit that adds best as default behavior
93a6b2d
6578d92
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-2
6578d92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6578d92
c10381b
* Wed Dec 12 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.24.1-1
c10381b
- Update to 0.24.1
c10381b
- Add support for zchunk
c10381b
- Enhance LIBDNF plugins support
c10381b
- Enhance sorting for module list (RhBug:1590358)
c10381b
- [repo] Check whether metadata cache is expired (RhBug:1539620,1648274)
c10381b
- [DnfRepo] Add methods for alternative repository metadata type and download (RhBug:1656314)
c10381b
- Remove installed profile on module  enable or disable (RhBug:1653623)
c10381b
- [sack] Implement dnf_sack_get_rpmdb_version()
c10381b
2177a6c
* Thu Nov 22 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.3-1
2177a6c
- Permanently disable Python2 build for Fedora 30+
2177a6c
- Update to 0.22.3
2177a6c
- Modify solver_describe_decision to report cleaned (RhBug:1486749)
2177a6c
- [swdb] create persistent WAL files (RhBug:1640235)
2177a6c
- Relocate ModuleContainer save hook (RhBug:1632518)
2177a6c
- [transaction] Fix transaction item lookup for obsoleted packages (RhBug: 1642796)
2177a6c
- Fix memory leaks and memory allocations
2177a6c
- [repo] Possibility to extend downloaded repository metadata
2177a6c
4eaec77
* Wed Nov 07 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-8
1101800
- Backport fixes for RHBZ#1642796 from upstream master
1101800
283775c
* Tue Oct 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.22.0-7
283775c
- Rebuild for libsolv 0.7
283775c
fbc36fa
* Tue Oct 23 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-6
fbc36fa
- Add patch Relocate-ModuleContainer-save-hook-RhBug1632518
fbc36fa
- Add patch Test-if-sack-is-present-and-run-save-module-persistor-RhBug1632518
fbc36fa
f535e0a
* Sat Oct 20 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-5
f535e0a
- remove problematic patch Relocate-ModuleContainer-save-hook-RhBug1632518
f535e0a
95fa955
* Fri Oct 19 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-4
95fa955
- backport Relocate-ModuleContainer-save-hook-RhBug1632518
95fa955
95fa955
* Thu Oct 18 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-3
e34f3b2
- bacport swdb-create-persistent-WAL-files-RhBug1640235
e34f3b2
e34f3b2
* Wed Oct 17 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-2
b473d93
- backport Modify-solver_describe_decision-to-report-cleaned-RhBug1486749
b473d93
- backport history-Fix-crash-in-TransactionItemaddReplacedBy
b473d93
12ef9ea
* Mon Oct 15 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.22.0-1
12ef9ea
- Update to 0.22.0
12ef9ea
- Fix segfault in repo_internalize_trigger (RhBug:1375895)
12ef9ea
- Change sorting of installonly packages (RhBug:1627685)
12ef9ea
- [swdb] Fixed pattern searching in history db (RhBug:1635542)
12ef9ea
- Check correctly gpg for repomd when refresh is used (RhBug:1636743)
12ef9ea
- [conf] Provide additional VectorString methods for compatibility with Python list.
12ef9ea
- [plugins] add plugin loading and hooks into libdnf
12ef9ea
fbc8030
* Sat Sep 29 2018 Kevin Fenzi <kevin@scrye.com> - 0.20.0-2
fbc8030
- Temp re-enable python2 subpackages to get rawhide composing again.
fbc8030
1936b50
* Tue Sep 25 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.20.0-1
1936b50
- [module] Report module solver errors
1936b50
- [module] Enhance module commands and errors
1936b50
- [transaction] Fixed several problems with SWDB
1936b50
- Remove unneeded regex URL tests (RhBug:1598336)
1936b50
- Allow quoted values in ini files (RhBug:1624056)
1936b50
- Filter out not unique set of solver problems (RhBug:1564369)
1936b50
- Disable python2 build for Fedora 30+
1936b50
7307bfb
* Tue Sep 18 2018 Adam Williamson <awilliam@redhat.com> - 0.19.1-3
7307bfb
- Backport PR #585 for an update crash bug (#1629340)
7307bfb
4926158
* Fri Sep 14 2018 Kalev Lember <klember@redhat.com> - 0.19.1-2
4926158
- Backport a fix for a packagekit crasher / F29 Beta blocker (#1626851)
4926158
d34ba7b
* Mon Sep 10 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.19.1-1
d34ba7b
- Fix compilation errors on gcc-4.8.5
d34ba7b
- [module] Allow module queries on disabled modules
d34ba7b
f80cc28
* Fri Sep 07 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.19.0-1
f80cc28
- [query] Reldeps can contain a space char (RhBug:1612462)
f80cc28
- [transaction] Avoid adding duplicates via Transaction::addItem()
f80cc28
- Fix compilation errors on gcc-4.8.5
f80cc28
- [module] Make available ModuleProfile using SWIG
f80cc28
- [module] Redesign module disable and reset
f80cc28
986b887
* Mon Aug 13 2018 Daniel Mach <dmach@redhat.com> - 0.17.2-1
986b887
- [sqlite3] Change db locking mode to DEFAULT.
986b887
- [doc] Add libsmartcols-devel to devel deps.
986b887
fa7be84
* Mon Aug 13 2018 Daniel Mach <dmach@redhat.com> - 0.17.1-1
fa7be84
- [module] Solve a problem in python constructor of NSVCAP if no version.
fa7be84
- [translations] Update translations from zanata.
fa7be84
- [transaction] Fix crash after using dnf.comps.CompsQuery and forking the process in Anaconda.
fa7be84
- [module] Support for resetting module state.
fa7be84
- [output] Introduce wrapper for smartcols.
fa7be84
42ddc3a
* Fri Aug 10 2018 Adam Williamson <awilliam@redhat.com> - 0.17.0-2
42ddc3a
- Backport fix that prevented anaconda running dnf in a subprocess (#546)
42ddc3a
b1be46c
* Tue Aug 07 2018 Daniel Mach <dmach@redhat.com> - 0.17.0-1
b1be46c
- [conf] Add module_platform_id option.
b1be46c
- [module] Add ModulePackageContainer class.
b1be46c
- [module] Add ModulePersistor class.
b1be46c
- [sack] Module filtering made available in python API
b1be46c
- [sack] Module auto-enabling according to installed packages
b1be46c
2e05c59
* Fri Jul 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.16.1-3
2e05c59
- Rebuild for new binutils
2e05c59
ab2dcb9
* Fri Jul 27 2018 Daniel Mach <dmach@redhat.com> - 0.16.1-2
edda643
- [module] Implement 'module_hotfixes' conf option to skip filtering RPMs from hotfix repos.
edda643
- [goal] Fix distupgrade filter, allow downgrades.
edda643
- [context] Allow to set module platform in context.
edda643
- [module] Introduce proper modular dependency solving.
edda643
- [module] Platform pseudo-module based on /etc/os-release.
edda643
- [goal] Add Goal::listSuggested().
edda643
- [l10n] Support for translations, add gettext build dependency.
edda643
e6f566d
* Sun Jul 22 2018 Daniel Mach <dmach@redhat.com> - 0.16.0-1
e6f566d
- Fix RHSM plugin
e6f566d
- Add support for logging
e6f566d
- Bump minimal libmodulemd version to 1.6.1
e6f566d
e4ca295
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.2-2
e4ca295
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e4ca295
22b4e0e
* Fri Jun 29 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.15.2-1
22b4e0e
- Update to 0.15.1
22b4e0e
- Resolves: rhbz#1595487
22b4e0e
e8b7251
* Fri Jun 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.15.1-2
e8b7251
- Restore proper ldconfig_scriptlets
e8b7251
4cc86ba
* Tue Jun 26 2018 Jaroslav Mracek <jmracek@redhat.com> - 0.15.1-1
4cc86ba
- Update to 0.15.1
a5902b6
c3618d0
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.11.1-6
c3618d0
- Rebuilt for Python 3.7
c3618d0
f222894
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-5
f222894
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f222894
Igor Gnatenko edcb1ba
* Tue Jan 30 2018 Igor Gnatenko <ignatenko@redhat.com> - 0.11.1-4
Igor Gnatenko edcb1ba
- Switch to %%ldconfig_scriptlets
Igor Gnatenko edcb1ba
9664c3c
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.11.1-3
9664c3c
- Use better Obsoletes for platform-python
9664c3c
Igor Gnatenko 78d33c3
* Fri Nov 03 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.11.1-2
Igor Gnatenko 78d33c3
- Remove platform-python subpackage
Igor Gnatenko 78d33c3
9425a0b
* Mon Oct 16 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.11.1-1
9425a0b
- Rerelease of 0.11.1-1
9425a0b
- Improvement query performance
9425a0b
- Run file query in hy_subject_get_best_solution only for files (arguments that start with ``/`` or
9425a0b
  ``*/``)
9425a0b
- Resolves: rhbz#1498207 - DNF crash during upgrade installation F26 -> F27
9425a0b
Igor Gnatenko 78fdc8b
* Tue Oct 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.11.0-1
Igor Gnatenko 78fdc8b
- Update to 0.11.0
Igor Gnatenko 78fdc8b
Igor Gnatenko e96253c
* Mon Oct 02 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.10.1-2
829e574
- Rerelease of 0.10.1-1
829e574
da1d568
* Wed Sep 27 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.10.1-1
da1d568
- Update to 0.10.1
da1d568
- It improves query performance with name and arch filters. Also nevra filter will now
da1d568
  handle string with or without epoch.
da1d568
- Additionally for python bindings it renames NEVRA._has_just_name() to NEVRA.has_just_name() due
da1d568
  to movement of code into c part of library.
da1d568
- Resolves: rhbz#1260242 - --exclude does not affect dnf remove's removal of requirements
da1d568
- Resolves: rhbz#1485881 - DNF claims it cannot install package, which have been already installed
da1d568
- Resolves: rhbz#1361187 - [abrt] python-ipython-console: filter_updown(): python3.5 killed by SIGABRT
da1d568
Igor Gnatenko e649740
* Fri Sep 15 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-8
Igor Gnatenko e649740
- Disable platform python on old releases
Igor Gnatenko e649740
41be9f6
* Tue Aug 15 2017 Lumír Balhar <lbalhar@redhat.com> - 0.9.3-7
41be9f6
- Add platform-python subpackage
41be9f6
Igor Gnatenko d884f85
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-6
Igor Gnatenko d884f85
- Rebuilt after RPM update (№ 3)
Igor Gnatenko d884f85
Igor Gnatenko 150a78a
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-5
Igor Gnatenko 150a78a
- Rebuilt for RPM soname bump
Igor Gnatenko 150a78a
Igor Gnatenko 0582566
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.3-4
Igor Gnatenko 0582566
- Rebuilt for RPM soname bump
Igor Gnatenko 0582566
5ed3150
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-3
5ed3150
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5ed3150
6743e20
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-2
6743e20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6743e20
06fafda
* Mon Jul 24 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.3-1
06fafda
- Update to 0.9.3
06fafda
Igor Gnatenko 8a2c2ce
* Sat Jul 01 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.9.2-1
Igor Gnatenko 8a2c2ce
- Update to 0.9.2
Igor Gnatenko 8a2c2ce
bfefa27
* Mon Jun 12 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.1-1
bfefa27
- Update to 0.9.1
bfefa27
f4f3f6c
* Mon May 22 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.9.0-1
f4f3f6c
- Update to 0.9.0
f4f3f6c
efe1828
* Tue May 02 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.8.2-1
efe1828
- Update to 0.8.2
efe1828
Igor Gnatenko 3291e1f
* Fri Mar 24 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.8.1-1
Igor Gnatenko 3291e1f
- Update to 0.8.1
Igor Gnatenko 3291e1f
b0ecbe6
* Tue Mar 21 2017 Jaroslav Mracek <jmracek@redhat.com> - 0.8.0-1
b0ecbe6
- Update to 0.8.0
b0ecbe6
Igor Gnatenko eee582b
* Mon Feb 20 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.4-1
Igor Gnatenko eee582b
- Update to 0.7.4
Igor Gnatenko eee582b
Igor Gnatenko 824db4f
* Fri Feb 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.3-1
Igor Gnatenko 824db4f
- Update to 0.7.3
Igor Gnatenko 824db4f
701f8f3
* Wed Feb 08 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.2-1
701f8f3
- 0.7.2
701f8f3
bbda173
* Fri Jan 06 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.7.1-1
bbda173
- 0.7.1
bbda173
58c7811
* Wed Dec 21 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.7.0-0.7gitf9b798c
58c7811
- Rebuild for Python 3.6
58c7811
fe6fa2e
* Mon Dec 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.0-0.6gitf9b798c
fe6fa2e
- Use new upstream URL
fe6fa2e
5e42288
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 0.7.0-0.5gitf9b798c
5e42288
- Rebuild for Python 3.6
5e42288
414243f
* Tue Dec 06 2016 Martin Hatina <mhatina@redhat.com> - 0.7.0-0.4gitf9b798c
0ac08e5
- Increase conflict version of dnf
0ac08e5
3948834
* Thu Dec 01 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.7.0-0.3gitf9b798c
3948834
- Update to latest snapshot
3948834
Igor Gnatenko 263bf19
* Fri Nov 04 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.7.0-0.2git8bd77f8
Igor Gnatenko 263bf19
- Update to latest snapshot
Igor Gnatenko 263bf19
10b3abe
* Thu Sep 29 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.7.0-0.1git179c0a6
10b3abe
- Initial package