Robin Candau pushed to branch main at Arch Linux / Packaging / Packages / postfix-tlspol
Commits: 9ccdab12 by Robin Candau at 2025-02-22T18:22:00+01:00 upgpkg: 1.7.2-1: New upstream release Add install script to display the requirement on a DNSSEC-validating DNS server to users - - - - - 3 changed files: - .SRCINFO - PKGBUILD - + postfix-tlspol.install Changes: ===================================== .SRCINFO ===================================== @@ -1,8 +1,9 @@ pkgbase = postfix-tlspol pkgdesc = Lightweight MTA-STS + DANE/TLSA resolver and TLS policy server for Postfix, prioritizing DANE - pkgver = 1.7.1 + pkgver = 1.7.2 pkgrel = 1 url = https://github.com/Zuplu/postfix-tlspol + install = postfix-tlspol.install arch = x86_64 license = MIT makedepends = go @@ -11,9 +12,9 @@ pkgbase = postfix-tlspol optdepends = valkey: database option for caching support optdepends = redis: databse option for caching support backup = etc/postfix-tlspol/config.yaml - source = postfix-tlspol-1.7.1.tar.gz::https://github.com/Zuplu/postfix-tlspol/archive/refs/tags/v1.7.1.tar.gz + source = postfix-tlspol-1.7.2.tar.gz::https://github.com/Zuplu/postfix-tlspol/archive/refs/tags/v1.7.2.tar.gz source = systemd-service.patch - sha256sums = b49709f0c37d27ea0c54b5ae183e14d543deeafb9c5ac4f7a370731c22d343c3 + sha256sums = 1ec59970f4d310bfb5ce3c69ed061ecd825ac9deceb082eb43fb43baeb96cdb6 sha256sums = 949d6ef0b843b3e40db26fc0a7c48454b623aa782bf132c8d5276c0338f2b768 pkgname = postfix-tlspol ===================================== PKGBUILD ===================================== @@ -1,7 +1,7 @@ # Maintainer: Robin Candau <an...@archlinux.org> pkgname=postfix-tlspol -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Lightweight MTA-STS + DANE/TLSA resolver and TLS policy server for Postfix, prioritizing DANE" url="https://github.com/Zuplu/postfix-tlspol" @@ -12,9 +12,10 @@ makedepends=('go') optdepends=('valkey: database option for caching support' 'redis: databse option for caching support') backup=("etc/${pkgname}/config.yaml") +install="${pkgname}.install" source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz" 'systemd-service.patch') -sha256sums=('b49709f0c37d27ea0c54b5ae183e14d543deeafb9c5ac4f7a370731c22d343c3' +sha256sums=('1ec59970f4d310bfb5ce3c69ed061ecd825ac9deceb082eb43fb43baeb96cdb6' '949d6ef0b843b3e40db26fc0a7c48454b623aa782bf132c8d5276c0338f2b768') prepare(){ ===================================== postfix-tlspol.install ===================================== @@ -0,0 +1,9 @@ +post_install() { + cat <<EOM + +:: Note that postfix-tlspol requires a DNSSEC-validating DNS server. + + See https://wiki.archlinux.org/title/Domain_name_resolution#DNS_servers for a list of options. + +EOM +} View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/postfix-tlspol/-/commit/9ccdab12dca03c2a6d726c188cf6a07d0bff1054 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/postfix-tlspol/-/commit/9ccdab12dca03c2a6d726c188cf6a07d0bff1054 You're receiving this email because of your account on gitlab.archlinux.org.