]> git.proxmox.com Git - proxmox-spamassassin.git/blob - Makefile
c8af2ad785769cb3c6238a3d7f1837a35735926f
[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 DSC = proxmox-spamassassin_${DEB_VERSION_UPSTREAM_REVISION}.dsc
26
27 EXTRA_RULES = KAM.cf
28
29 SA_UPDATE_GPG_DIR = .sa-update-gpghome
30
31 deb: ${DEB}
32
33 ${DEB}: ${NPKGNAME}
34 cd ${NPKGNAME}; dpkg-buildpackage -b -us -uc -rfakeroot
35 lintian ${DEB}
36
37 dsc: ${DSC}
38
39 ${DSC}: ${NPKGNAME}
40 cd ${NPKGNAME}; dpkg-buildpackage -S -us -uc -rfakeroot -d
41 lintian ${DSC}
42
43 .PHONY: update-upstream
44 update-upstream: ${OPKGNAME}.tar.gz
45 rm -rf upstream
46 tar -xzf $<
47 mv ${OPKGNAME} upstream
48
49 ${NPKGNAME}.orig.tar.gz: upstream/
50 rm -rf ${NPKGNAME}
51 cp -a upstream ${NPKGNAME}
52 tar -czf $@ ${NPKGNAME}
53
54 ${NPKGNAME}: sa-updates ${EXTRA_RULES} ${NPKGNAME}.orig.tar.gz
55 cp -a debian $@
56 mkdir -p $@/debian/tree/usr/share/spamassassin
57 rsync -av sa-updates/ $@/debian/tree/usr/share/spamassassin
58 mkdir -p $@/debian/tree/usr/share/spamassassin-extra
59 cp -a ${EXTRA_RULES} $@/debian/tree/usr/share/spamassassin-extra
60
61 ${OPKGNAME}.tar.gz:
62 rm -f $@*
63 curl -L -o '$@#1.tmp' 'https://www-eu.apache.org/dist/spamassassin/source/$@{,.asc}'
64 mv $@.tmp $@
65 mv $@.asc.tmp $@.asc
66 gpgv --keyring ./sa-releasekey.gpg $@.asc $@
67
68 KAM.cf:
69 wget https://www.pccc.com/downloads/SpamAssassin/contrib/KAM.cf -O $@.tmp
70 mv KAM.cf.tmp $@
71
72 ${SA_UPDATE_GPG_DIR}/.prepared: ${OPKGNAME}.tar.gz
73 rm -rf ${SA_UPDATE_GPG_DIR}
74 mkdir --mode=0700 -p ${SA_UPDATE_GPG_DIR}
75 tar --strip-components 2 -xzf ${OPKGNAME}.tar.gz ${OPKGNAME}/rules/sa-update-pubkey.txt
76 sa-update --gpghomedir ${SA_UPDATE_GPG_DIR} --import sa-update-pubkey.txt
77 rm sa-update-pubkey.txt
78 touch $@
79
80 .PHONY: update-sa
81 update-sa: ${SA_UPDATE_GPG_DIR}/.prepared
82 rm -rf updates.tmp
83 sa-update --gpghomedir ${SA_UPDATE_GPG_DIR} --updatedir updates.tmp --channel updates.spamassassin.org
84 rsync -av --delete --exclude=local.cf --exclude=regression_tests.cf --exclude=*.txt --exclude=MIRRORED.BY updates.tmp/updates_spamassassin_org/ sa-updates
85
86 .PHONY: upload
87 upload: ${DEB}
88 tar cf - ${DEB} | ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist stretch
89
90 CLEANFILES = *~ debian/*~ *.deb proxmox-spamassassin_* updates.tmp ${SA_UPDATE_GPG_DIR} ${OPKGNAME}.tar.gz.*
91
92 .PHONY: clean
93 clean:
94 rm -rf ${CLEANFILES}
95
96 .PHONY: dinstall
97 dinstall: ${DEB}
98 dpkg -i ${DEB}