]> git.proxmox.com Git - proxmox-spamassassin.git/blob - Makefile
buildsys: track debug package
[proxmox-spamassassin.git] / Makefile
1 include /usr/share/dpkg/pkg-info.mk
2
3 # howto add rule updates:
4
5 # edit paths ($srcdir) in changes.pl
6 # update changes.diff - verify changes!
7
8 # dig -t any 3.4.3.updates.spamassassin.org
9 # wget http://spamassassin.kluge.net/updates/501214.tar.gz
10 # wget http://spamassassin.kluge.net/updates/501214.tar.gz.asc
11 # gpg --verify 501214.tar.gz.asc 501214.tar.gz
12 #
13 # or just use: make sa-updates.tgz (from the last stable version)
14 # warning: start with an empty sa-updates.tgz, install the package,
15 # the run sa-update to generate the updates
16 #
17 # Note: we also add KAM.cf from
18 # http://www.pccc.com/downloads/SpamAssassin/contrib/KAM.cf
19 #
20 # edit debin/rules to apply updates
21
22 OPKGNAME = Mail-SpamAssassin-${DEB_VERSION_UPSTREAM}
23 NPKGNAME = proxmox-spamassassin_${DEB_VERSION_UPSTREAM}
24 DEB = proxmox-spamassassin_${DEB_VERSION_UPSTREAM_REVISION}_amd64.deb
25 DBG_DEB = proxmox-spamassassin-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_amd64.deb
26 DEBS = ${DEB} ${DBG_DEB}
27 DSC = proxmox-spamassassin_${DEB_VERSION_UPSTREAM_REVISION}.dsc
28
29 EXTRA_RULES = KAM.cf
30
31 SA_UPDATE_GPG_DIR = .sa-update-gpghome
32
33 deb: ${DEB}
34
35 ${DEB} ${DBG_DEB}: ${NPKGNAME}
36 cd ${NPKGNAME}; dpkg-buildpackage -b -us -uc -rfakeroot
37 lintian ${DEB}
38
39 dsc: ${DSC}
40
41 ${DSC}: ${NPKGNAME}
42 cd ${NPKGNAME}; dpkg-buildpackage -S -us -uc -rfakeroot -d
43 lintian ${DSC}
44
45 .PHONY: update-upstream
46 update-upstream: ${OPKGNAME}.tar.gz
47 rm -rf upstream
48 tar -xzf $<
49 mv ${OPKGNAME} upstream
50
51 ${NPKGNAME}.orig.tar.gz: upstream/
52 rm -rf ${NPKGNAME}
53 cp -a upstream ${NPKGNAME}
54 tar -czf $@ ${NPKGNAME}
55
56 ${NPKGNAME}: sa-updates ${EXTRA_RULES} ${NPKGNAME}.orig.tar.gz
57 cp -a debian $@
58 mkdir -p $@/debian/tree/usr/share/spamassassin
59 rsync -av sa-updates/ $@/debian/tree/usr/share/spamassassin
60 mkdir -p $@/debian/tree/usr/share/spamassassin-extra
61 cp -a ${EXTRA_RULES} $@/debian/tree/usr/share/spamassassin-extra
62
63 ${OPKGNAME}.tar.gz:
64 rm -f $@*
65 curl -L -o '$@#1.tmp' 'https://www-eu.apache.org/dist/spamassassin/source/$@{,.asc}'
66 mv $@.tmp $@
67 mv $@.asc.tmp $@.asc
68 gpgv --keyring ./sa-releasekey.gpg $@.asc $@
69
70 KAM.cf:
71 wget https://www.pccc.com/downloads/SpamAssassin/contrib/KAM.cf -O $@.tmp
72 mv KAM.cf.tmp $@
73
74 ${SA_UPDATE_GPG_DIR}/.prepared: ${OPKGNAME}.tar.gz
75 rm -rf ${SA_UPDATE_GPG_DIR}
76 mkdir --mode=0700 -p ${SA_UPDATE_GPG_DIR}
77 tar --strip-components 2 -xzf ${OPKGNAME}.tar.gz ${OPKGNAME}/rules/sa-update-pubkey.txt
78 sa-update --gpghomedir ${SA_UPDATE_GPG_DIR} --import sa-update-pubkey.txt
79 rm sa-update-pubkey.txt
80 touch $@
81
82 .PHONY: update-sa
83 update-sa: ${SA_UPDATE_GPG_DIR}/.prepared
84 rm -rf updates.tmp
85 sa-update --gpghomedir ${SA_UPDATE_GPG_DIR} --updatedir updates.tmp --channel updates.spamassassin.org
86 rsync -av --delete --exclude=local.cf --exclude=regression_tests.cf --exclude=*.txt --exclude=MIRRORED.BY updates.tmp/updates_spamassassin_org/ sa-updates
87
88 .PHONY: upload
89 upload: ${DEBS}
90 tar cf - ${DEBS} | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist bullseye
91
92 .PHONY: clean distclean
93 clean:
94 rm -rf *~ debian/*~ *.deb proxmox-spamassassin_* updates.tmp ${SA_UPDATE_GPG_DIR} ${OPKGNAME}.tar.gz.*
95
96 distclean: clean
97 rm -rf ${OPKGNAME}.*
98
99 .PHONY: dinstall
100 dinstall: ${DEB}
101 dpkg -i ${DEB}