363df08f8b
Version 2.2.3 Bug Fixes: * Use custom fake file type for testing fileno behaviour. This works around an incompatibility in Python 2.7 file type that caused test cases to fail. Changes: * Promote the warning for runner module to a DeprecationWarning. This has been an unofficial example module from the beginning, and it will be removed in a future version. Version 2.2.2 Bug Fixes: * Remove from the build system specification a white space character not permitted in TOML format. Additions: * Implement test suite automation in virtualenvs, using Tox. Version 2.2.1 Additions: * Add a :PEP:518 conformant build system specification (the pyproject.toml file).
24 lines
962 B
Makefile
24 lines
962 B
Makefile
# $NetBSD: Makefile,v 1.13 2019/01/21 09:23:51 adam Exp $
|
|
|
|
DISTNAME= python-daemon-2.2.3
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/python-//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-daemon/}
|
|
|
|
MAINTAINER= kamel.derouiche@gmail.com
|
|
HOMEPAGE= https://pagure.io/python-daemon/
|
|
COMMENT= Library to implement a well-behaved Unix daemon process
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
|
|
DEPENDS+= ${PYPKGPREFIX}-lockfile>=0.10:../../devel/py-lockfile
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock>=1.3:../../devel/py-mock
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-testscenarios>=0.4:../../devel/py-testscenarios
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-testtools-[0-9]*:../../devel/py-testtools
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-unittest2>=0.5.1:../../devel/py-unittest2
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|