mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
c180ca8b31
aioh2 is an HTTP/2 implementation with hyper-h2 on Python 3 asyncio. Features: - Asynchronous HTTP/2 client and server - Multiplexing streams of data with managed flow and priority control - Optional tickless health check WWW: https://github.com/decentfox/aioh2
24 lines
564 B
Makefile
24 lines
564 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aioh2
|
|
PORTVERSION= 0.2.2
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= HTTP/2 implementation with hyper-h2 on Python 3 asyncio
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}h2>=3:www/py-h2@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}priority>=1.3.0:www/py-priority@${PY_FLAVOR}
|
|
|
|
NO_ARCH= yes
|
|
USE_PYTHON= autoplist distutils
|
|
USES= python:3.4+
|
|
|
|
.include <bsd.port.mk>
|