Update to latest release, 2.1.0. Both dependents built fine with this

version. Simplify variable handling in Makefile to have fewer hardcoded
values. Specify sphinx version as per package's requirements.txt.
USE_LANGUAGES+=c. Some new PLIST additions. From HISTORY.rst:

2.1.0 (2013-12-05)
++++++++++++++++++

- Updated CA Bundle, of course.
- Clean up connections when we hit problems during chunked upload, rather than leaking them.
- Return connections to the pool when a chunked upload is successful, rather than leaking it.
- Match the HTTPbis recommendation for HTTP 301 redirects.
- Prevent hanging when using streaming uploads and Digest Auth when a 401 is received.
- Values of headers set by Requests are now always the native string type.
- Fix previously broken SNI support.
- Fix accessing HTTP proxies using proxy authentication.
- Unencode HTTP Basic usernames and passwords extracted from URLs.
- Support for IP address ranges for no_proxy environment variable
- Parse headers correctly when users override the default ``Host:`` header.
- Avoid munging the URL in case of case-sensitive servers.
- Looser URL handling for non-HTTP/HTTPS urls.
- Accept unicode methods in Python 2.6 and 2.7.
- More resilient cookie handling.
- Make ``Response`` objects pickleable.
- Actually added MD5-sess to Digest Auth instead of pretending to like last time.
- Updated internal urllib3.
- Fixed @Lukasa's lack of taste.

2.0.1 (2013-10-24)
++++++++++++++++++

- Updated included CA Bundle with new mistrusts and automated process for the future
- Added MD5-sess to Digest Auth
- Accept per-file headers in multipart file POST messages.
- Fixed: Don't send the full URL on CONNECT messages.
- Fixed: Correctly lowercase a redirect scheme.
- Fixed: Cookies not persisted when set via functional API.
- Fixed: Translate urllib3 ProxyError into a requests ProxyError derived from ConnectionError.
- Updated internal urllib3 and chardet.

2.0.0 (2013-09-24)
++++++++++++++++++

**API Changes:**

- Keys in the Headers dictionary are now native strings on all Python versions,
  i.e. bytestrings on Python 2, unicode on Python 3.
- Proxy URLs now *must* have an explicit scheme. A ``MissingSchema`` exception
  will be raised if they don't.
- Timeouts now apply to read time if ``Stream=False``.
- ``RequestException`` is now a subclass of ``IOError``, not ``RuntimeError``.
- Added new method to ``PreparedRequest`` objects: ``PreparedRequest.copy()``.
- Added new method to ``Session`` objects: ``Session.update_request()``. This
  method updates a ``Request`` object with the data (e.g. cookies) stored on
  the ``Session``.
- Added new method to ``Session`` objects: ``Session.prepare_request()``. This
  method updates and prepares a ``Request`` object, and returns the
  corresponding ``PreparedRequest`` object.
- Added new method to ``HTTPAdapter`` objects: ``HTTPAdapter.proxy_headers()``.
  This should not be called directly, but improves the subclass interface.
- ``httplib.IncompleteRead`` exceptions caused by incorrect chunked encoding
  will now raise a Requests ``ChunkedEncodingError`` instead.
- Invalid percent-escape sequences now cause a Requests ``InvalidURL``
  exception to be raised.
- HTTP 208 no longer uses reason phrase ``"im_used"``. Correctly uses
  ``"already_reported"``.
- HTTP 226 reason added (``"im_used"``).

**Bugfixes:**

- Vastly improved proxy support, including the CONNECT verb. Special thanks to
  the many contributors who worked towards this improvement.
- Cookies are now properly managed when 401 authentication responses are
  received.
- Chunked encoding fixes.
- Support for mixed case schemes.
- Better handling of streaming downloads.
- Retrieve environment proxies from more locations.
- Minor cookies fixes.
- Improved redirect behaviour.
- Improved streaming behaviour, particularly for compressed data.
- Miscellaneous small Python 3 text encoding bugs.
- ``.netrc`` no longer overrides explicit auth.
- Cookies set by hooks are now correctly persisted on Sessions.
- Fix problem with cookies that specify port numbers in their host field.
- ``BytesIO`` can be used to perform streaming uploads.
- More generous parsing of the ``no_proxy`` environment variable.
- Non-string objects can be passed in data values alongside files.

1.2.3 (2013-05-25)
++++++++++++++++++

- Simple packaging fix

1.2.2 (2013-05-23)
++++++++++++++++++

- Simple packaging fix
This commit is contained in:
rodent 2014-01-05 17:47:10 +00:00
parent dc41491f80
commit c24d3d998a
3 changed files with 25 additions and 15 deletions

View file

