mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
0e32330f15
Chase the devel/libffi update Bump portrevision of all dependent ports to chace shard library version bump in libffi. Update LIB_DEPENDS lines where needed to not require a specific version of libffi.so. PR: 247028 (for tracking)
23 lines
524 B
Makefile
23 lines
524 B
Makefile
# $FreeBSD$
|
|
|
|
.if !defined(LICENSE)
|
|
LICENSE= MIT PSFL
|
|
LICENSE_COMB= multi
|
|
.endif
|
|
|
|
USES+= compiler:c11
|
|
|
|
PYTHON_IMPL?= ${PORTNAME}
|
|
PYPY_DIR= ${PYTHON_IMPL}-${DISTVERSION:C|([0-9])\.([0-9]+).*|\1.\2|}
|
|
PLIST_SUB+= PYPY_DIR=${PYPY_DIR} PYPY_CFFI_VER=${PYPY_CFFI_VER}
|
|
|
|
.if ${PYTHON_IMPL} == pypy
|
|
DISTVERSION= 7.3.0
|
|
PORTREVISION= 1
|
|
PYPY_CFFI_VER= ${PYTHON_IMPL}-73
|
|
.else # ${PYTHON_IMPL} == pypy3
|
|
DISTVERSION= 7.3.0
|
|
PORTREVISION= 1
|
|
PYPY_CFFI_VER= ${PYTHON_IMPL}6-pp${DISTVERSION:S|.||:C|\..*||}-${OPSYS:tl}${OSREL:C|\..*||}
|
|
.endif
|