Blame SPECS/libsolv.spec

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