2f07ce
%if 0%{?fedora} >= 27 || 0%{?rhel} > 7
2f07ce
%global py_prefix python3
2f07ce
%global py_binary %{py_prefix}
2f07ce
%else
2f07ce
%global py_prefix python
2f07ce
%global py_binary python2
2f07ce
%endif
2f07ce
2f07ce
# With annobin enabled, CRIU does not work anymore. It seems CRIU's
2f07ce
# parasite code breaks if annobin is enabled.
2f07ce
%undefine _annotated_build
2f07ce
2f07ce
Name: criu
2f07ce
Version: 3.12
2f07ce
Release: 9%{?dist}
2f07ce
Provides: crtools = %{version}-%{release}
2f07ce
Obsoletes: crtools <= 1.0-2
2f07ce
Summary: Tool for Checkpoint/Restore in User-space
2f07ce
License: GPLv2
2f07ce
URL: http://criu.org/
2f07ce
Source0: http://download.openvz.org/criu/criu-%{version}.tar.bz2
2f07ce
2f07ce
Patch0: https://patch-diff.githubusercontent.com/raw/checkpoint-restore/criu/pull/685.patch
2f07ce
Patch1: https://github.com/checkpoint-restore/criu/commit/1e84cb90b63bce841376140a7a80107e5ec1e1a8.patch
2f07ce
Patch2: https://github.com/checkpoint-restore/criu/commit/80d90c5c59e9477d8a0c9eb727a0fc1bec2b01ea.patch
2f07ce
Patch3: https://github.com/checkpoint-restore/criu/commit/b9e9e3903c78ba5d243b4176e82bf4b82342cb6a.patch
2f07ce
2f07ce
%if 0%{?rhel} && 0%{?rhel} <= 7
2f07ce
BuildRequires: perl
2f07ce
# RHEL has no asciidoc; take man-page from Fedora 26
2f07ce
# zcat /usr/share/man/man8/criu.8.gz > criu.8
2f07ce
Source1: criu.8
2f07ce
Source2: crit.1
2f07ce
# The patch aio-fix.patch is needed as RHEL7
2f07ce
# doesn't do "nr_events *= 2" in ioctx_alloc().
2f07ce
Patch100: aio-fix.patch
2f07ce
%endif
2f07ce
2f07ce
Source3: criu-tmpfiles.conf
2f07ce
2f07ce
BuildRequires: gcc
2f07ce
BuildRequires: systemd
2f07ce
BuildRequires: libnet-devel
2f07ce
BuildRequires: protobuf-devel protobuf-c-devel %{py_prefix}-devel libnl3-devel libcap-devel
2f07ce
%if 0%{?fedora} || 0%{?rhel} > 7
2f07ce
BuildRequires: asciidoc xmlto
2f07ce
BuildRequires: perl-interpreter
2f07ce
BuildRequires: libselinux-devel
2f07ce
# Checkpointing containers with a tmpfs requires tar
2f07ce
Recommends: tar
2f07ce
%if 0%{?fedora}
2f07ce
BuildRequires: libbsd-devel
2f07ce
%endif
2f07ce
%endif
2f07ce
2f07ce
# user-space and kernel changes are only available for x86_64, arm,
2f07ce
# ppc64le, aarch64 and s390x
2f07ce
# https://bugzilla.redhat.com/show_bug.cgi?id=902875
2f07ce
ExclusiveArch: x86_64 %{arm} ppc64le aarch64 s390x
2f07ce
2f07ce
%description
2f07ce
criu is the user-space part of Checkpoint/Restore in User-space
2f07ce
(CRIU), a project to implement checkpoint/restore functionality for
2f07ce
Linux in user-space.
2f07ce
2f07ce
%if 0%{?fedora}
2f07ce
%package devel
2f07ce
Summary: Header files and libraries for %{name}
2f07ce
Requires: %{name} = %{version}-%{release}
2f07ce
2f07ce
%description devel
2f07ce
This package contains header files and libraries for %{name}.
2f07ce
2f07ce
%package libs
2f07ce
Summary: Libraries for %{name}
2f07ce
Requires: %{name} = %{version}-%{release}
2f07ce
2f07ce
%description libs
2f07ce
This package contains the libraries for %{name}
2f07ce
%endif
2f07ce
2f07ce
%package -n %{py_prefix}-%{name}
2f07ce
%{?python_provide:%python_provide %{py_prefix}-%{name}}
2f07ce
Summary: Python bindings for %{name}
2f07ce
%if 0%{?rhel} && 0%{?rhel} <= 7
2f07ce
Requires: protobuf-python
2f07ce
Requires: %{name} = %{version}-%{release} %{py_prefix}-ipaddr
2f07ce
%else
2f07ce
Requires: %{py_prefix}-protobuf
2f07ce
Obsoletes: python2-criu < 3.10-1
2f07ce
%endif
2f07ce
2f07ce
%description -n %{py_prefix}-%{name}
2f07ce
%{py_prefix}-%{name} contains Python bindings for %{name}.
2f07ce
2f07ce
%package -n crit
2f07ce
Summary: CRIU image tool
2f07ce
Requires: %{py_prefix}-%{name} = %{version}-%{release}
2f07ce
2f07ce
%description -n crit
2f07ce
crit is a tool designed to decode CRIU binary dump files and show
2f07ce
their content in human-readable form.
2f07ce
2f07ce
2f07ce
%prep
2f07ce
%setup -q
2f07ce
%patch0 -p1
2f07ce
%patch1 -p1
2f07ce
%patch2 -p1
2f07ce
%patch3 -p1
2f07ce
2f07ce
%if 0%{?rhel} && 0%{?rhel} <= 7
2f07ce
%patch100 -p1
2f07ce
%endif
2f07ce
2f07ce
%build
2f07ce
# %{?_smp_mflags} does not work
2f07ce
# -fstack-protector breaks build
2f07ce
CFLAGS+=`echo %{optflags} | sed -e 's,-fstack-protector\S*,,g'` make V=1 WERROR=0 PREFIX=%{_prefix} RUNDIR=/run/criu PYTHON=%{py_binary}
2f07ce
%if 0%{?fedora} || 0%{?rhel} > 7
2f07ce
make docs V=1
2f07ce
%endif
2f07ce
2f07ce
2f07ce
%install
2f07ce
make install-criu DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir}
2f07ce
make install-lib DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir} PYTHON=%{py_binary}
2f07ce
%if 0%{?fedora} || 0%{?rhel} > 7
2f07ce
# only install documentation on Fedora as it requires asciidoc,
2f07ce
# which is not available on RHEL7
2f07ce
make install-man DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir}
2f07ce
%else
2f07ce
install -p -m 644  -D %{SOURCE1} $RPM_BUILD_ROOT%{_mandir}/man8/%{name}.8
2f07ce
install -p -m 644  -D %{SOURCE2} $RPM_BUILD_ROOT%{_mandir}/man1/crit.1
2f07ce
%endif
2f07ce
2f07ce
mkdir -p %{buildroot}%{_tmpfilesdir}
2f07ce
install -m 0644 %{SOURCE3} %{buildroot}%{_tmpfilesdir}/%{name}.conf
2f07ce
install -d -m 0755 %{buildroot}/run/%{name}/
2f07ce
2f07ce
%if 0%{?rhel}
2f07ce
# remove devel and libs packages
2f07ce
rm -rf $RPM_BUILD_ROOT%{_includedir}/criu
2f07ce
rm $RPM_BUILD_ROOT%{_libdir}/*.so*
2f07ce
rm -rf $RPM_BUILD_ROOT%{_libdir}/pkgconfig
2f07ce
rm -rf $RPM_BUILD_ROOT%{_libexecdir}/%{name}
2f07ce
%endif
2f07ce
2f07ce
%files
2f07ce
%{_sbindir}/%{name}
2f07ce
%doc %{_mandir}/man8/criu.8*
2f07ce
%if 0%{?fedora}
2f07ce
%{_libexecdir}/%{name}
2f07ce
%endif
2f07ce
%dir /run/%{name}
2f07ce
%{_tmpfilesdir}/%{name}.conf
2f07ce
%doc README.md COPYING
2f07ce
2f07ce
%if 0%{?fedora}
2f07ce
%files devel
2f07ce
%{_includedir}/criu
2f07ce
%{_libdir}/*.so
2f07ce
%{_libdir}/pkgconfig/*.pc
2f07ce
2f07ce
%files libs
2f07ce
%{_libdir}/*.so.*
2f07ce
%endif
2f07ce
2f07ce
%files -n %{py_prefix}-%{name}
2f07ce
%if 0%{?rhel} && 0%{?rhel} <= 7
2f07ce
%{python2_sitelib}/pycriu/*
2f07ce
%{python2_sitelib}/*egg-info
2f07ce
%else
2f07ce
%{python3_sitelib}/pycriu/*
2f07ce
%{python3_sitelib}/*egg-info
2f07ce
%endif
2f07ce
2f07ce
%files -n crit
2f07ce
%{_bindir}/crit
2f07ce
%doc %{_mandir}/man1/crit.1*
2f07ce
2f07ce
2f07ce
%changelog
2f07ce
* Mon May 13 2019 Adrian Reber <adrian@lisas.de> - 3.12-9
2f07ce
- Added additional fixup patches for the socket labelling
2f07ce
2f07ce
* Sat May 04 2019 Adrian Reber <adrian@lisas.de> - 3.12-8
2f07ce
- Patch for socket labelling has changed upstream
2f07ce
2f07ce
* Mon Apr 29 2019 Adrian Reber <adrian@lisas.de> - 3.12-4
2f07ce
- Applied patch to correctly restore socket()s
2f07ce
2f07ce
* Sat Apr 27 2019 Adrian Reber <adrian@lisas.de> - 3.12-3
2f07ce
- Correctly exclude libs and devel for RHEL
2f07ce
2f07ce
* Thu Apr 25 2019 Adrian Reber <adrian@lisas.de> - 3.12-2
2f07ce
- Updated to official 3.12
2f07ce
2f07ce
* Tue Apr 23 2019 Adrian Reber <adrian@lisas.de> - 3.12-0.1
2f07ce
- Updated to 3.12 (pre-release)
2f07ce
- Create libs subpackage
2f07ce
- Build against SELinux (Fedora and RHEL8)
2f07ce
- Build against libbsd (Fedora)
2f07ce
2f07ce
* Thu Feb 14 2019 Adrian Reber <areber@redhat.com> -  3.11-2
2f07ce
- Updated to 3.11
2f07ce
- Removed upstreamed patches
2f07ce
- Added patch for gcc-9
2f07ce
2f07ce
* Tue Dec 11 2018 Adrian Reber <adrian@lisas.de> - 3.10-7
2f07ce
- Fix 'criu check --feature link_nsid' with more than 10 interfaces (#1652442)
2f07ce
2f07ce
* Tue Dec 11 2018 Adrian Reber <adrian@lisas.de> - 3.10-6
2f07ce
- Make sure no iptables rules are left after restore (#1652471)
2f07ce
2f07ce
* Tue Oct 30 2018 Adrian Reber <adrian@lisas.de> - 3.10-5
2f07ce
- Added Recommends: tar
2f07ce
  It is necessary when checkpointing containers with a tmpfs
2f07ce
2f07ce
* Mon Jul 16 2018 Adrian Reber <adrian@lisas.de> - 3.10-4
2f07ce
- Add patch to fix errors with read-only runc
2f07ce
2f07ce
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-3
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2f07ce
2f07ce
* Wed Jul 11 2018 Adrian Reber <adrian@lisas.de> - 3.10-2
2f07ce
- Disable annobin as it seems to break CRIU
2f07ce
2f07ce
* Tue Jul 10 2018 Adrian Reber <adrian@lisas.de> - 3.10-1
2f07ce
- Update to 3.10 (#1599710)
2f07ce
- Switch to python3
2f07ce
2f07ce
* Wed Jun 06 2018 Adrian Reber <adrian@lisas.de> - 3.9-2
2f07ce
- Simplify ExclusiveArch now that there is no more F26
2f07ce
2f07ce
* Fri Jun 01 2018 Adrian Reber <adrian@lisas.de> - 3.9-1
2f07ce
- Update to 3.9
2f07ce
2f07ce
* Tue Apr 03 2018 Adrian Reber <adrian@lisas.de> - 3.8.1-1
2f07ce
- Update to 3.8.1
2f07ce
2f07ce
* Thu Mar 22 2018 Adrian Reber <adrian@lisas.de> - 3.8-2
2f07ce
- Bump release for COPR
2f07ce
2f07ce
* Wed Mar 14 2018 Adrian Reber <adrian@lisas.de> - 3.8-1
2f07ce
- Update to 3.8
2f07ce
2f07ce
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-5
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2f07ce
2f07ce
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.7-4
2f07ce
- Switch to %%ldconfig_scriptlets
2f07ce
2f07ce
* Fri Jan 12 2018 Adrian Reber <adrian@lisas.de> - 3.7-3
2f07ce
- Fix python/python2 dependencies accross all branches
2f07ce
2f07ce
* Wed Jan 03 2018 Merlin Mathesius <mmathesi@redhat.com> - 3.7-2
2f07ce
- Cleanup spec file conditionals
2f07ce
2f07ce
* Sat Dec 30 2017 Adrian Reber <adrian@lisas.de> - 3.7-1
2f07ce
- Update to 3.7
2f07ce
2f07ce
* Fri Dec 15 2017 Iryna Shcherbina <ishcherb@redhat.com> - 3.6-2
2f07ce
- Update Python 2 dependency declarations to new packaging standards
2f07ce
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
2f07ce
2f07ce
* Thu Oct 26 2017 Adrian Reber <adrian@lisas.de> - 3.6-1
2f07ce
- Update to 3.6
2f07ce
2f07ce
* Wed Oct 18 2017 Adrian Reber <adrian@lisas.de> - 3.5-5
2f07ce
- Added patch to fix build on Fedora rawhide aarch64
2f07ce
2f07ce
* Tue Oct 10 2017 Adrian Reber <areber@redhat.com> - 3.5-4
2f07ce
- Upgrade imported manpages to 3.5
2f07ce
2f07ce
* Mon Oct 09 2017 Adrian Reber <areber@redhat.com> - 3.5-3
2f07ce
- Fix ExclusiveArch on RHEL
2f07ce
2f07ce
* Mon Oct 02 2017 Adrian Reber <adrian@lisas.de> - 3.5-2
2f07ce
- Merge RHEL and Fedora spec file
2f07ce
2f07ce
* Thu Sep 28 2017 Adrian Reber <adrian@lisas.de> - 3.5-1
2f07ce
- Update to 3.5 (#1496614)
2f07ce
2f07ce
* Sun Aug 27 2017 Adrian Reber <adrian@lisas.de> - 3.4-1
2f07ce
- Update to 3.4 (#1483774)
2f07ce
- Removed upstreamed patches
2f07ce
- Added s390x (#1475719)
2f07ce
2f07ce
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.3-5
2f07ce
- Python 2 binary package renamed to python2-criu
2f07ce
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
2f07ce
2f07ce
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-4
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2f07ce
2f07ce
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-3
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2f07ce
2f07ce
* Thu Jul 20 2017 Adrian Reber <adrian@lisas.de> - 3.3-2
2f07ce
- Added patches to handle changes in glibc
2f07ce
2f07ce
* Wed Jul 19 2017 Adrian Reber <adrian@lisas.de> - 3.3-1
2f07ce
- Update to 3.3
2f07ce
2f07ce
* Fri Jun 30 2017 Adrian Reber <adrian@lisas.de> - 3.2.1-2
2f07ce
- Added patches to handle unified hierarchy and new glibc
2f07ce
2f07ce
* Wed Jun 28 2017 Adrian Reber <adrian@lisas.de> - 3.2.1-1
2f07ce
- Update to 3.2.1-1
2f07ce
2f07ce
* Tue Jun 13 2017 Orion Poplawski <orion@cora.nwra.com> - 3.1-2
2f07ce
- Rebuild for protobuf 3.3.1
2f07ce
2f07ce
* Mon May 22 2017 Adrian Reber <adrian@lisas.de> - 3.1-1
2f07ce
- Update to 3.1
2f07ce
2f07ce
* Tue Apr 25 2017 Adrian Reber <adrian@lisas.de> - 3.0-1
2f07ce
- Update to 3.0
2f07ce
2f07ce
* Thu Mar 09 2017 Adrian Reber <adrian@lisas.de> - 2.12-1
2f07ce
- Update to 2.12
2f07ce
2f07ce
* Fri Feb 17 2017 Adrian Reber <adrian@lisas.de> - 2.11.1-1
2f07ce
- Update to 2.11.1
2f07ce
2f07ce
* Thu Feb 16 2017 Adrian Reber <adrian@lisas.de> - 2.11-1
2f07ce
- Update to 2.11
2f07ce
2f07ce
* Mon Feb 13 2017 Adrian Reber <adrian@lisas.de> - 2.10-4
2f07ce
- Added patch to fix build on ppc64le
2f07ce
2f07ce
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-3
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2f07ce
2f07ce
* Mon Jan 23 2017 Orion Poplawski <orion@cora.nwra.com> - 2.10-2
2f07ce
- Rebuild for protobuf 3.2.0
2f07ce
2f07ce
* Mon Jan 16 2017 Adrian Reber <adrian@lisas.de> - 2.10-1
2f07ce
- Update to 2.10
2f07ce
2f07ce
* Mon Dec 12 2016 Adrian Reber <adrian@lisas.de> - 2.9-1
2f07ce
- Update to 2.9
2f07ce
- Added crit manpage to crit subpackage
2f07ce
2f07ce
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8-2
2f07ce
- Rebuild for protobuf 3.1.0
2f07ce
2f07ce
* Tue Nov 15 2016 Adrian Reber <adrian@lisas.de> - 2.8-1
2f07ce
- Update to 2.8
2f07ce
- Dropped 'mount_resolve_path()' patch
2f07ce
2f07ce
* Wed Oct 19 2016 Adrian Reber <adrian@lisas.de> - 2.7-2
2f07ce
- Added upstream patch to fix #1381351
2f07ce
  ("criu: mount_resolve_path(): criu killed by SIGSEGV")
2f07ce
2f07ce
* Wed Oct 19 2016 Adrian Reber <adrian@lisas.de> - 2.7-1
2f07ce
- Update to 2.7
2f07ce
2f07ce
* Tue Sep 13 2016 Adrian Reber <adrian@lisas.de> - 2.6-1
2f07ce
- Update to 2.6
2f07ce
2f07ce
* Tue Aug 30 2016 Adrian Reber <adrian@lisas.de> - 2.5-1
2f07ce
- Update to 2.5
2f07ce
2f07ce
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-2
2f07ce
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2f07ce
2f07ce
* Tue Jul 12 2016 Adrian Reber <adrian@lisas.de> - 2.4-1
2f07ce
- Update to 2.4
2f07ce
2f07ce
* Tue Jun 14 2016 Adrian Reber <areber@redhat.com> - 2.3-1
2f07ce
- Update to 2.3
2f07ce
- Copy man-page from Fedora 24 for RHEL
2f07ce
2f07ce
* Mon May 23 2016 Adrian Reber <adrian@lisas.de> - 2.2-1
2f07ce
- Update to 2.2
2f07ce
2f07ce
* Tue Apr 12 2016 Adrian Reber <adrian@lisas.de> - 2.1-2
2f07ce
- Remove crtools symbolic link
2f07ce
2f07ce
* Mon Apr 11 2016 Adrian Reber <adrian@lisas.de> - 2.1-1
2f07ce
- Update to 2.1
2f07ce
2f07ce
* Wed Apr 06 2016 Adrian Reber <areber@redhat.com> - 2.0-2
2f07ce
- Merge changes from Fedora
2f07ce
2f07ce
* Thu Mar 10 2016 Andrey Vagin <avagin@openvz.org> - 2.0-1
2f07ce
- Update to 2.0
2f07ce
2f07ce
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-2
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2f07ce
2f07ce
* Mon Dec 07 2015 Adrian Reber <adrian@lisas.de> - 1.8-1
2f07ce
- Update to 1.8
2f07ce
2f07ce
* Mon Nov 02 2015 Adrian Reber <adrian@lisas.de> - 1.7.2-1
2f07ce
- Update to 1.7.2
2f07ce
2f07ce
* Mon Sep 7 2015 Andrey Vagin <avagin@openvz.org> - 1.7-1
2f07ce
- Update to 1.7
2f07ce
2f07ce
* Thu Sep 3 2015 Andrey Vagin <avagin@openvz.org> - 1.6.1-3
2f07ce
- Build only for power64le
2f07ce
2f07ce
* Thu Sep 3 2015 Andrey Vagin <avagin@openvz.org> - 1.6.1-2
2f07ce
- Build for aarch64 and power64
2f07ce
2f07ce
* Thu Aug 13 2015 Adrian Reber <adrian@lisas.de> - 1.6.1-1
2f07ce
- Update to 1.6.1
2f07ce
- Merge changes for RHEL packaging
2f07ce
2f07ce
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2f07ce
2f07ce
* Tue Jun 09 2015 Adrian Reber <areber@redhat.com> - 1.6-1.1
2f07ce
- adapt to RHEL7
2f07ce
2f07ce
* Mon Jun 01 2015 Andrew Vagin <avagin@openvz.org> - 1.6-1
2f07ce
- Update to 1.6
2f07ce
2f07ce
* Thu Apr 30 2015 Andrew Vagin <avagin@openvz.org> - 1.5.2-2
2f07ce
- Require protobuf-python and python-ipaddr for python-criu
2f07ce
2f07ce
* Tue Apr 28 2015 Andrew Vagin <avagin@openvz.org> - 1.5.2
2f07ce
- Update to 1.5.2
2f07ce
2f07ce
* Sun Apr 19 2015 Nikita Spiridonov <nspiridonov@odin.com> - 1.5.1-2
2f07ce
- Create python-criu and crit subpackages
2f07ce
2f07ce
* Tue Mar 31 2015 Andrew Vagin <avagin@openvz.org> - 1.5.1
2f07ce
- Update to 1.5.1
2f07ce
2f07ce
* Sat Dec 06 2014 Adrian Reber <adrian@lisas.de> - 1.4-1
2f07ce
- Update to 1.4
2f07ce
2f07ce
* Tue Sep 23 2014 Adrian Reber <adrian@lisas.de> - 1.3.1-1
2f07ce
- Update to 1.3.1 (#1142896)
2f07ce
2f07ce
* Tue Sep 02 2014 Adrian Reber <adrian@lisas.de> - 1.3-1
2f07ce
- Update to 1.3
2f07ce
- Dropped all upstreamed patches
2f07ce
- included pkgconfig file in -devel
2f07ce
2f07ce
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-5
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2f07ce
2f07ce
* Thu Aug 07 2014 Andrew Vagin <avagin@openvz.org> - 1.2-4
2f07ce
- Include inttypes.h for PRI helpers
2f07ce
2f07ce
* Thu Aug 07 2014 Andrew Vagin <avagin@openvz.org> - 1.2-3
2f07ce
- Rebuilt for https://bugzilla.redhat.com/show_bug.cgi?id=1126751
2f07ce
2f07ce
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2f07ce
2f07ce
* Fri Feb 28 2014 Adrian Reber <adrian@lisas.de> - 1.2-1
2f07ce
- Update to 1.2
2f07ce
- Dropped all upstreamed patches
2f07ce
2f07ce
* Tue Feb 04 2014 Adrian Reber <adrian@lisas.de> - 1.1-4
2f07ce
- Create -devel subpackage
2f07ce
2f07ce
* Wed Dec 11 2013 Andrew Vagin <avagin@openvz.org> - 1.0-3
2f07ce
- Fix the epoch of crtools
2f07ce
2f07ce
* Tue Dec 10 2013 Andrew Vagin <avagin@openvz.org> - 1.0-2
2f07ce
- Rename crtools to criu #1034677
2f07ce
2f07ce
* Wed Nov 27 2013 Andrew Vagin <avagin@openvz.org> - 1.0-1
2f07ce
- Update to 1.0
2f07ce
2f07ce
* Thu Oct 24 2013 Andrew Vagin <avagin@openvz.org> - 0.8-1
2f07ce
- Update to 0.8
2f07ce
2f07ce
* Tue Sep 10 2013 Andrew Vagin <avagin@openvz.org> - 0.7-1
2f07ce
- Update to 0.7
2f07ce
2f07ce
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-5
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2f07ce
2f07ce
* Wed Jul 24 2013 Andrew Vagin <avagin@openvz.org> - 0.6-3
2f07ce
- Delete all kind of -fstack-protector gcc options
2f07ce
2f07ce
* Wed Jul 24 2013 Andrew Vagin <avagin@openvz.org> - 0.6-3
2f07ce
- Added arm macro to ExclusiveArch
2f07ce
2f07ce
* Wed Jul 03 2013 Andrew Vagin <avagin@openvz.org> - 0.6-2
2f07ce
- fix building on ARM
2f07ce
- fix null pointer dereference
2f07ce
2f07ce
* Tue Jul 02 2013 Adrian Reber <adrian@lisas.de> - 0.6-1
2f07ce
- updated to 0.6
2f07ce
- upstream moved binaries to sbin
2f07ce
- using upstream's make install
2f07ce
2f07ce
* Tue May 14 2013 Adrian Reber <adrian@lisas.de> - 0.5-1
2f07ce
- updated to 0.5
2f07ce
2f07ce
* Fri Feb 22 2013 Adrian Reber <adrian@lisas.de> - 0.4-1
2f07ce
- updated to 0.4
2f07ce
2f07ce
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-4
2f07ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2f07ce
2f07ce
* Tue Jan 22 2013 Adrian Reber <adrian@lisas.de> - 0.3-3
2f07ce
- added ExclusiveArch blocker bug
2f07ce
2f07ce
* Fri Jan 18 2013 Adrian Reber <adrian@lisas.de> - 0.3-2
2f07ce
- improved Summary and Description
2f07ce
2f07ce
* Mon Jan 14 2013 Adrian Reber <adrian@lisas.de> - 0.3-1
2f07ce
- updated to 0.3
2f07ce
- fix building Documentation/
2f07ce
2f07ce
* Tue Aug 21 2012 Adrian Reber <adrian@lisas.de> - 0.2-2
2f07ce
- remove macros like %%{__mkdir_p} and %%{__install}
2f07ce
- add comment why it is only x86_64
2f07ce
2f07ce
* Tue Aug 21 2012 Adrian Reber <adrian@lisas.de> - 0.2-1
2f07ce
- initial release