1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/lang/pypy3/Makefile
David Naylor 4cb488e0ff lang/pypy(3): update to 5.9
- add lubunwind as dependency: required by vmprof
 - disable vmprof on FreeBSD 10: missing base support
 - implement support for handles with ctypes.CDLL: fix dynamic loading of
   shared objects
 - enable various tests that were not working on FreeBSD 9
 - mark get_profile_path as xfail on FreeBSD
 - handle definition of char16_t and char32_t on libc++ for
   __cplusplus < 201103L (libstdc++ does not do this)
 - other minor fixes

ChangeLog:
 - NumPy and Pandas now work on lang/pypy
 - Cython 0.27.1 supports more projects with PyPy
 - JSON parser improvements decrease memory by up to 50% and increase speed
   by up to 15%
 - CFFI updated to 1.11.1
2017-11-04 09:33:51 +00:00

27 lines
804 B
Makefile

# Created by: David Naylor <dbn@FreeBSD.org>
# $FreeBSD$
PORTNAME= pypy3
DISTNAME= ${PORTNAME}-v${DISTVERSION}-src
MASTERDIR= ${.CURDIR}/../pypy
WRKSRC= ${WRKDIR}/${PORTNAME}-v${DISTVERSION:C/-.*//}-src
BUILD_WRKSRC?= ${WRKDIR}/build/usession-release-${PORTNAME}.5-v${DISTVERSION:C/-.*//}-0/testing_1
SHEBANG_FILES= lib-python/3/encodings/rot_13.py \
lib-python/3/lib2to3/tests/data/different_encoding.py \
lib-python/3/lib2to3/tests/data/false_encoding.py \
lib-python/3/cgi.py
PACKAGE_ARGS= --without-_gdbm --without-sqlite3 --without-tk
PYPY_CFFI_VER= ${PORTNAME}-${DISTVERSION:C/.[^.]+$//:S/.//}-${ARCH}-${OPSYS:tl}${OSREL:C/\..*//}
pre-install:
${FIND} ${WRKSRC} -name '*.pyc' -delete
#${CHMOD} -R a-w ${WRKSRC}
#${CHMOD} -R u+w ${WRKSRC}/lib_pypy
.include "${MASTERDIR}/Makefile"