@ -1,28 +1,26 @@
# $NetBSD: Makefile,v 1.3 2013/06/16 11:48:51 wiz Exp $
# $NetBSD: Makefile,v 1.4 2014/01/05 17:47:10 rodent Exp $
DISTNAME= v1.2.1
PKGNAME= ${PYPKGPREFIX}-requests-${DISTNAME:S/v//}
PKGREVISION= 1
EGG_NAME= requests-1.2.1
DISTNAME= v2.1.0
EGG_NAME= requests-${DISTNAME:S/v//}
PKGNAME= ${PYPKGPREFIX}-${EGG_NAME}
CATEGORIES= devel www
MASTER_SITES= https://github.com/kennethreitz/requests/archive/
EXTRACT_SUFX= .zip
FETCH_USING= curl
MAINTAINER= imil@NetBSD.org
HOMEPAGE= http://docs.python-requests.org/en/latest/
COMMENT= HTTP library, written in Python, for human beings
LICENSE= apache-2.0
WRKSRC= ${WRKDIR}/requests-1.2.1
USE_LANGUAGES= # none
WRKSRC= ${WRKDIR}/${EGG_NAME}
USE_LANGUAGES= c
REPLACE_PYTHON= requests/certs.py
DEPENDS+= ${PYPKGPREFIX}-docutils>=0.10:../../textproc/py-docutils
DEPENDS+= ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2
DEPENDS+= ${PYPKGPREFIX}-markupsafe-[0-9]*:../../textproc/py-markupsafe
DEPENDS+= ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments
DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
DEPENDS+= ${PYPKGPREFIX}-sphinx>=1.1.3:../../textproc/py-sphinx
.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2013/05/23 15:01:15 joerg Exp $
@comment $NetBSD: PLIST,v 1.3 2014/01/05 17:47:10 rodent Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@ -41,6 +41,9 @@ ${PYSITELIB}/requests/packages/__init__.pyo
${PYSITELIB}/requests/packages/charade/__init__.py
${PYSITELIB}/requests/packages/charade/__init__.pyc
${PYSITELIB}/requests/packages/charade/__init__.pyo
${PYSITELIB}/requests/packages/charade/__main__.py
${PYSITELIB}/requests/packages/charade/__main__.pyc
${PYSITELIB}/requests/packages/charade/__main__.pyo
${PYSITELIB}/requests/packages/charade/big5freq.py
${PYSITELIB}/requests/packages/charade/big5freq.pyc
${PYSITELIB}/requests/packages/charade/big5freq.pyo
@ -155,6 +158,9 @@ ${PYSITELIB}/requests/packages/urllib3/__init__.pyo
${PYSITELIB}/requests/packages/urllib3/_collections.py
${PYSITELIB}/requests/packages/urllib3/_collections.pyc
${PYSITELIB}/requests/packages/urllib3/_collections.pyo
${PYSITELIB}/requests/packages/urllib3/connection.py
${PYSITELIB}/requests/packages/urllib3/connection.pyc
${PYSITELIB}/requests/packages/urllib3/connection.pyo
${PYSITELIB}/requests/packages/urllib3/connectionpool.py
${PYSITELIB}/requests/packages/urllib3/connectionpool.pyc
${PYSITELIB}/requests/packages/urllib3/connectionpool.pyo
@ -170,6 +176,9 @@ ${PYSITELIB}/requests/packages/urllib3/contrib/pyopenssl.pyo
${PYSITELIB}/requests/packages/urllib3/exceptions.py
${PYSITELIB}/requests/packages/urllib3/exceptions.pyc
${PYSITELIB}/requests/packages/urllib3/exceptions.pyo
${PYSITELIB}/requests/packages/urllib3/fields.py
${PYSITELIB}/requests/packages/urllib3/fields.pyc
${PYSITELIB}/requests/packages/urllib3/fields.pyo
${PYSITELIB}/requests/packages/urllib3/filepost.py
${PYSITELIB}/requests/packages/urllib3/filepost.pyc
${PYSITELIB}/requests/packages/urllib3/filepost.pyo
@ -185,6 +194,9 @@ ${PYSITELIB}/requests/packages/urllib3/packages/six.pyo
${PYSITELIB}/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py
${PYSITELIB}/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc
${PYSITELIB}/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyo
${PYSITELIB}/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py
${PYSITELIB}/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc
${PYSITELIB}/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyo
${PYSITELIB}/requests/packages/urllib3/poolmanager.py
${PYSITELIB}/requests/packages/urllib3/poolmanager.pyc
${PYSITELIB}/requests/packages/urllib3/poolmanager.pyo

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.1 2013/05/21 14:34:38 imil Exp $
$NetBSD: distinfo,v 1.2 2014/01/05 17:47:10 rodent Exp $
SHA1 (v1.2.1.zip) = 00fd36fdcc8183a37862a9b7effb9cbd3f3b2105
RMD160 (v1.2.1.zip) = fd413b705b1308ecf6f33711b365019bda04eba3
Size (v1.2.1.zip) = 586193 bytes
SHA1 (v2.1.0.tar.gz) = 491ca9b89fb4a1c3c8dbbee14609d66b7e70b0ff
RMD160 (v2.1.0.tar.gz) = db33a2f3170798f78fe9d5c34f67ab8f002fd883
Size (v2.1.0.tar.gz) = 609754 bytes