Blame SPECS/libsolv.spec

fe06a8
%global libname solv
fe06a8
fe06a8
%bcond_without python_bindings
fe06a8
%bcond_without perl_bindings
fe06a8
%bcond_without ruby_bindings
fe06a8
# Creates special prefixed pseudo-packages from appdata metadata
fe06a8
%bcond_without appdata
fe06a8
# Creates special prefixed "group:", "category:" pseudo-packages
fe06a8
%bcond_without comps
fe06a8
%bcond_without conda
fe06a8
# For rich dependencies
fe06a8
%bcond_without complex_deps
fe06a8
%bcond_without helix_repo
fe06a8
%bcond_without suse_repo
fe06a8
%bcond_without debian_repo
fe06a8
%bcond_without arch_repo
fe06a8
# For handling deb + rpm at the same time
fe06a8
%bcond_without multi_semantics
fe06a8
%bcond_with zchunk
fe06a8
%bcond_without zstd
fe06a8
fe06a8
%define __cmake_switch(b:) %[%{expand:%%{?with_%{-b*}}} ? "ON" : "OFF"]
fe06a8
fe06a8
Name:           lib%{libname}
fe06a8
Version:        0.7.20
fe06a8
Release:        2%{?dist}
fe06a8
Summary:        Package dependency solver
fe06a8
fe06a8
License:        BSD
fe06a8
URL:            https://github.com/openSUSE/libsolv
fe06a8
Source:         %{url}/archive/%{version}/%{name}-%{version}.tar.gz
fe06a8
# https://bugzilla.redhat.com/show_bug.cgi?id=1993126
fe06a8
Patch1:         0001-Add-support-for-computing-hashes-using-OpenSSL.patch
fe06a8
fe06a8
BuildRequires:  cmake
fe06a8
BuildRequires:  gcc-c++
fe06a8
BuildRequires:  ninja-build
fe06a8
BuildRequires:  pkgconfig(rpm)
fe06a8
BuildRequires:  zlib-devel
fe06a8
# -DWITH_LIBXML2=ON
fe06a8
BuildRequires:  libxml2-devel
fe06a8
# -DWITH_OPENSSL=ON
fe06a8
BuildRequires:  pkgconfig(openssl)
fe06a8
# -DENABLE_LZMA_COMPRESSION=ON
fe06a8
BuildRequires:  xz-devel
fe06a8
# -DENABLE_BZIP2_COMPRESSION=ON
fe06a8
BuildRequires:  bzip2-devel
fe06a8
%if %{with zstd}
fe06a8
# -DENABLE_ZSTD_COMPRESSION=ON
fe06a8
BuildRequires:  libzstd-devel
fe06a8
%endif
fe06a8
%if %{with zchunk}
fe06a8
# -DENABLE_ZCHUNK_COMPRESSION=ON
fe06a8
BuildRequires:  pkgconfig(zck)
fe06a8
%endif
fe06a8
fe06a8
%description
fe06a8
A free package dependency solver using a satisfiability algorithm. The
fe06a8
library is based on two major, but independent, blocks:
fe06a8
fe06a8
- Using a dictionary approach to store and retrieve package
fe06a8
  and dependency information.
fe06a8
fe06a8
- Using satisfiability, a well known and researched topic, for
fe06a8
  resolving package dependencies.
