Add postfix spf stuff

This commit is contained in:
moparisthebest
2016-12-02 01:05:29 -05:00
parent a77fde4bd2
commit 35dc2f1141
9 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
pkgbase = python-authres
pkgdesc = Python Authentication-Results headers generation and parsing
pkgver = 0.800
pkgrel = 1
url = http://launchpad.net/authentication-results-python
arch = any
license = Apache
depends = python
conflicts = python2-authres
source = https://launchpad.net/authentication-results-python/0.800/0.8/+download/authres-0.800.tar.gz
sha256sums = d28e3976a7d418917cbbf384018aa0e8a0489e41bfd9847309c5f8efb19f6efd
pkgname = python-authres

View File

@@ -0,0 +1,34 @@
# Maintainer: Rich Li <rich at dranek com>
# Contributor: Thomas Haider <t.haider@deprecate.de>
# Contributor: Filip S. Adamsen <fsa [at] fsadev [dot] com>
# Contributor: Samed Beyribey <ras0ir@eventualis.org>
pkgname=python-authres
_pkgname=authentication-results-python
pkgver=0.800
_pkgver=0.8
pkgrel=1
pkgdesc="Python Authentication-Results headers generation and parsing"
arch=('any')
url="http://launchpad.net/authentication-results-python"
license=('Apache')
depends=('python')
conflicts=('python2-authres')
source=(https://launchpad.net/$_pkgname/$pkgver/$_pkgver/+download/authres-$pkgver.tar.gz)
sha256sums=('d28e3976a7d418917cbbf384018aa0e8a0489e41bfd9847309c5f8efb19f6efd')
build() {
cd "$srcdir/authres-$pkgver"
python setup.py build
}
check() {
cd "$srcdir/authres-$pkgver"
# python -m authres -v
python -m authres
}
package() {
cd "$srcdir/authres-$pkgver"
python setup.py install --root=$pkgdir --optimize=1
}