pkgsrc/net/py-foolscap/Makefile
wiz 0779e9c837 Updated py-foolscap to 0.12.3.
* Release 0.12.3 (01-Sep-2016)

** Improvements

The `tor.socks_port()` handler was replaced by `tor.socks_endpoint()`, which
takes an Endpoint object (just like `tor.control_endpoint()` does). This
enables applications to speak SOCKS to the Tor daemon over e.g. a Unix-domain
socket. The `tor.socks_port()` API was removed, so applications using it must
upgrade. #265

The `allocate_tcp_port()` utility function would occasionally return ports
that were in use by other applications, when those applications bound their
own port to the loopback interface (127.0.0.1). allocate_tcp_port should no
longer do this.
2016-09-04 09:28:18 +00:00

33 lines
952 B
Makefile

# $NetBSD: Makefile,v 1.22 2016/09/04 09:28:18 wiz Exp $
DISTNAME= foolscap-0.12.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_PYPI:=f/foolscap/}
MAINTAINER= kamel.derouiche@gmail.com
#MAINTAINER+= gdt@NetBSD.org
HOMEPAGE= http://foolscap.lothar.com/trac
COMMENT= Foolscap contains an RPC protocol for Twisted
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface>=3.6.1:../../devel/py-ZopeInterface
DEPENDS+= ${PYPKGPREFIX}-twisted>=16.0:../../net/py-twisted
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.6:../../security/py-OpenSSL
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-twisted
TEST_TARGET= test
USE_LANGUAGES= # none
INSTALLATION_DIRS+= share/doc/py-foolscap
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/*.txt \
${DESTDIR}${PREFIX}/share/doc/py-foolscap
${INSTALL_DATA} ${WRKSRC}/doc/*.rst \
${DESTDIR}${PREFIX}/share/doc/py-foolscap
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"