Blame SPECS/libsolv.spec

5aaecf
%global libname solv
5aaecf
5aaecf
%if (0%{?rhel} && 0%{?rhel} <= 7) || (0%{?fedora} && 0%{?fedora} <= 29)
5aaecf
%bcond_without python2_bindings
5aaecf
%else
5aaecf
%bcond_with python2_bindings
5aaecf
%endif
5aaecf
%if 0%{?rhel} && 0%{?rhel} <= 7
5aaecf
%bcond_with perl_bindings
5aaecf
%bcond_with ruby_bindings
5aaecf
%bcond_with python3_bindings
5aaecf
%else
5aaecf
%bcond_without perl_bindings
5aaecf
%bcond_without ruby_bindings
5aaecf
%bcond_without python3_bindings
5aaecf
%endif
5aaecf
# Creates special prefixed pseudo-packages from appdata metadata
5aaecf
%bcond_without appdata
5aaecf
# Creates special prefixed "group:", "category:" pseudo-packages
5aaecf
%bcond_without comps
5aaecf
# For rich dependencies
5aaecf
%bcond_without complex_deps
5aaecf
%if 0%{?rhel}
5aaecf
%bcond_with helix_repo
5aaecf
%bcond_with suse_repo
5aaecf
%bcond_with debian_repo
5aaecf
%bcond_with arch_repo
5aaecf
# For handling deb + rpm at the same time
5aaecf
%bcond_with multi_semantics
5aaecf
%else
5aaecf
%bcond_without helix_repo
5aaecf
%bcond_without suse_repo
5aaecf
%bcond_without debian_repo
5aaecf
%bcond_without arch_repo
5aaecf
# For handling deb + rpm at the same time
5aaecf
%bcond_without multi_semantics
5aaecf
%endif
5aaecf
5aaecf
#global commitnum 2901
5aaecf
#global commit 47fbaa2a0892866d30ec0e1b4c885532d0aca7b8
5aaecf
#global shortcommit %(c=%{commit}; echo ${c:0:7})
5aaecf
5aaecf
Name:           lib%{libname}
96dd81
Version:        0.7.7
96dd81
Release:        1%{?commit:.git.%{commitnum}.%{?shortcommit}}%{?dist}
5aaecf
Summary:        Package dependency solver
5aaecf
5aaecf
License:        BSD
5aaecf
URL:            https://github.com/openSUSE/libsolv
5aaecf
%if %{defined commit}
5aaecf
Source:         %{url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
5aaecf
%else
5aaecf
Source:         %{url}/archive/%{version}/%{name}-%{version}.tar.gz
5aaecf
%endif
6e36fb
# https://bugzilla.redhat.com/show_bug.cgi?id=1630300
96dd81
Patch1:         0001-Backport-OpenSSL-for-hashes.patch
5aaecf
5aaecf
BuildRequires:  cmake
5aaecf
BuildRequires:  gcc-c++
5aaecf
BuildRequires:  ninja-build
5aaecf
BuildRequires:  pkgconfig(rpm)
5aaecf
BuildRequires:  zlib-devel
5aaecf
# -DWITH_LIBXML2=ON
5aaecf
BuildRequires:  libxml2-devel
6e36fb
# -DWITH_OPENSSL=ON
6e36fb
BuildRequires:  pkgconfig(openssl)
5aaecf
# -DENABLE_LZMA_COMPRESSION=ON
5aaecf
BuildRequires:  xz-devel
5aaecf
# -DENABLE_BZIP2_COMPRESSION=ON
5aaecf
BuildRequires:  bzip2-devel
5aaecf
5aaecf
%description
5aaecf
A free package dependency solver using a satisfiability algorithm. The
5aaecf
library is based on two major, but independent, blocks:
5aaecf
5aaecf
- Using a dictionary approach to store and retrieve package
5aaecf
  and dependency information.
5aaecf
5aaecf
- Using satisfiability, a well known and researched topic, for
5aaecf
  resolving package dependencies.
5aaecf
5aaecf
%package devel
5aaecf
Summary:        Development files for %{name}
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
Requires:       rpm-devel%{?_isa}
5aaecf
5aaecf
%description devel
5aaecf
Development files for %{name}.
5aaecf
5aaecf
%package tools
5aaecf
Summary:        Package dependency solver tools
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
# repo2solv dependencies. All of those are used in shell-script.
5aaecf
Requires:       %{_bindir}/gzip
5aaecf
Requires:       %{_bindir}/bzip2
5aaecf
Requires:       %{_bindir}/lzma
5aaecf
Requires:       %{_bindir}/xz
5aaecf
Requires:       %{_bindir}/cat
5aaecf
Requires:       %{_bindir}/find
5aaecf
5aaecf
%description tools
5aaecf
Package dependency solver tools.
5aaecf
5aaecf
%package demo
5aaecf
Summary:        Applications demoing the %{name} library
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
# solv dependencies. Used as execlp() and system()
5aaecf
Requires:       %{_bindir}/curl
5aaecf
Requires:       %{_bindir}/gpg2
5aaecf
5aaecf
%description demo
5aaecf
Applications demoing the %{name} library.
5aaecf
5aaecf
%if %{with perl_bindings}
5aaecf
%package -n perl-%{libname}
5aaecf
Summary:        Perl bindings for the %{name} library
5aaecf
BuildRequires:  swig
5aaecf
BuildRequires:  perl-devel
5aaecf
BuildRequires:  perl-generators
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
5aaecf
%description -n perl-%{libname}
5aaecf
Perl bindings for the %{name} library.
5aaecf
%endif
5aaecf
5aaecf
%if %{with ruby_bindings}
5aaecf
%package -n ruby-%{libname}
5aaecf
Summary:        Ruby bindings for the %{name} library
5aaecf
BuildRequires:  swig
5aaecf
BuildRequires:  ruby-devel
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
5aaecf
%description -n ruby-%{libname}
5aaecf
Ruby bindings for the %{name} library.
5aaecf
%endif
5aaecf
5aaecf
%if %{with python2_bindings}
5aaecf
%package -n python2-%{libname}
5aaecf
Summary:        Python bindings for the %{name} library
5aaecf
%{?python_provide:%python_provide python2-%{libname}}
5aaecf
BuildRequires:  swig
5aaecf
BuildRequires:  python2-devel
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
5aaecf
%description -n python2-%{libname}
5aaecf
Python bindings for the %{name} library.
5aaecf
5aaecf
Python 2 version.
5aaecf
%endif
5aaecf
5aaecf
%if %{with python3_bindings}
5aaecf
%package -n python3-%{libname}
5aaecf
Summary:        Python bindings for the %{name} library
5aaecf
%{?python_provide:%python_provide python3-%{libname}}
5aaecf
BuildRequires:  swig
5aaecf
BuildRequires:  python3-devel
5aaecf
Requires:       %{name}%{?_isa} = %{version}-%{release}
5aaecf
5aaecf
%description -n python3-%{libname}
5aaecf
Python bindings for the %{name} library.
5aaecf
5aaecf
Python 3 version.
5aaecf
%endif
5aaecf
5aaecf
%prep
5aaecf
%autosetup -p1 %{?commit:-n %{name}-%{commit}}
5aaecf
5aaecf
%build
5aaecf
%cmake . -B"%{_vpath_builddir}" -GNinja         \
5aaecf
  -DFEDORA=1                                    \
5aaecf
  -DENABLE_RPMDB=ON                             \
5aaecf
  -DENABLE_RPMDB_BYRPMHEADER=ON                 \
5aaecf
  -DENABLE_RPMDB_LIBRPM=ON                      \
5aaecf
  -DENABLE_RPMPKG_LIBRPM=ON                     \
5aaecf
  -DENABLE_RPMMD=ON                             \
5aaecf
  %{?with_comps:-DENABLE_COMPS=ON}              \
5aaecf
  %{?with_appdata:-DENABLE_APPDATA=ON}          \
5aaecf
  -DUSE_VENDORDIRS=ON                           \
5aaecf
  -DWITH_LIBXML2=ON                             \
6e36fb
  -DWITH_OPENSSL=ON                             \
5aaecf
  -DENABLE_LZMA_COMPRESSION=ON                  \
5aaecf
  -DENABLE_BZIP2_COMPRESSION=ON                 \
5aaecf
  %{?with_helix_repo:-DENABLE_HELIXREPO=ON}     \
5aaecf
  %{?with_suse_repo:-DENABLE_SUSEREPO=ON}       \
5aaecf
  %{?with_debian_repo:-DENABLE_DEBIAN=ON}       \
5aaecf
  %{?with_arch_repo:-DENABLE_ARCHREPO=ON}       \
5aaecf
  %{?with_multi_semantics:-DMULTI_SEMANTICS=ON} \
5aaecf
  %{?with_complex_deps:-DENABLE_COMPLEX_DEPS=1} \
5aaecf
  %{?with_perl_bindings:-DENABLE_PERL=ON}       \
5aaecf
  %{?with_ruby_bindings:-DENABLE_RUBY=ON}       \
5aaecf
%if %{with python2_bindings} || %{with python3_bindings}
5aaecf
  -DENABLE_PYTHON=ON                            \
5aaecf
%if %{with python2_bindings}
5aaecf
  -DPythonLibs_FIND_VERSION=%{python2_version}  \
5aaecf
  -DPythonLibs_FIND_VERSION_MAJOR=2             \
5aaecf
%if %{with python3_bindings}
5aaecf
  -DENABLE_PYTHON3=ON                           \
5aaecf
  -DPYTHON3_EXECUTABLE=%{__python3}             \
5aaecf
%endif
5aaecf
%else
5aaecf
  -DPythonLibs_FIND_VERSION=%{python3_version}  \
5aaecf
  -DPythonLibs_FIND_VERSION_MAJOR=3             \
5aaecf
%endif
5aaecf
%endif
5aaecf
  %{nil}
5aaecf
%ninja_build -C "%{_vpath_builddir}"
5aaecf
5aaecf
%install
5aaecf
%ninja_install -C "%{_vpath_builddir}"
5aaecf
5aaecf
%check
5aaecf
%ninja_test -C "%{_vpath_builddir}"
5aaecf
5aaecf
%ldconfig_scriptlets
5aaecf
5aaecf
%files
5aaecf
%license LICENSE*
5aaecf
%doc README
5aaecf
%{_libdir}/%{name}.so.*
5aaecf
%{_libdir}/%{name}ext.so.*
5aaecf
5aaecf
%files devel
5aaecf
%{_libdir}/%{name}.so
5aaecf
%{_libdir}/%{name}ext.so
5aaecf
%{_includedir}/%{libname}/
5aaecf
%{_libdir}/pkgconfig/%{name}.pc
5aaecf
%{_libdir}/pkgconfig/%{name}ext.pc
5aaecf
# Own directory because we don't want to depend on cmake
5aaecf
%dir %{_datadir}/cmake/Modules/
5aaecf
%{_datadir}/cmake/Modules/FindLibSolv.cmake
5aaecf
%{_mandir}/man3/%{name}*.3*
5aaecf
5aaecf
# Some small macro to list tools with mans
5aaecf
%global solv_tool() \
5aaecf
%{_bindir}/%{1}\
5aaecf
%{_mandir}/man1/%{1}.1*
5aaecf
5aaecf
%files tools
5aaecf
%solv_tool deltainfoxml2solv
5aaecf
%solv_tool dumpsolv
5aaecf
%solv_tool installcheck
5aaecf
%solv_tool mergesolv
5aaecf
%solv_tool repomdxml2solv
5aaecf
%solv_tool rpmdb2solv
5aaecf
%solv_tool rpmmd2solv
5aaecf
%solv_tool rpms2solv
5aaecf
%solv_tool testsolv
5aaecf
%solv_tool updateinfoxml2solv
5aaecf
%solv_tool repo2solv
5aaecf
%if %{with comps}
5aaecf
  %solv_tool comps2solv
5aaecf
%endif
5aaecf
%if %{with appdata}
5aaecf
  %solv_tool appdata2solv
5aaecf
%endif
5aaecf
%if %{with debian_repo}
5aaecf
  %solv_tool deb2solv
5aaecf
%endif
5aaecf
%if %{with arch_repo}
5aaecf
  %solv_tool archpkgs2solv
5aaecf
  %solv_tool archrepo2solv
5aaecf
%endif
5aaecf
%if %{with helix_repo}
5aaecf
  %solv_tool helix2solv
5aaecf
%endif
5aaecf
%if %{with suse_repo}
5aaecf
  %solv_tool susetags2solv
5aaecf
%endif
5aaecf
5aaecf
%files demo
5aaecf
%solv_tool solv
5aaecf
5aaecf
%if %{with perl_bindings}
5aaecf
%files -n perl-%{libname}
5aaecf
%{perl_vendorarch}/%{libname}.pm
5aaecf
%{perl_vendorarch}/%{libname}.so
5aaecf
%endif
5aaecf
5aaecf
%if %{with ruby_bindings}
5aaecf
%files -n ruby-%{libname}
5aaecf
%{ruby_vendorarchdir}/%{libname}.so
5aaecf
%endif
5aaecf
5aaecf
%if %{with python2_bindings}
5aaecf
%files -n python2-%{libname}
5aaecf
%{python2_sitearch}/_%{libname}.so
5aaecf
%{python2_sitearch}/%{libname}.py*
5aaecf
%endif
5aaecf
5aaecf
%if %{with python3_bindings}
5aaecf
%files -n python3-%{libname}
5aaecf
%{python3_sitearch}/_%{libname}.so
5aaecf
%{python3_sitearch}/%{libname}.py
5aaecf
%{python3_sitearch}/__pycache__/%{libname}.*
5aaecf
%endif
5aaecf
5aaecf
%changelog
96dd81
* Tue Jun 11 2019 Ales Matej <amatej@redhat.org> - 0.7.7-1
96dd81
- Update to 0.7.7
96dd81
- selected bug fixes:
96dd81
  * fix updating of too many packages in focusbest mode
96dd81
  * fix handling of disabled installed packages in distupgrade
96dd81
  * fix repository priority handling for multiversion packages
96dd81
  * better support of inverval deps in pool_match_dep()
96dd81
  * support src rpms that have non-empty provides
96dd81
  * fix favorq leaking between solver runs if the solver is reused
96dd81
  * fix SOLVER_FLAG_FOCUS_BEST updateing packages without reason
96dd81
  * be more correct with multiversion packages that obsolete their
96dd81
    own name
96dd81
  * allow building with swig-4.0.0
96dd81
  * lock jobs now take precedence over dup and forcebest jobs
96dd81
- new features
96dd81
  * new POOL_FLAG_WHATPROVIDESWITHDISABLED pool flag 
96dd81
  * bindings: add get_disabled_list() and set_disabled_list()
96dd81
  * bindings: add whatcontainsdep()
96dd81
  * bindings: make the selection filters return the self object
96dd81
  * MSVC compilation support
96dd81
6e36fb
* Tue Jun 11 2019 Pavla Kratochvilova <pkratoch@redhat.org> - 0.7.4-3
6e36fb
- Backport patches: Use OpenSSL for computing hashes (RhBug:1630300)
6e36fb
6e36fb
* Wed May 29 2019 Pavla Kratochvilova <pkratoch@redhat.org> - 0.7.4-2
6e36fb
- Backport patch: Not considered excluded packages as a best candidate (RhBug:1677583)
6e36fb
6e36fb
* Fri Apr 26 2019 Pavla Kratochvilova <pkratoch@redhat.org> - 0.7.4-1
6e36fb
- soname bump to "1"
6e36fb
- incompatible API changes:
6e36fb
  * bindings: Selection.flags is now an attribute
6e36fb
  * repodata_lookup_num now works like the other lookup_num functions
6e36fb
- new functions:
6e36fb
  * selection_make_matchsolvable
6e36fb
  * selection_make_matchsolvablelist
6e36fb
  * pool_whatmatchessolvable
6e36fb
  * repodata_search_arrayelement
6e36fb
  * repodata_lookup_kv_uninternalized
6e36fb
  * repodata_search_uninternalized
6e36fb
  * repodata_translate_dir
6e36fb
- new repowriter interface to write solv files allowing better
6e36fb
  control over what gets written
6e36fb
- support for filtered file lists with a custom filter
6e36fb
- dropped support of (since a long time unused) REPOKEY_TYPE_U32
6e36fb
- selected bug fixes:
6e36fb
  * fix nasty off-by-one error in repo_write
6e36fb
  * do not autouninstall packages because of forcebest updates
6e36fb
  * fixed a couple of null pointer derefs and potential memory
6e36fb
    leaks
6e36fb
  * made disfavoring recommended packages work if strong recommends
6e36fb
    is enabled
6e36fb
  * no longer disable infarch rules when they don't conflict with
6e36fb
    the job
6e36fb
  * repo_add_rpmdb: do not copy bad solvables from the old solv file
6e36fb
  * fix cleandeps updates not updating all packages
6e36fb
- new features:
6e36fb
  * support rpm's new '^' version separator
6e36fb
  * support set/get_considered_list in bindings
6e36fb
  * new experimental SOLVER_FLAG_ONLY_NAMESPACE_RECOMMENDED flag
6e36fb
  * do favor evaluation before pruning allowing to (dis)favor
6e36fb
    specific package versions
6e36fb
  * bindings: support pool.matchsolvable(), pool.whatmatchessolvable()
6e36fb
    pool.best_solvables() and selection.matchsolvable()
6e36fb
  * experimental DISTTYPE_CONDA and REL_CONDA support
6e36fb
5aaecf
* Fri Feb 08 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.6.35-6
5aaecf
- Backport patch to add support for modular updateinfoxml data
5aaecf
5aaecf
* Wed Feb 06 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.6.35-5
5aaecf
- Backport patches for: Install of update of nss.x86_64 adds i686 into transaction (RhBug:1663136)
5aaecf
5aaecf
* Wed Dec 12 2018 Pavla Kratochvilova <pkratoch@redhat.org> - 0.6.35-4
5aaecf
- Backport patch: Fix memory leaks, memory access, not used values
5aaecf
5aaecf
* Mon Oct 15 2018 Jaroslav Mracek <jmracek@redhat.org> - 0.6.35-3
5aaecf
- Update to 0.6.35
5aaecf
- Backport patch: Make sure that targeted updates don't do reinstalls
5aaecf
5aaecf
* Sun Jun 10 2018 Charalampos Stratakis <cstratak@redhat.com> - 0.6.34-2
5aaecf
- Conditionalize the python2 subpackage
5aaecf
5aaecf
* Mon Mar 26 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-1
5aaecf
- Update to 0.6.34
5aaecf
5aaecf
* Wed Feb 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.33-1
5aaecf
- Update to 0.6.33
5aaecf
5aaecf
* Tue Feb 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.32-1
5aaecf
- Update to 0.6.32
5aaecf
5aaecf
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.31-2
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5aaecf
5aaecf
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.31-1
5aaecf
- Update to 0.6.31
5aaecf
5aaecf
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-9.git.2901.47fbaa2
5aaecf
- Use librpm to access rpm headers
5aaecf
5aaecf
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-8.git.2900.8bdcce1
5aaecf
- Use librpm to access DB
5aaecf
5aaecf
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-7.git.2898.ae214a6
5aaecf
- Switch to %%ldconfig_scriptlets
5aaecf
5aaecf
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-6.git.2898.ae214a6
5aaecf
- Disable librpm from accessing DB
5aaecf
5aaecf
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-5.git.2898.ae214a6
5aaecf
- Allow disabling python2 bindings
5aaecf
5aaecf
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-4.git.2898.ae214a6
5aaecf
- Switch to ninja-build
5aaecf
5aaecf
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3.git.2898.ae214a6
5aaecf
- Update to latest git version
5aaecf
- Switch to use librpm for accessing headers / rpmdb
5aaecf
5aaecf
* Mon Nov 20 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3.git.2887.97b8c0c
5aaecf
- Update to latest snapshot
5aaecf
5aaecf
* Mon Nov 06 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.30-2
5aaecf
- Better error message on DB_VERSION_MISMATCH errors
5aaecf
5aaecf
* Tue Oct 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-1
5aaecf
- Update to 0.6.30
5aaecf
5aaecf
* Tue Sep 19 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.29-2
5aaecf
- Band-aid for DB_VERSION_MISMATCH errors on glibc updates
5aaecf
5aaecf
* Thu Sep 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.29-1
5aaecf
- Update to 0.6.29
5aaecf
5aaecf
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-8
5aaecf
- Rebuilt after RPM update (№ 3)
5aaecf
5aaecf
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-7
5aaecf
- Rebuilt for RPM soname bump
5aaecf
5aaecf
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-6
5aaecf
- Rebuilt for RPM soname bump
5aaecf
5aaecf
* Thu Aug 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-5
5aaecf
- Add support for REL_WITHOUT
5aaecf
5aaecf
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-4
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5aaecf
5aaecf
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-3
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5aaecf
5aaecf
* Fri Jul 21 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-2
5aaecf
- Backport patch for fixing yumobs
5aaecf
5aaecf
* Sat Jul 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-1
5aaecf
- Update to 0.6.28
5aaecf
5aaecf
* Mon May 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-2
5aaecf
- Backport few fixes for bindings
5aaecf
5aaecf
* Thu May 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-1
5aaecf
- Update to 0.6.27
5aaecf
5aaecf
* Mon Mar 27 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-5.git.20.668e249
5aaecf
- Update to latest snapshot
5aaecf
5aaecf
* Sat Mar 18 2017 Neal Gompa <ngompa13@gmail.com> - 0.6.26-4.git.19.2262346
5aaecf
- Enable AppData support (#1427171)
5aaecf
5aaecf
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-3.git.19.2262346
5aaecf
- Update to latest git
5aaecf
- Switch to libxml2
5aaecf
5aaecf
* Mon Mar 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-2
5aaecf
- Use %%{__python3} as PYTHON3_EXECUTABLE
5aaecf
5aaecf
* Wed Feb 15 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-1
5aaecf
- Update to 0.6.26
5aaecf
5aaecf
* Tue Feb 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.25-1
5aaecf
- Update to 0.6.25
5aaecf
5aaecf
* Fri Jan 13 2017 Vít Ondruch <vondruch@redhat.com> - 0.6.24-4
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
5aaecf
5aaecf
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.6.24-3
5aaecf
- Rebuild for Python 3.6
5aaecf
5aaecf
* Fri Dec 09 2016 Orion Poplawski <orion@cora.nwra.com> - 0.6.24-2
5aaecf
- Use upstream python build options
5aaecf
5aaecf
* Fri Nov 11 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.24-1
5aaecf
- Update to 0.6.24
5aaecf
5aaecf
* Sat Oct 29 2016 Denis Ollier <larchunix@gmail.com> - 0.6.23-6
5aaecf
- Typo fixes in spec: s/MULTI_SYMANTICS/MULTI_SEMANTICS/
5aaecf
5aaecf
* Tue Sep 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-5
5aaecf
- Trivial fixes in spec
5aaecf
5aaecf
* Sat Aug 27 2016 Neal Gompa <ngompa13@gmail.com> - 0.6.23-4
5aaecf
- Enable suserepo on Fedora to enable making openSUSE containers with Zypper
5aaecf
5aaecf
* Fri Aug 12 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-3
5aaecf
- Enable helixrepo on Fedora
5aaecf
5aaecf
* Wed Aug 03 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-2
5aaecf
- Backport patch to fix dnf --debugsolver crash (RHBZ #1361831)
5aaecf
5aaecf
* Wed Jul 27 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-1
5aaecf
- Update to 0.6.23
5aaecf
5aaecf
* Wed Jul 20 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-3
5aaecf
- Backport couple of patches from upstream
5aaecf
5aaecf
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.22-2
5aaecf
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
5aaecf
5aaecf
* Tue Jun 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-1
5aaecf
- Update to 0.6.22
5aaecf
- Backport patch which will help to not autoremove needed packages
5aaecf
  (RHBZ #1227066, #1284349)
5aaecf
5aaecf
* Mon Jun 06 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-3
5aaecf
- Enable deb/arch support for non-rhel distros
5aaecf
5aaecf
* Mon May 30 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-2
5aaecf
- Modify enabled/disabled features
5aaecf
5aaecf
* Wed May 18 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-1
5aaecf
- Update to 0.6.21
5aaecf
5aaecf
* Tue May 17 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-2
5aaecf
- Backport patch to fix crashing on reading some repos (RHBZ #1318662)
5aaecf
- Backport patch to fix installing multilib packages with weak deps
5aaecf
  (RHBZ #1325471)
5aaecf
5aaecf
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-1
5aaecf
- Update to 0.6.20
5aaecf
5aaecf
* Tue Apr 05 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.19-3
5aaecf
- Reorganize spec file
5aaecf
- Enable helixrepo feature
5aaecf
- enable appdata feature
5aaecf
5aaecf
* Tue Mar 8 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.19-2
5aaecf
- Apply 9 patches from upstream
5aaecf
5aaecf
* Sat Feb 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.19-1
5aaecf
- Update to 0.6.19
5aaecf
5aaecf
* Tue Feb  2 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.6.15-6
5aaecf
- Explicitly add rubypick and ruubygems build dependencies
5aaecf
5aaecf
* Tue Jan 12 2016 Vít Ondruch <vondruch@redhat.com> - 0.6.15-5
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
5aaecf
5aaecf
* Sun Jan 10 2016 Dan Horák <dan[at]danny.cz> - 0.6.15-4
5aaecf
- fix build on non-Fedora with python3
5aaecf
5aaecf
* Tue Jan 05 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.15-3
5aaecf
- Fix bz2 compression support for python3 (RhBug:1293652)
5aaecf
5aaecf
* Fri Dec 18 2015 Michal Luscon <mluscon@redhat.com> - 0.6.15-2
5aaecf
- Revert reworked multiversion orphaned handling
5aaecf
5aaecf
* Thu Dec 17 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.15-1
5aaecf
- Update to 0.6.15
5aaecf
5aaecf
* Tue Dec 08 2015 Jaroslav Mracek <jmracek@redhat.com> - 0.6.14-7
5aaecf
- Rebase to upstream b1ea392
5aaecf
- Enable bz2 compression support (Mikolaj Izdebski <mizdebsk@redhat.com>) (RhBug:1226647)
5aaecf
5aaecf
* Thu Nov 26 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-6
5aaecf
- revert obsolete, as %%python_provide does it (undocumented)
5aaecf
5aaecf
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-5
5aaecf
- adjust obsolete for stupid packaging
5aaecf
5aaecf
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-4
5aaecf
- python2-solv obsoletes python-solv (#1263230)
5aaecf
5aaecf
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-3
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
5aaecf
5aaecf
* Wed Oct 14 2015 Michal Luscon <mluscon@redhat.com> - 0.6.14-2
5aaecf
- Backport patches from upstream
5aaecf
5aaecf
* Mon Oct 12 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.14-1
5aaecf
- Update to 0.6.14
5aaecf
- Backport patches from upstream
5aaecf
5aaecf
* Thu Sep 10 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.12-1
5aaecf
- Update to 0.6.12
5aaecf
5aaecf
* Wed Aug 05 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-3
5aaecf
- added compile flag to support rich dependencies
5aaecf
- new version adding MIPS support
5aaecf
- Distribute testsolv in -tools subpackage (Igor Gnatenko)
5aaecf
- Enable python3 bindings for fedora (Igor Gnatenko)
5aaecf
5aaecf
* Tue Aug 04 2015 Adam Williamson <awilliam@redhat.com> - 0.6.11-2
5aaecf
- make bindings require the exact matching version of the lib (#1243737)
5aaecf
5aaecf
* Mon Jun 22 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-1
5aaecf
- new version fixing segfault
5aaecf
- RbConfig fixed in the upstream (1928f1a), libsolv-ruby22-rbconfig.patch erased
5aaecf
5aaecf
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.10-2
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5aaecf
5aaecf
* Wed Mar 25 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-1
5aaecf
- new version fixing segfault
5aaecf
5aaecf
* Fri Mar 6 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-3
5aaecf
- Rebuilt with new provides selection feature
5aaecf
5aaecf
* Mon Jan 19 2015 Vít Ondruch <vondruch@redhat.com> - 0.6.8-2
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.2
5aaecf
5aaecf
* Fri Jan 16 2015 Richard Hughes <richard@hughsie.com> - 0.6.8-2
5aaecf
- Update to latest upstream release to fix a crash in PackageKit.
5aaecf
5aaecf
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.4-3
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5aaecf
5aaecf
5aaecf
* Mon Aug 11 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-2
5aaecf
- Rebase to upstream 12af31a
5aaecf
5aaecf
* Mon Jul 28 2014 Aleš Kozumplík <akozumpl@redhat.com> - 0.6.4-1
5aaecf
- Rebase to upstream 5bd9589
5aaecf
5aaecf
* Mon Jul 14 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-0.git2a5c1c4
5aaecf
- Rebase to upstream 2a5c1c4
5aaecf
- Filename selector can start with a star
5aaecf
5aaecf
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2.git6d968f1
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5aaecf
5aaecf
* Tue May 27 2014 Aleš Kozumplík <ales@redhat.com> - 0.6.1-1.git6d968f1
5aaecf
- Rebase to upstream 6d968f1
5aaecf
- Fix RhBug:1049209
5aaecf
5aaecf
* Fri Apr 25 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.1-0.gitf78f5de
5aaecf
- Rebase to 0.6.0, upstream commit f78f5de.
5aaecf
5aaecf
* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 0.6.0-0.git05baf54.1
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
5aaecf
5aaecf
* Wed Apr 9 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.0-0.git05baf54
5aaecf
- Rebase to 0.6.0, upstream commit 05baf54.
5aaecf
5aaecf
* Mon Dec 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.1-1.gitbcedc98
5aaecf
- Rebase upstream bcedc98
5aaecf
- Fix RhBug:1051917.
5aaecf
5aaecf
* Mon Dec 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.1-0.gita8e47f1
5aaecf
- Rebase to 0.4.1, upstream commit a8e47f1.
5aaecf
5aaecf
* Fri Nov 22 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.4.0-2.git4442b7f
5aaecf
- Rebase to 0.4.0, upstream commit 4442b7f.
5aaecf
- support DELTA_LOCATION_BASE for completeness
5aaecf
5aaecf
* Tue Oct 29 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.0-1.gitd49d319
5aaecf
- Rebase to 0.4.0, upstream commit d49d319.
5aaecf
5aaecf
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 0.3.0-9.gita59d11d
5aaecf
- Perl 5.18 rebuild
5aaecf
5aaecf
* Wed Jul 31 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-8.gita59d11d
5aaecf
- Rebase to upstream a59d11d.
5aaecf
5aaecf
* Fri Jul 19 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-7.git228d412
5aaecf
- Add build flags, including Deb, Arch, LZMA and MULTI_SEMANTICS. (RhBug:985905)
5aaecf
5aaecf
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.3.0-6.git228d412
5aaecf
- Perl 5.18 rebuild
5aaecf
5aaecf
* Mon Jun 24 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-5.git228d412
5aaecf
- Rebase to upstream 228d412.
5aaecf
- Fixes hawkey github issue https://github.com/akozumpl/hawkey/issues/13
5aaecf
5aaecf
* Thu Jun 20 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-4.git209e9cb
5aaecf
- Rebase to upstream 209e9cb.
5aaecf
- Package the new man pages.
5aaecf
5aaecf
* Thu May 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-3.git7399ad1
5aaecf
- Run 'make test' with libsolv build.
5aaecf
5aaecf
* Mon Apr 8 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-2.git7399ad1
5aaecf
- Rebase to upstream 7399ad1.
5aaecf
- Fixes RhBug:905209
5aaecf
5aaecf
* Mon Apr 8 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-1.gite372b78
5aaecf
- Rebase to upstream e372b78.
5aaecf
- Fixes RhBug:e372b78
5aaecf
5aaecf
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-2.gitf663ca2
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5aaecf
5aaecf
* Thu Aug 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-17.git6c9d3eb
5aaecf
- Rebase to upstream 6c9d3eb.
5aaecf
- Drop the solv.i stdbool.h fix integrated upstream.
5aaecf
- Dropped the job reasons fix.
5aaecf
5aaecf
* Mon Jul 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-16.git1617994
5aaecf
- Fix build problems with Perl bindings.
5aaecf
5aaecf
* Mon Jul 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-15.git1617994
5aaecf
- Rebuilt after a failed mass rebuild.
5aaecf
5aaecf
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.0-14.git1617994
5aaecf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5aaecf
5aaecf
* Mon Jul 16 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-13.git1617994%{?dist}
5aaecf
- preliminary fix for JOB resons in solver_describe_decision().
5aaecf
5aaecf
* Sun Jul 1 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-12.git1617994%{?dist}
5aaecf
- Rebase to upstream 1617994.
5aaecf
- Support for RPM_ADD_WITH_HDRID.
5aaecf
5aaecf
* Thu Jun  7 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-11.gitd39a42b%{?dist}
5aaecf
- Rebase to upstream d39a42b.
5aaecf
- Fix the epochs.
5aaecf
- Move the ruby modules into vendorarch dir, where they are expected.
5aaecf
5aaecf
* Thu May  17 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-9.git8cf7650%{?dist}
5aaecf
- Rebase to upstream 8cf7650.
5aaecf
- ruby bindings: fix USE_VENDORDIRS for Fedora.
5aaecf
5aaecf
* Thu Apr  12 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-7.gitaf1465a2%{?dist}
5aaecf
- Rebase to the upstream.
5aaecf
- Make repo_add_solv() work without stub repodata.
5aaecf
5aaecf
* Thu Apr  5 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-6.git80afaf7%{?dist}
5aaecf
- Rebuild for the new libdb package.
5aaecf
5aaecf
* Mon Apr  2 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-5.git80afaf7%{?dist}
5aaecf
- Rebuild for the new rpm package.
5aaecf
5aaecf
* Wed Mar 21 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-4.git80afaf7%{?dist}
5aaecf
- New upstream version, fix the .rpm release number.
5aaecf
5aaecf
* Wed Mar 21 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-3.git80afaf7%{?dist}
5aaecf
- New upstream version.
5aaecf
5aaecf
* Tue Feb  7 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-2.git857fe28%{?dist}
5aaecf
- Adapted to Ruby 1.9.3 (workaround for broken CMake in Fedora and
5aaecf
  ruby template correction in bindings)
5aaecf
5aaecf
* Thu Feb  2 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-1.git857fe28
5aaecf
- Initial packaging
5aaecf
- Based on Jindra Novy's spec file
5aaecf
- Based on upstream spec file