Files

258 lines
9.4 KiB
Tcl
Raw Permalink Normal View History

2016-06-13 05:39:34 +00:00
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup select 1.0
2021-11-09 12:28:21 +11:00
PortGroup openssl 1.0
2022-01-16 11:18:07 -05:00
PortGroup deprecated 1.0
2016-06-13 05:39:34 +00:00
name python36
2016-06-13 05:39:34 +00:00
epoch 20170717
2020-08-23 10:18:31 +10:00
# Remember to keep py36-tkinter and py36-gdbm's versions sync'd with this
2021-09-05 12:15:41 +10:00
version 3.6.15
2022-05-10 22:32:47 +10:00
revision 3
2016-06-13 05:39:34 +00:00
2022-01-16 11:18:07 -05:00
deprecated.eol_version yes
set major [lindex [split $version .] 0]
set branch [join [lrange [split ${version} .] 0 1] .]
categories lang
license PSF
2020-06-29 23:14:58 +10:00
maintainers {jmr @jmroot}
2016-06-13 05:39:34 +00:00
description An interpreted, object-oriented programming language
long_description Python is an interpreted, interactive, object-oriented \
programming language.
2016-06-13 05:39:34 +00:00
2017-10-06 08:56:47 +11:00
homepage https://www.python.org/
master_sites ${homepage}ftp/python/${version}/
2016-06-13 05:39:34 +00:00
distname Python-${version}
use_xz yes
2021-09-05 12:15:41 +10:00
checksums md5 bc04aa6c2a1a172a35012abd668538cd \
rmd160 eb84f49be5de3e2cc93059b9e90d3d42c971a90f \
sha256 6e28d7cdd6dd513dd190e49bca3972e20fcf455090ccf2ef3f1a227614135d91
2016-06-13 05:39:34 +00:00
patchfiles patch-setup.py.diff \
patch-Lib-cgi.py.diff \
patch-configure.diff \
patch-Lib-ctypes-macholib-dyld.py.diff \
patch-libedit.diff \
omit-local-site-packages.patch \
2019-10-16 23:35:26 +11:00
patch-configure-xcode4bug.diff \
2020-06-29 23:14:58 +10:00
patch-_osx_support.py.diff \
2021-02-21 05:22:29 +11:00
darwin20.diff \
implicit.patch \
2022-05-10 22:32:47 +10:00
sysconfig.py.diff \
2023-09-16 00:42:26 +10:00
multiarch.patch \
libedit-types.patch
2016-06-13 05:39:34 +00:00
2024-09-07 16:51:25 +10:00
depends_build path:bin/pkg-config:pkgconfig
2017-10-06 08:56:47 +11:00
depends_lib port:bzip2 \
port:expat \
2021-12-26 18:08:36 +11:00
port:gettext-runtime \
2017-10-06 08:56:47 +11:00
port:libedit \
port:libffi \
port:ncurses \
port:sqlite3 \
port:xz \
port:zlib
depends_run port:python_select \
port:python3_select
2016-06-13 05:39:34 +00:00
2021-11-09 12:28:21 +11:00
openssl.branch 1.1
if {${os.platform} eq "darwin" && ${os.major} >= 20} {
supported_archs x86_64
2021-01-10 03:56:53 +11:00
}
2016-06-13 05:39:34 +00:00
# blacklist llvm-gcc-4.2 compiler known to produce bad code
compiler.blacklist *llvm-gcc-4.2
2016-06-13 05:39:34 +00:00
# ensurepip arg may be removed later, now conflicts with pip and setuptools
# packages
configure.args --enable-framework=${frameworks_dir} \
--enable-ipv6 \
2016-10-11 19:38:22 +00:00
--enable-loadable-sqlite-extensions \
--with-computed-gotos \
2017-10-06 08:56:47 +11:00
--with-ensurepip=no \
--with-system-expat \
--with-system-ffi
2016-06-13 05:39:34 +00:00
configure.ccache no
2022-05-10 22:32:47 +10:00
# pkg-config removes -I flags for paths in CPATH, which confuses python.
configure.env PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
2016-06-13 05:39:34 +00:00
post-patch {
reinplace "s|@@PREFIX@@|${prefix}|g" \
${worksrcpath}/Lib/cgi.py \
${worksrcpath}/Lib/ctypes/macholib/dyld.py
2016-06-13 05:39:34 +00:00
reinplace "s|/setup.py|/setup.py --no-user-cfg|" ${worksrcpath}/Makefile.pre.in
2016-06-13 05:39:34 +00:00
# replace /Applications with ${applications_dir}
reinplace "s|@@APPLICATIONS_DIR@@|${applications_dir}|" \
2016-06-13 05:39:34 +00:00
${worksrcpath}/configure
}
build.target all
2016-06-13 05:39:34 +00:00
test.run yes
test.target test
2016-06-13 05:39:34 +00:00
destroot.target frameworkinstall maninstall
2016-06-13 05:39:34 +00:00
set pythonNoDot python[string map {. {}} $branch]
select.entries [list python python-$pythonNoDot $pythonNoDot] \
[list python3 python3-$pythonNoDot $pythonNoDot]
2016-06-13 05:39:34 +00:00
2016-07-12 08:05:18 +00:00
platform darwin {
2018-06-28 15:35:07 +10:00
set framewpath ${frameworks_dir}/Python.framework
set framewdir ${framewpath}/Versions/${branch}
set confdir config-${branch}m-darwin
2022-05-10 22:32:47 +10:00
post-configure {
2019-12-21 21:49:58 +11:00
# poll() misbehaves on 10.8 and older
2017-10-06 08:56:47 +11:00
# See https://trac.macports.org/ticket/18376
2019-12-21 21:49:58 +11:00
if {${os.major} <= 12} {
2022-03-13 21:20:19 +11:00
set oldmtime [file mtime ${worksrcpath}/pyconfig.h]
2019-12-21 21:49:58 +11:00
system -W ${worksrcpath} "ed - pyconfig.h < ${filespath}/pyconfig.ed"
2022-03-13 21:20:19 +11:00
file mtime ${worksrcpath}/pyconfig.h $oldmtime
2019-12-21 21:49:58 +11:00
}
2018-03-30 02:26:57 +11:00
}
2020-08-20 18:40:48 +10:00
2018-03-30 02:26:57 +11:00
post-destroot {
foreach dir { Headers Resources Python Versions/Current } {
file delete ${destroot}${framewpath}/${dir}
}
ln -s ${framewdir}/share/man/man1/python${branch}.1 ${destroot}${prefix}/share/man/man1/
2018-06-28 15:35:07 +10:00
ln -s ${framewdir}/lib/pkgconfig/python-${branch}.pc ${destroot}${prefix}/lib/pkgconfig/
ln -s ${framewdir}/lib/pkgconfig/python-${branch}.pc ${destroot}${prefix}/lib/pkgconfig/python-${branch}m.pc
2018-03-30 02:26:57 +11:00
2022-05-10 22:32:47 +10:00
set libdir ${destroot}${framewdir}/lib/python${branch}
# Without this, LINKFORSHARED is set to
# ... $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)
# (this becomes Python.framework/Versions/3.6/Python) which doesn't
# work for dependents that incorrectly use this variable to find out
# how to link against python (see ticket #15099); instead we mirror
# the behavior of `python-config --ldflags` here.
set lfs_pattern {^([[:space:]]*'LINKFORSHARED':).*}
set lfs_replacement "\\1 '-L${framewdir}/lib/python${branch}/${confdir} -lpython${branch}m -ldl -framework CoreFoundation',"
reinplace -E s|${lfs_pattern}|${lfs_replacement}| \
${libdir}/_sysconfigdata_m_darwin_darwin.py
# remove -arch flags from the config
reinplace -E {s|-arch [a-z0-9_]+||g} \
${libdir}/_sysconfigdata_m_darwin_darwin.py
# also remove gettext overlinking
reinplace "s|-lintl||" \
${libdir}/_sysconfigdata_m_darwin_darwin.py
# recompile the modified file
set python_for_build python.exe
# executable differs depending on filesystem case sensitivity
if {![file exists ${worksrcpath}/${python_for_build}]} {
set python_for_build python
}
system -W ${worksrcpath} "env DYLD_FRAMEWORK_PATH=. ./${python_for_build} -E -m compileall -d [shellescape ${framewdir}/lib/python${branch}] [shellescape ${libdir}/_sysconfigdata_m_darwin_darwin.py]"
system -W ${worksrcpath} "env DYLD_FRAMEWORK_PATH=. ./${python_for_build} -E -O -m compileall -d [shellescape ${framewdir}/lib/python${branch}] [shellescape ${libdir}/_sysconfigdata_m_darwin_darwin.py]"
system -W ${worksrcpath} "env DYLD_FRAMEWORK_PATH=. ./${python_for_build} -E -OO -m compileall -d [shellescape ${framewdir}/lib/python${branch}] [shellescape ${libdir}/_sysconfigdata_m_darwin_darwin.py]"
2018-06-28 15:35:07 +10:00
# Also make the sysconfig changes in the Makefile
2018-03-30 02:26:57 +11:00
reinplace {s|^\(LINKFORSHARED=\).*$|\1 -L$(LIBPL) -lpython$(VERSION)$(ABIFLAGS) $(LIBS) $(SYSLIBS)|} \
2022-05-10 22:32:47 +10:00
${libdir}/${confdir}/Makefile
2018-03-30 02:26:57 +11:00
reinplace -E {s|-arch [a-z0-9_]+||g} \
2022-05-10 22:32:47 +10:00
${libdir}/${confdir}/Makefile
2018-06-28 15:35:07 +10:00
2018-03-30 02:26:57 +11:00
reinplace "s|-lintl||" \
2022-05-10 22:32:47 +10:00
${libdir}/${confdir}/Makefile
2018-03-30 02:26:57 +11:00
}
}
post-destroot {
foreach unversioned {2to3 idle3 pydoc3 python3 python3-config pyvenv} {
delete ${destroot}${prefix}/bin/${unversioned}
}
2016-07-12 08:05:18 +00:00
}
2016-06-13 05:39:34 +00:00
notes "
To make this the default Python or Python 3 (i.e., the version run by\
the 'python' or 'python3' commands), run one or both of:
sudo port select --set python $pythonNoDot
sudo port select --set python3 $pythonNoDot
"
variant universal {
post-patch {
set universal_arch_flags {}
set arch_run_32bit {}
2021-07-03 18:08:32 +10:00
set lipo_32bit_flags {}
set any64 no
foreach arch ${configure.universal_archs} {
2016-06-13 05:39:34 +00:00
lappend universal_arch_flags -arch ${arch}
2021-07-03 18:08:32 +10:00
if {${arch} in {i386 ppc}} {
2016-06-13 05:39:34 +00:00
lappend arch_run_32bit -${arch}
2021-07-03 18:08:32 +10:00
lappend lipo_32bit_flags -extract ${arch}
} else {
set any64 yes
2016-06-13 05:39:34 +00:00
}
}
2021-07-03 18:08:32 +10:00
if {$any64} {
if {$arch_run_32bit eq ""} {
set arch_run_32bit true
set lipo_32bit_flags ""
} else {
set arch_run_32bit "/usr/bin/arch $arch_run_32bit"
#lipo_32bit_flags already correct
}
} else {
set arch_run_32bit ""
set lipo_32bit_flags ""
2016-06-13 05:39:34 +00:00
}
2021-07-03 18:08:32 +10:00
reinplace \
"s|@@UNIVERSAL_ARCH_FLAGS@@|${universal_arch_flags}|" \
${worksrcpath}/configure
reinplace \
"s|@@LIPO_32BIT_FLAGS@@|${lipo_32bit_flags}|" \
${worksrcpath}/configure
reinplace \
"s|@@ARCH_RUN_32BIT@@|${arch_run_32bit}|" \
${worksrcpath}/configure
2016-06-13 05:39:34 +00:00
}
2021-07-03 18:08:32 +10:00
configure.args-append --enable-universalsdk=${configure.sysroot}
2016-06-13 05:39:34 +00:00
post-configure {
2022-03-13 21:20:19 +11:00
set oldmtime [file mtime ${worksrcpath}/pyconfig.h]
2016-06-13 05:39:34 +00:00
system -W ${worksrcpath} "ed - pyconfig.h < ${filespath}/pyconfig.h-universal.ed"
2022-03-13 21:20:19 +11:00
file mtime ${worksrcpath}/pyconfig.h $oldmtime
2016-06-13 05:39:34 +00:00
}
post-destroot {
foreach unversioned {python3-32} {
delete ${destroot}${prefix}/bin/${unversioned}
}
}
}
variant optimizations description {enable expensive, stable optimizations (including PGO)} {
configure.args-append --enable-optimizations
}
platform darwin {
# Build failures on 10.9 and older
if {${os.major} > 13} {
default_variants +optimizations
}
}
2021-09-07 00:16:39 +00:00
variant dtrace description {enable DTrace support} {
configure.args-append --with-dtrace
}
livecheck.type regex
livecheck.url ${homepage}downloads/source/
livecheck.regex Python (${branch}(?:\\.\\d+)*)