SPECS: dmcache.spec (NEW) - try compile outside kernel src

glen glen at pld-linux.org
Mon Nov 19 10:15:15 CET 2007


Author: glen                         Date: Mon Nov 19 09:15:15 2007 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- try compile outside kernel src

---- Files affected:
SPECS:
   dmcache.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SPECS/dmcache.spec
diff -u /dev/null SPECS/dmcache.spec:1.1
--- /dev/null	Mon Nov 19 10:15:15 2007
+++ SPECS/dmcache.spec	Mon Nov 19 10:15:10 2007
@@ -0,0 +1,125 @@
+# $Revision$, $Date$
+# TODO
+# - build fails as internal kernel headers are used like:
+#include "dm.h"
+#include "dm-io.h"
+#include "dm-bio-list.h"
+#include "kcopyd.h"
+#
+# Conditional build:
+%bcond_without	dist_kernel	# allow non-distribution kernel
+%bcond_without	kernel		# don't build kernel modules
+%bcond_without	userspace	# don't build userspace programs
+%bcond_with	verbose		# verbose build (V=1)
+
+%if %{without kernel}
+%undefine	with_dist_kernel
+%endif
+
+#
+# main package.
+#
+%define		_rel	0.1
+Summary:	DM-Cache: A Generic Block-level Disk Cache
+Name:		dmcache
+Version:	0.1
+Release:	%{_rel}
+License:	GPL
+Group:		Base/Kernel
+# http://www.acis.ufl.edu/~ming/dmcache/patch-2.6.21
+Patch0:		linux-%{name}.patch
+URL:		http://www.acis.ufl.edu/~ming/dmcache/index.html
+BuildRequires:	patchutils
+%if %{with kernel}
+%{?with_dist_kernel:BuildRequires:	kernel%{_alt_kernel}-module-build >= 3:2.6.20.2}
+BuildRequires:	rpmbuild(macros) >= 1.379
+%endif
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Dm-cache provides a generic block-level disk cache for storage
+networking. It is built upon the Linux device-mapper, a generic block
+device virtualization infrastructure. It can be transparently plugged
+into a client of any storage system, including SAN, iSCSI and AoE, and
+supports dynamic customization for policy-guided optimizations.
+Experimental evaluation based on file system benchmarks and typical
+applications show that dm-cache can significantly improve the
+performance and scalability of a storage system by orders of
+magnitude.
+
+%package -n kernel%{_alt_kernel}-block-dmcache
+Summary:	Linux driver for dmcache
+Summary(pl.UTF-8):	Sterownik dla Linuksa do dmcache
+Release:	%{_rel}@%{_kernel_ver_str}
+Group:		Base/Kernel
+Requires(post,postun):	/sbin/depmod
+%if %{with dist_kernel}
+%requires_releq_kernel
+Requires(postun):	%releq_kernel
+%endif
+
+%description -n kernel%{_alt_kernel}-block-dmcache
+This is driver for dmcache for Linux.
+
+This package contains Linux module.
+
+%description -n kernel%{_alt_kernel}-block-dmcache -l pl.UTF-8
+Sterownik dla Linuksa do dmcache.
+
+Ten pakiet zawiera moduł jądra Linuksa.
+
+%prep
+%setup -qcT
+filterdiff -x '*/Kconfig' -x '*/Makefile' %{PATCH0} | %{__patch} -p1
+# prepare makefile:
+cat > drivers/md/Makefile << EOF
+
+obj-m += dm-cache.o
+EOF
+
+%build
+%if %{with userspace}
+%endif
+
+%if %{with kernel}
+%build_kernel_modules -C drivers/md -m dmcache
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%if %{with userspace}
+%endif
+
+%if %{with kernel}
+%install_kernel_modules -m dmcache -d block
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	-n kernel%{_alt_kernel}-block-dmcache
+%depmod %{_kernel_ver}
+
+%postun	-n kernel%{_alt_kernel}-block-dmcache
+%depmod %{_kernel_ver}
+
+%if %{with kernel}
+%files -n kernel%{_alt_kernel}-block-dmcache
+%defattr(644,root,root,755)
+/lib/modules/%{_kernel_ver}/block/*.ko*
+%endif
+
+%if %{with userspace}
+%files
+%defattr(644,root,root,755)
+%endif
+
+%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2007-11-19 09:15:10  glen
+- try compile outside kernel src
+
================================================================


More information about the pld-cvs-commit mailing list