Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Apr 2015 13:13:47 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r384157 - in head/www: . py-hyper
Message-ID:  <201504171313.t3HDDlWN064927@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Fri Apr 17 13:13:46 2015
New Revision: 384157
URL: https://svnweb.freebsd.org/changeset/ports/384157

Log:
  [NEW] www/py-hyper: HTTP/2 Client for Python
  
  HTTP is changing under our feet. HTTP/1.1, our old friend, is being
  supplemented by the brand new HTTP/2 standard. HTTP/2 provides many
  benefits: improved speed, lower bandwidth usage, better connection
  management, and more.
  
  hyper supports the final draft of the HTTP/2 specification:
  additionally, it provides support for drafts 14, 15, and 16 of the
  HTTP/2 specification. It  also supports the final draft of the HPACK
  specification
  
  WWW: https://hyper.readthedocs.org

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Fri Apr 17 12:25:47 2015	(r384156)
+++ head/www/Makefile	Fri Apr 17 13:13:46 2015	(r384157)
@@ -1573,6 +1573,7 @@
     SUBDIR += py-html5lib
     SUBDIR += py-http-parser
     SUBDIR += py-httplib2
+    SUBDIR += py-hyper
     SUBDIR += py-imdbpy
     SUBDIR += py-jonpy
     SUBDIR += py-jswebkit

Added: head/www/py-hyper/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-hyper/Makefile	Fri Apr 17 13:13:46 2015	(r384157)
@@ -0,0 +1,25 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	hyper
+PORTVERSION=	0.3.1
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	HTTP/2 Client for Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} == 330 || (${PYTHON_VER} == 2.7 && ${PYTHON_REL} < 279)
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>=0.14:${PORTSDIR}/security/py-openssl
+.endif
+
+.include <bsd.port.post.mk>

Added: head/www/py-hyper/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-hyper/distinfo	Fri Apr 17 13:13:46 2015	(r384157)
@@ -0,0 +1,2 @@
+SHA256 (hyper-0.3.1.tar.gz) = a5bf8ec59a89a45549e03886505b1a797b7c2bd3b77f1c7a06d46a282c215239
+SIZE (hyper-0.3.1.tar.gz) = 250572

Added: head/www/py-hyper/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-hyper/pkg-descr	Fri Apr 17 13:13:46 2015	(r384157)
@@ -0,0 +1,11 @@
+HTTP is changing under our feet. HTTP/1.1, our old friend, is being
+supplemented by the brand new HTTP/2 standard. HTTP/2 provides many
+benefits: improved speed, lower bandwidth usage, better connection
+management, and more.
+
+hyper supports the final draft of the HTTP/2 specification:
+additionally, it provides support for drafts 14, 15, and 16 of the
+HTTP/2 specification. It  also supports the final draft of the HPACK
+specification
+
+WWW: https://hyper.readthedocs.org



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