python3-authheaders: initial commit, version 0.16.2

This commit is contained in:
Tim Biermann 2024-02-17 16:20:49 +01:00
parent b7e0c9f9d4
commit 9d8c35c522
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,23 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/dmarc-policy-find
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/entry_points.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/not-zip-safe
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders-0.16.2-py3.10.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.10/site-packages/authheaders/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders/__init__.py
drwxr-xr-x root/root usr/lib/python3.10/site-packages/authheaders/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders/__pycache__/__init__.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders/__pycache__/dmarc_lookup.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders/__pycache__/dmarcpolicyfind.cpython-310.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders/dmarc_lookup.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/authheaders/dmarcpolicyfind.py
-rw------- root/root usr/lib/python3.10/site-packages/authheaders/public_suffix_list.txt

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wwi5cxACi5ZMXQwaUX5uD6u23uBWk5/H1lxh+yTFiS0us19RI9eWDXjajrsV9Y1XKbZkJWjeXaAhuto4fQLUQQ=
SHA256 (Pkgfile) = 01d42b96875c0db4afd48129f8dbc7670c50165b3d679d62e431f0f145fc9f0f
SHA256 (.footprint) = acd4df89430903d2f8ec909054028309c90172d64a1493c303e57496f837c122
SHA256 (authheaders-0.16.2.tar.gz) = e371b893e73e7e5853f033c44079f030b952c8b87d41f935b194469778fd4d65

View File

@ -0,0 +1,18 @@
# Description: A library wrapping email authentication header verification and generation
# URL: https://github.com/ValiMail/authentication-headers
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: python3-dkim python3-publicsuffix-list python3-publicsuffix2
name=python3-authheaders
version=0.16.2
release=1
source=(https://pypi.org/packages/source/a/authheaders/authheaders-$version.tar.gz)
build() {
cd authheaders-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build
}