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