mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
- Correct PYMALLOC logic (that fix the build of devel/gobject-introspection)
- Remove old OPTION layout from py32 - Bump PORTREVISON
This commit is contained in:
parent
734ec74d08
commit
7e94fe3d3d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297867
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= python26
|
||||
PORTVERSION= 2.6.8
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang python ipv6
|
||||
MASTER_SITES= ${PYTHON_MASTER_SITES}
|
||||
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
|
||||
@ -50,10 +51,10 @@ BINLINKS_SUB= -e 's,smtpd,smtpd${PYTHON_VER},' \
|
||||
-e 's,(idle|pydoc|python-shared|python),\1${PYTHON_VER},'
|
||||
|
||||
OPTIONS_DEFINE= THREADS SEM PTH PYMALLOC IPV6 FPECTL EXAMPLES
|
||||
OPTIONS_DEFAULT= THREADS UCS4 PYMALLOC IPV6
|
||||
OPTIONS_DEFAULT= THREADS UCS2 PYMALLOC IPV6
|
||||
|
||||
OPTIONS_SINGLE= UCS
|
||||
OPTIONS_SINGLE_UCS= UCS4 UCS2
|
||||
OPTIONS_SINGLE_UCS= UCS2 UCS4
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
@ -105,7 +106,7 @@ CONFIGURE_ARGS+= --enable-unicode=ucs4
|
||||
CONFIGURE_ARGS+= --enable-unicode=ucs2
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPYMALLOC}
|
||||
.if empty(PORT_OPTIONS:MPYMALLOC)
|
||||
CONFIGURE_ARGS+= --without-pymalloc
|
||||
.endif
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= python27
|
||||
PORTVERSION= 2.7.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang python ipv6
|
||||
MASTER_SITES= ${PYTHON_MASTER_SITES}
|
||||
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
|
||||
@ -50,10 +51,10 @@ BINLINKS_SUB= -e 's,smtpd,smtpd${PYTHON_VER},' \
|
||||
-e 's,(idle|pydoc|python-shared|python),\1${PYTHON_VER},'
|
||||
|
||||
OPTIONS_DEFINE= THREADS SEM PTH PYMALLOC IPV6 FPECTL EXAMPLES
|
||||
OPTIONS_DEFAULT= THREADS UCS4 PYMALLOC IPV6
|
||||
OPTIONS_DEFAULT= THREADS UCS2 PYMALLOC IPV6
|
||||
|
||||
OPTIONS_SINGLE= UCS
|
||||
OPTIONS_SINGLE_UCS= UCS4 UCS2
|
||||
OPTIONS_SINGLE_UCS= UCS2 UCS4
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
@ -106,7 +107,7 @@ CONFIGURE_ARGS+= --enable-unicode=ucs4
|
||||
CONFIGURE_ARGS+= --enable-unicode=ucs2
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPYMALLOC}
|
||||
.if empty(PORT_OPTIONS:MPYMALLOC)
|
||||
CONFIGURE_ARGS+= --without-pymalloc
|
||||
.endif
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= python31
|
||||
PORTVERSION= 3.1.5
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang python ipv6
|
||||
MASTER_SITES= ${PYTHON_MASTER_SITES}
|
||||
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
|
||||
@ -75,7 +76,7 @@ CONFIGURE_ARGS+= --without-threads
|
||||
CONFIGURE_ARGS+= --with-wide-unicode
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPYMALLOC}
|
||||
.if empty(PORT_OPTIONS:MPYMALLOC)
|
||||
CONFIGURE_ARGS+= --without-pymalloc
|
||||
.endif
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= python32
|
||||
PORTVERSION= 3.2.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang python ipv6
|
||||
MASTER_SITES= ${PYTHON_MASTER_SITES}
|
||||
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
|
||||
@ -50,12 +51,6 @@ BIN_FILES= python python-shared python-config python-shared-config \
|
||||
BINLINKS_SUB= -e 's,(2to3|idle3|pydoc3),\1-${PYTHON_VER},' \
|
||||
-e 's,(python-shared|python),\1${PYTHON_VER},'
|
||||
|
||||
OPTIONS= THREADS "Enable thread support" on \
|
||||
UCS4 "Use UCS4 for unicode support" on \
|
||||
PYMALLOC "Use python's internal malloc" on \
|
||||
IPV6 "Enable IPv6 support" on \
|
||||
FPECTL "Enable floating point exception handling" off
|
||||
|
||||
OPTIONS_DEFINE= THREADS UCS4 PYMALLOC IPV6 FPECTL EXAMPLES
|
||||
OPTIONS_DEFAULT= THREADS UCS4 PYMALLOC IPV6
|
||||
|
||||
@ -83,7 +78,7 @@ CONFIGURE_ARGS+= --with-wide-unicode
|
||||
PYABIVER:= ${PYABIVER}u
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MPYMALLOC}
|
||||
.if empty(PORT_OPTIONS:MPYMALLOC)
|
||||
CONFIGURE_ARGS+= --without-pymalloc
|
||||
.else
|
||||
PYABIVER:= m${PYABIVER}
|
||||
|
Loading…
Reference in New Issue
Block a user