2016-04-05 17:54:10 +00:00
|
|
|
%global libname solv
|
|
|
|
|
2018-10-01 10:42:41 +00:00
|
|
|
%if (0%{?rhel} && 0%{?rhel} <= 7) || (0%{?fedora} && 0%{?fedora} <= 29)
|
2018-01-29 18:24:24 +00:00
|
|
|
%bcond_without python2_bindings
|
2018-10-01 10:42:41 +00:00
|
|
|
%else
|
|
|
|
%bcond_with python2_bindings
|
|
|
|
%endif
|
2016-05-30 09:54:25 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
|
|
%bcond_with perl_bindings
|
|
|
|
%bcond_with ruby_bindings
|
2018-01-29 18:24:24 +00:00
|
|
|
%bcond_with python3_bindings
|
2016-05-30 09:54:25 +00:00
|
|
|
%else
|
2016-04-05 17:54:10 +00:00
|
|
|
%bcond_without perl_bindings
|
|
|
|
%bcond_without ruby_bindings
|
2018-01-29 18:24:24 +00:00
|
|
|
%bcond_without python3_bindings
|
2015-08-05 20:40:21 +00:00
|
|
|
%endif
|
2016-05-30 09:54:25 +00:00
|
|
|
# Creates special prefixed pseudo-packages from appdata metadata
|
2017-03-18 15:58:37 +00:00
|
|
|
%bcond_without appdata
|
2016-05-30 09:54:25 +00:00
|
|
|
# Creates special prefixed "group:", "category:" pseudo-packages
|
|
|
|
%bcond_without comps
|
|
|
|
# For rich dependencies
|
|
|
|
%bcond_without complex_deps
|
2016-06-06 13:09:15 +00:00
|
|
|
%if 0%{?rhel}
|
2016-08-31 11:52:57 +00:00
|
|
|
%bcond_with helix_repo
|
|
|
|
%bcond_with suse_repo
|
2016-06-06 13:09:15 +00:00
|
|
|
%bcond_with debian_repo
|
|
|
|
%bcond_with arch_repo
|
2016-05-30 09:54:25 +00:00
|
|
|
# For handling deb + rpm at the same time
|
2016-10-29 09:21:47 +00:00
|
|
|
%bcond_with multi_semantics
|
2018-10-28 17:00:14 +00:00
|
|
|
%bcond_with zchunk
|
2016-06-06 13:09:15 +00:00
|
|
|
%else
|
2016-08-31 11:52:57 +00:00
|
|
|
%bcond_without helix_repo
|
|
|
|
%bcond_without suse_repo
|
2016-06-06 13:09:15 +00:00
|
|
|
%bcond_without debian_repo
|
|
|
|
%bcond_without arch_repo
|
|
|
|
# For handling deb + rpm at the same time
|
2016-10-29 09:21:47 +00:00
|
|
|
%bcond_without multi_semantics
|
2018-10-28 17:00:14 +00:00
|
|
|
%bcond_without zchunk
|
2016-06-06 13:09:15 +00:00
|
|
|
%endif
|
2016-04-05 17:54:10 +00:00
|
|
|
|
|
|
|
Name: lib%{libname}
|
2018-10-31 13:03:25 +00:00
|
|
|
Version: 0.7.1
|
2018-11-28 12:09:06 +00:00
|
|
|
Release: 1%{?dist}
|
2016-04-05 17:54:10 +00:00
|
|
|
Summary: Package dependency solver
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: https://github.com/openSUSE/libsolv
|
2017-03-16 14:07:16 +00:00
|
|
|
Source: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
2016-04-05 17:54:10 +00:00
|
|
|
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: gcc-c++
|
2018-01-29 16:49:53 +00:00
|
|
|
BuildRequires: ninja-build
|
2016-04-05 17:54:10 +00:00
|
|
|
BuildRequires: pkgconfig(rpm)
|
|
|
|
BuildRequires: zlib-devel
|
2017-03-16 14:07:16 +00:00
|
|
|
# -DWITH_LIBXML2=ON
|
|
|
|
BuildRequires: libxml2-devel
|
2016-04-05 17:54:10 +00:00
|
|
|
# -DENABLE_LZMA_COMPRESSION=ON
|
|
|
|
BuildRequires: xz-devel
|
|
|
|
# -DENABLE_BZIP2_COMPRESSION=ON
|
|
|
|
BuildRequires: bzip2-devel
|
2018-08-09 18:22:10 +00:00
|
|
|
# -DENABLE_ZSTD_COMPRESSION=ON
|
|
|
|
BuildRequires: libzstd-devel
|
2018-10-28 17:00:14 +00:00
|
|
|
%if %{with zchunk}
|
|
|
|
# -DENABLE_ZCHUNK_COMPRESSION=ON
|
|
|
|
BuildRequires: pkgconfig(zck)
|
|
|
|
%endif
|
2016-04-05 17:54:10 +00:00
|
|
|
|
2012-02-06 19:35:49 +00:00
|
|
|
%description
|
|
|
|
A free package dependency solver using a satisfiability algorithm. The
|
|
|
|
library is based on two major, but independent, blocks:
|
|
|
|
|
|
|
|
- Using a dictionary approach to store and retrieve package
|
|
|
|
and dependency information.
|
|
|
|
|
|
|
|
- Using satisfiability, a well known and researched topic, for
|
|
|
|
resolving package dependencies.
|
|
|
|
|
|
|
|
%package devel
|
2016-04-05 17:54:10 +00:00
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: rpm-devel%{?_isa}
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%description devel
|
2016-04-05 17:54:10 +00:00
|
|
|
Development files for %{name}.
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%package tools
|
2016-04-05 17:54:10 +00:00
|
|
|
Summary: Package dependency solver tools
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2018-10-28 17:00:14 +00:00
|
|
|
# repo2solv dependencies. Used as execl()
|
2016-09-13 14:31:38 +00:00
|
|
|
Requires: %{_bindir}/find
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%description tools
|
|
|
|
Package dependency solver tools.
|
|
|
|
|
|
|
|
%package demo
|
2016-04-05 17:54:10 +00:00
|
|
|
Summary: Applications demoing the %{name} library
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
# solv dependencies. Used as execlp() and system()
|
2016-09-13 14:31:38 +00:00
|
|
|
Requires: %{_bindir}/curl
|
|
|
|
Requires: %{_bindir}/gpg2
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%description demo
|
2016-04-05 17:54:10 +00:00
|
|
|
Applications demoing the %{name} library.
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%if %{with perl_bindings}
|
|
|
|
%package -n perl-%{libname}
|
|
|
|
Summary: Perl bindings for the %{name} library
|
|
|
|
BuildRequires: swig
|
|
|
|
BuildRequires: perl-devel
|
2016-06-24 08:28:39 +00:00
|
|
|
BuildRequires: perl-generators
|
2016-04-05 17:54:10 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%description -n perl-%{libname}
|
|
|
|
Perl bindings for the %{name} library.
|
2015-08-05 20:40:21 +00:00
|
|
|
%endif
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%if %{with ruby_bindings}
|
|
|
|
%package -n ruby-%{libname}
|
|
|
|
Summary: Ruby bindings for the %{name} library
|
|
|
|
BuildRequires: swig
|
|
|
|
BuildRequires: ruby-devel
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%description -n ruby-%{libname}
|
|
|
|
Ruby bindings for the %{name} library.
|
2015-08-05 20:40:21 +00:00
|
|
|
%endif
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2018-01-29 18:24:24 +00:00
|
|
|
%if %{with python2_bindings}
|
2016-04-05 17:54:10 +00:00
|
|
|
%package -n python2-%{libname}
|
|
|
|
Summary: Python bindings for the %{name} library
|
|
|
|
%{?python_provide:%python_provide python2-%{libname}}
|
|
|
|
BuildRequires: swig
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2015-08-04 09:36:06 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%description -n python2-%{libname}
|
|
|
|
Python bindings for the %{name} library.
|
2015-08-04 09:36:06 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
Python 2 version.
|
2018-01-29 18:24:24 +00:00
|
|
|
%endif
|
2016-04-05 17:54:10 +00:00
|
|
|
|
2018-01-29 18:24:24 +00:00
|
|
|
%if %{with python3_bindings}
|
2016-04-05 17:54:10 +00:00
|
|
|
%package -n python3-%{libname}
|
|
|
|
Summary: Python bindings for the %{name} library
|
2017-02-07 12:44:00 +00:00
|
|
|
%{?python_provide:%python_provide python3-%{libname}}
|
2016-04-05 17:54:10 +00:00
|
|
|
BuildRequires: swig
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n python3-%{libname}
|
|
|
|
Python bindings for the %{name} library.
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
Python 3 version.
|
|
|
|
%endif
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%prep
|
2018-11-28 12:09:06 +00:00
|
|
|
%autosetup -p1
|
2013-05-16 07:48:06 +00:00
|
|
|
|
2012-02-06 19:35:49 +00:00
|
|
|
%build
|
2018-10-28 17:00:14 +00:00
|
|
|
%cmake . -B"%{_vpath_builddir}" -GNinja \
|
|
|
|
-DFEDORA=1 \
|
|
|
|
-DENABLE_RPMDB=ON \
|
|
|
|
-DENABLE_RPMDB_BYRPMHEADER=ON \
|
|
|
|
-DENABLE_RPMDB_LIBRPM=ON \
|
|
|
|
-DENABLE_RPMPKG_LIBRPM=ON \
|
|
|
|
-DENABLE_RPMMD=ON \
|
|
|
|
%{?with_comps:-DENABLE_COMPS=ON} \
|
|
|
|
%{?with_appdata:-DENABLE_APPDATA=ON} \
|
|
|
|
-DUSE_VENDORDIRS=ON \
|
|
|
|
-DWITH_LIBXML2=ON \
|
|
|
|
-DENABLE_LZMA_COMPRESSION=ON \
|
|
|
|
-DENABLE_BZIP2_COMPRESSION=ON \
|
|
|
|
-DENABLE_ZSTD_COMPRESSION=ON \
|
|
|
|
%if %{with zchunk}
|
|
|
|
-DENABLE_ZCHUNK_COMPRESSION=ON \
|
|
|
|
-DWITH_SYSTEM_ZCHUNK=ON \
|
|
|
|
%endif
|
|
|
|
%{?with_helix_repo:-DENABLE_HELIXREPO=ON} \
|
|
|
|
%{?with_suse_repo:-DENABLE_SUSEREPO=ON} \
|
|
|
|
%{?with_debian_repo:-DENABLE_DEBIAN=ON} \
|
|
|
|
%{?with_arch_repo:-DENABLE_ARCHREPO=ON} \
|
|
|
|
%{?with_multi_semantics:-DMULTI_SEMANTICS=ON} \
|
|
|
|
%{?with_complex_deps:-DENABLE_COMPLEX_DEPS=1} \
|
|
|
|
%{?with_perl_bindings:-DENABLE_PERL=ON} \
|
|
|
|
%{?with_ruby_bindings:-DENABLE_RUBY=ON} \
|
2018-10-01 10:42:41 +00:00
|
|
|
%if %{with python2_bindings} || %{with python3_bindings}
|
2018-10-28 17:00:14 +00:00
|
|
|
-DENABLE_PYTHON=ON \
|
2018-10-01 10:42:41 +00:00
|
|
|
%if %{with python2_bindings}
|
2018-10-28 17:00:14 +00:00
|
|
|
-DPYTHON_EXECUTABLE=%{__python2} \
|
2018-10-01 10:42:41 +00:00
|
|
|
%if %{with python3_bindings}
|
2018-10-28 17:00:14 +00:00
|
|
|
-DENABLE_PYTHON3=ON \
|
|
|
|
-DPYTHON3_EXECUTABLE=%{__python3} \
|
2018-10-01 10:42:41 +00:00
|
|
|
%endif
|
|
|
|
%else
|
2018-10-28 17:00:14 +00:00
|
|
|
-DPYTHON_EXECUTABLE=%{__python3} \
|
2018-10-01 10:42:41 +00:00
|
|
|
%endif
|
|
|
|
%endif
|
2018-01-29 16:43:57 +00:00
|
|
|
%{nil}
|
2018-01-29 16:49:53 +00:00
|
|
|
%ninja_build -C "%{_vpath_builddir}"
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%install
|
2018-01-29 16:49:53 +00:00
|
|
|
%ninja_install -C "%{_vpath_builddir}"
|
2016-04-05 17:54:10 +00:00
|
|
|
|
2015-08-04 09:36:06 +00:00
|
|
|
%check
|
2018-01-29 16:49:53 +00:00
|
|
|
%ninja_test -C "%{_vpath_builddir}"
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2018-01-30 07:40:41 +00:00
|
|
|
%ldconfig_scriptlets
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%files
|
2016-04-05 17:54:10 +00:00
|
|
|
%license LICENSE*
|
|
|
|
%doc README
|
|
|
|
%{_libdir}/%{name}.so.*
|
|
|
|
%{_libdir}/%{name}ext.so.*
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%files devel
|
2016-04-05 17:54:10 +00:00
|
|
|
%{_libdir}/%{name}.so
|
|
|
|
%{_libdir}/%{name}ext.so
|
|
|
|
%{_includedir}/%{libname}/
|
2015-09-10 16:52:37 +00:00
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
2017-02-15 11:05:45 +00:00
|
|
|
%{_libdir}/pkgconfig/%{name}ext.pc
|
2016-04-05 17:54:10 +00:00
|
|
|
# Own directory because we don't want to depend on cmake
|
|
|
|
%dir %{_datadir}/cmake/Modules/
|
|
|
|
%{_datadir}/cmake/Modules/FindLibSolv.cmake
|
|
|
|
%{_mandir}/man3/%{name}*.3*
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
# Some small macro to list tools with mans
|
|
|
|
%global solv_tool() \
|
|
|
|
%{_bindir}/%{1}\
|
|
|
|
%{_mandir}/man1/%{1}.1*
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%files tools
|
|
|
|
%solv_tool deltainfoxml2solv
|
|
|
|
%solv_tool dumpsolv
|
|
|
|
%solv_tool installcheck
|
|
|
|
%solv_tool mergesolv
|
|
|
|
%solv_tool repomdxml2solv
|
|
|
|
%solv_tool rpmdb2solv
|
|
|
|
%solv_tool rpmmd2solv
|
|
|
|
%solv_tool rpms2solv
|
|
|
|
%solv_tool testsolv
|
|
|
|
%solv_tool updateinfoxml2solv
|
2018-08-09 18:22:10 +00:00
|
|
|
%solv_tool repo2solv
|
2016-04-05 17:54:10 +00:00
|
|
|
%if %{with comps}
|
|
|
|
%solv_tool comps2solv
|
|
|
|
%endif
|
|
|
|
%if %{with appdata}
|
|
|
|
%solv_tool appdata2solv
|
|
|
|
%endif
|
|
|
|
%if %{with debian_repo}
|
|
|
|
%solv_tool deb2solv
|
|
|
|
%endif
|
|
|
|
%if %{with arch_repo}
|
|
|
|
%solv_tool archpkgs2solv
|
|
|
|
%solv_tool archrepo2solv
|
|
|
|
%endif
|
|
|
|
%if %{with helix_repo}
|
|
|
|
%solv_tool helix2solv
|
|
|
|
%endif
|
2016-08-31 11:52:57 +00:00
|
|
|
%if %{with suse_repo}
|
|
|
|
%solv_tool susetags2solv
|
|
|
|
%endif
|
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%files demo
|
2018-08-09 18:22:10 +00:00
|
|
|
%solv_tool solv
|
2012-02-06 19:35:49 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%if %{with perl_bindings}
|
|
|
|
%files -n perl-%{libname}
|
|
|
|
%{perl_vendorarch}/%{libname}.pm
|
|
|
|
%{perl_vendorarch}/%{libname}.so
|
2015-08-05 20:40:21 +00:00
|
|
|
%endif
|
2015-08-04 09:36:06 +00:00
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
%if %{with ruby_bindings}
|
|
|
|
%files -n ruby-%{libname}
|
|
|
|
%{ruby_vendorarchdir}/%{libname}.so
|
|
|
|
%endif
|
|
|
|
|
2018-01-29 18:24:24 +00:00
|
|
|
%if %{with python2_bindings}
|
2016-04-05 17:54:10 +00:00
|
|
|
%files -n python2-%{libname}
|
|
|
|
%{python2_sitearch}/_%{libname}.so
|
|
|
|
%{python2_sitearch}/%{libname}.py*
|
2018-01-29 18:24:24 +00:00
|
|
|
%endif
|
2016-04-05 17:54:10 +00:00
|
|
|
|
2018-01-29 18:24:24 +00:00
|
|
|
%if %{with python3_bindings}
|
2016-04-05 17:54:10 +00:00
|
|
|
%files -n python3-%{libname}
|
|
|
|
%{python3_sitearch}/_%{libname}.so
|
|
|
|
%{python3_sitearch}/%{libname}.py
|
|
|
|
%{python3_sitearch}/__pycache__/%{libname}.*
|
|
|
|
%endif
|
2012-02-06 19:35:49 +00:00
|
|
|
|
|
|
|
%changelog
|
2018-10-31 13:03:25 +00:00
|
|
|
* Wed Oct 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.1-1
|
|
|
|
- Update to 0.7.1
|
|
|
|
|
2018-10-28 17:00:14 +00:00
|
|
|
* Sun Oct 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.0-1
|
|
|
|
- Update to 0.7.0
|
|
|
|
|
2018-10-01 14:08:58 +00:00
|
|
|
* Mon Oct 01 2018 Jaroslav Rohel <jrohel@redhat.org> - 0.6.35-3
|
|
|
|
- Backport patch: Make sure that targeted updates don't do reinstalls
|
|
|
|
|
2018-10-01 10:42:41 +00:00
|
|
|
* Mon Oct 01 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-2
|
|
|
|
- Disable python2 subpackage
|
|
|
|
|
2018-08-09 18:22:10 +00:00
|
|
|
* Thu Aug 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.35-1
|
|
|
|
- Update to 0.6.35
|
|
|
|
|
2018-07-13 08:51:31 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.34-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-02 16:22:35 +00:00
|
|
|
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.34-5
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-07-02 16:19:07 +00:00
|
|
|
* Mon Jul 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-4
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-06-28 22:37:07 +00:00
|
|
|
* Fri Jun 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-3
|
|
|
|
- Backport few fixes and enhancements from upstream
|
|
|
|
|
2018-06-19 08:46:37 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.34-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-03-26 09:00:37 +00:00
|
|
|
* Mon Mar 26 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.34-1
|
|
|
|
- Update to 0.6.34
|
|
|
|
|
2018-02-28 19:22:29 +00:00
|
|
|
* Wed Feb 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.33-1
|
|
|
|
- Update to 0.6.33
|
|
|
|
|
2018-02-13 12:23:44 +00:00
|
|
|
* Tue Feb 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.32-1
|
|
|
|
- Update to 0.6.32
|
|
|
|
|
2018-02-07 23:22:59 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.31-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-31 12:22:21 +00:00
|
|
|
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.31-1
|
|
|
|
- Update to 0.6.31
|
|
|
|
|
2018-01-30 10:58:32 +00:00
|
|
|
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-9.git.2901.47fbaa2
|
|
|
|
- Use librpm to access rpm headers
|
|
|
|
|
2018-01-30 10:18:20 +00:00
|
|
|
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-8.git.2900.8bdcce1
|
|
|
|
- Use librpm to access DB
|
|
|
|
|
2018-01-30 07:40:41 +00:00
|
|
|
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-7.git.2898.ae214a6
|
|
|
|
- Switch to %%ldconfig_scriptlets
|
|
|
|
|
2018-01-29 22:56:28 +00:00
|
|
|
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-6.git.2898.ae214a6
|
|
|
|
- Disable librpm from accessing DB
|
|
|
|
|
2018-01-29 18:24:24 +00:00
|
|
|
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-5.git.2898.ae214a6
|
|
|
|
- Allow disabling python2 bindings
|
|
|
|
|
2018-01-29 16:49:53 +00:00
|
|
|
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-4.git.2898.ae214a6
|
|
|
|
- Switch to ninja-build
|
|
|
|
|
2018-01-29 16:43:57 +00:00
|
|
|
* Mon Jan 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3.git.2898.ae214a6
|
|
|
|
- Update to latest git version
|
|
|
|
- Switch to use librpm for accessing headers / rpmdb
|
|
|
|
|
2017-11-20 12:17:45 +00:00
|
|
|
* Mon Nov 20 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-3.git.2887.97b8c0c
|
|
|
|
- Update to latest snapshot
|
|
|
|
|
2017-11-06 10:50:03 +00:00
|
|
|
* Mon Nov 06 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.30-2
|
|
|
|
- Better error message on DB_VERSION_MISMATCH errors
|
|
|
|
|
2017-10-24 13:15:29 +00:00
|
|
|
* Tue Oct 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.30-1
|
|
|
|
- Update to 0.6.30
|
|
|
|
|
2017-09-19 07:59:46 +00:00
|
|
|
* Tue Sep 19 2017 Panu Matilainen <pmatilai@redhat.com> - 0.6.29-2
|
|
|
|
- Band-aid for DB_VERSION_MISMATCH errors on glibc updates
|
|
|
|
|
2017-09-07 14:27:16 +00:00
|
|
|
* Thu Sep 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.29-1
|
|
|
|
- Update to 0.6.29
|
|
|
|
|
2017-08-11 06:59:29 +00:00
|
|
|
* Fri Aug 11 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-8
|
|
|
|
- Rebuilt after RPM update (№ 3)
|
|
|
|
|
2017-08-10 20:00:16 +00:00
|
|
|
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-7
|
|
|
|
- Rebuilt for RPM soname bump
|
|
|
|
|
2017-08-10 18:26:39 +00:00
|
|
|
* Thu Aug 10 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.28-6
|
|
|
|
- Rebuilt for RPM soname bump
|
|
|
|
|
2017-08-03 13:03:26 +00:00
|
|
|
* Thu Aug 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-5
|
|
|
|
- Add support for REL_WITHOUT
|
|
|
|
|
2017-08-03 02:18:15 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 19:44:42 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.28-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-21 11:44:18 +00:00
|
|
|
* Fri Jul 21 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-2
|
|
|
|
- Backport patch for fixing yumobs
|
|
|
|
|
|
|
|
* Sat Jul 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.28-1
|
2017-07-01 16:57:00 +00:00
|
|
|
- Update to 0.6.28
|
|
|
|
|
2017-07-21 11:44:18 +00:00
|
|
|
* Mon May 29 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-2
|
2017-05-29 10:28:58 +00:00
|
|
|
- Backport few fixes for bindings
|
|
|
|
|
2017-07-21 11:44:18 +00:00
|
|
|
* Thu May 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.27-1
|
2017-05-04 11:30:30 +00:00
|
|
|
- Update to 0.6.27
|
|
|
|
|
2017-07-21 11:44:18 +00:00
|
|
|
* Mon Mar 27 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-5.git.20.668e249
|
2017-03-27 09:15:39 +00:00
|
|
|
- Update to latest snapshot
|
|
|
|
|
2017-03-18 15:58:37 +00:00
|
|
|
* Sat Mar 18 2017 Neal Gompa <ngompa13@gmail.com> - 0.6.26-4.git.19.2262346
|
|
|
|
- Enable AppData support (#1427171)
|
|
|
|
|
2017-03-16 14:07:16 +00:00
|
|
|
* Thu Mar 16 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-3.git.19.2262346
|
|
|
|
- Update to latest git
|
|
|
|
- Switch to libxml2
|
|
|
|
|
2017-03-06 11:21:49 +00:00
|
|
|
* Mon Mar 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-2
|
|
|
|
- Use %%{__python3} as PYTHON3_EXECUTABLE
|
|
|
|
|
2017-02-15 11:05:45 +00:00
|
|
|
* Wed Feb 15 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.26-1
|
|
|
|
- Update to 0.6.26
|
|
|
|
|
2017-02-07 12:28:26 +00:00
|
|
|
* Tue Feb 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.25-1
|
|
|
|
- Update to 0.6.25
|
|
|
|
|
2017-01-13 13:28:34 +00:00
|
|
|
* Fri Jan 13 2017 Vít Ondruch <vondruch@redhat.com> - 0.6.24-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
|
|
|
|
|
2016-12-12 11:11:02 +00:00
|
|
|
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 0.6.24-3
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-09 20:39:04 +00:00
|
|
|
* Fri Dec 09 2016 Orion Poplawski <orion@cora.nwra.com> - 0.6.24-2
|
|
|
|
- Use upstream python build options
|
|
|
|
|
2016-11-10 23:49:56 +00:00
|
|
|
* Fri Nov 11 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.24-1
|
|
|
|
- Update to 0.6.24
|
|
|
|
|
2016-10-29 09:21:47 +00:00
|
|
|
* Sat Oct 29 2016 Denis Ollier <larchunix@gmail.com> - 0.6.23-6
|
|
|
|
- Typo fixes in spec: s/MULTI_SYMANTICS/MULTI_SEMANTICS/
|
|
|
|
|
2016-09-13 14:31:38 +00:00
|
|
|
* Tue Sep 13 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-5
|
|
|
|
- Trivial fixes in spec
|
|
|
|
|
2016-08-31 11:52:57 +00:00
|
|
|
* Sat Aug 27 2016 Neal Gompa <ngompa13@gmail.com> - 0.6.23-4
|
|
|
|
- Enable suserepo on Fedora to enable making openSUSE containers with Zypper
|
|
|
|
|
2016-08-12 09:40:42 +00:00
|
|
|
* Fri Aug 12 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-3
|
|
|
|
- Enable helixrepo on Fedora
|
|
|
|
|
2016-08-03 10:33:54 +00:00
|
|
|
* Wed Aug 03 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-2
|
|
|
|
- Backport patch to fix dnf --debugsolver crash (RHBZ #1361831)
|
|
|
|
|
2016-07-27 14:28:08 +00:00
|
|
|
* Wed Jul 27 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.23-1
|
|
|
|
- Update to 0.6.23
|
|
|
|
|
2016-07-20 12:22:34 +00:00
|
|
|
* Wed Jul 20 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-3
|
|
|
|
- Backport couple of patches from upstream
|
|
|
|
|
2016-07-19 07:46:45 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.22-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-14 12:25:55 +00:00
|
|
|
* Tue Jun 14 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.22-1
|
|
|
|
- Update to 0.6.22
|
|
|
|
- Backport patch which will help to not autoremove needed packages
|
|
|
|
(RHBZ #1227066, #1284349)
|
|
|
|
|
2016-06-06 13:09:15 +00:00
|
|
|
* Mon Jun 06 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-3
|
|
|
|
- Enable deb/arch support for non-rhel distros
|
|
|
|
|
2016-05-30 09:54:25 +00:00
|
|
|
* Mon May 30 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-2
|
|
|
|
- Modify enabled/disabled features
|
|
|
|
|
2016-05-18 21:25:52 +00:00
|
|
|
* Wed May 18 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.21-1
|
|
|
|
- Update to 0.6.21
|
|
|
|
|
2016-05-17 11:49:45 +00:00
|
|
|
* Tue May 17 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-2
|
|
|
|
- Backport patch to fix crashing on reading some repos (RHBZ #1318662)
|
|
|
|
- Backport patch to fix installing multilib packages with weak deps
|
|
|
|
(RHBZ #1325471)
|
|
|
|
|
2016-04-09 08:06:49 +00:00
|
|
|
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.20-1
|
|
|
|
- Update to 0.6.20
|
|
|
|
|
2016-04-05 17:54:10 +00:00
|
|
|
* Tue Apr 05 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.6.19-3
|
|
|
|
- Reorganize spec file
|
|
|
|
- Enable helixrepo feature
|
|
|
|
- enable appdata feature
|
|
|
|
|
2016-03-08 12:12:00 +00:00
|
|
|
* Tue Mar 8 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.19-2
|
|
|
|
- Apply 9 patches from upstream
|
|
|
|
|
2016-02-27 09:53:48 +00:00
|
|
|
* Sat Feb 27 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.19-1
|
|
|
|
- Update to 0.6.19
|
|
|
|
|
2016-02-02 10:32:43 +00:00
|
|
|
* Tue Feb 2 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.6.15-6
|
|
|
|
- Explicitly add rubypick and ruubygems build dependencies
|
|
|
|
|
2016-01-12 12:03:21 +00:00
|
|
|
* Tue Jan 12 2016 Vít Ondruch <vondruch@redhat.com> - 0.6.15-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
|
|
|
|
|
2016-01-10 17:42:45 +00:00
|
|
|
* Sun Jan 10 2016 Dan Horák <dan[at]danny.cz> - 0.6.15-4
|
|
|
|
- fix build on non-Fedora with python3
|
|
|
|
|
2016-01-05 15:19:33 +00:00
|
|
|
* Tue Jan 05 2016 Jaroslav Mracek <jmracek@redhat.com> - 0.6.15-3
|
|
|
|
- Fix bz2 compression support for python3 (RhBug:1293652)
|
|
|
|
|
2015-12-18 16:24:36 +00:00
|
|
|
* Fri Dec 18 2015 Michal Luscon <mluscon@redhat.com> - 0.6.15-2
|
|
|
|
- Revert reworked multiversion orphaned handling
|
|
|
|
|
2015-12-17 06:08:42 +00:00
|
|
|
* Thu Dec 17 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.15-1
|
|
|
|
- Update to 0.6.15
|
|
|
|
|
2016-01-05 15:19:33 +00:00
|
|
|
* Tue Dec 08 2015 Jaroslav Mracek <jmracek@redhat.com> - 0.6.14-7
|
2015-12-10 07:59:13 +00:00
|
|
|
- Rebase to upstream b1ea392
|
|
|
|
- Enable bz2 compression support (Mikolaj Izdebski <mizdebsk@redhat.com>) (RhBug:1226647)
|
|
|
|
|
2015-11-26 22:15:43 +00:00
|
|
|
* Thu Nov 26 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-6
|
2016-05-30 09:54:25 +00:00
|
|
|
- revert obsolete, as %%python_provide does it (undocumented)
|
2015-11-26 22:15:43 +00:00
|
|
|
|
2015-11-18 23:50:03 +00:00
|
|
|
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-5
|
|
|
|
- adjust obsolete for stupid packaging
|
|
|
|
|
2015-11-18 23:44:06 +00:00
|
|
|
* Wed Nov 18 2015 Adam Williamson <awilliam@redhat.com> - 0.6.14-4
|
|
|
|
- python2-solv obsoletes python-solv (#1263230)
|
|
|
|
|
2015-11-10 14:42:21 +00:00
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
|
2015-10-14 13:18:51 +00:00
|
|
|
* Wed Oct 14 2015 Michal Luscon <mluscon@redhat.com> - 0.6.14-2
|
|
|
|
- Backport patches from upstream
|
|
|
|
|
2015-10-12 16:54:15 +00:00
|
|
|
* Mon Oct 12 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.14-1
|
|
|
|
- Update to 0.6.14
|
|
|
|
- Backport patches from upstream
|
|
|
|
|
2015-09-10 16:31:03 +00:00
|
|
|
* Thu Sep 10 2015 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.6.12-1
|
|
|
|
- Update to 0.6.12
|
|
|
|
|
2015-08-04 09:36:06 +00:00
|
|
|
* Wed Aug 05 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-3
|
|
|
|
- added compile flag to support rich dependencies
|
|
|
|
- new version adding MIPS support
|
|
|
|
- Distribute testsolv in -tools subpackage (Igor Gnatenko)
|
|
|
|
- Enable python3 bindings for fedora (Igor Gnatenko)
|
|
|
|
|
2015-08-04 19:39:30 +00:00
|
|
|
* Tue Aug 04 2015 Adam Williamson <awilliam@redhat.com> - 0.6.11-2
|
|
|
|
- make bindings require the exact matching version of the lib (#1243737)
|
|
|
|
|
2015-06-22 17:15:46 +00:00
|
|
|
* Mon Jun 22 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.11-1
|
|
|
|
- new version fixing segfault
|
|
|
|
- RbConfig fixed in the upstream (1928f1a), libsolv-ruby22-rbconfig.patch erased
|
|
|
|
|
2015-06-17 17:20:11 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-25 16:39:57 +00:00
|
|
|
* Wed Mar 25 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.10-1
|
|
|
|
- new version fixing segfault
|
|
|
|
|
2015-03-06 15:04:04 +00:00
|
|
|
* Fri Mar 6 2015 Jan Silhan <jsilhan@redhat.com> - 0.6.8-3
|
2015-02-24 19:05:07 +00:00
|
|
|
- Rebuilt with new provides selection feature
|
|
|
|
|
2015-01-19 11:57:54 +00:00
|
|
|
* Mon Jan 19 2015 Vít Ondruch <vondruch@redhat.com> - 0.6.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.2
|
|
|
|
|
2015-01-16 14:34:05 +00:00
|
|
|
* Fri Jan 16 2015 Richard Hughes <richard@hughsie.com> - 0.6.8-2
|
|
|
|
- Update to latest upstream release to fix a crash in PackageKit.
|
|
|
|
|
2014-08-17 06:04:59 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-28 12:38:39 +00:00
|
|
|
|
2014-08-11 13:50:53 +00:00
|
|
|
* Mon Aug 11 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-2
|
|
|
|
- Rebase to upstream 12af31a
|
|
|
|
|
2014-07-28 12:38:39 +00:00
|
|
|
* Mon Jul 28 2014 Aleš Kozumplík <akozumpl@redhat.com> - 0.6.4-1
|
|
|
|
- Rebase to upstream 5bd9589
|
|
|
|
|
2014-07-14 16:11:21 +00:00
|
|
|
* Mon Jul 14 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.4-0.git2a5c1c4
|
|
|
|
- Rebase to upstream 2a5c1c4
|
|
|
|
- Filename selector can start with a star
|
|
|
|
|
2014-06-07 05:30:57 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2.git6d968f1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-27 14:34:16 +00:00
|
|
|
* Tue May 27 2014 Aleš Kozumplík <ales@redhat.com> - 0.6.1-1.git6d968f1
|
|
|
|
- Rebase to upstream 6d968f1
|
|
|
|
- Fix RhBug:1049209
|
|
|
|
|
2014-04-25 15:25:33 +00:00
|
|
|
* Fri Apr 25 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.1-0.gitf78f5de
|
|
|
|
- Rebase to 0.6.0, upstream commit f78f5de.
|
|
|
|
|
2014-04-24 12:05:34 +00:00
|
|
|
* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 0.6.0-0.git05baf54.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
|
|
|
|
2014-04-09 19:26:43 +00:00
|
|
|
* Wed Apr 9 2014 Jan Silhan <jsilhan@redhat.com> - 0.6.0-0.git05baf54
|
2014-04-09 17:53:12 +00:00
|
|
|
- Rebase to 0.6.0, upstream commit 05baf54.
|
|
|
|
|
2014-01-23 13:07:49 +00:00
|
|
|
* Mon Dec 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.1-1.gitbcedc98
|
|
|
|
- Rebase upstream bcedc98
|
|
|
|
- Fix RhBug:1051917.
|
|
|
|
|
2013-12-16 16:32:28 +00:00
|
|
|
* Mon Dec 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.1-0.gita8e47f1
|
|
|
|
- Rebase to 0.4.1, upstream commit a8e47f1.
|
|
|
|
|
2013-11-22 15:19:41 +00:00
|
|
|
* Fri Nov 22 2013 Zdenek Pavlas <zpavlas@redhat.com> - 0.4.0-2.git4442b7f
|
|
|
|
- Rebase to 0.4.0, upstream commit 4442b7f.
|
|
|
|
- support DELTA_LOCATION_BASE for completeness
|
2013-10-29 15:41:04 +00:00
|
|
|
|
2013-12-16 16:32:28 +00:00
|
|
|
* Tue Oct 29 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.4.0-1.gitd49d319
|
2013-10-29 15:41:04 +00:00
|
|
|
- Rebase to 0.4.0, upstream commit d49d319.
|
|
|
|
|
2013-08-03 10:27:11 +00:00
|
|
|
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 0.3.0-9.gita59d11d
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-07-31 15:35:36 +00:00
|
|
|
* Wed Jul 31 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-8.gita59d11d
|
|
|
|
- Rebase to upstream a59d11d.
|
|
|
|
|
2013-07-22 08:00:01 +00:00
|
|
|
* Fri Jul 19 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-7.git228d412
|
2013-07-19 14:01:02 +00:00
|
|
|
- Add build flags, including Deb, Arch, LZMA and MULTI_SEMANTICS. (RhBug:985905)
|
|
|
|
|
2013-07-17 11:32:14 +00:00
|
|
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.3.0-6.git228d412
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-07-19 14:01:02 +00:00
|
|
|
* Mon Jun 24 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-5.git228d412
|
2013-06-24 08:47:28 +00:00
|
|
|
- Rebase to upstream 228d412.
|
|
|
|
- Fixes hawkey github issue https://github.com/akozumpl/hawkey/issues/13
|
|
|
|
|
2013-06-20 15:17:47 +00:00
|
|
|
* Thu Jun 20 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-4.git209e9cb
|
|
|
|
- Rebase to upstream 209e9cb.
|
|
|
|
- Package the new man pages.
|
|
|
|
|
2013-06-20 15:19:00 +00:00
|
|
|
* Thu May 16 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-3.git7399ad1
|
2013-05-16 07:48:06 +00:00
|
|
|
- Run 'make test' with libsolv build.
|
|
|
|
|
2012-07-16 08:46:02 +00:00
|
|
|
* Mon Apr 8 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-2.git7399ad1
|
|
|
|
- Rebase to upstream 7399ad1.
|
|
|
|
- Fixes RhBug:905209
|
|
|
|
|
2013-04-08 11:44:44 +00:00
|
|
|
* Mon Apr 8 2013 Aleš Kozumplík <akozumpl@redhat.com> - 0.3.0-1.gite372b78
|
|
|
|
- Rebase to upstream e372b78.
|
|
|
|
- Fixes RhBug:e372b78
|
|
|
|
|
2013-02-14 05:15:48 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-2.gitf663ca2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-23 08:58:22 +00:00
|
|
|
* Thu Aug 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-17.git6c9d3eb
|
|
|
|
- Rebase to upstream 6c9d3eb.
|
|
|
|
- Drop the solv.i stdbool.h fix integrated upstream.
|
|
|
|
- Dropped the job reasons fix.
|
|
|
|
|
2012-07-23 08:51:33 +00:00
|
|
|
* Mon Jul 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-16.git1617994
|
|
|
|
- Fix build problems with Perl bindings.
|
|
|
|
|
2012-07-23 06:34:47 +00:00
|
|
|
* Mon Jul 23 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-15.git1617994
|
|
|
|
- Rebuilt after a failed mass rebuild.
|
|
|
|
|
2012-07-19 21:14:33 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.0-14.git1617994
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-16 09:04:08 +00:00
|
|
|
* Mon Jul 16 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-13.git1617994%{?dist}
|
|
|
|
- preliminary fix for JOB resons in solver_describe_decision().
|
|
|
|
|
2012-07-01 10:58:27 +00:00
|
|
|
* Sun Jul 1 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-12.git1617994%{?dist}
|
|
|
|
- Rebase to upstream 1617994.
|
|
|
|
- Support for RPM_ADD_WITH_HDRID.
|
|
|
|
|
2012-06-07 06:50:19 +00:00
|
|
|
* Thu Jun 7 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-11.gitd39a42b%{?dist}
|
|
|
|
- Rebase to upstream d39a42b.
|
|
|
|
- Fix the epochs.
|
|
|
|
- Move the ruby modules into vendorarch dir, where they are expected.
|
|
|
|
|
2012-05-17 14:16:44 +00:00
|
|
|
* Thu May 17 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-9.git8cf7650%{?dist}
|
|
|
|
- Rebase to upstream 8cf7650.
|
|
|
|
- ruby bindings: fix USE_VENDORDIRS for Fedora.
|
|
|
|
|
2012-04-12 08:59:10 +00:00
|
|
|
* Thu Apr 12 2012 Aleš Kozumplik <akozumpl@redhat.com> - 0.0.0-7.gitaf1465a2%{?dist}
|
|
|
|
- Rebase to the upstream.
|
|
|
|
- Make repo_add_solv() work without stub repodata.
|
|
|
|
|
2012-04-05 15:15:36 +00:00
|
|
|
* Thu Apr 5 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-6.git80afaf7%{?dist}
|
|
|
|
- Rebuild for the new libdb package.
|
|
|
|
|
2012-04-02 07:28:06 +00:00
|
|
|
* Mon Apr 2 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-5.git80afaf7%{?dist}
|
|
|
|
- Rebuild for the new rpm package.
|
|
|
|
|
2012-04-12 08:59:10 +00:00
|
|
|
* Wed Mar 21 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-4.git80afaf7%{?dist}
|
2012-03-21 10:42:06 +00:00
|
|
|
- New upstream version, fix the .rpm release number.
|
|
|
|
|
2012-04-12 08:59:10 +00:00
|
|
|
* Wed Mar 21 2012 Aleš Kozumplík <akozumpl@redhat.com> - 0.0.0-3.git80afaf7%{?dist}
|
2012-03-21 10:00:06 +00:00
|
|
|
- New upstream version.
|
|
|
|
|
2012-02-07 19:23:40 +00:00
|
|
|
* Tue Feb 7 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-2.git857fe28%{?dist}
|
|
|
|
- Adapted to Ruby 1.9.3 (workaround for broken CMake in Fedora and
|
|
|
|
ruby template correction in bindings)
|
|
|
|
|
2012-02-06 19:35:49 +00:00
|
|
|
* Thu Feb 2 2012 Karel Klíč <kklic@redhat.com> - 0.0.0-1.git857fe28
|
|
|
|
- Initial packaging
|
|
|
|
- Based on Jindra Novy's spec file
|
|
|
|
- Based on upstream spec file
|