pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Jul 14 10:44:59 UTC 2017

Modified Files:
        pkgsrc/net: Makefile
Added Files:
        pkgsrc/net/py-geventhttpclient: DESCR Makefile PLIST distinfo

Log Message:
A high performance, concurrent HTTP client library for python using gevent.

gevent.httplib support was removed in gevent 1.0, geventhttpclient now provides
that missing functionality.

geventhttpclient uses a fast http parser, written in C, originating from nginx,
extracted and modified by Joyent.

geventhttpclient has been specifically designed for high concurrency, streaming
and support HTTP 1.1 persistent connections. More generally it is designed for
efficiently pulling from REST APIs and streaming APIs like Twitter's.

Safe SSL support is provided by default. geventhttpclient depends on the
certifi CA Bundle. This is the same CA Bundle which ships with the Requests
codebase, and is derived from Mozilla Firefox's canonical set.


To generate a diff of this commit:
cvs rdiff -u -r1.1167 -r1.1168 pkgsrc/net/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/net/py-geventhttpclient/DESCR \
    pkgsrc/net/py-geventhttpclient/Makefile \
    pkgsrc/net/py-geventhttpclient/PLIST \
    pkgsrc/net/py-geventhttpclient/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/Makefile
diff -u pkgsrc/net/Makefile:1.1167 pkgsrc/net/Makefile:1.1168
--- pkgsrc/net/Makefile:1.1167  Sun Jul  9 06:53:06 2017
+++ pkgsrc/net/Makefile Fri Jul 14 10:44:59 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1167 2017/07/09 06:53:06 adam Exp $
+# $NetBSD: Makefile,v 1.1168 2017/07/14 10:44:59 adam Exp $
 #
 
 COMMENT=       Networking tools
@@ -634,6 +634,7 @@ SUBDIR+=    py-eventlib
 SUBDIR+=       py-foolscap
 SUBDIR+=       py-gandi.cli
 SUBDIR+=       py-gevent
+SUBDIR+=       py-geventhttpclient
 SUBDIR+=       py-google
 SUBDIR+=       py-google-cloud-sdk
 SUBDIR+=       py-hatop

Added files:

