22eca4a74a
4.2.2: Add Python versions: 3.6.10, 3.7.6. 3.8.1, Update 3.9-dev to 3.9.0alpha2 Add interpolation of FUNCTION_CALL_{KW,EX} argument for 3.7-3.9 Better output of complex type values 4.2.1: Correct and clean up compiler flags. Add 3.5+ ITERABLE_COROUTINE and 3.6+ ASYNC_GENERATOR. Clean up PYPY 3.6 flags and opcodes Many thanks again to Arman Rigo. Split PYPY specfic compiler-specific flags into its own thing.
25 lines
806 B
Makefile
25 lines
806 B
Makefile
# $NetBSD: Makefile,v 1.16 2019/12/31 10:16:56 adam Exp $
|
|
|
|
DISTNAME= xdis-4.2.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=x/xdis/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/rocky/python-xdis
|
|
COMMENT= Python cross-version byte-code disassembler and marshal routines
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.10.0:../../lang/py-six
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} pydisasm pydisasm-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|