2013-09-01 22:04:53 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 6
|
|
|
|
%global with_python3 1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%global with_lua 1
|
|
|
|
%if 0%{?fedora} > 19
|
|
|
|
%global luaver 5.2
|
|
|
|
%else
|
|
|
|
%global luaver 5.1
|
|
|
|
%endif
|
|
|
|
%global lualibdir %{_libdir}/lua/%{luaver}
|
|
|
|
%global luapkgdir %{_datadir}/lua/%{luaver}
|
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
Name: lxc
|
2013-09-01 22:04:53 +00:00
|
|
|
Version: 0.9.0
|
2013-09-04 16:34:14 +00:00
|
|
|
Release: 2%{?dist}
|
2009-07-28 07:07:50 +00:00
|
|
|
Summary: Linux Resource Containers
|
|
|
|
Group: Applications/System
|
2013-09-01 22:04:53 +00:00
|
|
|
License: LGPLv2+ and GPLv2
|
2009-07-28 07:07:50 +00:00
|
|
|
URL: http://lxc.sourceforge.net
|
|
|
|
Source0: http://lxc.sourceforge.net/download/lxc/%{name}-%{version}.tar.gz
|
2013-09-01 22:04:53 +00:00
|
|
|
Patch0: lxc-0.9.0-fedora-template.patch
|
|
|
|
# only used on Fedora > 19
|
|
|
|
Patch1: lxc-0.9.0-lua-5.2.patch
|
2009-07-28 07:07:50 +00:00
|
|
|
BuildRequires: docbook-utils
|
2013-09-01 22:04:53 +00:00
|
|
|
Buildrequires: docbook2X
|
2009-07-28 07:07:50 +00:00
|
|
|
BuildRequires: kernel-headers
|
|
|
|
BuildRequires: libcap-devel
|
|
|
|
BuildRequires: libtool
|
2013-09-01 22:04:53 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildRequires: python3-devel >= 3.2
|
|
|
|
%endif
|
|
|
|
%if 0%{?with_lua}
|
|
|
|
BuildRequires: lua-devel
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
2009-07-28 07:07:50 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%package libs
|
|
|
|
Summary: Runtime library files for %{name}
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
|
|
|
The %{name}-libs package contains libraries for running %{name} applications.
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2013-09-01 22:04:53 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-%{name}
|
|
|
|
Summary: Python binding for %{name}
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description -n python3-%{name}
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
|
|
|
The python3-%{name} package contains the Python3 binding for %{name}.
|
|
|
|
|
|
|
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}_lxc\\..*\\.so
|
|
|
|
|
|
|
|
|
|
|
|
%package extra
|
|
|
|
Summary: Extra tools for %{name}
|
|
|
|
Group: Applications/System
|
|
|
|
Requires: python3-%{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description extra
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
|
|
|
This package contains tools needing the Python3 bindings.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_lua}
|
|
|
|
%package -n lua-%{name}
|
|
|
|
Summary: Lua binding for %{name}
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
Requires: lua-filesystem
|
|
|
|
|
|
|
|
%description -n lua-%{name}
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
|
|
|
The lua-%{name} package contains the Lua binding for %{name}.
|
|
|
|
|
|
|
|
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}core\\.so\\.0
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2011-03-28 03:00:01 +00:00
|
|
|
%package templates
|
|
|
|
Summary: Templates for %{name}
|
|
|
|
Group: System Environment/Libraries
|
2013-09-01 22:04:53 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
2013-02-15 20:37:35 +00:00
|
|
|
# needed for lxc-busybox
|
|
|
|
Requires: busybox
|
|
|
|
# needed for lxc-debian
|
|
|
|
Requires: dpkg
|
|
|
|
# needed for lxc-debian, lxc-ubuntu:
|
2013-09-01 22:04:53 +00:00
|
|
|
Requires: debootstrap rsync
|
2013-02-15 20:37:35 +00:00
|
|
|
# needed for lxc-sshd
|
|
|
|
Requires: openssh-server dhclient
|
|
|
|
|
2011-03-28 03:00:01 +00:00
|
|
|
|
|
|
|
%description templates
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
2013-09-01 22:04:53 +00:00
|
|
|
The %{name}-templates package contains templates for creating containers.
|
2011-03-28 03:00:01 +00:00
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
2013-09-01 22:04:53 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
2009-07-28 07:07:50 +00:00
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Linux Resource Containers provide process and resource isolation without the
|
|
|
|
overhead of full virtualization.
|
|
|
|
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-11-27 22:42:04 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Group: Documentation
|
2013-09-01 22:04:53 +00:00
|
|
|
BuildArch: noarch
|
2009-11-27 22:42:04 +00:00
|
|
|
|
|
|
|
%description doc
|
2010-02-18 05:25:09 +00:00
|
|
|
This package contains documentation for %{name}.
|
2009-11-27 22:42:04 +00:00
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%prep
|
2013-09-01 22:04:53 +00:00
|
|
|
%setup -q -n %{name}-%{version}
|
2013-03-02 13:29:47 +00:00
|
|
|
%patch0 -p1
|
2013-09-01 22:04:53 +00:00
|
|
|
%if 0%{?with_lua} && 0%{?fedora} > 19
|
|
|
|
%patch1 -p1
|
|
|
|
%endif
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%build
|
2013-09-01 22:04:53 +00:00
|
|
|
%configure --with-distro=fedora \
|
|
|
|
--enable-doc \
|
|
|
|
--docdir=%{_pkgdocdir} \
|
|
|
|
--disable-rpath \
|
|
|
|
--disable-apparmor \
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
--enable-python \
|
|
|
|
%endif
|
|
|
|
%if 0%{?with_lua}
|
|
|
|
--enable-lua \
|
|
|
|
%endif
|
|
|
|
# intentionally blank line
|
2012-03-26 15:23:35 +00:00
|
|
|
make %{?_smp_mflags}
|
2009-07-28 07:07:50 +00:00
|
|
|
|
2010-07-26 17:05:45 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%install
|
2013-02-15 20:37:35 +00:00
|
|
|
%{make_install}
|
2012-03-26 15:23:35 +00:00
|
|
|
make DESTDIR=%{buildroot} install
|
|
|
|
mkdir -p %{buildroot}%{_sharedstatedir}/%{name}
|
2013-09-01 22:04:53 +00:00
|
|
|
%if 0%{?with_lua}
|
|
|
|
chmod -x %{buildroot}%{luapkgdir}/lxc.lua
|
|
|
|
%endif
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_pkgdocdir}
|
|
|
|
cp -a AUTHORS COPYING README %{buildroot}%{_pkgdocdir}
|
2011-03-28 03:00:01 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
%check
|
|
|
|
make check
|
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%files
|
|
|
|
%{_bindir}/%{name}-*
|
2013-09-01 22:04:53 +00:00
|
|
|
%{_mandir}/man1/%{name}*
|
|
|
|
%{_datadir}/%{name}/lxc.functions
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%exclude %{_bindir}/%{name}-device
|
|
|
|
%exclude %{_bindir}/%{name}-ls
|
|
|
|
%exclude %{_bindir}/%{name}-start-ephemeral
|
|
|
|
%exclude %{_mandir}/man1/%{name}-device*
|
|
|
|
%exclude %{_mandir}/man1/%{name}-ls*
|
|
|
|
%exclude %{_mandir}/man1/%{name}-start-ephemeral*
|
|
|
|
%else
|
|
|
|
%{_bindir}/%{name}-ls
|
|
|
|
%{_mandir}/man1/%{name}-ls*
|
|
|
|
%endif
|
2009-07-28 07:07:50 +00:00
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%files libs
|
2013-09-01 22:04:53 +00:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%dir %{_datadir}/%{name}/templates
|
|
|
|
%{_datadir}/%{name}/hooks
|
2009-11-27 22:42:04 +00:00
|
|
|
%{_libdir}/liblxc.so.*
|
2013-09-01 22:04:53 +00:00
|
|
|
%{_libdir}/%{name}
|
|
|
|
%{_libexecdir}/%{name}
|
|
|
|
%{_sharedstatedir}/%{name}
|
|
|
|
%dir %{_sysconfdir}/%{name}
|
|
|
|
%config(noreplace) %{_sysconfdir}/%{name}/default.conf
|
|
|
|
%{_mandir}/man5/%{name}*
|
|
|
|
%{_mandir}/man7/%{name}*
|
|
|
|
%dir %{_pkgdocdir}
|
|
|
|
%{_pkgdocdir}/AUTHORS
|
|
|
|
%{_pkgdocdir}/COPYING
|
|
|
|
%{_pkgdocdir}/README
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-%{name}
|
|
|
|
%{python3_sitearch}/*
|
|
|
|
|
|
|
|
|
|
|
|
%files extra
|
|
|
|
%{_bindir}/%{name}-device
|
|
|
|
%{_bindir}/%{name}-ls
|
|
|
|
%{_bindir}/%{name}-start-ephemeral
|
|
|
|
%{_mandir}/man1/%{name}-device*
|
|
|
|
%{_mandir}/man1/%{name}-ls*
|
|
|
|
%{_mandir}/man1/%{name}-start-ephemeral*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_lua}
|
|
|
|
%files -n lua-%{name}
|
|
|
|
%{lualibdir}/%{name}
|
|
|
|
%{luapkgdir}/%{name}.lua
|
|
|
|
%endif
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2011-03-28 03:00:01 +00:00
|
|
|
|
|
|
|
%files templates
|
2013-02-15 20:37:35 +00:00
|
|
|
%{_datadir}/lxc/templates/lxc-*
|
|
|
|
# needs apt
|
|
|
|
%exclude %{_datadir}/lxc/templates/lxc-altlinux
|
|
|
|
# needs pacman
|
|
|
|
%exclude %{_datadir}/lxc/templates/lxc-archlinux
|
|
|
|
# needs zypper
|
|
|
|
%exclude %{_datadir}/lxc/templates/lxc-opensuse
|
|
|
|
# needs ubuntu-cloudimg-query
|
|
|
|
%exclude %{_datadir}/lxc/templates/lxc-ubuntu-cloud
|
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
|
|
|
|
%files devel
|
2013-02-15 20:37:35 +00:00
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%{_includedir}/lxc
|
2009-07-28 07:07:50 +00:00
|
|
|
%{_libdir}/liblxc.so
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-11-27 22:42:04 +00:00
|
|
|
%files doc
|
2013-09-01 22:04:53 +00:00
|
|
|
%dir %{_pkgdocdir}
|
|
|
|
# README, AUTHORS and COPYING intentionally duplicated because -doc
|
|
|
|
# can be installed on its own.
|
|
|
|
%{_pkgdocdir}/*
|
2009-11-27 22:42:04 +00:00
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
%changelog
|
2013-09-04 16:34:14 +00:00
|
|
|
* Wed Sep 4 2013 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.0-2
|
|
|
|
- Small fix to the included Fedora template.
|
|
|
|
|
2013-09-01 22:04:53 +00:00
|
|
|
* Sun Sep 1 2013 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.0-1
|
|
|
|
- Update to 0.9.0.
|
|
|
|
- Make the -libs subpackage installable on its own:
|
|
|
|
- Move files needed by the libraries to the subpackage.
|
|
|
|
- Let packages depend on -libs.
|
|
|
|
- Add rsync as dependency to the templates package.
|
|
|
|
- Add (optional) subpackages for Python3 and Lua bindings.
|
|
|
|
- Add upstream patches for the Fedora template.
|
|
|
|
- Define and use the _pkgdocdir macro, also fixing rhbz#1001235.
|
|
|
|
- Update License tag.
|
|
|
|
|
2013-08-03 08:38:39 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-03-02 13:29:47 +00:00
|
|
|
* Sat Mar 2 2013 Thomas Moschny <thomas.moschny@gmx.de> - 0.8.0-2
|
|
|
|
- Add upstream patch fixing the release url in the Fedora template.
|
|
|
|
|
2013-02-15 20:37:35 +00:00
|
|
|
* Fri Feb 15 2013 Thomas Moschny <thomas.moschny@gmx.de> - 0.8.0-1
|
|
|
|
- Update to 0.8.0.
|
|
|
|
- Modernize spec file.
|
|
|
|
- Include more templates.
|
|
|
|
|
2013-02-14 06:06:16 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-19 22:45:36 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-26 15:23:35 +00:00
|
|
|
* Mon Mar 26 2012 Thomas Moschny <thomas.moschny@gmx.de> - 0.7.5-1
|
|
|
|
- Update to upstream 0.7.5
|
|
|
|
- No need to run autogen.sh
|
|
|
|
- Fix: kernel header asm/unistd.h was not found
|
|
|
|
- Specfile cleanups
|
|
|
|
|
2012-01-13 09:07:42 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-07-29 16:48:40 +00:00
|
|
|
* Wed Jul 06 2011 Adam Miller <maxamillion@fedoraproject.org> - 0.7.4.2-1
|
|
|
|
- Update to upstream 0.7.4.2
|
|
|
|
|
2011-03-28 03:00:01 +00:00
|
|
|
* Fri Mar 25 2011 Silas Sewell <silas@sewell.ch> - 0.7.4.1-1
|
|
|
|
- Update to 0.7.4.1
|
|
|
|
|
2011-02-08 14:32:36 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-07-26 17:05:45 +00:00
|
|
|
* Mon Jul 26 2010 Silas Sewell <silas@sewell.ch> - 0.7.2-1
|
|
|
|
- Update to 0.7.2
|
|
|
|
- Remove templates
|
|
|
|
|
|
|
|
* Tue Jul 06 2010 Silas Sewell <silas@sewell.ch> - 0.7.1-1
|
|
|
|
- Update to 0.7.1
|
|
|
|
|
2010-02-18 05:25:09 +00:00
|
|
|
* Wed Feb 17 2010 Silas Sewell <silas@sewell.ch> - 0.6.5-1
|
|
|
|
- Update to latest release
|
|
|
|
- Add /var/lib/lxc directory
|
|
|
|
- Patch for sys/stat.h
|
|
|
|
|
2009-11-27 22:42:04 +00:00
|
|
|
* Fri Nov 27 2009 Silas Sewell <silas@sewell.ch> - 0.6.4-1
|
|
|
|
- Update to latest release
|
|
|
|
- Add documentation sub-package
|
|
|
|
|
2009-07-28 07:07:50 +00:00
|
|
|
* Mon Jul 27 2009 Silas Sewell <silas@sewell.ch> - 0.6.3-2
|
2009-11-27 22:42:04 +00:00
|
|
|
- Apply patch for rawhide kernel
|
2009-07-28 07:07:50 +00:00
|
|
|
|
|
|
|
* Sat Jul 25 2009 Silas Sewell <silas@sewell.ch> - 0.6.3-1
|
2009-11-27 22:42:04 +00:00
|
|
|
- Initial package
|