Index: pkgsrc/net/py-geventhttpclient/DESCR
diff -u /dev/null pkgsrc/net/py-geventhttpclient/DESCR:1.1
--- /dev/null   Fri Jul 14 10:44:59 2017
+++ pkgsrc/net/py-geventhttpclient/DESCR        Fri Jul 14 10:44:59 2017
@@ -0,0 +1,15 @@
+A high performance, concurrent HTTP client library for python using gevent.
+
+gevent.httplib support was removed in gevent 1.0, geventhttpclient now provides
+that missing functionality.
+
+geventhttpclient uses a fast http parser, written in C, originating from nginx,
+extracted and modified by Joyent.
+
+geventhttpclient has been specifically designed for high concurrency, streaming
+and support HTTP 1.1 persistent connections. More generally it is designed for
+efficiently pulling from REST APIs and streaming APIs like Twitter's.
+
+Safe SSL support is provided by default. geventhttpclient depends on the
+certifi CA Bundle. This is the same CA Bundle which ships with the Requests
+codebase, and is derived from Mozilla Firefox's canonical set.
Index: pkgsrc/net/py-geventhttpclient/Makefile
diff -u /dev/null pkgsrc/net/py-geventhttpclient/Makefile:1.1
--- /dev/null   Fri Jul 14 10:44:59 2017
+++ pkgsrc/net/py-geventhttpclient/Makefile     Fri Jul 14 10:44:59 2017
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2017/07/14 10:44:59 adam Exp $
+
+DISTNAME=      geventhttpclient-1.3.1
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    net python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=g/geventhttpclient/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/gwik/geventhttpclient
+COMMENT=       HTTP client library for gevent
+LICENSE=       mit
+
+DEPENDS+=      ${PYPKGPREFIX}-gevent>=0.13:../../net/py-gevent
+DEPENDS+=      ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi
+DEPENDS+=      ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
+
+post-extract:
+       ${RM} -f -r ${WRKSRC}/src/geventhttpclient/tests/__pycache__
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/net/py-geventhttpclient/PLIST
diff -u /dev/null pkgsrc/net/py-geventhttpclient/PLIST:1.1
--- /dev/null   Fri Jul 14 10:44:59 2017
+++ pkgsrc/net/py-geventhttpclient/PLIST        Fri Jul 14 10:44:59 2017
@@ -0,0 +1,64 @@
+@comment $NetBSD: PLIST,v 1.1 2017/07/14 10:44:59 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/geventhttpclient/__init__.py
+${PYSITELIB}/geventhttpclient/__init__.pyc
+${PYSITELIB}/geventhttpclient/__init__.pyo
+${PYSITELIB}/geventhttpclient/_parser.so
+${PYSITELIB}/geventhttpclient/client.py
+${PYSITELIB}/geventhttpclient/client.pyc
+${PYSITELIB}/geventhttpclient/client.pyo
+${PYSITELIB}/geventhttpclient/connectionpool.py
+${PYSITELIB}/geventhttpclient/connectionpool.pyc
+${PYSITELIB}/geventhttpclient/connectionpool.pyo
+${PYSITELIB}/geventhttpclient/header.py
+${PYSITELIB}/geventhttpclient/header.pyc
+${PYSITELIB}/geventhttpclient/header.pyo
+${PYSITELIB}/geventhttpclient/httplib.py
+${PYSITELIB}/geventhttpclient/httplib.pyc
+${PYSITELIB}/geventhttpclient/httplib.pyo
+${PYSITELIB}/geventhttpclient/response.py
+${PYSITELIB}/geventhttpclient/response.pyc
+${PYSITELIB}/geventhttpclient/response.pyo
+${PYSITELIB}/geventhttpclient/tests/oncert.pem
+${PYSITELIB}/geventhttpclient/tests/server.crt
+${PYSITELIB}/geventhttpclient/tests/server.key
+${PYSITELIB}/geventhttpclient/tests/test_client.py
+${PYSITELIB}/geventhttpclient/tests/test_client.pyc
+${PYSITELIB}/geventhttpclient/tests/test_client.pyo
+${PYSITELIB}/geventhttpclient/tests/test_headers.py
+${PYSITELIB}/geventhttpclient/tests/test_headers.pyc
+${PYSITELIB}/geventhttpclient/tests/test_headers.pyo
+${PYSITELIB}/geventhttpclient/tests/test_httplib.py
+${PYSITELIB}/geventhttpclient/tests/test_httplib.pyc
+${PYSITELIB}/geventhttpclient/tests/test_httplib.pyo
+${PYSITELIB}/geventhttpclient/tests/test_keep_alive.py
+${PYSITELIB}/geventhttpclient/tests/test_keep_alive.pyc
+${PYSITELIB}/geventhttpclient/tests/test_keep_alive.pyo
+${PYSITELIB}/geventhttpclient/tests/test_network_failures.py
+${PYSITELIB}/geventhttpclient/tests/test_network_failures.pyc
+${PYSITELIB}/geventhttpclient/tests/test_network_failures.pyo
+${PYSITELIB}/geventhttpclient/tests/test_no_module_ssl.py
+${PYSITELIB}/geventhttpclient/tests/test_no_module_ssl.pyc
+${PYSITELIB}/geventhttpclient/tests/test_no_module_ssl.pyo
+${PYSITELIB}/geventhttpclient/tests/test_parser.py
+${PYSITELIB}/geventhttpclient/tests/test_parser.pyc
+${PYSITELIB}/geventhttpclient/tests/test_parser.pyo
+${PYSITELIB}/geventhttpclient/tests/test_ssl.py
+${PYSITELIB}/geventhttpclient/tests/test_ssl.pyc
+${PYSITELIB}/geventhttpclient/tests/test_ssl.pyo
+${PYSITELIB}/geventhttpclient/tests/test_url.py
+${PYSITELIB}/geventhttpclient/tests/test_url.pyc
+${PYSITELIB}/geventhttpclient/tests/test_url.pyo
+${PYSITELIB}/geventhttpclient/tests/test_useragent.py
+${PYSITELIB}/geventhttpclient/tests/test_useragent.pyc
+${PYSITELIB}/geventhttpclient/tests/test_useragent.pyo
+${PYSITELIB}/geventhttpclient/url.py
+${PYSITELIB}/geventhttpclient/url.pyc
+${PYSITELIB}/geventhttpclient/url.pyo
+${PYSITELIB}/geventhttpclient/useragent.py
+${PYSITELIB}/geventhttpclient/useragent.pyc
+${PYSITELIB}/geventhttpclient/useragent.pyo
Index: pkgsrc/net/py-geventhttpclient/distinfo
diff -u /dev/null pkgsrc/net/py-geventhttpclient/distinfo:1.1
--- /dev/null   Fri Jul 14 10:44:59 2017
+++ pkgsrc/net/py-geventhttpclient/distinfo     Fri Jul 14 10:44:59 2017
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/07/14 10:44:59 adam Exp $
+
+SHA1 (geventhttpclient-1.3.1.tar.gz) = 53dc3c1b4aa7067d7ca25af22ea2cbb3149ac9fe
+RMD160 (geventhttpclient-1.3.1.tar.gz) = 85995648524cbc5ba855d2d34ed13e2999481e69
+SHA512 (geventhttpclient-1.3.1.tar.gz) = a50486e1485c449a821176f0aa139cb05a3c7675fb045086e086cc7bb71d6e1d75191fae6972b381e7e69dba89d23c387464503845badd29fa361e03aa866079
+Size (geventhttpclient-1.3.1.tar.gz) = 82598 bytes



Home | Main Index | Thread Index | Old Index