3a2fb44efd
* Release 0.6.4 (18-Jun-2012) ** Minor Changes The unreliable 'extras_require' property in setup.py, which allowed other python programs to declare a dependency on foolscap's "secure_connections" feature, was removed. See README.packagers for alternate instructions. (#174) 'flogtool' log-dumping commands (dump, tail, web-viewer) now accept a consistent --timestamps= argument to control how event times are displayed (UTC, local, seconds-since-epoch, etc). (#192, #193) Certain invalid "location" strings (accepted by Tub.setLocation and put into FURLs) are rejected earlier, and with better error messages. The error message produced when 'flogtool dump' is given a FURL-file (instead of an event log file) has been improved. The Incident Gatherer will tolerate incident-file errors better, fetching remaining incidents instead of halting. (#190) The git-over-foolscap tools were cleaned up, and the documentation was brought into line with the implementation. (#197) Other minor bugs were fixed: #179, #191, #194, #195, #196
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2012/08/21 23:43:46 gdt Exp $
|
|
#
|
|
|
|
DISTNAME= foolscap-0.6.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/.tar//}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/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-[0-9]*:../../net/py-twisted
|
|
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.6:../../security/py-OpenSSL
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
TEST_TARGET= test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
# Why?
|
|
PYTHON_VERSIONS_ACCEPTED= 27 26
|
|
|
|
INSTALLATION_DIRS+= share/doc/py-foolscap
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt \
|
|
${DESTDIR}${PREFIX}/share/doc/py-foolscap
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.xhtml \
|
|
${DESTDIR}${PREFIX}/share/doc/py-foolscap
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.css \
|
|
${DESTDIR}${PREFIX}/share/doc/py-foolscap
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.tpl \
|
|
${DESTDIR}${PREFIX}/share/doc/py-foolscap
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|