fe06a8
fe06a8
%package devel
fe06a8
Summary:        Development files for %{name}
fe06a8
Requires:       %{name}%{?_isa} = %{version}-%{release}
fe06a8
Requires:       rpm-devel%{?_isa}
fe06a8
fe06a8
%description devel
fe06a8
Development files for %{name}.
fe06a8
fe06a8
%package tools
fe06a8
Summary:        Package dependency solver tools
fe06a8
Requires:       %{name}%{?_isa} = %{version}-%{release}
fe06a8
# repo2solv dependencies. Used as execl()
fe06a8
Requires:       /usr/bin/find
fe06a8
fe06a8
%description tools
fe06a8
Package dependency solver tools.
fe06a8
fe06a8
%package demo
fe06a8
Summary:        Applications demoing the %{name} library
fe06a8
Requires:       %{name}%{?_isa} = %{version}-%{release}
fe06a8
# solv dependencies. Used as execlp() and system()
fe06a8
Requires:       /usr/bin/curl
fe06a8
Requires:       /usr/bin/gpg2
fe06a8
fe06a8
%description demo
fe06a8
Applications demoing the %{name} library.
fe06a8
fe06a8
%if %{with perl_bindings}
fe06a8
%package -n perl-%{libname}
fe06a8
Summary:        Perl bindings for the %{name} library
fe06a8
BuildRequires:  swig
fe06a8
BuildRequires:  perl-devel
fe06a8
BuildRequires:  perl-generators
fe06a8
Requires:       %{name}%{?_isa} = %{version}-%{release}
fe06a8
fe06a8
%description -n perl-%{libname}
fe06a8
Perl bindings for the %{name} library.
fe06a8
%endif
fe06a8
fe06a8
%if %{with ruby_bindings}
fe06a8
%package -n ruby-%{libname}
fe06a8
Summary:        Ruby bindings for the %{name} library
fe06a8
BuildRequires:  swig
fe06a8
BuildRequires:  ruby-devel
fe06a8
Requires:       %{name}%{?_isa} = %{version}-%{release}
fe06a8
fe06a8
%description -n ruby-%{libname}
fe06a8
Ruby bindings for the %{name} library.
fe06a8
%endif
fe06a8
fe06a8
%if %{with python_bindings}
fe06a8
%package -n python3-%{libname}
fe06a8
Summary:        Python bindings for the %{name} library
fe06a8
%{?python_provide:%python_provide python3-%{libname}}
fe06a8
BuildRequires:  swig
fe06a8
BuildRequires:  python3-devel
fe06a8
Requires:       %{name}%{?_isa} = %{version}-%{release}
fe06a8
fe06a8
%description -n python3-%{libname}
fe06a8
Python bindings for the %{name} library.
fe06a8
fe06a8
Python 3 version.
fe06a8
%endif
fe06a8
fe06a8
%prep
fe06a8
%autosetup -p1
fe06a8
fe06a8
%build
fe06a8
%cmake -GNinja                                            \
fe06a8
  -DFEDORA=1                                              \
fe06a8
  -DENABLE_RPMDB=ON                                       \
fe06a8
  -DENABLE_RPMDB_BYRPMHEADER=ON                           \
fe06a8
  -DENABLE_RPMDB_LIBRPM=ON                                \
fe06a8
  -DENABLE_RPMPKG_LIBRPM=ON                               \
fe06a8
  -DENABLE_RPMMD=ON                                       \
fe06a8
  -DENABLE_COMPS=%{__cmake_switch -b comps}               \
fe06a8
  -DENABLE_APPDATA=%{__cmake_switch -b appdata}           \
fe06a8
  -DUSE_VENDORDIRS=ON                                     \
fe06a8
  -DWITH_LIBXML2=ON                                       \
fe06a8
  -DWITH_OPENSSL=ON                                       \
fe06a8
  -DENABLE_LZMA_COMPRESSION=ON                            \
fe06a8
  -DENABLE_BZIP2_COMPRESSION=ON                           \
fe06a8
  -DENABLE_ZSTD_COMPRESSION=%{__cmake_switch -b zstd}     \
fe06a8
  -DENABLE_ZCHUNK_COMPRESSION=%{__cmake_switch -b zchunk} \
fe06a8
%if %{with zchunk}
fe06a8
  -DWITH_SYSTEM_ZCHUNK=ON                                 \
fe06a8
%endif
fe06a8
  -DENABLE_HELIXREPO=%{__cmake_switch -b helix_repo}      \
fe06a8
  -DENABLE_SUSEREPO=%{__cmake_switch -b suse_repo}        \
fe06a8
  -DENABLE_DEBIAN=%{__cmake_switch -b debian_repo}        \
fe06a8
  -DENABLE_ARCHREPO=%{__cmake_switch -b arch_repo}        \
fe06a8
  -DMULTI_SEMANTICS=%{__cmake_switch -b multi_semantics}  \
fe06a8
  -DENABLE_COMPLEX_DEPS=%{__cmake_switch -b complex_deps} \
fe06a8
  -DENABLE_CONDA=%{__cmake_switch -b conda}               \
fe06a8
  -DENABLE_PERL=%{__cmake_switch -b perl_bindings}        \
fe06a8
  -DENABLE_RUBY=%{__cmake_switch -b ruby_bindings}        \
fe06a8
  -DENABLE_PYTHON=%{__cmake_switch -b python_bindings}    \
fe06a8
%if %{with python_bindings}
fe06a8
  -DPYTHON_EXECUTABLE=%{python3}                          \
fe06a8
%endif
fe06a8
  %{nil}
