8bc468
%global py_prefix python3
8bc468
%global py_binary %{py_prefix}
8bc468
8bc468
# This package calls LD directly without specifying the LTO plugins.  Until
8bc468
# that is fixed, disable LTO.
8bc468
%global _lto_cflags %%{nil}
8bc468
8bc468
Name: criu
ccc052
Version: 3.17
ccc052
Release: 4%{?dist}
8bc468
Provides: crtools = %{version}-%{release}
8bc468
Obsoletes: crtools <= 1.0-2
8bc468
Summary: Tool for Checkpoint/Restore in User-space
8bc468
License: GPLv2
8bc468
URL: http://criu.org/
ccc052
Source0: https://github.com/checkpoint-restore/criu/archive/v%{version}/criu-%{version}.tar.gz
8bc468
Source1: criu-tmpfiles.conf
8bc468
BuildRequires: gcc
8bc468
BuildRequires: systemd
8bc468
BuildRequires: libnet-devel
8bc468
BuildRequires: protobuf-devel protobuf-c-devel %{py_prefix}-devel libnl3-devel libcap-devel
8bc468
BuildRequires: asciidoc xmlto
8bc468
BuildRequires: perl-interpreter
8bc468
BuildRequires: libselinux-devel
8bc468
BuildRequires: gnutls-devel
8bc468
BuildRequires: make
8bc468
# Checkpointing containers with a tmpfs requires tar
8bc468
Recommends: tar
8bc468
ccc052
Patch0: 0001-Fix-building-with-annobin.patch
ccc052
Patch1: criu.pc.patch
8bc468
8bc468
# user-space and kernel changes are only available for x86_64, arm,
8bc468
# ppc64le, aarch64 and s390x
8bc468
# https://bugzilla.redhat.com/show_bug.cgi?id=902875
8bc468
ExclusiveArch: x86_64 %{arm} ppc64le aarch64 s390x
8bc468
8bc468
%description
8bc468
criu is the user-space part of Checkpoint/Restore in User-space
8bc468
(CRIU), a project to implement checkpoint/restore functionality for
8bc468
Linux in user-space.
8bc468
8bc468
%package devel
8bc468
Summary: Header files and libraries for %{name}
8bc468
Requires: %{name} = %{version}-%{release}
ccc052
Requires: %{name}-libs = %{version}-%{release}
8bc468
8bc468
%description devel
8bc468
This package contains header files and libraries for %{name}.
8bc468
8bc468
%package libs
8bc468
Summary: Libraries for %{name}
8bc468
Requires: %{name} = %{version}-%{release}
8bc468
8bc468
%description libs
8bc468
This package contains the libraries for %{name}
8bc468
8bc468
%package -n %{py_prefix}-%{name}
8bc468
%{?python_provide:%python_provide %{py_prefix}-%{name}}
8bc468
Summary: Python bindings for %{name}
8bc468
Requires: %{py_prefix}-protobuf
8bc468
Obsoletes: python2-criu < 3.10-1
8bc468
8bc468
%description -n %{py_prefix}-%{name}
8bc468
%{py_prefix}-%{name} contains Python bindings for %{name}.
8bc468
8bc468
%package -n crit
8bc468
Summary: CRIU image tool
8bc468
Requires: %{py_prefix}-%{name} = %{version}-%{release}
8bc468
8bc468
%description -n crit
8bc468
crit is a tool designed to decode CRIU binary dump files and show
8bc468
their content in human-readable form.
8bc468
8bc468
%prep
8bc468
%setup -q
8bc468
%patch0 -p1
8bc468
%patch1 -p1
8bc468
8bc468
%build
8bc468
# %{?_smp_mflags} does not work
8bc468
# -fstack-protector breaks build
8bc468
CFLAGS+=`echo %{optflags} | sed -e 's,-fstack-protector\S*,,g'` make V=1 WERROR=0 PREFIX=%{_prefix} RUNDIR=/run/criu PYTHON=%{py_binary}
8bc468
make docs V=1
8bc468
8bc468
%install
8bc468
make install-criu DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir}
8bc468
make install-lib DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir} PYTHON=%{py_binary}
8bc468
make install-man DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} LIBDIR=%{_libdir}
8bc468
mkdir -p %{buildroot}%{_tmpfilesdir}
8bc468
install -m 0644 %{SOURCE1} %{buildroot}%{_tmpfilesdir}/%{name}.conf
8bc468
install -d -m 0755 %{buildroot}/run/%{name}/
8bc468
8bc468
# remove static libs
8bc468
rm $RPM_BUILD_ROOT%{_libdir}/*.a
8bc468
rm -rf $RPM_BUILD_ROOT%{_libexecdir}/%{name}
ccc052
# remove compel man-page
ccc052
rm $RPM_BUILD_ROOT%{_mandir}/man1/compel.1*
ccc052
# remove amdgpu plugin man-page
ccc052
rm $RPM_BUILD_ROOT%{_mandir}/man1/amdgpu_plugin.1*
ccc052
# remove criu-ns
ccc052
rm $RPM_BUILD_ROOT%{_sbindir}/criu-ns
ccc052
rm $RPM_BUILD_ROOT%{_mandir}/man1/criu-ns.1*
8bc468
8bc468
%files
8bc468
%{_sbindir}/%{name}
8bc468
%{_mandir}/man8/criu.8*
8bc468
%dir /run/%{name}
8bc468
%{_tmpfilesdir}/%{name}.conf
8bc468
%doc README.md COPYING
8bc468
8bc468
%files devel
8bc468
%{_includedir}/criu
8bc468
%{_libdir}/*.so
8bc468
%{_libdir}/pkgconfig/*.pc
8bc468
8bc468
%files libs
8bc468
%{_libdir}/*.so.*
8bc468
8bc468
%files -n %{py_prefix}-%{name}
8bc468
%{python3_sitelib}/pycriu/*
8bc468
%{python3_sitelib}/*egg-info
8bc468
8bc468
%files -n crit
8bc468
%{_bindir}/crit
8bc468
%doc %{_mandir}/man1/crit.1*
8bc468
8bc468
%changelog
ccc052
* Mon Jul 11 2022 Radostin Stoyanov <radostin@redhat.com> - 3.17-4
ccc052
- Rebuilt to pick up glibc rseq() changes
ccc052
ccc052
* Mon Jul 04 2022 Radostin Stoyanov <radostin@redhat.com> - 3.17-3
ccc052
- Add libprotobuf-c dependency requirement
ccc052
ccc052
* Mon May 09 2022 Adrian Reber <areber@redhat.com> - 3.17-2
ccc052
- Update to 3.17
ccc052
- Drop upstreamed patch
ccc052
- Remove compel man-page
ccc052
8bc468
* Mon Jan 31 2022 Adrian Reber <areber@redhat.com> - 3.15-13
8bc468
- Apply patch to build with annobin enabled
8bc468
- Apply patch to fix unsafe IPv6 handling
8bc468
8bc468
* Mon Sep 6 2021 Radostin Stoyanov <radostin@redhat.com> - 3.15-12
8bc468
- Increase release number from 11 to 12
8bc468
- Disable podman test when crun doesn't support checkpoint/restore
8bc468
8bc468
* Tue Aug 31 2021 Adrian Reber <areber@redhat.com> - 3.15-11
8bc468
- Remove unnecessary Requires: criu-libs
8bc468
- Remove wrong BR nftables-devel
8bc468
- Bump release for rebuild
8bc468
8bc468
* Mon Aug 16 2021 Jindrich Novy <jnovy@redhat.com> - 3.15-10
8bc468
- disable LTO on RHEL9 again
8bc468
- Related: #1970747
8bc468
8bc468
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.15-9
8bc468
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
8bc468
  Related: rhbz#1991688
8bc468
8bc468
* Fri Aug 06 2021 Jindrich Novy <jnovy@redhat.com> - 3.15-8
8bc468
- add Requires: criu-libs = %%{version}-%%{release} in criu-devel
8bc468
- Related: #1970747
8bc468
8bc468
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 3.15-7
8bc468
- remove pre-RHEL9 hacks
8bc468
8bc468
* Wed May 05 2021 Adrian Reber <areber@redhat.com> - 3.15-6
8bc468
- Enable criu-devel and criu-libs for RHEL 9
8bc468
- Remove nftables-devel dependency for now
8bc468
8bc468
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 3.15-4
8bc468
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
8bc468
8bc468
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.15-3
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
8bc468
8bc468
* Wed Jan 13 09:45:16 CET 2021 Adrian Reber <adrian@lisas.de> - 3.15-2
8bc468
- Rebuilt for protobuf 3.14
8bc468
8bc468
* Wed Nov 04 2020 Adrian Reber <adrian@lisas.de> - 3.15-1
8bc468
- Update to 3.15
8bc468
8bc468
* Wed Sep 23 2020 Adrian Reber <adrian@lisas.de> - 3.14-8
8bc468
- Rebuilt for protobuf 3.13
8bc468
8bc468
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.14-7
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8bc468
8bc468
* Tue Jul 14 2020 Jeff Law <law@redhat.com> - 3.14-6
8bc468
- Disable LTO
8bc468
8bc468
* Sun Jun 14 2020 Adrian Reber <adrian@lisas.de> - 3.14-5
8bc468
- Rebuilt for protobuf 3.12
8bc468
8bc468
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 3.14-4
8bc468
- Rebuilt for Python 3.9
8bc468
8bc468
* Thu Apr 30 2020 Adrian Reber <adrian@lisas.de> - 3.14-3
8bc468
- BuildRequire nftables-devel for working CI
8bc468
8bc468
* Thu Apr 30 2020 Adrian Reber <adrian@lisas.de> - 3.14-2
8bc468
- Rebuild for CI fixes
8bc468
8bc468
* Wed Apr 29 2020 Adrian Reber <adrian@lisas.de> - 3.14-1
8bc468
- Update to 3.14 (#1829399)
8bc468
8bc468
* Sun Mar 29 2020 Andrei Vagin <avagin@gmail.com> - 3.13-7
8bc468
- Added patch for gcc-10
8bc468
8bc468
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.13-6
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8bc468
8bc468
* Mon Sep 16 2019 Adrian Reber <adrian@lisas.de> - 3.13-5
8bc468
- Update to 3.13 (#1751146)
8bc468
- Drop upstreamed patches
8bc468
- Drop static library
8bc468
- Add compel man-page
8bc468
8bc468
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.12-14
8bc468
- Rebuilt for Python 3.8
8bc468
8bc468
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.12-13
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8bc468
8bc468
* Tue May 14 2019 Adrian Reber <adrian@lisas.de> - 3.12-11
8bc468
- Test different decision_context in gating.yaml
8bc468
8bc468
* Mon May 13 2019 Adrian Reber <adrian@lisas.de> - 3.12-10
8bc468
- Added additional fixup patches for the socket labelling
8bc468
8bc468
* Sat May 04 2019 Adrian Reber <adrian@lisas.de> - 3.12-8
8bc468
- Patch for socket labelling has changed upstream
8bc468
8bc468
* Mon Apr 29 2019 Adrian Reber <adrian@lisas.de> - 3.12-4
8bc468
- Applied patch to correctly restore socket()s
8bc468
8bc468
* Sat Apr 27 2019 Adrian Reber <adrian@lisas.de> - 3.12-3
8bc468
- Correctly exclude libs and devel for RHEL
8bc468
8bc468
* Thu Apr 25 2019 Adrian Reber <adrian@lisas.de> - 3.12-2
8bc468
- Updated to official 3.12
8bc468
8bc468
* Tue Apr 23 2019 Adrian Reber <adrian@lisas.de> - 3.12-0.1
8bc468
- Updated to 3.12 (pre-release)
8bc468
- Create libs subpackage
8bc468
- Build against SELinux (Fedora and RHEL8)
8bc468
- Build against libbsd (Fedora)
8bc468
8bc468
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-3
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
8bc468
8bc468
* Sat Jan 19 2019 Adrian Reber <adrian@lisas.de> - 3.11-2
8bc468
- Added patch for gcc-9
8bc468
8bc468
* Tue Nov 06 2018 Adrian Reber <adrian@lisas.de> - 3.11-1
8bc468
- Updated to 3.11
8bc468
- Removed upstreamed patches
8bc468
8bc468
* Tue Oct 30 2018 Adrian Reber <adrian@lisas.de> - 3.10-5
8bc468
- Added Recommends: tar
8bc468
  It is necessary when checkpointing containers with a tmpfs
8bc468
8bc468
* Mon Jul 16 2018 Adrian Reber <adrian@lisas.de> - 3.10-4
8bc468
- Add patch to fix errors with read-only runc
8bc468
8bc468
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.10-3
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8bc468
8bc468
* Wed Jul 11 2018 Adrian Reber <adrian@lisas.de> - 3.10-2
8bc468
- Disable annobin as it seems to break CRIU
8bc468
8bc468
* Tue Jul 10 2018 Adrian Reber <adrian@lisas.de> - 3.10-1
8bc468
- Update to 3.10 (#1599710)
8bc468
- Switch to python3
8bc468
8bc468
* Wed Jun 06 2018 Adrian Reber <adrian@lisas.de> - 3.9-2
8bc468
- Simplify ExclusiveArch now that there is no more F26
8bc468
8bc468
* Fri Jun 01 2018 Adrian Reber <adrian@lisas.de> - 3.9-1
8bc468
- Update to 3.9
8bc468
8bc468
* Tue Apr 03 2018 Adrian Reber <adrian@lisas.de> - 3.8.1-1
8bc468
- Update to 3.8.1
8bc468
8bc468
* Thu Mar 22 2018 Adrian Reber <adrian@lisas.de> - 3.8-2
8bc468
- Bump release for COPR
8bc468
8bc468
* Wed Mar 14 2018 Adrian Reber <adrian@lisas.de> - 3.8-1
8bc468
- Update to 3.8
8bc468
8bc468
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.7-5
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8bc468
8bc468
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.7-4
8bc468
- Switch to %%ldconfig_scriptlets
8bc468
8bc468
* Fri Jan 12 2018 Adrian Reber <adrian@lisas.de> - 3.7-3
8bc468
- Fix python/python2 dependencies accross all branches
8bc468
8bc468
* Wed Jan 03 2018 Merlin Mathesius <mmathesi@redhat.com> - 3.7-2
8bc468
- Cleanup spec file conditionals
8bc468
8bc468
* Sat Dec 30 2017 Adrian Reber <adrian@lisas.de> - 3.7-1
8bc468
- Update to 3.7
8bc468
8bc468
* Fri Dec 15 2017 Iryna Shcherbina <ishcherb@redhat.com> - 3.6-2
8bc468
- Update Python 2 dependency declarations to new packaging standards
8bc468
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
8bc468
8bc468
* Thu Oct 26 2017 Adrian Reber <adrian@lisas.de> - 3.6-1
8bc468
- Update to 3.6
8bc468
8bc468
* Wed Oct 18 2017 Adrian Reber <adrian@lisas.de> - 3.5-5
8bc468
- Added patch to fix build on Fedora rawhide aarch64
8bc468
8bc468
* Tue Oct 10 2017 Adrian Reber <areber@redhat.com> - 3.5-4
8bc468
- Upgrade imported manpages to 3.5
8bc468
8bc468
* Mon Oct 09 2017 Adrian Reber <areber@redhat.com> - 3.5-3
8bc468
- Fix ExclusiveArch on RHEL
8bc468
8bc468
* Mon Oct 02 2017 Adrian Reber <adrian@lisas.de> - 3.5-2
8bc468
- Merge RHEL and Fedora spec file
8bc468
8bc468
* Thu Sep 28 2017 Adrian Reber <adrian@lisas.de> - 3.5-1
8bc468
- Update to 3.5 (#1496614)
8bc468
8bc468
* Sun Aug 27 2017 Adrian Reber <adrian@lisas.de> - 3.4-1
8bc468
- Update to 3.4 (#1483774)
8bc468
- Removed upstreamed patches
8bc468
- Added s390x (#1475719)
8bc468
8bc468
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.3-5
8bc468
- Python 2 binary package renamed to python2-criu
8bc468
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
8bc468
8bc468
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-4
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8bc468
8bc468
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3-3
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8bc468
8bc468
* Thu Jul 20 2017 Adrian Reber <adrian@lisas.de> - 3.3-2
8bc468
- Added patches to handle changes in glibc
8bc468
8bc468
* Wed Jul 19 2017 Adrian Reber <adrian@lisas.de> - 3.3-1
8bc468
- Update to 3.3
8bc468
8bc468
* Fri Jun 30 2017 Adrian Reber <adrian@lisas.de> - 3.2.1-2
8bc468
- Added patches to handle unified hierarchy and new glibc
8bc468
8bc468
* Wed Jun 28 2017 Adrian Reber <adrian@lisas.de> - 3.2.1-1
8bc468
- Update to 3.2.1-1
8bc468
8bc468
* Tue Jun 13 2017 Orion Poplawski <orion@cora.nwra.com> - 3.1-2
8bc468
- Rebuild for protobuf 3.3.1
8bc468
8bc468
* Mon May 22 2017 Adrian Reber <adrian@lisas.de> - 3.1-1
8bc468
- Update to 3.1
8bc468
8bc468
* Tue Apr 25 2017 Adrian Reber <adrian@lisas.de> - 3.0-1
8bc468
- Update to 3.0
8bc468
8bc468
* Thu Mar 09 2017 Adrian Reber <adrian@lisas.de> - 2.12-1
8bc468
- Update to 2.12
8bc468
8bc468
* Fri Feb 17 2017 Adrian Reber <adrian@lisas.de> - 2.11.1-1
8bc468
- Update to 2.11.1
8bc468
8bc468
* Thu Feb 16 2017 Adrian Reber <adrian@lisas.de> - 2.11-1
8bc468
- Update to 2.11
8bc468
8bc468
* Mon Feb 13 2017 Adrian Reber <adrian@lisas.de> - 2.10-4
8bc468
- Added patch to fix build on ppc64le
8bc468
8bc468
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-3
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8bc468
8bc468
* Mon Jan 23 2017 Orion Poplawski <orion@cora.nwra.com> - 2.10-2
8bc468
- Rebuild for protobuf 3.2.0
8bc468
8bc468
* Mon Jan 16 2017 Adrian Reber <adrian@lisas.de> - 2.10-1
8bc468
- Update to 2.10
8bc468
8bc468
* Mon Dec 12 2016 Adrian Reber <adrian@lisas.de> - 2.9-1
8bc468
- Update to 2.9
8bc468
- Added crit manpage to crit subpackage
8bc468
8bc468
* Sat Nov 19 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8-2
8bc468
- Rebuild for protobuf 3.1.0
8bc468
8bc468
* Tue Nov 15 2016 Adrian Reber <adrian@lisas.de> - 2.8-1
8bc468
- Update to 2.8
8bc468
- Dropped 'mount_resolve_path()' patch
8bc468
8bc468
* Wed Oct 19 2016 Adrian Reber <adrian@lisas.de> - 2.7-2
8bc468
- Added upstream patch to fix #1381351
8bc468
  ("criu: mount_resolve_path(): criu killed by SIGSEGV")
8bc468
8bc468
* Wed Oct 19 2016 Adrian Reber <adrian@lisas.de> - 2.7-1
8bc468
- Update to 2.7
8bc468
8bc468
* Tue Sep 13 2016 Adrian Reber <adrian@lisas.de> - 2.6-1
8bc468
- Update to 2.6
8bc468
8bc468
* Tue Aug 30 2016 Adrian Reber <adrian@lisas.de> - 2.5-1
8bc468
- Update to 2.5
8bc468
8bc468
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-2
8bc468
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
8bc468
8bc468
* Tue Jul 12 2016 Adrian Reber <adrian@lisas.de> - 2.4-1
8bc468
- Update to 2.4
8bc468
8bc468
* Tue Jun 14 2016 Adrian Reber <areber@redhat.com> - 2.3-1
8bc468
- Update to 2.3
8bc468
- Copy man-page from Fedora 24 for RHEL
8bc468
8bc468
* Mon May 23 2016 Adrian Reber <adrian@lisas.de> - 2.2-1
8bc468
- Update to 2.2
8bc468
8bc468
* Tue Apr 12 2016 Adrian Reber <adrian@lisas.de> - 2.1-2
8bc468
- Remove crtools symbolic link
8bc468
8bc468
* Mon Apr 11 2016 Adrian Reber <adrian@lisas.de> - 2.1-1
8bc468
- Update to 2.1
8bc468
8bc468
* Wed Apr 06 2016 Adrian Reber <areber@redhat.com> - 2.0-2
8bc468
- Merge changes from Fedora
8bc468
8bc468
* Thu Mar 10 2016 Andrey Vagin <avagin@openvz.org> - 2.0-1
8bc468
- Update to 2.0
8bc468
8bc468
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-2
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8bc468
8bc468
* Mon Dec 07 2015 Adrian Reber <adrian@lisas.de> - 1.8-1
8bc468
- Update to 1.8
8bc468
8bc468
* Mon Nov 02 2015 Adrian Reber <adrian@lisas.de> - 1.7.2-1
8bc468
- Update to 1.7.2
8bc468
8bc468
* Mon Sep 7 2015 Andrey Vagin <avagin@openvz.org> - 1.7-1
8bc468
- Update to 1.7
8bc468
8bc468
* Thu Sep 3 2015 Andrey Vagin <avagin@openvz.org> - 1.6.1-3
8bc468
- Build only for power64le
8bc468
8bc468
* Thu Sep 3 2015 Andrey Vagin <avagin@openvz.org> - 1.6.1-2
8bc468
- Build for aarch64 and power64
8bc468
8bc468
* Thu Aug 13 2015 Adrian Reber <adrian@lisas.de> - 1.6.1-1
8bc468
- Update to 1.6.1
8bc468
- Merge changes for RHEL packaging
8bc468
8bc468
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8bc468
8bc468
* Tue Jun 09 2015 Adrian Reber <areber@redhat.com> - 1.6-1.1
8bc468
- adapt to RHEL7
8bc468
8bc468
* Mon Jun 01 2015 Andrew Vagin <avagin@openvz.org> - 1.6-1
8bc468
- Update to 1.6
8bc468
8bc468
* Thu Apr 30 2015 Andrew Vagin <avagin@openvz.org> - 1.5.2-2
8bc468
- Require protobuf-python and python-ipaddr for python-criu
8bc468
8bc468
* Tue Apr 28 2015 Andrew Vagin <avagin@openvz.org> - 1.5.2
8bc468
- Update to 1.5.2
8bc468
8bc468
* Sun Apr 19 2015 Nikita Spiridonov <nspiridonov@odin.com> - 1.5.1-2
8bc468
- Create python-criu and crit subpackages
8bc468
8bc468
* Tue Mar 31 2015 Andrew Vagin <avagin@openvz.org> - 1.5.1
8bc468
- Update to 1.5.1
8bc468
8bc468
* Sat Dec 06 2014 Adrian Reber <adrian@lisas.de> - 1.4-1
8bc468
- Update to 1.4
8bc468
8bc468
* Tue Sep 23 2014 Adrian Reber <adrian@lisas.de> - 1.3.1-1
8bc468
- Update to 1.3.1 (#1142896)
8bc468
8bc468
* Tue Sep 02 2014 Adrian Reber <adrian@lisas.de> - 1.3-1
8bc468
- Update to 1.3
8bc468
- Dropped all upstreamed patches
8bc468
- included pkgconfig file in -devel
8bc468
8bc468
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-5
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8bc468
8bc468
* Thu Aug 07 2014 Andrew Vagin <avagin@openvz.org> - 1.2-4
8bc468
- Include inttypes.h for PRI helpers
8bc468
8bc468
* Thu Aug 07 2014 Andrew Vagin <avagin@openvz.org> - 1.2-3
8bc468
- Rebuilt for https://bugzilla.redhat.com/show_bug.cgi?id=1126751
8bc468
8bc468
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8bc468
8bc468
* Fri Feb 28 2014 Adrian Reber <adrian@lisas.de> - 1.2-1
8bc468
- Update to 1.2
8bc468
- Dropped all upstreamed patches
8bc468
8bc468
* Tue Feb 04 2014 Adrian Reber <adrian@lisas.de> - 1.1-4
8bc468
- Create -devel subpackage
8bc468
8bc468
* Wed Dec 11 2013 Andrew Vagin <avagin@openvz.org> - 1.0-3
8bc468
- Fix the epoch of crtools
8bc468
8bc468
* Tue Dec 10 2013 Andrew Vagin <avagin@openvz.org> - 1.0-2
8bc468
- Rename crtools to criu #1034677
8bc468
8bc468
* Wed Nov 27 2013 Andrew Vagin <avagin@openvz.org> - 1.0-1
8bc468
- Update to 1.0
8bc468
8bc468
* Thu Oct 24 2013 Andrew Vagin <avagin@openvz.org> - 0.8-1
8bc468
- Update to 0.8
8bc468
8bc468
* Tue Sep 10 2013 Andrew Vagin <avagin@openvz.org> - 0.7-1
8bc468
- Update to 0.7
8bc468
8bc468
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-5
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8bc468
8bc468
* Wed Jul 24 2013 Andrew Vagin <avagin@openvz.org> - 0.6-3
8bc468
- Delete all kind of -fstack-protector gcc options
8bc468
8bc468
* Wed Jul 24 2013 Andrew Vagin <avagin@openvz.org> - 0.6-3
8bc468
- Added arm macro to ExclusiveArch
8bc468
8bc468
* Wed Jul 03 2013 Andrew Vagin <avagin@openvz.org> - 0.6-2
8bc468
- fix building on ARM
8bc468
- fix null pointer dereference
8bc468
8bc468
* Tue Jul 02 2013 Adrian Reber <adrian@lisas.de> - 0.6-1
8bc468
- updated to 0.6
8bc468
- upstream moved binaries to sbin
8bc468
- using upstream's make install
8bc468
8bc468
* Tue May 14 2013 Adrian Reber <adrian@lisas.de> - 0.5-1
8bc468
- updated to 0.5
8bc468
8bc468
* Fri Feb 22 2013 Adrian Reber <adrian@lisas.de> - 0.4-1
8bc468
- updated to 0.4
8bc468
8bc468
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-4
8bc468
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8bc468
8bc468
* Tue Jan 22 2013 Adrian Reber <adrian@lisas.de> - 0.3-3
8bc468
- added ExclusiveArch blocker bug
8bc468
8bc468
* Fri Jan 18 2013 Adrian Reber <adrian@lisas.de> - 0.3-2
8bc468
- improved Summary and Description
8bc468
8bc468
* Mon Jan 14 2013 Adrian Reber <adrian@lisas.de> - 0.3-1
8bc468
- updated to 0.3
8bc468
- fix building Documentation/
8bc468
8bc468
* Tue Aug 21 2012 Adrian Reber <adrian@lisas.de> - 0.2-2
8bc468
- remove macros like %%{__mkdir_p} and %%{__install}
8bc468
- add comment why it is only x86_64
8bc468
8bc468
* Tue Aug 21 2012 Adrian Reber <adrian@lisas.de> - 0.2-1
8bc468
- initial release