]> git.proxmox.com Git - mirror_zfs-debian.git/blob - debian/rules
make dkms distdir before build
[mirror_zfs-debian.git] / debian / rules
1 #!/usr/bin/make -f
2
3 include /usr/share/dpkg/default.mk
4
5 LSB_DISTRIBUTOR := $(shell lsb_release -is)
6 NAME := $(shell awk '$$1 == "Name:" { print $$2; }' META)
7 LINUX_NEXT := $(shell awk -F. '{print $$1 "." $$2+1}' debian/linux_compat)
8
9 DKMSFILES := module include config zfs.release.in autogen.sh META AUTHORS \
10 DISCLAIMER COPYRIGHT OPENSOLARIS.LICENSE README.markdown
11
12 ifndef BUILD_UDEB
13 BUILD_UDEB=false
14 endif
15
16 ifndef KVERS
17 KVERS=$(shell uname -r)
18 endif
19
20 ifndef SPL
21 SPL=/usr/src/spl-$(DEB_VERSION_UPSTREAM)
22 endif
23
24 ifndef SPLOBJ
25 SPLOBJ=/var/lib/dkms/spl/$(DEB_VERSION_UPSTREAM)/$(KVERS)/$(DEB_TARGET_GNU_CPU)
26 endif
27
28 non_epoch_version=$(shell echo $(KVERS) | perl -pe 's/^\d+://')
29 PACKAGE=zfs
30 pmodules = $(PACKAGE)-modules-$(non_epoch_version)
31
32 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
33
34 %:
35 dh $@ --with autoreconf,dkms,python3,systemd --parallel
36
37 override_dh_autoreconf:
38 @# Embed the downstream version in the module.
39 @sed -e 's/^Version:.*/Version: $(DEB_VERSION_UPSTREAM)/' -i.orig META
40
41 dh_autoreconf
42
43 override_dh_auto_configure:
44 sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(LINUX_NEXT)~\)/" debian/control.in > debian/control
45 ifeq ($(BUILD_UDEB), true)
46 cat debian/control.udeb.in >> debian/control
47 endif
48
49 @# Build the userland, but don't build the kernel modules.
50 dh_auto_configure -- \
51 --bindir=/usr/bin \
52 --sbindir=/sbin \
53 --libdir=/lib \
54 --with-udevdir=/lib/udev \
55 --enable-systemd \
56 --with-systemdunitdir=/lib/systemd/system \
57 --with-systemdpresetdir=/lib/systemd/system-preset \
58 --with-config=user
59
60 override_dh_auto_build:
61 @# Get a bare copy of the source code for DKMS.
62 @# This creates the $(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/ tree, which does not
63 @# contain the userland sources. NB: Remove-userland-dist-rules.patch
64 $(MAKE) distdir
65
66 dh_auto_build
67
68 override_dh_auto_test:
69 # The dh_auto_test rule is disabled because
70 # `make check` cannot run in an unprivileged build environment.
71
72 override_dh_auto_install:
73 @# Install the utilities.
74 $(MAKE) install DESTDIR='$(CURDIR)/debian/tmp'
75
76 # Use upstream's bash completion
77 install -D -t '$(CURDIR)/debian/tmp/usr/share/bash-completion/completions/' \
78 '$(CURDIR)/contrib/bash_completion.d/zfs'
79
80 # Move from bin_dir to /usr/sbin
81 # Remove suffix (.py) as per policy 10.4 - Scripts
82 # https://www.debian.org/doc/debian-policy/ch-files.html#s-scripts
83 mkdir -p '$(CURDIR)/debian/tmp/usr/sbin/'
84 mv '$(CURDIR)/debian/tmp/usr/bin/arc_summary.py' '$(CURDIR)/debian/tmp/usr/sbin/arc_summary'
85 mv '$(CURDIR)/debian/tmp/usr/bin/arcstat.py' '$(CURDIR)/debian/tmp/usr/sbin/arcstat'
86 mv '$(CURDIR)/debian/tmp/usr/bin/dbufstat.py' '$(CURDIR)/debian/tmp/usr/sbin/dbufstat'
87
88 @# Zed has dependencies outside of the system root.
89 $(INSTALL) -d '$(CURDIR)/debian/tmp/usr/sbin/'
90 mv '$(CURDIR)/debian/tmp/sbin/zed' '$(CURDIR)/debian/tmp/usr/sbin/zed'
91
92 @# Install the DKMS source.
93 @# We only want the files needed to build the modules
94 mkdir -p '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/scripts'
95 cp '$(CURDIR)/scripts/enum-extract.pl' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/scripts'
96 $(foreach file,$(DKMSFILES),mv '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/$(file)' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)' || exit 1;)
97 @# Hellish awk line:
98 @# * Deletes from configure.ac the parts not needed for building the kernel module
99 @# * It deletes from inside AC_CONFIG_FILES([]) everything except:
100 @# (Makefile$|include/|module/|*.release$)
101 @# * Takes care of spaces and tabs
102 awk '/^AC_CONFIG_FILES\(\[/,/^\]\)/ { if ($$0 !~ /^(AC_CONFIG_FILES\(\[([ \t]+)?$$|\]\)([ \t]+)?$$|([ \t]+)?(include\/|module\/|Makefile([ \t]+)?$$|zfs\.release([ \t]+)?$$))/){next} } {print}' \
103 '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/configure.ac' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/configure.ac'
104 @# Set "SUBDIRS = module include" for CONFIG_KERNEL and remove SUBDIRS for all other configs.
105 sed '1,/CONFIG_KERNEL/s/SUBDIRS.*=.*//g;s/SUBDIRS.*=.*/SUBDIRS = module include/g;' \
106 '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am'
107 @# Sanity test
108 grep -q 'SUBDIRS = module include' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am'
109 @# Run autogen on the stripped source tree
110 cd '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)'; ./autogen.sh
111 rm -fr '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/autom4te.cache'
112
113 @# This shunt allows DKMS to install the Module.symvers and zfs_config.h
114 @# files to the ${dkms_tree} area through the POST_INSTALL directive.
115 printf '#!/bin/sh\ncp "$$@"\n' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/cp'
116 chmod 755 '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/cp'
117
118 mkdir -p $(CURDIR)/debian/tmp/usr/lib
119 for i in `ls $(CURDIR)/debian/tmp/lib/*.so`; do \
120 ln -s /lib/`readlink $${i}` $(CURDIR)/debian/tmp/usr/lib/`basename $${i}`; \
121 rm $${i}; \
122 done
123
124 chmod a-x $(CURDIR)/debian/tmp/etc/zfs/zfs-functions
125 chmod a-x $(CURDIR)/debian/tmp/etc/default/zfs
126 chmod a-x '$(CURDIR)/debian/tmp/usr/share/bash-completion/completions/zfs'
127
128 override_dh_dkms:
129 dh_dkms -V $(DEB_VERSION_UPSTREAM)
130
131 override_dh_makeshlibs:
132 dh_makeshlibs -a -V
133 ifeq ($(BUILD_UDEB), true)
134 dh_makeshlibs -V -plibnvpair1linux --add-udeb=libnvpair1-udeb
135 dh_makeshlibs -V -plibuutil1linux --add-udeb=libuutil1-udeb
136 dh_makeshlibs -V -plibzfs2linux --add-udeb=libzfs2-udeb
137 dh_makeshlibs -V -plibzpool2linux --add-udeb=libzpool2-udeb
138 dh_makeshlibs -V -pzfsutils-linux --add-udeb=zfsutils-udeb
139 endif
140
141 override_dh_strip:
142 dh_strip --dbg-package=zfs-dbg
143 ifeq ($(BUILD_UDEB), true)
144 dh_strip -plibnvpair1-udeb
145 dh_strip -plibuutil1-udeb
146 dh_strip -plibzfs2-udeb
147 dh_strip -plibzpool2-udeb
148 dh_strip -pzfsutils-udeb
149 endif
150
151 override_dh_auto_clean:
152 find . -name .gitignore -delete
153 rm -rf zfs-$(DEB_VERSION_UPSTREAM)
154 dh_auto_clean
155 debconf-updatepo
156 @if test -e META.orig; then mv META.orig META; fi
157 sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(LINUX_NEXT)~\)/" debian/control.in > debian/control
158 ifeq ($(BUILD_UDEB), true)
159 cat debian/control.udeb.in >> debian/control
160 endif
161
162 override_dh_install:
163 find . -name lib*.la -delete
164 dh_install --fail-missing
165
166 override_dh_installinit:
167 dh_installinit -r --no-start --name zfs-import
168 dh_installinit -r --no-start --name zfs-mount
169 dh_installinit -r --no-start --name zfs-share
170 dh_installinit -R --no-start --name zfs-zed
171 ln -sr /dev/null \
172 debian/zfsutils-linux/lib/systemd/system/zfs-import.service
173
174 # ------------
175
176 override_dh_prep-deb-files:
177 for templ in $(wildcard $(CURDIR)/debian/*_KVERS_*.in); do \
178 sed -e 's/##KVERS##/$(KVERS)/g ; s/#KVERS#/$(KVERS)/g ; s/_KVERS_/$(KVERS)/g ; s/##KDREV##/$(KDREV)/g ; s/#KDREV#/$(KDREV)/g ; s/_KDREV_/$(KDREV)/g ; s/_ARCH_/$(DEB_HOST_ARCH)/' \
179 < $$templ > `echo $$templ | sed -e 's/_KVERS_/$(KVERS)/g ; s/_ARCH_/$(DEB_HOST_ARCH)/g ; s/\.in$$//'` ; \
180 done
181 sed -e 's/##KVERS##/$(KVERS)/g ; s/#KVERS#/$(KVERS)/g ; s/_KVERS_/$(KVERS)/g ; s/##KDREV##/$(KDREV)/g ; s/#KDREV#/$(KDREV)/g ; s/_KDREV_/$(KDREV)/g ; s/_ARCH_/$(DEB_HOST_ARCH)/g' \
182 < debian/control.modules.in > debian/control
183
184 override_dh_configure_modules_udeb: override_dh_configure_modules_udeb_stamp
185 override_dh_configure_modules_udeb_stamp:
186 ./configure \
187 --without-selinux \
188 --with-config=kernel \
189 --with-linux=$(KSRC) \
190 --with-linux-obj=$(KOBJ) \
191 --with-spl=$(SPL) \
192 --with-spl-obj=$(SPLOBJ)
193 touch override_dh_configure_modules_udeb_stamp
194
195 override_dh_configure_modules: override_dh_configure_modules_stamp
196 override_dh_configure_modules_stamp:
197 ./configure \
198 --with-config=kernel \
199 --with-linux=$(KSRC) \
200 --with-linux-obj=$(KOBJ) \
201 --with-spl=$(SPL) \
202 --with-spl-obj=$(SPLOBJ)
203 touch override_dh_configure_modules_stamp
204
205 override_dh_binary-modules-udeb: override_dh_prep-deb-files override_dh_configure_modules_udeb
206 dh_testdir
207 dh_testroot
208 dh_prep
209
210 $(MAKE) -C $(CURDIR)/module modules
211
212 dh_installdirs -p${pmodules}-di
213 dh_install -p${pmodules}-di
214 dh_gencontrol -p${pmodules}-di
215
216 dh_builddeb -p${pmodules}-di
217
218 override_dh_binary-modules: override_dh_prep-deb-files override_dh_configure_modules
219 dh_testdir
220 dh_testroot
221 dh_prep
222
223 $(MAKE) -C $(CURDIR)/module modules
224
225 dh_install -p${pmodules}
226 dh_installdocs -p${pmodules}
227 dh_installchangelogs -p${pmodules}
228 dh_compress -p${pmodules}
229 dh_strip -p${pmodules}
230 dh_fixperms -p${pmodules}
231 dh_installdeb -p${pmodules}
232 dh_gencontrol -p${pmodules}
233 dh_md5sums -p${pmodules}
234 dh_builddeb -p${pmodules}
235
236 debian-copyright:
237 cme update dpkg-copyright -file debian/copyright.cme