Restore control file on clean

This commit is contained in:
Aron Xu 2013-07-13 02:36:26 +08:00
parent c3ea64f7f6
commit c168c73c0a
2 changed files with 58 additions and 0 deletions

57
debian/control vendored Normal file
View File

@ -0,0 +1,57 @@
Source: spl-linux
Section: kernel
Priority: optional
Maintainer: Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>
Uploaders: Aron Xu <aron@debian.org>, Carlos Alberto Lopez Perez <clopez@igalia.com>
Build-Depends: autotools-dev,
autoconf,
autogen,
automake,
debhelper (>= 9),
dkms (>> 2.1.1.2-5),
libtool,
Standards-Version: 3.9.4
Homepage: http://www.zfsonlinux.org/
Vcs-Git: git://anonscm.debian.org/pkg-zfsonlinux/spl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-zfsonlinux/spl.git
Package: spl-dkms
Architecture: all
Depends: ${misc:Depends}, dkms (>> 2.1.1.2-5), lsb-release
Recommends: spl (>= ${source:Upstream-Version})
Description: Solaris Porting Layer kernel modules for Linux
The Solaris Porting Layer (SPL) is a Linux kernel module which provides
many of the Solaris kernel APIs. This shim layer makes it possible to
run Solaris kernel code in the Linux kernel with relatively minimal
modification. The Solaris Porting LAyer Tests (SPLAT) is a Linux kernel
module which provides a testing harness for the SPL module.
.
SPL can be particularly useful when you want to track upstream Illumos
(or any other OpenSolaris fork) development closely and don't want the
overhead of maintaining a large patch which converts Solaris primitives
to Linux primitives.
.
This package contains the source code for the SPL and SPLAT Linux kernel
modules, which can be used with DKMS, so that local kernel modules are
automatically built and installed every time the kernel packages are
upgraded.
Package: spl
Architecture: linux-any
Conflicts: spl-dev
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: spl-dkms
Description: Solaris Porting Layer user-space utilities for Linux
The Solaris Porting Layer (SPL) is a Linux kernel module which provides
many of the Solaris kernel APIs. This shim layer makes it possible to
run Solaris kernel code in the Linux kernel with relatively minimal
modification. The Solaris Porting LAyer Tests (SPLAT) is a Linux kernel
module which provides a testing harness for the SPL module.
.
SPL can be particularly useful when you want to track upstream Illumos
(or any other OpenSolaris fork) development closely and don't want the
overhead of maintaining a large patch which converts Solaris primitives
to Linux primitives.
.
This package includes the user space utilities needed to test and debug
the SPL and SPLAT kernel modules.

1
debian/rules vendored
View File

@ -74,6 +74,7 @@ override_dh_dkms:
override_dh_auto_clean: override_dh_auto_clean:
dh_auto_clean dh_auto_clean
@if test -e META.orig; then mv META.orig META; fi @if test -e META.orig; then mv META.orig META; fi
cp debian/control.in debian/control
# ------------ # ------------