fe06a8
%cmake_build
fe06a8
fe06a8
%install
fe06a8
%cmake_install
fe06a8
fe06a8
%check
fe06a8
%ctest
fe06a8
fe06a8
# Python smoke test (not tested in %%ctest):
fe06a8
export PYTHONPATH=%{buildroot}%{python3_sitearch}
fe06a8
export LD_LIBRARY_PATH=%{buildroot}%{_libdir}
fe06a8
%python3 -c 'import solv'
fe06a8
fe06a8
%files
fe06a8
%license LICENSE*
fe06a8
%doc README
fe06a8
%{_libdir}/%{name}.so.*
fe06a8
%{_libdir}/%{name}ext.so.*
fe06a8
fe06a8
%files devel
fe06a8
%{_libdir}/%{name}.so
fe06a8
%{_libdir}/%{name}ext.so
fe06a8
%{_includedir}/%{libname}/
fe06a8
%{_libdir}/pkgconfig/%{name}.pc
fe06a8
%{_libdir}/pkgconfig/%{name}ext.pc
fe06a8
# Own directory because we don't want to depend on cmake
fe06a8
%dir %{_datadir}/cmake/Modules/
fe06a8
%{_datadir}/cmake/Modules/FindLibSolv.cmake
fe06a8
%{_mandir}/man3/%{name}*.3*
fe06a8
fe06a8
# Some small macro to list tools with mans
fe06a8
%global solv_tool() \
fe06a8
%{_bindir}/%{1}\
fe06a8
%{_mandir}/man1/%{1}.1*
fe06a8
fe06a8
%files tools
fe06a8
%solv_tool deltainfoxml2solv
fe06a8
%solv_tool dumpsolv
fe06a8
%solv_tool installcheck
fe06a8
%solv_tool mergesolv
fe06a8
%solv_tool repomdxml2solv
fe06a8
%solv_tool rpmdb2solv
fe06a8
%solv_tool rpmmd2solv
fe06a8
%solv_tool rpms2solv
fe06a8
%solv_tool testsolv
fe06a8
%solv_tool updateinfoxml2solv
fe06a8
%solv_tool repo2solv
fe06a8
%if %{with comps}
fe06a8
  %solv_tool comps2solv
fe06a8
%endif
fe06a8
%if %{with appdata}
fe06a8
  %solv_tool appdata2solv
fe06a8
%endif
fe06a8
%if %{with debian_repo}
fe06a8
  %solv_tool deb2solv
fe06a8
%endif
fe06a8
%if %{with arch_repo}
fe06a8
  %solv_tool archpkgs2solv
fe06a8
  %solv_tool archrepo2solv
fe06a8
%endif
fe06a8
%if %{with helix_repo}
fe06a8
  %solv_tool helix2solv
fe06a8
%endif
fe06a8
%if %{with suse_repo}
fe06a8
  %solv_tool susetags2solv
fe06a8
%endif
fe06a8
%if %{with conda}
fe06a8
  %{_bindir}/conda2solv
fe06a8
%endif
fe06a8
fe06a8
%files demo
fe06a8
%solv_tool solv
fe06a8
fe06a8
%if %{with perl_bindings}
fe06a8
%files -n perl-%{libname}
fe06a8
%{perl_vendorarch}/%{libname}.pm
fe06a8
%{perl_vendorarch}/%{libname}.so
fe06a8
%endif
fe06a8
fe06a8
%if %{with ruby_bindings}
fe06a8
%files -n ruby-%{libname}
fe06a8
%{ruby_vendorarchdir}/%{libname}.so
fe06a8
%endif
fe06a8
fe06a8
%if %{with python_bindings}
fe06a8
%files -n python3-%{libname}
fe06a8
%{python3_sitearch}/_%{libname}.so
fe06a8
%{python3_sitearch}/%{libname}.py
fe06a8
%{python3_sitearch}/__pycache__/%{libname}.*
fe06a8
%endif
fe06a8
fe06a8
%changelog
fe06a8
* Wed Nov 10 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.20-2
fe06a8
- Build without support of zchunk (RhBug:2021084)
fe06a8
fe06a8
* Mon Oct 25 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.20-1
fe06a8
- Update to 0.7.20
fe06a8
- new SOLVER_EXCLUDEFROMWEAK job to ignore pkgs for weak dependencies
fe06a8
- support for environments in comps parser
fe06a8
- fix misparsing of '&' in attributes with libxml2
fe06a8
- choice rules: treat orphaned packages as newest
fe06a8
- fix compatibility with Python 3.10
fe06a8
fe06a8
* Thu Aug 12 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.19-3
fe06a8
- Use OpenSSL for computing hashes (RhBug:1993126)
fe06a8
fe06a8
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.7.19-2
fe06a8
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
fe06a8
  Related: rhbz#1991688
fe06a8
fe06a8
* Tue Jul 27 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.19-1
fe06a8
- Update to 0.7.19
fe06a8
- repo_add_conda: add flag to skip v2 packages
fe06a8
- fix rare segfault in resolve_jobrules() that could happen if new rules are learnt
fe06a8
- fix memory leaks
fe06a8
fe06a8
* Tue Jul 27 2021 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.17-6
fe06a8
- Fix issues detected by static analyzers
fe06a8
fe06a8
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 0.7.17-5
fe06a8
- Rebuilt for RHEL 9 BETA for openssl 3.0
fe06a8
  Related: rhbz#1971065
