672159b515
2.0.2 - Sep 20, 2021 -------------------- * Add the ``py.typed`` marker file in accordance with PEP 561 2.0.1 - Sep 14, 2021 -------------------- * Add ``python_requires`` to ``setup.py`` 2.0.0 - Sep 14, 2021 -------------------- * Add type hints throughout codebase (thanks blokje!) * Drop support for Python versions prior to 3.6
23 lines
619 B
Makefile
23 lines
619 B
Makefile
# $NetBSD: Makefile,v 1.7 2021/10/11 17:55:07 adam Exp $
|
|
|
|
DISTNAME= iso3166-2.0.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=i/iso3166/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/deactivated/python-iso3166
|
|
COMMENT= Self-contained ISO 3166-1 country definitions
|
|
LICENSE= mit
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|