pkgsrc/lang/py-uncompyle6/Makefile
adam 3d09e13c26 py-uncompyle6: updated to 3.3.1
release-3.3.1
Lots of decomplation bugs, especially in the 3.x series fixed. Don't worry though, many more remain.
* Add annotation return values in 3.6+
* Fix 3.6+ lambda parameter handling decompilation
* Fix 3.7+ chained comparision decompilation
* split out semantic-action customization into more separate files
* Add 3.8 try/else
* Fix 2.7 generator decompilation
* Fix some parser failures fixes in 3.4+ using test_pyenvlib
* Add more run tests
2019-04-24 15:06:41 +00:00

24 lines
738 B
Makefile

# $NetBSD: Makefile,v 1.7 2019/04/24 15:06:41 adam Exp $
DISTNAME= uncompyle6-3.3.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= lang python
MASTER_SITES= ${MASTER_SITE_PYPI:=u/uncompyle6/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/rocky/python-uncompyle6
COMMENT= Python cross-version byte-code decompiler
LICENSE= gnu-gpl-v3
DEPENDS+= ${PYPKGPREFIX}-spark-parser>=1.8.7:../../lang/py-spark-parser
DEPENDS+= ${PYPKGPREFIX}-xdis>=4.0.0:../../devel/py-xdis
USE_LANGUAGES= # none
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} pydisassemble pydisassemble-${PYVERSSUFFIX} && \
${MV} uncompyle6 uncompyle6-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"