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