]> andersk Git - config-package-dev.git/blame - check-files.mk
Make check-files aware of multiarch
[config-package-dev.git] / check-files.mk
CommitLineData
ab8e2a67
TA
1# -*- mode: makefile; coding: utf-8 -*-
2# Copyright © 2007-2008 Anders Kaseorg <andersk@mit.edu> and
3# Tim Abbott <tabbott@mit.edu>
4#
5# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU General Public License as
7# published by the Free Software Foundation; either version 2, or (at
8# your option) any later version.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18# 02111-1307 USA.
19
56709134
TA
20# Don't include check-files.mk in your rules files directly; instead
21# use config-package.mk.
22
23# check-files.mk is used to verify that files on local disk have not
24# been modified from the upstream packaged version. Its only API
25# function is adding the following function as a dependency:
26#
27# $(call debian_check_files,filename)
28#
29# Returns the path to a copy of filename that is verified to be
30# unmodified from the version shipped by the distribution (by checking
31# md5sums). The function causes the package to fail to build if the
32# relevant configuration file has been modified on the build machine.
33
ab8e2a67
TA
34ifndef _cdbs_rules_check_files
35_cdbs_rules_check_files = 1
36
37include /usr/share/cdbs/1/rules/divert.mk
38
56709134 39DEB_CHECK_FILES_TMPDIR = debian/check_file_copies
ab8e2a67
TA
40
41debian_check_files_source = $(if $(DEB_CHECK_FILES_SOURCE_$(1)),$(DEB_CHECK_FILES_SOURCE_$(1)),$(1))
936cb21e 42debian_check_files_check = $(call divert_files_replace_name,$(call debian_check_files_source,$(1)))
ab8e2a67 43
56709134
TA
44debian_check_files = $(patsubst %,$(DEB_CHECK_FILES_TMPDIR)%,$(1))
45undebian_check_files = $(patsubst $(DEB_CHECK_FILES_TMPDIR)%,%,$(1))
ab8e2a67
TA
46
47debian_check_files_tmp = $(patsubst %,%.tmp,$(call debian_check_files,$(1)))
48undebian_check_files_tmp = $(call undebian_check_files,$(patsubst %.tmp,%,$(1)))
49
56709134
TA
50# We need a level of indirection here in order to make sure that
51# normal makefile targets, like "clean", are not affected by the
52# debian_check_files rules.
ab8e2a67
TA
53$(call debian_check_files,%): $(call debian_check_files_tmp,%)
54 mv $< $@
55
56709134
TA
56# We check md5sums from both /var/lib/dpkg/info/$(package).md5sums
57# (the md5sums database for non-conffiles) and the conffiles database
58# used for prompting about conffiles being changed (via dpkg-query).
59#
60# There is some wrangling here because the formats of these sources differ.
ab8e2a67
TA
61$(call debian_check_files_tmp,%): target = $(call undebian_check_files_tmp,$@)
62$(call debian_check_files_tmp,%): name = $(call debian_check_files_check,$(target))
63$(call debian_check_files_tmp,%): truename = $(shell /usr/sbin/dpkg-divert --truename $(name))
262d88c4 64$(call debian_check_files_tmp,%): package = $(shell dpkg -S $(name) | sed -n '/^diversion by /! s/: .*$$// p')
ab8e2a67 65$(call debian_check_files_tmp,%): $(truename)
50bf7563 66 [ -n "$(package)" ]
ab8e2a67
TA
67 mkdir -p $(@D)
68 cp "$(truename)" $@
3aab360a 69 set -e; \
262d88c4
AK
70 md5sums="$$(dpkg-query --control-path $(package) md5sums 2>/dev/null)" || \
71 md5sums=/var/lib/dpkg/info/$(package).md5sums; \
ab8e2a67
TA
72 md5=$$(dpkg-query --showformat='$${Conffiles}\n' --show $(package) | \
73 sed -n 's,^ $(name) \([0-9a-f]*\)$$,\1 $@, p'); \
74 if [ -n "$$md5" ]; then \
75 echo "$$md5" | md5sum -c; \
262d88c4 76 elif [ -e "$$md5sums" ]; then \
ab8e2a67 77 md5=$$(sed -n 's,^\([0-9a-f]*\) $(patsubst /%,%,$(name))$$,\1 $@, p' \
262d88c4 78 "$$md5sums"); \
ab8e2a67
TA
79 [ -n "$$md5" ] && echo "$$md5" | md5sum -c; \
80 else \
56709134
TA
81 echo "config-package-dev: warning: $(package) does not include md5sums!"; \
82 echo "config-package-dev: warning: md5sum for $(name) not verified."; \
ab8e2a67
TA
83 fi
84
85clean::
56709134 86 rm -rf $(DEB_CHECK_FILES_TMPDIR)
ab8e2a67
TA
87
88endif
This page took 1.761029 seconds and 5 git commands to generate.