]> git.proxmox.com Git - mirror_zfs-debian.git/blame - debian/rules
Replace get_next.sh with one-liner awk script in rules.
[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:
c8746aa8 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
e1c956cc 65
5a7b0cb7 66 # Move from bin_dir to /usr/sbin
e1c956cc
RL
67 # Remove suffix (.py) as per policy 10.4 - Scripts
68 # https://www.debian.org/doc/debian-policy/ch-files.html#s-scripts
5a7b0cb7
FG
69 mkdir -p '$(CURDIR)/debian/tmp/usr/sbin/'
70 mv '$(CURDIR)/debian/tmp/usr/bin/arc_summary.py' '$(CURDIR)/debian/tmp/usr/sbin/arc_summary'
71 mv '$(CURDIR)/debian/tmp/usr/bin/arcstat.py' '$(CURDIR)/debian/tmp/usr/sbin/arcstat'
72 mv '$(CURDIR)/debian/tmp/usr/bin/dbufstat.py' '$(CURDIR)/debian/tmp/usr/sbin/dbufstat'
e1c956cc 73
a9e73526
AX
74 @# Zed has dependencies outside of the system root.
75 $(INSTALL) -d '$(CURDIR)/debian/tmp/usr/sbin/'
76 mv '$(CURDIR)/debian/tmp/sbin/zed' '$(CURDIR)/debian/tmp/usr/sbin/zed'
77
37316e2f 78 @# Get a bare copy of the source code for DKMS.
f40b765d 79 @# This creates the $(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/ tree, which does not
37316e2f 80 @# contain the userland sources. NB: Remove-userland-dist-rules.patch
661c4a4b 81 $(MAKE) distdir
7e4739a2 82
e6fd8d0f
CALP
83 @# Install the DKMS source.
84 @# We only want the files needed to build the modules
3f008d57
AR
85 mkdir -p '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/scripts'
86 cp '$(CURDIR)/scripts/enum-extract.pl' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/scripts'
f40b765d 87 $(foreach file,$(DKMSFILES),mv '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/$(file)' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)' || exit 1;)
e6fd8d0f
CALP
88 @# Hellish awk line:
89 @# * Deletes from configure.ac the parts not needed for building the kernel module
90 @# * It deletes from inside AC_CONFIG_FILES([]) everything except:
66bbd7ad 91 @# (Makefile$|include/|module/|*.release$)
e6fd8d0f 92 @# * Takes care of spaces and tabs
66bbd7ad 93 awk '/^AC_CONFIG_FILES\(\[/,/^\]\)/ { if ($$0 !~ /^(AC_CONFIG_FILES\(\[([ \t]+)?$$|\]\)([ \t]+)?$$|([ \t]+)?(include\/|module\/|Makefile([ \t]+)?$$|zfs\.release([ \t]+)?$$))/){next} } {print}' \
f40b765d 94 '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/configure.ac' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/configure.ac'
66bbd7ad
CALP
95 @# Set "SUBDIRS = module include" for CONFIG_KERNEL and remove SUBDIRS for all other configs.
96 sed '1,/CONFIG_KERNEL/s/SUBDIRS.*=.*//g;s/SUBDIRS.*=.*/SUBDIRS = module include/g;' \
f40b765d 97 '$(CURDIR)/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am'
66bbd7ad 98 @# Sanity test
f40b765d 99 grep -q 'SUBDIRS = module include' '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/Makefile.am'
66bbd7ad 100 @# Run autogen on the stripped source tree
f40b765d
FG
101 cd '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)'; ./autogen.sh
102 rm -fr '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/autom4te.cache'
e6fd8d0f 103
37316e2f
DH
104 @# This shunt allows DKMS to install the Module.symvers and zfs_config.h
105 @# files to the ${dkms_tree} area through the POST_INSTALL directive.
f40b765d
FG
106 printf '#!/bin/sh\ncp "$$@"\n' > '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/cp'
107 chmod 755 '$(CURDIR)/debian/tmp/usr/src/$(NAME)-$(DEB_VERSION_UPSTREAM)/cp'
7e4739a2 108
a0d08c54 109 mkdir -p $(CURDIR)/debian/tmp/usr/lib
3f2148a9
AX
110 for i in `ls $(CURDIR)/debian/tmp/lib/*.so`; do \
111 ln -s /lib/`readlink $${i}` $(CURDIR)/debian/tmp/usr/lib/`basename $${i}`; \
112 rm $${i}; \
113 done
114
84dc3e04
LW
115 chmod a-x $(CURDIR)/debian/tmp/etc/zfs/zfs-functions
116 chmod a-x $(CURDIR)/debian/tmp/etc/default/zfs
97487d06 117
505714c7 118override_dh_dkms:
f40b765d 119 dh_dkms -V $(DEB_VERSION_UPSTREAM)
505714c7 120
a81c790e 121override_dh_makeshlibs:
40788335 122 dh_makeshlibs -a -V
042e58d4 123ifeq ($(BUILD_UDEB), true)
40788335
FG
124 dh_makeshlibs -V -plibnvpair1linux --add-udeb=libnvpair1-udeb
125 dh_makeshlibs -V -plibuutil1linux --add-udeb=libuutil1-udeb
126 dh_makeshlibs -V -plibzfs2linux --add-udeb=libzfs2-udeb
127 dh_makeshlibs -V -plibzpool2linux --add-udeb=libzpool2-udeb
128 dh_makeshlibs -V -pzfsutils-linux --add-udeb=zfsutils-udeb
0aa4ec8e 129endif
a81c790e 130
47ba6fdb 131override_dh_strip:
4365121d 132 dh_strip --dbg-package=zfs-dbg
042e58d4 133ifeq ($(BUILD_UDEB), true)
0b24fb47
AX
134 dh_strip -plibnvpair1-udeb
135 dh_strip -plibuutil1-udeb
136 dh_strip -plibzfs2-udeb
137 dh_strip -plibzpool2-udeb
a81c790e 138 dh_strip -pzfsutils-udeb
042e58d4 139endif
a81c790e 140
5cc6dd58 141override_dh_auto_clean:
b3671465 142 find . -name .gitignore -delete
f40b765d 143 rm -rf zfs-$(DEB_VERSION_UPSTREAM)
5cc6dd58 144 dh_auto_clean
4c8f5221 145 debconf-updatepo
5cc6dd58 146 @if test -e META.orig; then mv META.orig META; fi
c8746aa8 147 sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(LINUX_NEXT)\)/" debian/control.in > debian/control
042e58d4
AX
148ifeq ($(BUILD_UDEB), true)
149 cat debian/control.udeb.in >> debian/control
150endif
5cc6dd58 151
9d521a01
AX
152override_dh_install:
153 find . -name lib*.la -delete
7e332a4c 154 dh_install --fail-missing
a81c790e
AX
155
156# ------------
157
158override_dh_prep-deb-files:
159 for templ in $(wildcard $(CURDIR)/debian/*_KVERS_*.in); do \
a20a40e3
TF
160 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)/' \
161 < $$templ > `echo $$templ | sed -e 's/_KVERS_/$(KVERS)/g ; s/_ARCH_/$(DEB_HOST_ARCH)/g ; s/\.in$$//'` ; \
a81c790e 162 done
a20a40e3 163 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
164 < debian/control.modules.in > debian/control
165
6766f188
AX
166override_dh_configure_modules_udeb: override_dh_configure_modules_udeb_stamp
167override_dh_configure_modules_udeb_stamp:
168 ./configure \
169 --without-selinux \
170 --with-config=kernel \
171 --with-linux=$(KSRC) \
c2b155ae 172 --with-linux-obj=$(KOBJ) \
8aa69748
AX
173 --with-spl=$(SPL) \
174 --with-spl-obj=$(SPLOBJ)
6766f188
AX
175 touch override_dh_configure_modules_udeb_stamp
176
a81c790e
AX
177override_dh_configure_modules: override_dh_configure_modules_stamp
178override_dh_configure_modules_stamp:
6766f188
AX
179 ./configure \
180 --with-config=kernel \
181 --with-linux=$(KSRC) \
c2b155ae 182 --with-linux-obj=$(KOBJ) \
8aa69748
AX
183 --with-spl=$(SPL) \
184 --with-spl-obj=$(SPLOBJ)
a81c790e
AX
185 touch override_dh_configure_modules_stamp
186
6766f188 187override_dh_binary-modules-udeb: override_dh_prep-deb-files override_dh_configure_modules_udeb
a81c790e
AX
188 dh_testdir
189 dh_testroot
1dd633c6 190 dh_prep
a81c790e
AX
191
192 $(MAKE) -C $(CURDIR)/module modules
193
a20a40e3
TF
194 dh_installdirs -p${pmodules}-di
195 dh_install -p${pmodules}-di
196 dh_gencontrol -p${pmodules}-di
a81c790e 197
959e5456 198 dh_builddeb -p${pmodules}-di
a81c790e
AX
199
200override_dh_binary-modules: override_dh_prep-deb-files override_dh_configure_modules
201 dh_testdir
202 dh_testroot
1dd633c6 203 dh_prep
a81c790e
AX
204
205 $(MAKE) -C $(CURDIR)/module modules
206
207 dh_install -p${pmodules}
208 dh_installdocs -p${pmodules}
209 dh_installchangelogs -p${pmodules}
210 dh_compress -p${pmodules}
211 dh_strip -p${pmodules}
212 dh_fixperms -p${pmodules}
213 dh_installdeb -p${pmodules}
a878da18 214 dh_gencontrol -p${pmodules}
a81c790e 215 dh_md5sums -p${pmodules}
959e5456 216 dh_builddeb -p${pmodules}
0fc76429
PR
217
218debian-copyright:
219 cme update dpkg-copyright -file debian/copyright.cme