a5902b6
%global libsolv_version 0.6.30-1
e6f566d
%global libmodulemd_version 1.6.1
12ef9ea
%global dnf_conflict 3.7.1
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
fbc8030
%if 0%{?rhel} > 7
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
bbda173
%global _cmake_opts \\\
bbda173
    -DENABLE_RHSM_SUPPORT=%{?with_rhsm:ON}%{!?with_rhsm:OFF} \\\
bbda173
    %{nil}
bbda173
10b3abe
Name:           libdnf
12ef9ea
Version:        0.22.0
fbc36fa
Release:        6%{?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
b473d93
Patch0001:      0001-Modify-solver_describe_decision-to-report-cleaned-RhBug1486749.patch
b473d93
Patch0002:      0002-history-Fix-crash-in-TransactionItemaddReplacedBy.patch
e34f3b2
Patch0003:      0003-swdb-create-persistent-WAL-files-RhBug1640235.patch
fbc36fa
Patch0004:      0004-Relocate-ModuleContainer-save-hook-RhBug1632518.patch
fbc36fa
Patch0005:      0005-Test-if-sack-is-present-and-run-save-module-persistor-RhBug1632518.patch
10b3abe
10b3abe
BuildRequires:  cmake
10b3abe
BuildRequires:  gcc
a5902b6
BuildRequires:  gcc-c++
10b3abe
BuildRequires:  libsolv-devel >= %{libsolv_version}
10b3abe
BuildRequires:  pkgconfig(librepo)
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)
10b3abe
BuildRequires:  rpm-devel >= 4.11.0
bbda173
%if %{with rhsm}
e6f566d
BuildRequires:  pkgconfig(librhsm) >= 0.0.3
bbda173
%endif
a5902b6
BuildRequires:  pkgconfig(sqlite3)
a5902b6
BuildRequires:  pkgconfig(json-c)
a5902b6
BuildRequires:  pkgconfig(cppunit)
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}
10b3abe
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
e6f566d
  %cmake -DPYTHON_DESIRED:FILEPATH=%{__python2} -DWITH_MAN=OFF ../ %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{_cmake_opts}
10b3abe
  %make_build
10b3abe
popd
1936b50
%endif # with python2
10b3abe
10b3abe
%if %{with python3}
10b3abe
pushd build-py3
e6f566d
  %cmake -DPYTHON_DESIRED:FILEPATH=%{__python3} -DWITH_GIR=0 -DWITH_MAN=0 -Dgtkdoc=0 ../ %{!?with_valgrind:-DDISABLE_VALGRIND=1} %{_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.*
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
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