33e73c2715
Version 1.3 ----------- Released July 3, 2013 - The global signal stash behind blinker.signal() is now backed by a regular name-to-Signal dictionary. Previously, weak references were held in the mapping and ephermal usage in code like ``signal('foo').connect(...)`` could have surprising program behavior depending on import order of modules. - blinker.Namespace is now built on a regular dict. Use blinker.WeakNamespace for the older, weak-referencing behavior. - Signal.connect('text-sender') uses an alterate hashing strategy to avoid sharp edges in text identity.
18 lines
488 B
Makefile
18 lines
488 B
Makefile
# $NetBSD: Makefile,v 1.4 2013/07/09 16:55:41 kleink Exp $
|
|
|
|
DISTNAME= blinker-1.3
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/b/blinker/
|
|
|
|
MAINTAINER= kleink@NetBSD.org
|
|
HOMEPAGE= http://pythonhosted.org/blinker/
|
|
COMMENT= Fast, simple object-to-object and broadcast signaling
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # empty
|
|
|
|
PYTHON_VERSIONS_INCLUDE_3X= yes
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|