fe06a8
fe06a8
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.7.17-4
fe06a8
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
fe06a8
fe06a8
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.17-3
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
fe06a8
fe06a8
* Sat Jan 23 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.17-2
fe06a8
- Drop unneeded explicit dependency on RPM
fe06a8
fe06a8
* Thu Jan 21 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.17-1
fe06a8
- Update to 0.7.17
fe06a8
fe06a8
* Thu Jan  7 2021 Vít Ondruch <vondruch@redhat.com> - 0.7.15-3
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0
fe06a8
fe06a8
* Mon Nov 16 2020 Miro Hrončok <mhroncok@redhat.com> - 0.7.15-2
fe06a8
- Backport upstream fix for Python 3.10 compatibility
fe06a8
- Fixes: rhbz#1896411
fe06a8
fe06a8
* Mon Oct 19 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.15-1
fe06a8
- Update to 0.7.15
fe06a8
fe06a8
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.14-4
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
fe06a8
fe06a8
* Fri Jul 03 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-3
fe06a8
- Switch to %%cmake_build/%%cmake_install
fe06a8
- Drop Python 2 bindings
fe06a8
fe06a8
* Wed Jun 03 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-2
fe06a8
- Raise lowest compatible RPM version
fe06a8
fe06a8
* Wed May 27 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.14-1
fe06a8
- Update to 0.7.14
fe06a8
fe06a8
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.7.12-4
fe06a8
- Rebuilt for Python 3.9
fe06a8
fe06a8
* Mon May 25 2020 Colin Walters <walters@verbum.org> - 0.7.12-3
fe06a8
- Apply https://github.com/openSUSE/libsolv/pull/386
fe06a8
  to fix https://bugzilla.redhat.com/show_bug.cgi?id=1838691
