It was used to install setuptools-markdown, which is deprecated anyway; update setup.py to not request the module instead (since it's not packaged)
29 lines
933 B
Makefile
29 lines
933 B
Makefile
# $NetBSD: Makefile,v 1.11 2021/04/11 16:59:36 wiz Exp $
|
|
|
|
DISTNAME= rlp-2.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=r/rlp/}
|
|
|
|
MAINTAINER= khorben@defora.org
|
|
HOMEPAGE= https://github.com/ethereum/pyrlp
|
|
COMMENT= Package for Recursive Length Prefix encoding and decoding
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-eth-utils>=1.0.2:../../finance/py-eth-utils
|
|
DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
|
|
DEPENDS+= ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.19.0:../../devel/py-hypothesis
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test>=5.4.3:../../devel/py-test
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-tox>=2.9.1:../../devel/py-tox
|
|
|
|
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"
|