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