a41e32767e
Fix HOMEPAGE, use distutils.mk, other cleanup. Release 0.9.0 ============= misc: .. warning:: - pyev does not embed libev anymore (Issue #9): - libev >= 4.15 is required. - win32 support has been dropped. - No more :py:class:`Stat` watchers. - pyev is now published under the GPLv3 license. - Support for Python2 < 2.7 and Python3 < 3.3 has been dropped. :py:mod:`pyev`: - Method version() is replaced by attribute __version__. - Removed :py:class:`Stat` watcher type. - Removed :py:const:`EVFLAG_NOINOTIFY` and :py:const:`EV_STAT` constants. :py:class:`Timer`: - Method remaining() is replaced by attribute remaining. :py:class:`Periodic`: - Method at() is replaced by attribute at. :py:class:`Scheduler`: - Method at() is replaced by attribute at.
19 lines
507 B
Makefile
19 lines
507 B
Makefile
# $NetBSD: Makefile,v 1.7 2016/06/08 22:34:29 wiz Exp $
|
|
|
|
VERS= 0.9.0
|
|
PKGNAME= ${PYPKGPREFIX}-pyev-${VERS}
|
|
DISTNAME= pyev-${VERS}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyev/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://pypi.python.org/pypi/pyev
|
|
COMMENT= Python interface to libev
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES+= c
|
|
|
|
BUILDLINK_API_DEPENDS.libev+= libev>=4.15
|
|
.include "../../devel/libev/buildlink3.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|