5a875151f4
0.7.7 More fixes for App Engine, now less likely to swallow important exceptions. Adding proxy_info_from_* methods to Python3. Reviewed in https://codereview.appspot.com/6588078/. Added GeoTrust cert Make httplib2.Http() instances pickleable. Reviewed in https://codereview.appspot.com/6506074/ The following issues have been fixed: 229 python3 httplib2 clobbers multiple headers of same key 230 Expose meaningful exception for App Engine URLFetch ResponseTooLargeError 231 Expose App Engine URLFetch DeadlineExceededError for debugging purposes
23 lines
610 B
Makefile
23 lines
610 B
Makefile
# $NetBSD: Makefile,v 1.2 2012/12/16 16:16:37 wiz Exp $
|
|
|
|
DISTNAME= httplib2-0.7.7
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://httplib2.googlecode.com/files/
|
|
|
|
MAINTAINER= mj@mjturner.net
|
|
HOMEPAGE= http://code.google.com/p/httplib2/
|
|
COMMENT= Comprehensive http client library for Python
|
|
LICENSE= mit
|
|
|
|
# Install README manually
|
|
DOCDIR= ${PREFIX}/share/doc/py-httplib2
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|