cdc7019029
2.1.1: Rename top-level tests/ directory to test/ 2.1: Clean up some typing problems. Reorganized docs and tests out of the code directory. Fix the Windows CI tests. 2.0: Drop Python 3.4 and 3.5; add Python 3.8 and 3.9. The C implementation is removed. Added an @private decorator Build and test on Windows in addition to Linux. Fix the doctests so that they actually run and pass! Add type annotations and API reference documentation. Internal improvements and modernizations.
23 lines
613 B
Makefile
23 lines
613 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/10/23 07:21:23 adam Exp $
|
|
|
|
DISTNAME= atpublic-2.1.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=a/atpublic/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://public.readthedocs.io/
|
|
COMMENT= @public decorator for Python
|
|
LICENSE= apache-2.0
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${_PYTHON_VERSION} < 38
|
|
DEPENDS+= ${PYPKGPREFIX}-typing-extensions-[0-9]*:../../devel/py-typing-extensions
|
|
.endif
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|