Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Feb 2019 00:02:10 +0000 (UTC)
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492883 - in head/net: . py-h11
Message-ID:  <201902140002.x1E02AVL039933@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bofh
Date: Thu Feb 14 00:02:09 2019
New Revision: 492883
URL: https://svnweb.freebsd.org/changeset/ports/492883

Log:
  [NEW] net/py-h11: Pure-Python, bring-your-own-I/O implementation of HTTP/1.1
  
  This is a little HTTP/1.1 library written from scratch in Python, heavily
  inspired by hyper-h2.
  
  WWW: https://pypi.org/project/h11/

Added:
  head/net/py-h11/
  head/net/py-h11/Makefile   (contents, props changed)
  head/net/py-h11/distinfo   (contents, props changed)
  head/net/py-h11/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Wed Feb 13 23:53:13 2019	(r492882)
+++ head/net/Makefile	Thu Feb 14 00:02:09 2019	(r492883)
@@ -1036,6 +1036,7 @@
     SUBDIR += py-gntp
     SUBDIR += py-gspread
     SUBDIR += py-gspreadsheet
+    SUBDIR += py-h11
     SUBDIR += py-haproxy-log-analysis
     SUBDIR += py-haproxyctl
     SUBDIR += py-httpstat

Added: head/net/py-h11/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-h11/Makefile	Thu Feb 14 00:02:09 2019	(r492883)
@@ -0,0 +1,20 @@
+# Created by: Muhammad Moinur Rahman <bofh@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	h11
+PORTVERSION=	0.8.1
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	bofh@FreeBSD.org
+COMMENT=	Pure-Python, bring-your-own-I/O implementation of HTTP/1.1
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/net/py-h11/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-h11/distinfo	Thu Feb 14 00:02:09 2019	(r492883)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1550099765
+SHA256 (h11-0.8.1.tar.gz) = acca6a44cb52a32ab442b1779adf0875c443c689e9e028f8d831a3769f9c5208
+SIZE (h11-0.8.1.tar.gz) = 94009

Added: head/net/py-h11/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-h11/pkg-descr	Thu Feb 14 00:02:09 2019	(r492883)
@@ -0,0 +1,4 @@
+This is a little HTTP/1.1 library written from scratch in Python, heavily
+inspired by hyper-h2.
+
+WWW: https://pypi.org/project/h11/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902140002.x1E02AVL039933>