summaryrefslogtreecommitdiff
path: root/pcr/pypolicyd-spf/PKGBUILD
blob: 72d333af2e7209479463d218d4ebbe4d768130f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Maintainer: Luke Shumaker <lukeshu@parabola.nu>
# Maintainer (aur:python-postfix-policyd-spf): Hao Zhang theivorytower [at] gmail [dot] com>
# Maintainer (aur:python2-postfix-policyd-spf): Filip S. Adamsen <fsa [at] fsadev [dot] com>
# Contributor: Samed Beyribey <ras0ir@eventualis.org>

pkgname=pypolicyd-spf
pkgver=2.0.2
_pkgver=${pkgver%.*}
pkgrel=5
pkgdesc="Python Postfix Sender Policy Framework (SPF) filter daemon"
arch=('any')
url="https://launchpad.net/${pkgname}/"
license=('GPL')

makedepends=('python-setuptools')
depends=('postfix' 'python-pyspf')
optdepends=('python-authres: RFC 7001 Authentication-Results header support')

options=(!emptydirs)
backup=(etc/python-policyd-spf/policyd-spf.conf)

source=("https://launchpad.net/$pkgname/${_pkgver}/$pkgver/+download/$pkgname-$pkgver.tar.gz"{,.asc})
md5sums=('cc50281cc13a8984de058ddc5ae8dcaf'
         'SKIP')
validpgpkeys=('E7729BFFBE85400FEEEE23B178D7DEFB9AD59AF1') # Donald Scott Kitterman

build() {
  cd "$pkgname-$pkgver"
  # Don't use build a modern 'wheel' instead of 'egg' (and so don't
  # use modern 'python-builder' and 'python-installer').  The way
  # setup.py is written, the 'wheel' will be broken and won't
  # correctly install files in '/etc'.
  python setup.py build
}

package() {
  _python_version=$(pacman -S --print-format='%v' python|cut -d- -f1|cut -d. -f1,2)
  depends+=("python>=${_python_version}" "python<${_python_version%.*}.$(( ${_python_version##*.} + 1 ))")

  cd "$pkgname-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -m644 policyd-spf.conf.commented "$pkgdir"/etc/python-policyd-spf
}