View | Details | Raw Unified | Return to bug 262231 | Differences between
and this patch

Collapse All | Expand All

(-)mail/Makefile (+1 lines)
Lines 519-524 Link Here
519
    SUBDIR += py-pyspf
519
    SUBDIR += py-pyspf
520
    SUBDIR += py-python-slimta
520
    SUBDIR += py-python-slimta
521
    SUBDIR += py-pyzmail
521
    SUBDIR += py-pyzmail
522
    SUBDIR += py-rfc6555
522
    SUBDIR += py-spf-engine
523
    SUBDIR += py-spf-engine
523
    SUBDIR += py-validate_email
524
    SUBDIR += py-validate_email
524
    SUBDIR += pymsgauth
525
    SUBDIR += pymsgauth
(-)mail/py-rfc6555/Makefile (+23 lines)
Added Link Here
1
PORTNAME=	rfc6555
2
PORTVERSION=	0.1.0
3
DISTVERSIONPREFIX=	v
4
CATEGORIES=	mail python
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	dereks@lifeofadishwasher.com
8
COMMENT=	Happy Eyeballs Algorithm described in RFC 6555
9
WWW=		https://github.com/sethmlarson/rfc6555
10
11
LICENSE=	APACHE20
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
USES=		pytest python
15
# github port since tests are not included in sdist
16
# https://github.com/sethmlarson/rfc6555/pull/8
17
USE_GITHUB=	yes
18
GH_ACCOUNT=	sethmlarson
19
USE_PYTHON=	autoplist distutils
20
21
NO_ARCH=	yes
22
23
.include <bsd.port.mk>
(-)mail/py-rfc6555/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1646273914
2
SHA256 (sethmlarson-rfc6555-v0.1.0_GH0.tar.gz) = 8a15da0f619227c6938be27c64e844668701bca65205002eda789a4fd883b23f
3
SIZE (sethmlarson-rfc6555-v0.1.0_GH0.tar.gz) = 11216
(-)mail/py-rfc6555/pkg-descr (+3 lines)
Added Link Here
1
Synchronous Python implementation of the Happy Eyeballs Algorithm
2
described in RFC 6555. Provided with a single file and dead-simple
3
API to allow easy vendoring and integration into other projects.

Return to bug 262231