pkgsrc/net/py-foolscap/Makefile
wiz c99aa7d531 Updated py-foolscap to 0.12.4.
* Release 0.12.4 (27-Sep-2016)

** Improvements

The TCP connection-hint handler can now accept square-bracket-wrapped IPv6
addresses in colon-hex format. You can produce FURLs with such hints by doing
this:

    tub.setLocation("tcp:[2001:0DB8:f00e:eb00::1]:9900")

Foolscap Tubs have been using the IPv6-capable `HostnameEndpoint` since
0.11.0, so this completes the IPv6 support. Note that there are no provisions
for automatically detecting the host's IPv6 addresses: applications that wish
to use addresses (instead of hostnames) must discover those addresses on
their own. #155

A new `tor.control_endpoint_maker()` handler function was added, which is
just like `tor.control_endpoint()` but accepts a callable function, which
will be invoked only when a `tor:` hint is encountered. The function can
return a Deferred which yields the control endpoint. This allows lazy
launching of a Tor daemon, which can also be shared with other application
needs, such as listening on an Onion service.  #270
2016-10-19 12:54:04 +00:00

33 lines
952 B
Makefile

# $NetBSD: Makefile,v 1.23 2016/10/19 12:54:04 wiz Exp $
DISTNAME= foolscap-0.12.4
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"