1067ad8a92
Pyro 4.63 - fixed bug in autoproxy logic where it registered the wrong type if daemon.register() was called with a class instead of an object (internal register_type_replacement method) - added check in @expose method to validate the order of decorators on a method (@expose should come last, after @classmethod or @staticmethod). - added resource tracking feature (see 'Automatically freeing resources when client connection gets closed' in the Tips & Tricks chapter) - the warning about a class not exposing anything now actually tells you the correct class
23 lines
576 B
Makefile
23 lines
576 B
Makefile
# $NetBSD: Makefile,v 1.22 2017/10/31 12:53:58 adam Exp $
|
|
|
|
DISTNAME= Pyro4-4.63
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=P/Pyro4/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/irmen/Pyro4
|
|
COMMENT= Distributed Object Technology system in Python
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-serpent>=1.23:../../devel/py-serpent
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_SELF_CONFLICT= yes
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/tests && ${PYTHONBIN} run_testsuite.py
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|