svn commit: r439482 - head/net/py-urllib3
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Wed Apr 26 18:46:26 UTC 2017
Author: sunpoet
Date: Wed Apr 26 18:46:24 2017
New Revision: 439482
URL: https://svnweb.freebsd.org/changeset/ports/439482
Log:
Update to 1.21
- Update COMMENT
- Sort RUN_DEPENDS
- Sort USE_PYTHON
- Fix indent
- Update pkg-descr
- Change WWW to PyPI
Changes: https://github.com/shazow/urllib3/blob/master/CHANGES.rst
Modified:
head/net/py-urllib3/Makefile
head/net/py-urllib3/distinfo
head/net/py-urllib3/pkg-descr
Modified: head/net/py-urllib3/Makefile
==============================================================================
--- head/net/py-urllib3/Makefile Wed Apr 26 18:46:20 2017 (r439481)
+++ head/net/py-urllib3/Makefile Wed Apr 26 18:46:24 2017 (r439482)
@@ -2,24 +2,24 @@
# $FreeBSD$
PORTNAME= urllib3
-PORTVERSION= 1.20
+PORTVERSION= 1.21
CATEGORIES= net python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= python at FreeBSD.org
-COMMENT= Enhance HTTP Python's standard library
+COMMENT= HTTP library with thread-safe connection pooling, file post, and more
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pysocks>=1.5.7:net/py-pysocks \
- ${PYTHON_PKGNAMEPREFIX}cryptography>=1.3.4:security/py-cryptography \
- ${PYTHON_PKGNAMEPREFIX}openssl>=16.0:security/py-openssl \
- ${PYTHON_PKGNAMEPREFIX}idna>=2.0:dns/py-idna
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=1.3.4:security/py-cryptography \
+ ${PYTHON_PKGNAMEPREFIX}idna>=2.0:dns/py-idna \
+ ${PYTHON_PKGNAMEPREFIX}openssl>=16.0:security/py-openssl \
+ ${PYTHON_PKGNAMEPREFIX}pysocks>=1.5.7:net/py-pysocks
-USES= python
-USE_PYTHON= distutils autoplist
+USES= python
+USE_PYTHON= autoplist distutils
NO_ARCH= yes
SUB_FILES= pkg-message
Modified: head/net/py-urllib3/distinfo
==============================================================================
--- head/net/py-urllib3/distinfo Wed Apr 26 18:46:20 2017 (r439481)
+++ head/net/py-urllib3/distinfo Wed Apr 26 18:46:24 2017 (r439482)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1484903509
-SHA256 (urllib3-1.20.tar.gz) = 97ef2b6e2878d84c0126b9f4e608e37a951ca7848e4855a7f7f4437d5c34a72f
-SIZE (urllib3-1.20.tar.gz) = 201873
+TIMESTAMP = 1493220249
+SHA256 (urllib3-1.21.tar.gz) = d0f08f1472754890c8b228106eb831a7a68c93565bd0818936c30bb839913647
+SIZE (urllib3-1.21.tar.gz) = 223387
Modified: head/net/py-urllib3/pkg-descr
==============================================================================
--- head/net/py-urllib3/pkg-descr Wed Apr 26 18:46:20 2017 (r439481)
+++ head/net/py-urllib3/pkg-descr Wed Apr 26 18:46:24 2017 (r439482)
@@ -1,4 +1,13 @@
-Urllib3 is an HTTP library with thread-safe connection pooling, and file
-post.
+urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the
+Python ecosystem already uses urllib3 and you should too. urllib3 brings many
+critical features that are missing from the Python standard libraries:
+- Thread safety.
+- Connection pooling.
+- Client-side SSL/TLS verification.
+- File uploads with multipart encoding.
+- Helpers for retrying requests and dealing with HTTP redirects.
+- Support for gzip and deflate encoding.
+- Proxy support for HTTP and SOCKS.
+- 100% test coverage.
-WWW: https://github.com/shazow/urllib3/
+WWW: https://pypi.python.org/pypi/urllib3
More information about the svn-ports-all
mailing list