fe06a8
fe06a8
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.7.12-2
fe06a8
- Rebuilt for Python 3.9
fe06a8
fe06a8
* Tue Apr 21 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.7.12-1
fe06a8
- Update to 0.7.12
fe06a8
fe06a8
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.11-2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
fe06a8
fe06a8
* Thu Jan 23 05:17:39 EST 2020 Neal Gompa <ngompa13@gmail.com> - 0.7.11-1
fe06a8
- Update to 0.7.11
fe06a8
fe06a8
* Tue Dec 17 08:41:00 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.10-1
fe06a8
- Update to 0.7.10
fe06a8
fe06a8
* Tue Nov 12 12:52:58 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.8-1
fe06a8
- Update to 0.7.8
fe06a8
fe06a8
* Sat Oct 19 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.7-1
fe06a8
- Update to 0.7.7
fe06a8
fe06a8
* Mon Oct 14 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.7.6-3
fe06a8
- Backport support of POOL_FLAG_WHATPROVIDESWITHDISABLED pool flag
fe06a8
fe06a8
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.7.6-2
fe06a8
- Rebuilt for Python 3.8.0rc1 (#1748018)
fe06a8
fe06a8
* Fri Aug 30 09:08:03 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.6-1
fe06a8
- Update to 0.7.6
fe06a8
fe06a8
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 0.7.5-4
fe06a8
- Rebuilt for Python 3.8
fe06a8
fe06a8
* Sun Aug 04 11:07:46 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-3
fe06a8
- Fix queries with src.rpm with DynamicBuildRequires
fe06a8
fe06a8
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
fe06a8
fe06a8
* Wed Jun 12 15:58:49 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-1
fe06a8
- Update to 0.7.5
fe06a8
fe06a8
* Mon Jun 10 22:13:20 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-5
fe06a8
- Rebuild for RPM 4.15
fe06a8
fe06a8
* Mon Jun 10 15:42:03 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-4
fe06a8
- Rebuild for RPM 4.15
fe06a8
fe06a8
* Tue May 21 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.7.4-3
fe06a8
- Fixed build for SWIG 4.0.0 (#1707367)
fe06a8
fe06a8
* Tue Apr 02 14:45:22 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-2
fe06a8
- Backport patch to fix solver_solve() running multiple times with SOLVER_FAVOR
fe06a8
fe06a8
* Fri Mar 29 16:13:00 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.4-1
fe06a8
- Update to 0.7.4
fe06a8
fe06a8
* Tue Feb 26 2019 Pavla Kratochvilova <pkratoch@redhat.com> - 0.7.3-4
fe06a8
- Backport: Add support for modular updateinfo.xml data
fe06a8
fe06a8
* Wed Feb 13 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.3-3
fe06a8
- bindings: Add best_solvables/whatmatchessolvable
fe06a8
fe06a8
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.3-2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
fe06a8
fe06a8
* Wed Jan 30 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.3-1
fe06a8
- Update to 0.7.3
fe06a8
fe06a8
* Tue Jan 15 2019 Jaroslav Mracek <jmracek@redhat.com> - 0.7.2-2
fe06a8
- Backport Do-not-disable-infarch-rules-when-they-dont-conflict-with-the-job
fe06a8
fe06a8
* Sat Jan 12 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-2
fe06a8
- Fix small security issues
fe06a8
fe06a8
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.2-1
fe06a8
- Update to 0.7.2
fe06a8
fe06a8
* Fri Nov 30 2018 Igor Gnatenko 
fe06a8
- Backport fixes for autouninstall
fe06a8
fe06a8
* Wed Oct 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-1
fe06a8
- Update to 0.7.1
fe06a8
fe06a8
* Sun Oct 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.0-1
fe06a8
- Update to 0.7.0
fe06a8
fe06a8
* Mon Oct 01 2018 Jaroslav Rohel <jrohel@redhat.org> - 0.6.35-3
fe06a8
- Backport patch: Make sure that targeted updates don't do reinstalls
fe06a8
fe06a8
* Mon Oct 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-2
fe06a8
- Disable python2 subpackage
fe06a8
fe06a8
* Thu Aug 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-1
fe06a8
- Update to 0.6.35
fe06a8
fe06a8
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.34-6
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
fe06a8
fe06a8
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.34-5
fe06a8
- Rebuilt for Python 3.7
fe06a8
fe06a8
* Mon Jul 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-4
fe06a8
- Rebuilt for Python 3.7
fe06a8
fe06a8
* Fri Jun 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-3
fe06a8
- Backport few fixes and enhancements from upstream
fe06a8
fe06a8
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.34-2
fe06a8
- Rebuilt for Python 3.7
fe06a8
fe06a8
* Mon Mar 26 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-1
fe06a8
- Update to 0.6.34
fe06a8
fe06a8
* Wed Feb 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.33-1
fe06a8
- Update to 0.6.33
fe06a8
fe06a8
* Tue Feb 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.32-1
fe06a8
- Update to 0.6.32
fe06a8
fe06a8
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.31-2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
fe06a8
fe06a8
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.31-1
fe06a8
- Update to 0.6.31
fe06a8
fe06a8
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-9.git.2901.47fbaa2
fe06a8
- Use librpm to access rpm headers
fe06a8
fe06a8
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-8.git.2900.8bdcce1
fe06a8
- Use librpm to access DB
fe06a8
fe06a8
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-7.git.2898.ae214a6
fe06a8
- Switch to %%ldconfig_scriptlets
fe06a8
fe06a8
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-6.git.2898.ae214a6
fe06a8
- Disable librpm from accessing DB
fe06a8
fe06a8
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-5.git.2898.ae214a6
fe06a8
- Allow disabling python2 bindings
fe06a8
fe06a8
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-4.git.2898.ae214a6
fe06a8
- Switch to ninja-build
fe06a8
fe06a8
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3.git.2898.ae214a6
fe06a8
- Update to latest git version
fe06a8
- Switch to use librpm for accessing headers / rpmdb
fe06a8
fe06a8
* Mon Nov 20 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3.git.2887.97b8c0c
fe06a8
- Update to latest snapshot
fe06a8
fe06a8
* Mon Nov 06 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.30-2
fe06a8
- Better error message on DB_VERSION_MISMATCH errors
fe06a8
fe06a8
* Tue Oct 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-1
fe06a8
- Update to 0.6.30
fe06a8
fe06a8
* Tue Sep 19 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.29-2
fe06a8
- Band-aid for DB_VERSION_MISMATCH errors on glibc updates
fe06a8
fe06a8
* Thu Sep 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.29-1
fe06a8
- Update to 0.6.29
fe06a8
fe06a8
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-8
fe06a8
- Rebuilt after RPM update (№ 3)
fe06a8
fe06a8
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-7
fe06a8
- Rebuilt for RPM soname bump
fe06a8
fe06a8
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-6
fe06a8
- Rebuilt for RPM soname bump
fe06a8
fe06a8
* Thu Aug 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-5
fe06a8
- Add support for REL_WITHOUT
fe06a8
fe06a8
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-4
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
fe06a8
fe06a8
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-3
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
fe06a8
fe06a8
* Fri Jul 21 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-2
fe06a8
- Backport patch for fixing yumobs
fe06a8
fe06a8
* Sat Jul 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-1
fe06a8
- Update to 0.6.28
fe06a8
fe06a8
* Mon May 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-2
fe06a8
- Backport few fixes for bindings
fe06a8
fe06a8
* Thu May 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-1
fe06a8
- Update to 0.6.27
fe06a8
fe06a8
* Mon Mar 27 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-5.git.20.668e249
fe06a8
- Update to latest snapshot
fe06a8
fe06a8
* Sat Mar 18 2017 Neal Gompa <ngompa13@gmail.com> - 0.6.26-4.git.19.2262346
fe06a8
- Enable AppData support (#1427171)
fe06a8
fe06a8
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-3.git.19.2262346
fe06a8
- Update to latest git
fe06a8
- Switch to libxml2
fe06a8
fe06a8
* Mon Mar 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-2
fe06a8
- Use %%{__python3} as PYTHON3_EXECUTABLE
fe06a8
fe06a8
* Wed Feb 15 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-1
fe06a8
- Update to 0.6.26
fe06a8
fe06a8
* Tue Feb 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.25-1
fe06a8
- Update to 0.6.25
fe06a8
fe06a8
* Fri Jan 13 2017 Vít Ondruch <vondruch@redhat.com> - 0.6.24-4
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
fe06a8
fe06a8
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.6.24-3
fe06a8
- Rebuild for Python 3.6
fe06a8
fe06a8
* Fri Dec 09 2016 Orion Poplawski <orion@cora.nwra.com> - 0.6.24-2
fe06a8
- Use upstream python build options
fe06a8
fe06a8
* Fri Nov 11 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.24-1
fe06a8
- Update to 0.6.24
fe06a8
fe06a8
* Sat Oct 29 2016 Denis Ollier <larchunix@gmail.com> - 0.6.23-6
fe06a8
- Typo fixes in spec: s/MULTI_SYMANTICS/MULTI_SEMANTICS/
fe06a8
fe06a8
* Tue Sep 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-5
fe06a8
- Trivial fixes in spec
fe06a8
fe06a8
* Sat Aug 27 2016 Neal Gompa <ngompa13@gmail.com> - 0.6.23-4
fe06a8
- Enable suserepo on Fedora to enable making openSUSE containers with Zypper
fe06a8
fe06a8
* Fri Aug 12 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-3
fe06a8
- Enable helixrepo on Fedora
fe06a8
fe06a8
* Wed Aug 03 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-2
fe06a8
- Backport patch to fix dnf --debugsolver crash (RHBZ #1361831)
fe06a8
fe06a8
* Wed Jul 27 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-1
fe06a8
- Update to 0.6.23
fe06a8
fe06a8
* Wed Jul 20 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-3
fe06a8
- Backport couple of patches from upstream
fe06a8
fe06a8
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.22-2
fe06a8
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
fe06a8
fe06a8
* Tue Jun 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-1
fe06a8
- Update to 0.6.22
fe06a8
- Backport patch which will help to not autoremove needed packages
fe06a8
  (RHBZ #1227066, #1284349)
fe06a8
fe06a8
* Mon Jun 06 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-3
fe06a8
- Enable deb/arch support for non-rhel distros
fe06a8
fe06a8
* Mon May 30 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-2
fe06a8
- Modify enabled/disabled features
fe06a8
fe06a8
* Wed May 18 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-1
fe06a8
- Update to 0.6.21
fe06a8
fe06a8
* Tue May 17 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-2
fe06a8
- Backport patch to fix crashing on reading some repos (RHBZ #1318662)
fe06a8
- Backport patch to fix installing multilib packages with weak deps
fe06a8
  (RHBZ #1325471)
fe06a8
fe06a8
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-1
fe06a8
- Update to 0.6.20
fe06a8
fe06a8
* Tue Apr 05 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.19-3
fe06a8
- Reorganize spec file
fe06a8
- Enable helixrepo feature
fe06a8
- enable appdata feature
fe06a8
fe06a8
* Tue Mar 8 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.19-2
fe06a8
- Apply 9 patches from upstream
fe06a8
fe06a8
* Sat Feb 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.19-1
fe06a8
- Update to 0.6.19
fe06a8
fe06a8
* Tue Feb  2 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.6.15-6
fe06a8
- Explicitly add rubypick and ruubygems build dependencies
fe06a8
fe06a8
* Tue Jan 12 2016 Vít Ondruch <vondruch@redhat.com> - 0.6.15-5
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
fe06a8
fe06a8
* Sun Jan 10 2016 Dan Horák <dan[at]danny.cz> - 0.6.15-4
fe06a8
- fix build on non-Fedora with python3
fe06a8
fe06a8
* Tue Jan 05 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.15-3
fe06a8
- Fix bz2 compression support for python3 (RhBug:1293652)
fe06a8
fe06a8
* Fri Dec 18 2015 Michal Luscon <mluscon@redhat.com> - 0.6.15-2
fe06a8
- Revert reworked multiversion orphaned handling
fe06a8
fe06a8
* Thu Dec 17 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.15-1
fe06a8
- Update to 0.6.15
fe06a8
fe06a8
* Tue Dec 08 2015 Jaroslav Mracek <jmracek@redhat.com> - 0.6.14-7
fe06a8
- Rebase to upstream b1ea392
fe06a8
- Enable bz2 compression support (Mikolaj Izdebski <mizdebsk@redhat.com>) (RhBug:1226647)
fe06a8
fe06a8
* Thu Nov 26 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-6
fe06a8
- revert obsolete, as %%python_provide does it (undocumented)
fe06a8
fe06a8
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-5
fe06a8
- adjust obsolete for stupid packaging
fe06a8
fe06a8
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-4
fe06a8
- python2-solv obsoletes python-solv (#1263230)
fe06a8
fe06a8
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-3
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
fe06a8
fe06a8
* Wed Oct 14 2015 Michal Luscon <mluscon@redhat.com> - 0.6.14-2
fe06a8
- Backport patches from upstream
fe06a8
fe06a8
* Mon Oct 12 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.14-1
fe06a8
- Update to 0.6.14
fe06a8
- Backport patches from upstream
fe06a8
fe06a8
* Thu Sep 10 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.12-1
fe06a8
- Update to 0.6.12
fe06a8
fe06a8
* Wed Aug 05 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-3
fe06a8
- added compile flag to support rich dependencies
fe06a8
- new version adding MIPS support
fe06a8
- Distribute testsolv in -tools subpackage (Igor Gnatenko)
fe06a8
- Enable python3 bindings for fedora (Igor Gnatenko)
fe06a8
fe06a8
* Tue Aug 04 2015 Adam Williamson <awilliam@redhat.com> - 0.6.11-2
fe06a8
- make bindings require the exact matching version of the lib (#1243737)
fe06a8
fe06a8
* Mon Jun 22 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-1
fe06a8
- new version fixing segfault
fe06a8
- RbConfig fixed in the upstream (1928f1a), libsolv-ruby22-rbconfig.patch erased
fe06a8
fe06a8
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.10-2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
fe06a8
fe06a8
* Wed Mar 25 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-1
fe06a8
- new version fixing segfault
fe06a8
fe06a8
* Fri Mar 6 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-3
fe06a8
- Rebuilt with new provides selection feature
fe06a8
fe06a8
* Mon Jan 19 2015 Vít Ondruch <vondruch@redhat.com> - 0.6.8-2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.2
fe06a8
fe06a8
* Fri Jan 16 2015 Richard Hughes <richard@hughsie.com> - 0.6.8-2
fe06a8
- Update to latest upstream release to fix a crash in PackageKit.
fe06a8
fe06a8
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.4-3
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
fe06a8
fe06a8
fe06a8
* Mon Aug 11 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-2
fe06a8
- Rebase to upstream 12af31a
fe06a8
fe06a8
* Mon Jul 28 2014 Aleš Kozumplík <akozumpl@redhat.com> - 0.6.4-1
fe06a8
- Rebase to upstream 5bd9589
fe06a8
fe06a8
* Mon Jul 14 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-0.git2a5c1c4
fe06a8
- Rebase to upstream 2a5c1c4
fe06a8
- Filename selector can start with a star
fe06a8
fe06a8
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2.git6d968f1
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fe06a8
fe06a8
* Tue May 27 2014 Aleš Kozumplík <ales@redhat.com> - 0.6.1-1.git6d968f1
fe06a8
- Rebase to upstream 6d968f1
fe06a8
- Fix RhBug:1049209
fe06a8
fe06a8
* Fri Apr 25 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.1-0.gitf78f5de
fe06a8
- Rebase to 0.6.0, upstream commit f78f5de.
fe06a8
fe06a8
* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 0.6.0-0.git05baf54.1
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
fe06a8
fe06a8
* Wed Apr 9 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.0-0.git05baf54
fe06a8
- Rebase to 0.6.0, upstream commit 05baf54.
fe06a8
fe06a8
* Mon Dec 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.1-1.gitbcedc98
fe06a8
- Rebase upstream bcedc98
fe06a8
- Fix RhBug:1051917.
fe06a8
fe06a8
* Mon Dec 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.1-0.gita8e47f1
fe06a8
- Rebase to 0.4.1, upstream commit a8e47f1.
fe06a8
fe06a8
* Fri Nov 22 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.4.0-2.git4442b7f
fe06a8
- Rebase to 0.4.0, upstream commit 4442b7f.
fe06a8
- support DELTA_LOCATION_BASE for completeness
fe06a8
fe06a8
* Tue Oct 29 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.0-1.gitd49d319
fe06a8
- Rebase to 0.4.0, upstream commit d49d319.
fe06a8
fe06a8
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 0.3.0-9.gita59d11d
fe06a8
- Perl 5.18 rebuild
fe06a8
fe06a8
* Wed Jul 31 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-8.gita59d11d
fe06a8
- Rebase to upstream a59d11d.
fe06a8
fe06a8
* Fri Jul 19 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-7.git228d412
fe06a8
- Add build flags, including Deb, Arch, LZMA and MULTI_SEMANTICS. (RhBug:985905)
fe06a8
fe06a8
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.3.0-6.git228d412
fe06a8
- Perl 5.18 rebuild
fe06a8
fe06a8
* Mon Jun 24 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-5.git228d412
fe06a8
- Rebase to upstream 228d412.
fe06a8
- Fixes hawkey github issue https://github.com/akozumpl/hawkey/issues/13
fe06a8
fe06a8
* Thu Jun 20 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-4.git209e9cb
fe06a8
- Rebase to upstream 209e9cb.
fe06a8
- Package the new man pages.
fe06a8
fe06a8
* Thu May 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-3.git7399ad1
fe06a8
- Run 'make test' with libsolv build.
fe06a8
fe06a8
* Mon Apr 8 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-2.git7399ad1
fe06a8
- Rebase to upstream 7399ad1.
fe06a8
- Fixes RhBug:905209
fe06a8
fe06a8
* Mon Apr 8 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-1.gite372b78
fe06a8
- Rebase to upstream e372b78.
fe06a8
- Fixes RhBug:e372b78
fe06a8
fe06a8
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-2.gitf663ca2
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
fe06a8
fe06a8
* Thu Aug 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-17.git6c9d3eb
fe06a8
- Rebase to upstream 6c9d3eb.
fe06a8
- Drop the solv.i stdbool.h fix integrated upstream.
fe06a8
- Dropped the job reasons fix.
fe06a8
fe06a8
* Mon Jul 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-16.git1617994
fe06a8
- Fix build problems with Perl bindings.
fe06a8
fe06a8
* Mon Jul 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-15.git1617994
fe06a8
- Rebuilt after a failed mass rebuild.
fe06a8
fe06a8
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.0-14.git1617994
fe06a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
fe06a8
fe06a8
* Mon Jul 16 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-13.git1617994%{?dist}
fe06a8
- preliminary fix for JOB resons in solver_describe_decision().
fe06a8
fe06a8
* Sun Jul 1 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-12.git1617994%{?dist}
fe06a8
- Rebase to upstream 1617994.
fe06a8
- Support for RPM_ADD_WITH_HDRID.
fe06a8
fe06a8
* Thu Jun  7 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-11.gitd39a42b%{?dist}
fe06a8
- Rebase to upstream d39a42b.
fe06a8
- Fix the epochs.
fe06a8
- Move the ruby modules into vendorarch dir, where they are expected.
fe06a8
fe06a8
* Thu May  17 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-9.git8cf7650%{?dist}
fe06a8
- Rebase to upstream 8cf7650.
fe06a8
- ruby bindings: fix USE_VENDORDIRS for Fedora.
fe06a8
fe06a8
* Thu Apr  12 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-7.gitaf1465a2%{?dist}
fe06a8
- Rebase to the upstream.
fe06a8
- Make repo_add_solv() work without stub repodata.
fe06a8
fe06a8
* Thu Apr  5 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-6.git80afaf7%{?dist}
fe06a8
- Rebuild for the new libdb package.
fe06a8
fe06a8
* Mon Apr  2 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-5.git80afaf7%{?dist}
fe06a8
- Rebuild for the new rpm package.
fe06a8
fe06a8
* Wed Mar 21 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-4.git80afaf7%{?dist}
fe06a8
- New upstream version, fix the .rpm release number.
fe06a8
fe06a8
* Wed Mar 21 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-3.git80afaf7%{?dist}
fe06a8
- New upstream version.
fe06a8
fe06a8
* Tue Feb  7 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-2.git857fe28%{?dist}
fe06a8
- Adapted to Ruby 1.9.3 (workaround for broken CMake in Fedora and
fe06a8
  ruby template correction in bindings)
fe06a8
fe06a8
* Thu Feb  2 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-1.git857fe28
fe06a8
- Initial packaging
fe06a8
- Based on Jindra Novy's spec file
fe06a8
- Based on upstream spec file