chiark / gitweb /
Makefile: Add a new thing for running arbitrary commands.
[distorted-chroot] / Makefile
CommitLineData
e36b4f25
MW
1### -*-makefile-*-
2###
3### Main maintenance script for chroots
4###
5### (c) 2018 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the distorted.org.uk chroot maintenance tools.
11###
12### distorted-chroot is free software: you can redistribute it and/or
13### modify it under the terms of the GNU General Public License as
14### published by the Free Software Foundation; either version 2 of the
15### License, or (at your option) any later version.
16###
17### distorted-chroot is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20### General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with distorted-chroot. If not, write to the Free Software
24### Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25### USA.
26
27all::
28clean::
3e5b03e2
MW
29check::
30.PHONY: all clean check
e36b4f25
MW
31.SECONDEXPANSION: #sorry
32
33###--------------------------------------------------------------------------
34### Configuration.
35
36CONFIG_VARS =
37
3e5b03e2
MW
38## Level of pickiness to aspire to.
39NOTIFY_FATAL = 1
40
e36b4f25
MW
41## Volume group from which to allocate chroot volumes and snapshots.
42CONFIG_VARS += VG LVPREFIX
afb5d051 43VG := vg-$(shell hostname)
e36b4f25
MW
44LVPREFIX =
45
46## Logical volume size, as an LVM option.
3e5b03e2 47CONFIG_VARS += LVSZ SNAPOPT
e36b4f25 48LVSZ = -L8G
3e5b03e2 49SNAPOPT = -L8G
e36b4f25
MW
50
51## Debian mirror.
52CONFIG_VARS += DEBMIRROR
53DEBMIRROR = http://deb.debian.org/debian/
54
55## APT sources configurations. (Also, $($d_APTSRC) for each $d in $(DISTS).)
56CONFIG_VARS += APTSRC
57APTSRC = etc/aptsrc.conf $(wildcard etc/aptsrc.local.conf)
58
59## APT configuration fragment names. These will be linked into
60## `/etc/apt/apt.conf.d' in each chroot. To put a fragment f in a surprising
a98c9dba
MW
61## place, set $(_$f_APTCONFSRC).
62CONFIG_VARS += APTCONF $(foreach f,$(APTCONF),_$f_APTCONFSRC)
63APTCONF = $(notdir $(wildcard etc/apt-conf.d/[0-9]*[!~]))
e36b4f25
MW
64
65## Proxy setting.
66CONFIG_VARS += PROXY
4d529157 67PROXY = $(shell \
a98c9dba 68 eval $$(apt-config $(foreach a,$(APTCONF),-cetc/apt-conf.d/$a) \
e36b4f25
MW
69 shell proxy Acquire::http::proxy); \
70 case $${proxy+t} in (t) echo "$$proxy" ;; (*) echo nil ;; esac)
71
72## Debian distributions to support.
73CONFIG_VARS += PRIMARY_DIST DISTS
74PRIMARY_DIST = stretch
75DISTS = $(PRIMARY_DIST) buster bullseye sid
76
77## Host's native architecture(s).
78CONFIG_VARS += MYARCH NATIVE_ARCHS
afb5d051
MW
79MYARCH := $(shell dpkg --print-architecture)
80OTHERARCHS := $(shell dpkg --print-foreign-architectures)
e36b4f25
MW
81NATIVE_ARCHS = $(MYARCH) $(OTHERARCHS)
82
83## Foreign (emulated) architectures to support.
84CONFIG_VARS += FOREIGN_ARCHS
85FOREIGN_ARCHS =
86
87## Master lists of chroots to build and maintain.
a98c9dba 88CONFIG_VARS += NATIVE_CHROOTS FOREIGN_CHROOTS
e36b4f25
MW
89NATIVE_CHROOTS = $(foreach a,$(NATIVE_ARCHS), \
90 $(foreach d,$(or $($a_DISTS) $(DISTS)), \
91 $d-$a))
92FOREIGN_CHROOTS = $(foreach a,$(FOREIGN_ARCHS), \
93 $(foreach d,$(or $($a_DISTS) $(DISTS)), \
94 $d-$a))
95
a98c9dba
MW
96## Extra packages to be installed in chroots. `BASE_PACKAGES' are installed
97## through `debootstrap'; `EXTRA_PACKAGES' are installed later, using Apt,
98## which is faster in foreign chroots.
99CONFIG_VARS += BASE_PACKAGES EXTRA_PACKAGES
100BASE_PACKAGES = eatmydata
101EXTRA_PACKAGES = build-essential
102EXTRA_PACKAGES += ccache
103EXTRA_PACKAGES += fakeroot
104EXTRA_PACKAGES += libfile-fcntllock-perl
105EXTRA_PACKAGES += locales
106
107## Extra packages from which to install the cross tools.
108CONFIG_VARS += CROSS_PACKAGES
109CROSS_PACKAGES = bash coreutils dash findutils
110CROSS_PACKAGES += gzip m4 mawk sed tar xz-utils
111CROSS_PACKAGES += apt ccache eatmydata fakeroot make
112CROSS_PACKAGES += qemu-user-static
113CROSS_PACKAGES += $(foreach a,$(FOREIGN_GNUARCHS),\
114 gcc-$a g++-$a binutils-$a)
115
116## Native files to install in place of the foreign versions. `MULTI' here
117## stands for the donor's GNU multiarch name.
118CONFIG_VARS += CROSS_PATHS
119CROSS_PATHS += \
120 $(addprefix /usr/bin/, \
121 apt apt-cache apt-config apt-get apt-key apt-mark) \
122 $(addprefix /usr/lib/apt/, \
123 methods/ solvers/) \
124 $(addprefix /bin/, \
125 cat chgrp chown cp date dd df dir echo false ln ls mkdir \
126 mknod mktemp mv pwd readlink rm rmdir sleep stty sync touch \
127 true uname vdir) \
128 $(addprefix /usr/bin/, \
129 [ arch b2sum base32 base64 basename chcon cksum comm \
130 csplit cut dircolors dirname du env expand expr factor fmt \
131 fold groups head hostid id install join link logname md5sum \
132 mkfifo nice nl nohup nproc numfmt od paste pathchk pinky pr \
133 printenv printf ptx realpath runcon seq sha1sum sha224sum \
134 sha256sum sha384sum sha512sum shred shuf sort split stat \
135 stdbuf sum tac tail tee test timeout tr truncate tsort tty \
136 unexpand uniq unlink users wc who whoami yes) \
137 /usr/lib/MULTI/coreutils/ \
138 $(addprefix /lib/MULTI/, \
139 libnsl.so.* libnss_*.so.*) \
140 /usr/bin/gpgv \
141 /usr/bin/qemu-*-static \
142 $(addprefix /bin/, \
143 bash dash gzip sed tar) \
144 $(addprefix /usr/bin/, \
145 ccache find m4 make mawk xargs xz) \
146 $(addprefix /usr/lib/MULTI/, \
147 libeatmydata.so* libfakeroot/) \
148 $(addprefix /etc/ld.so.conf.d/, \
149 MULTI.conf fakeroot*.conf) \
150 $(foreach a,$(FOREIGN_GNUARCHS), \
151 $(addprefix /usr/bin/$a-, \
152 addr2line ar as c++filt dwp elfedit gprof ld ld.* \
153 nm objcopy objdump ranlib readelf size strings \
154 strip) \
155 $(addprefix /usr/bin/$a-, \
156 cpp gcc g++ gcov gcov-dump gcov-tool gprof \
157 gcc-ar gcc-nm gcc-ranlib) \
158 /usr/lib/gcc-cross/$a/)
3e5b03e2
MW
159
160## Local packages to be compiled and installed in chroots. Archives can be
161## found in `pkg/'.
a98c9dba 162CONFIG_VARS += LOCALPKGS $(foreach p,$(LOCALPKGS),$p_DEPS)
3e5b03e2 163LOCALPKGS = mLib checkpath
a98c9dba
MW
164mLib_DEPS =
165checkpath_DEPS = mLib
3e5b03e2 166
e36b4f25
MW
167## Which host architecture to use for foreign architectures. It turns out
168## that it's best to use a Qemu with the same host bitness as the target
169## architecture; otherwise it has to do a difficult job of converting
170## arguments and results between kernel ABI flavours.
17132BIT_QEMUHOST = $(or $(filter i386,$(NATIVE_ARCHS)),$(TOOLSARCH))
17264BIT_QEMUHOST = $(or $(filter amd64,$(NATIVE_ARCHS)),$(TOOLSARCH))
173
a98c9dba 174CONFIG_VARS += $(foreach a,$(FOREIGN_ARCHS),$a_QEMUHOST)
e36b4f25
MW
175armel_QEMUHOST = $(32BIT_QEMUHOST)
176armhf_QEMUHOST = $(32BIT_QEMUHOST)
177arm64_QEMUHOST = $(64BIT_QEMUHOST)
178i386_QEMUHOST = $(32BIT_QEMUHOST)
179amd64_QEMUHOST = $(64BIT_QEMUHOST)
180
181## Qemu architecture names. These tell us which Qemu binary to use for a
182## particular Debian architecture.
a98c9dba 183CONFIG_VARS += $(foreach a,$(FOREIGN_ARCHS),$a_QEMUARCH)
e36b4f25
MW
184armel_QEMUARCH = arm
185armhf_QEMUARCH = arm
186arm64_QEMUARCH = aarch64
187i386_QEMUARCH = i386
188amd64_QEMUARCH = x86_64
189
190## Alias mapping for chroots.
a98c9dba 191CONFIG_VARS += $(foreach d,$(DISTS),$d_ALIASES)
e36b4f25
MW
192stretch_ALIASES = oldstable
193buster_ALIASES = stable
a98c9dba 194bullseye_ALIASES = testing
e36b4f25
MW
195sid_ALIASES = unstable
196
197## Which host architecture to use for commonly used tools in foreign chroots.
198CONFIG_VARS += TOOLSARCH
199TOOLSARCH = $(MYARCH)
200
201## A directory in which we can maintain private files and state.
202CONFIG_VARS += STATE
203STATE = state
204
205## A directory which will be spliced into chroots as `/usr/local.schroot/'.
206## This will be our primary point of contact with the chroot.
8918e451 207CONFIG_VARS += LOCAL ABSLOCAL
e36b4f25 208LOCAL = local.schroot
8918e451 209ABSLOCAL = $(abspath $(LOCAL))
e36b4f25
MW
210
211## How to run a command as a privileged user.
a98c9dba 212CONFIG_VARS += ROOTLY
e36b4f25
MW
213ROOTLY = sudo
214
215## Files to be copied into a chroot from the host.
216SCHROOT_COPYFILES = /etc/resolv.conf
217SCHROOT_NSSDATABASES = passwd shadow group gshadow
218
219## Local configuration hook.
220-include local.mk
221
222## All chroot names.
3e5b03e2
MW
223CONFIG_VARS += ALL_ARCHS ALL_CHROOTS
224ALL_ARCHS = $(NATIVE_ARCHS) $(FOREIGN_ARCHS)
e36b4f25
MW
225ALL_CHROOTS = $(NATIVE_CHROOTS) $(FOREIGN_CHROOTS)
226
a98c9dba
MW
227## GNU names for foreign architectures.
228CONFIG_VARS += FOREIGN_GNUARCHS
229FOREIGN_GNUARCHS := $(foreach a,$(FOREIGN_ARCHS),\
230 $(shell dpkg-architecture -A$a \
231 -qDEB_TARGET_GNU_TYPE))
232
e36b4f25
MW
233###--------------------------------------------------------------------------
234### Utilities.
235
3e5b03e2
MW
236## Hack to force rebuilding.
237_force:
238.PHONY: _force
239
240## Hack to not delimit function arguments. (Ugh!)
241comma = ,
242
243## Silent-rules machinery.
244V = 0
245V_AT = $(V_AT_$V)
246V_AT_0 = @
247v_print = $(call v_print_$V,$1,$2)
248v_print_0 = printf " %-8s %s\n" "$1" $(call squote,$2);
249v_tag = $(V_AT)$(call v_print,$1,$@)
250v_log = $(call v_log_$V,$1,$2)
251v_log_ = $(call v_log_1,$1,$2)
252v_log_0 = $2 >log/$1.log 2>&1
253v_log_1 = $(call catchrc,$(call throwrc,$2) 2>&1 | tee log/$1.log)
254v_echo = $(call v_echo_$V,$1)
255v_echo_0 = :
256v_echo_1 = printf "%s\n" $1
257CLEANFILES += log/*.log
258
259## Oh, shut up.
260SILENCE_LVM = \
261 LVM_SUPPRESS_FD_WARNINGS=1; export LVM_SUPPRESS_FD_WARNINGS
262
a98c9dba
MW
263## $(call definedp,VAR)
264##
265## Expand non-empty if and only if VAR is defined (but possibly empty).
266definedp = $(filter-out undefined,$(origin $1))
267
3e5b03e2
MW
268## $(call catchrc,...$(call throwrc,CMD)...)
269##
270## Catch the exit status of some subpart of a complicated shell rune.
271catchrc = (exec 3>&1; exit $$({ $1; } 4>&1 >&3 3>&-))
272throwrc = { $1; echo $$? >&4; }
273
274## $(call squote,TXT)
275##
276## Single-quote TXT.
1727e3c6
MW
277squote = '$(subst ','\'',$1)'
278#'
3e5b03e2 279
e36b4f25
MW
280## $(call chroot-dist,D-A) -> D
281## $(call chroot-arch,D-A) -> A
282##
283## Parse chroot descriptions.
284chroot-dist = $(patsubst %/,%,$(dir $(subst -,/,$1)))
285chroot-arch = $(notdir $(subst -,/,$1))
286
3e5b03e2
MW
287## $(call package-dir-name,P-V) -> P
288## $(call package-dir-version,P-V) -> V
289##
290## Parse (source) package directory names.
291package-dir-name = $(sort $(foreach p,$(LOCALPKGS),$(if $(filter $p-$($p_VERSION),$1),$p)))
292package-dir-version = $($(call package-dir-name,$1)_VERSION)
293
294## $(call package-dir,P-V.A) -> P-V
295## $(call package-name,P-V.A) -> P
296## $(call package-version,P-V.A) -> V
297## $(call package-arch,P-V.A) -> A
298##
299## Parse package stamp names.
300package-dir = $(basename $1)
301package-name = $(call package-dir-name,$(call package-dir,$1))
302package-version = $(call package-dir-version,$(call package-dir,$1))
303package-arch = $(patsubst .%,%,$(suffix $1))
304
e36b4f25
MW
305## $(call native-chroot-p,D-A) -> D | <empty>
306##
307## Answer whether D-A is a native chroot.
3e5b03e2 308native-chroot-p = $(filter $(call chroot-arch,$1),$(NATIVE_ARCHS))
e36b4f25
MW
309
310## $(call chroot-qemuhost,D-A) -> AA
311##
312## Answer the apporopriate Qemu host architecture for foreign chroot D-A.
313chroot-qemuhost = $($(call chroot-arch,$1)_QEMUHOST)
314
3e5b03e2 315## $(call chroot-deps,PRE,D-A) -> PREDD-AA ... | <empty>
e36b4f25
MW
316##
317## Answer a list of additional dependencies for the chroot D-A: specifically,
318## if D-A is foreign then include PRE/DD-AA entries for the tools
319## architecture, and Qemu host architecture (if that's different).
320chroot-deps = $(if $(call native-chroot-p,$2),, \
3e5b03e2
MW
321 $(addprefix $1$(call chroot-dist,$2)-,\
322 $(sort $(TOOLSARCH) \
e36b4f25
MW
323 $(call chroot-qemuhost,$2))))
324
325## Substituting placeholders in files.
326SUBSTITUTIONS := local=$(shell realpath $(LOCAL))
327SUBSTITUTIONS += primary-dist=$(PRIMARY_DIST)
328subst-file = { \
329 echo "$1 GENERATED by distorted-chroot: do not edit"; \
330 substs=""; \
331 for v in $(SUBSTITUTIONS); do \
332 var=$${v%%=*} value=$${v\#*=}; \
333 substs="$$substs s\a@$$var@\a$$value\ag;"; \
334 done; \
335 sed "$$substs"; \
336}
337
3e5b03e2
MW
338### $(call symlink-ok-p,LINK,DEST)
339###
340### Expand to `t' if LINK is a symbolic link to DEST, and empty otherwise.
341symlink-ok-p = $(shell \
342 case $$(readlink 2>/dev/null $(patsubst %/,%,$1)) in ($2) echo t ;; esac)
343
344### $(call general-notify,SEV,COLOUR,PREFIX,MSG)
345###
346### Report a message, highlighted in the right way, and maybe fail
347general-notify = { \
348 echo "$$(tput bold; tput setaf $2)$3 "$4"$$(tput sgr0; tput op)"; \
349 if [ "$1" -le "$(NOTIFY_FATAL)" ]; then exit 2; fi; \
350}
351
352### $(call report/SEV,MSG)
353###
354### Report a notification of a particular severity.
355notify/INFO = $(call general-notify,3,6,---,$1)
356notify/WARN = $(call general-notify,2,5,???,$1)
357notify/ERR = $(call general-notify,1,1,!!!,$1)
358
359## $(call check,SEV,MSG,UNLESS)
360##
361## If UNLESS completes successfully, all is OK; otherwise print MSG to stderr
362## and fail.
363check = @{ \
364 $(call v_echo,'check: '$(call squote,$3)''); \
365 if ! { $3; }; then $(call notify/$1,$2); fi; \
366}
367
368## $(call check-executable,SEV,PATH)
369##
370## Verify that PATH is an executable program.
371check-executable = $(call check,$1,"\`$2' is not an executable", \
372 [ -x "$2" ])
373
374## $(call check-mountpoint,SEV,DIR)
375##
376## Verify that DIR is a mountpoint.
377check-mountpoint = $(call check,$1,"\`$2' is not a mount point", \
378 mountpoint -q "$2")
379
380## $(call check-symlink,SEV,LINK,DEST)
381##
382## Verify that LINK is a symbolic link pointing to DEST.
383check-symlink = $(call check,$1,"\`$2' is not a link to \`$3'", \
384 [ -L "$2" ] && [ "$$(readlink "$2")" = "$3" ])
385
a4c5d71a
MW
386###--------------------------------------------------------------------------
387### Python extensions.
388
389CC = gcc
390CFLAGS = -O2 -g -Wall
391
392LD = $(CC)
393LDFLAGS =
394
395c-source = $(foreach c,$1,src/$c)
396c-object = $(foreach c,$1,$(STATE)/obj/$(basename $c).o)
397
398PYEXT_PKGFLAGS := $(shell pkg-config --cflags python2)
399PYEXT_CFLAGS = -fPIC -fno-strict-aliasing $(PYEXT_PKGFLAGS)
400PYEXT_LDFLAGS = -shared
401
402PYEXTS += jobclient
403jobclient_SOURCES = jobclient.c
404
405PYEXT_ALLSRC = $(foreach x,$(PYEXTS),\
406 $(call c-source,$($x_SOURCES)))
407PYEXT_ALLOBJ = $(foreach x,$(PYEXTS),\
408 $(call c-object,$($x_SOURCES)))
409$(PYEXT_ALLOBJ): $(STATE)/obj/%.o: src/%.c
410 $(V_AT)mkdir -p $(dir $@)
411 $(call v_tag,CC)$(CC) -c $(CFLAGS) $(PYEXT_CFLAGS) -o$@ $<
412
413PYMODULES = $(foreach x,$(PYEXTS),$(STATE)/lib/python/$x.so)
414all:: $(PYMODULES)
415$(PYMODULES): $(STATE)/lib/python/%.so: $$(call c-object,$$($$*_SOURCES))
416 $(V_AT)mkdir -p $(dir $@)
417 $(call v_tag,LD)$(LD) $(LDFLAGS) $(PYEXT_LDFLAGS) -o$@ $^
418
3e5b03e2
MW
419###--------------------------------------------------------------------------
420### Scripts.
421
a98c9dba 422SCRIPTS += chroot-maint
3e5b03e2 423SCRIPTS += mkchrootconf
3e5b03e2
MW
424
425SUBST_SCRIPTS = $(addprefix $(STATE)/bin/,$(SCRIPTS))
426all:: $(SUBST_SCRIPTS)
427$(SUBST_SCRIPTS): $(STATE)/bin/%: bin/% $(STATE)/config.sh
428 $(V_AT)mkdir -p $(dir $@)
429 $(call v_tag,SUBST){ \
430 sed \
431 -e '2i### GENERATED by distorted-chroot: do not edit' \
432 -e '/@@@config@@@/ {' \
433 -e 'r $(STATE)/config.sh' \
434 -e 'd'\
435 -e '}' $<; \
436 } >$@.new && chmod +x $@.new && mv $@.new $@
e36b4f25
MW
437
438###--------------------------------------------------------------------------
439### APT configuration.
440
441## In a chroot, `/etc/apt/sources.list' links to
442## `/usr/local.schroot/etc/apt/sources.$d' for the appropriate distribution.
4004ed52 443APT_SOURCES = $(foreach d,$(DISTS),$(LOCAL)/etc/apt/sources.$d)
e36b4f25
MW
444all:: $(APT_SOURCES)
445
4004ed52 446$(foreach d,$(DISTS),$(STATE)/etc/apt/aptsrc.$d): $(STATE)/etc/apt/aptsrc.%:
e36b4f25
MW
447 $(V_AT)mkdir -p $(dir $@)
448 $(call v_tag,GEN){ \
449 echo "### -*-conf-*- GENERATED by distorted-chroot: do not edit"; \
450 echo "subscribe"; \
451 echo " debian : $*"; \
452 } >$@.new && mv $@.new $@
453
454$(APT_SOURCES): $(LOCAL)/etc/apt/sources.%: \
455 $$(APTSRC) $$($$*_APTSRC) $$(STATE)/etc/apt/aptsrc.$$*
456 $(V_AT)mkdir -p $(dir $@)
457 $(call v_tag,GEN)bin/mkaptsrc \
458 $(APTSRC) $($*_APTSRC) $(STATE)/etc/apt/aptsrc.$* \
459 >$@.new && mv $@.new $@
0539140c 460CLEANFILES += $(APT_SOURCES)
e36b4f25
MW
461
462## In a chroot, a link `/etc/apt/apt.conf.d/FOO' is created for each file in
463## `/usr/local.schroot/etc/apt/apt.conf.d/FOO'.
464APT_CONFIGS = $(addprefix $(LOCAL)/etc/apt/apt.conf.d/,$(APTCONF))
465all:: $(APT_CONFIGS)
466$(APT_CONFIGS): $(LOCAL)/etc/apt/apt.conf.d/%: \
a98c9dba 467 $$(or $$(_$$*_APTCONFSRC) etc/apt-conf.d/$$*)
e36b4f25
MW
468 $(V_AT)mkdir -p $(dir $@)
469 $(call v_tag,COPY)cp $< $@.new && mv $@.new $@
3e5b03e2
MW
470clean::; rm -f $(APT_CONFIGS)
471
472###--------------------------------------------------------------------------
473### Build hacks.
474
475check::; $(call check-executable,ERR,/usr/bin/eatmydata)
476
477EATMYDATA_HACKS += apt-get aptitude dpkg
478SYMLINK_EATMYDATA_HACKS = $(addprefix $(LOCAL)/hacks/,$(EATMYDATA_HACKS))
479all:: $(SYMLINK_EATMYDATA_HACKS)
480$(SYMLINK_EATMYDATA_HACKS): $(LOCAL)/hacks/%: \
481 $$(if $$(call symlink-ok-p,$$@,/usr/bin/eatmydata),,_force)
482 $(V_AT)mkdir -p $(dir $@)
483 $(call v_tag,SYMLINK)ln -sf /usr/bin/eatmydata $@.new && mv $@.new $@
484clean::; rm -f $(SYMLINK_EATMYDATA_HACKS)
485
486SCRIPT_HACKS += buildwrap
487COPY_SCRIPT_HACKS = $(addprefix $(LOCAL)/hacks/,$(SCRIPT_HACKS))
488all:: $(COPY_SCRIPT_HACKS)
489$(COPY_SCRIPT_HACKS): $(LOCAL)/hacks/%: bin/%
490 $(V_AT)mkdir -p $(dir $@)
491 $(call v_tag,COPY)cp $< $@.new && mv $@.new $@
492clean::; rm -f $(COPY_SCRIPT_HACKS)
e36b4f25
MW
493
494###--------------------------------------------------------------------------
495### `schroot' and `sbuild' configuration.
496
497all:: schroot-config
498schroot-config::
499.PHONY: schroot-config
500
3e5b03e2
MW
501check::; $(call check-mountpoint,WARN,/var/lib/sbuild/build)
502check::; $(call check-symlink,WARN,/build,/var/lib/sbuild/build)
503check::; $(call check-symlink,ERR,/schroot,/run/schroot/mount)
504
e36b4f25
MW
505%print-varlist = { \
506 echo "\#\#\# -*-sh-*- GENERATED by distorted-chroot: do not edit"; \
a98c9dba
MW
507 $(foreach v,$1,$(if $(call definedp,$v),\
508 echo $v=\'$(call squote,$($v))\';)) \
fb28f2a8 509}
e36b4f25
MW
510schroot-config_HASH := \
511 $(shell $(call %print-varlist,$(CONFIG_VARS)) | \
512 sha256sum | cut -c1-32)
513schroot-config_FILE = $(STATE)/config.sh-$(schroot-config_HASH)
514$(schroot-config_FILE):
515 $(V_AT)mkdir -p $(STATE)
516 $(V_AT)rm -f $(STATE)/config.sh-*
6ccac28c 517 $(call v_tag,GEN)$(call %print-varlist,$(CONFIG_VARS)) \
e36b4f25
MW
518 >$@.new && mv $@.new $@
519
520schroot-config:: $(STATE)/config.sh
521$(STATE)/config.sh: $(schroot-config_FILE)
522 $(call v_tag,SYMLINK)ln -sf $(notdir $<) $@
523
67a8479c
MW
524schroot-config:: $(LOCAL)/etc/schroot/sbuild.schroot
525$(LOCAL)/etc/schroot/sbuild.schroot: $(STATE)/bin/mkchrootconf
e36b4f25 526 $(V_AT)mkdir -p $(dir $@)
3e5b03e2
MW
527 $(call v_tag,GEN)$(STATE)/bin/mkchrootconf >$@.new && \
528 $(ROOTLY) chown root:root $@.new && mv $@.new $@
67a8479c 529CLEANFILES += $(LOCAL)/etc/schroot/sbuild.schroot
8918e451 530check::; $(call check-symlink,WARN,/etc/schroot/chroot.d/sbuild,$(ABSLOCAL)/etc/schroot/sbuild.schroot)
e36b4f25 531
67a8479c
MW
532schroot-config:: $(LOCAL)/etc/schroot/sbuild.profile/copyfiles
533$(LOCAL)/etc/schroot/sbuild.profile/copyfiles: $(schroot-config_STAMP)
e36b4f25
MW
534 $(V_AT)mkdir -p $(dir $@)
535 $(call v_tag,GEN){ \
536 echo "### -*-conf-*- GENERATED by distorted-chroot: do not edit"; \
537 for i in $(SCHROOT_COPYFILES); do echo "$$i"; done; \
538 } >$@.new && mv $@.new $@
67a8479c 539CLEANFILES += $(LOCAL)/etc/schroot/sbuild.profile/copyfiles
e36b4f25 540
67a8479c
MW
541schroot-config:: $(LOCAL)/etc/schroot/sbuild.profile/nssdatabases
542$(LOCAL)/etc/schroot/sbuild.profile/nssdatabases: $(schroot-config_STAMP)
e36b4f25
MW
543 $(V_AT)mkdir -p $(dir $@)
544 $(call v_tag,GEN){ \
545 echo "### -*-conf-*- GENERATED by distorted-chroot: do not edit"; \
546 for i in $(SCHROOT_NSSDATABASES); do echo "$$i"; done; \
547 } >$@.new && mv $@.new $@
67a8479c 548CLEANFILES += $(LOCAL)/etc/schroot/sbuild.profile/nssdatabases
e36b4f25 549
67a8479c
MW
550schroot-config:: $(LOCAL)/etc/schroot/sbuild.profile/fstab
551$(LOCAL)/etc/schroot/sbuild.profile/fstab: \
e36b4f25
MW
552 etc/sbuild.fstab.in $(schroot-config_STAMP)
553 $(V_AT)mkdir -p $(dir $@)
554 $(call v_tag,SUBST)$(call subst-file,### -*-conf-*-) \
555 <$< >$@.new && mv $@.new $@
67a8479c 556CLEANFILES += $(LOCAL)/etc/schroot/sbuild.profile/fstab
e36b4f25 557
8918e451 558check::; $(call check-symlink,WARN,/etc/schroot/sbuild,$(ABSLOCAL)/etc/schroot/sbuild.profile)
3e5b03e2 559
67a8479c
MW
560schroot-config:: $(LOCAL)/etc/sbuild.conf
561$(LOCAL)/etc/sbuild.conf: etc/sbuild.conf.in $(schroot-config_STAMP)
e36b4f25
MW
562 $(V_AT)mkdir -p $(dir $@)
563 $(call v_tag,SUBST)$(call subst-file,### -*-perl-*-) \
564 <$< >$@.new && mv $@.new $@
67a8479c 565CLEANFILES += $(LOCAL)/etc/sbuild.conf
8918e451 566check::; $(call check-symlink,WARN,/etc/sbuild/sbuild.conf,$(ABSLOCAL)/etc/sbuild.conf)
d56d9258 567check::; $(call check-executable,WARN,/usr/local.schroot/hacks/apt-get)
e36b4f25 568
3e5b03e2
MW
569SCHROOT_SCRIPTS += 11private
570SCHROOT_SCRIPTS += 15binfmt
571SCHROOT_SCRIPTS += 51chrootenv
67a8479c 572COPY_SCHROOT_SCRIPTS = $(addprefix $(LOCAL)/etc/schroot/setup.d/,$(SCHROOT_SCRIPTS))
3e5b03e2
MW
573schroot-config:: $(COPY_SCHROOT_SCRIPTS)
574$(COPY_SCHROOT_SCRIPTS): \
67a8479c 575 $(LOCAL)/etc/schroot/setup.d/%: etc/schroot-scripts/%
3e5b03e2
MW
576 $(V_AT)mkdir -p $(dir $@)
577 $(call v_tag,COPY)cp $< $@.new && mv $@.new $@
67a8479c 578CLEANFILES += $(COPY_SCHROOT_SCRIPTS)
3e5b03e2
MW
579
580CHECK_SCHROOT_SCRIPTS = $(addprefix check-script/,$(SCHROOT_SCRIPTS))
581check:: $(CHECK_SCHROOT_SCRIPTS)
582$(CHECK_SCHROOT_SCRIPTS): check-script/%:
8918e451 583 $(call check-symlink,WARN,/etc/schroot/setup.d/$*,$(ABSLOCAL)/etc/schroot/setup.d/$*)
3e5b03e2
MW
584.PHONY: $(addprefix check-script/,$(SCHROOT_SCRIPTS))
585
586###--------------------------------------------------------------------------
0a9fcbbc
MW
587### Ccache setup.
588
589CCACHE_CONFIGS = $(foreach r,$(ALL_CHROOTS), \
590 /var/lib/sbuild/build/.ccache/$(LVPREFIX)$r/ccache.conf)
591all:: $(CCACHE_CONFIGS)
592$(CCACHE_CONFIGS): /var/lib/sbuild/build/.ccache/$(LVPREFIX)%/ccache.conf: \
593 etc/ccache.conf
594 $(V_AT)mkdir -p $(dir $@)
595 $(call v_tag,COPY)cp $< $@.new && mv $@.new $@
596
597###--------------------------------------------------------------------------
3e5b03e2
MW
598### `/usr/local/' structure.
599
600LOCAL_COMMON_DIRS = share/ src/
27922408
MW
601LOCAL_EXTRA_DIRS = share/man/
602all:: $(foreach d,$(LOCAL_COMMON_DIRS) $(LOCAL_EXTRA_DIRS),$(LOCAL)/$d)
603$(foreach d,$(LOCAL_COMMON_DIRS) $(LOCAL_EXTRA_DIRS),$(LOCAL)/$d):
3e5b03e2
MW
604 $(V_AT)mkdir -p $(dir $(patsubst %/,%,$@))
605 $(call v_tag,MKDIR)mkdir $@
606
607LOCAL_ARCH_DIRS = bin/ etc/ games/ include/ lib/ libexec/ sbin/
608LOCAL_ARCH_LINKS = man
609man_LINKDEST = share/man
610all:: $(foreach a,$(ALL_ARCHS),\
611 $(LOCAL)/$a/ \
612 $(foreach d,$(LOCAL_ARCH_DIRS),$(LOCAL)/$a/$d) \
613 $(foreach d,$(LOCAL_ARCH_LINKS),$(LOCAL)/$a/$d) \
614 $(foreach d,$(LOCAL_COMMON_DIRS),$(LOCAL)/$a/$d))
615
616$(foreach a,$(ALL_ARCHS),$(LOCAL)/$a/):
617 $(call v_tag,MKDIR)mkdir $@
618$(foreach a,$(ALL_ARCHS),\
619 $(foreach d,$(LOCAL_ARCH_DIRS),$(LOCAL)/$a/$d)):
620 $(V_AT)mkdir -p $(dir $(patsubst %/,%,$@))
621 $(call v_tag,MKDIR)mkdir $@
622$(foreach a,$(ALL_ARCHS),\
623 $(foreach d,$(LOCAL_ARCH_LINKS),$(LOCAL)/$a/$d)): \
624 $$(if $$(call symlink-ok-p,$$@,$$($$(notdir $$@)_LINKDEST)),,_force)
625 $(V_AT)mkdir -p $(notdir $@)
626 $(call v_tag,SYMLINK)ln -sf $($(notdir $@)_LINKDEST) $@
627$(foreach a,$(ALL_ARCHS),\
628 $(foreach d,$(LOCAL_COMMON_DIRS),$(LOCAL)/$a/$d)): \
629 $$(if $$(call symlink-ok-p,$$@,../$$(notdir $$(patsubst %/,%,$$@))),,_force)
630 $(V_AT)mkdir -p $(dir $(patsubst %/,%,$@))
631 $(call v_tag,SYMLINK)ln -sf ../$(notdir $(patsubst %/,%,$@)) $(patsubst %/,%,$@)
632
e36b4f25 633###--------------------------------------------------------------------------
a98c9dba 634### Main chroot maintenance.
e36b4f25 635
a98c9dba 636OPTS =
642f47f9 637FRESH = 1w
a98c9dba
MW
638JOBS = chroot cross-tools pkg-build
639
640MAINTQ_ = -q
641MAINTQ_0 = -q
fe87403b 642MAINT = +$(call v_tag,MAINT)\
a98c9dba
MW
643 PYTHONPATH=$(STATE)/lib/python $(STATE)/bin/chroot-maint \
644 $(MAINTQ_$V) $(OPTS)
645
646maint: all check
647 $(MAINT) -f$(FRESH) $(JOBS)
648.PHONY: maint
e36b4f25 649
7443a1fb
MW
650###--------------------------------------------------------------------------
651### Running random commands.
652
653CMD = echo %d %a
654subst-command = $(subst %d,$(call chroot-dist,$1), \
655 $(subst %a,$(call chroot-arch,$1), \
656 $(subst %r,$1, $(CMD))))
657
658run: $(foreach c,$(ALL_CHROOTS),run/$c)
659$(foreach c,$(ALL_CHROOTS),run/$c): run/%:
660 $(V_AT)$(call v_print,RUN,$(call subst-command,$*))\
661 $(call subst-command,$*)
662
e36b4f25
MW
663###--------------------------------------------------------------------------
664### Other maintenance targets.
665
666show:; : $x
667
668clean::
669 rm -f $(CLEANFILES)
670 rm -rf $(STATE)
671
672realclean:: clean
673 rm -rf $(LOCAL)
674
675###----- That's all, folks --------------------------------------------------