4910N/A#
4910N/A# CDDL HEADER START
4910N/A#
4910N/A# The contents of this file are subject to the terms of the
4910N/A# Common Development and Distribution License (the "License").
4910N/A# You may not use this file except in compliance with the License.
4910N/A#
4910N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4910N/A# or http://www.opensolaris.org/os/licensing.
4910N/A# See the License for the specific language governing permissions
4910N/A# and limitations under the License.
4910N/A#
4910N/A# When distributing Covered Code, include this CDDL HEADER in each
4910N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4910N/A# If applicable, add the following below this CDDL HEADER, with the
4910N/A# fields enclosed by brackets "[]" replaced with your own identifying
4910N/A# information: Portions Copyright [yyyy] [name of copyright owner]
4910N/A#
4910N/A# CDDL HEADER END
4910N/A#
4910N/A
4910N/A#
5466N/A# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
4910N/A#
4910N/Ainclude ../../../make-rules/shared-macros.mk
4910N/A
4910N/ACOMPONENT_NAME= Python
6445N/ACOMPONENT_VERSION= 3.5.2
4910N/ACOMPONENT_PROJECT_URL= http://python.org/
4910N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
4910N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz
4910N/ACOMPONENT_ARCHIVE_HASH= \
6445N/A sha256:0010f56100b9b74259ebcd5d4b295a32324b58b517403a10d1a2aa7cb22bca40
5182N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)ftp/python/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
4910N/ACOMPONENT_SIG_URL= $(COMPONENT_ARCHIVE_URL).asc
4910N/ACOMPONENT_BUGDB= utility/python
4910N/A
6445N/ATPNO= 29999
4910N/A
4910N/Ainclude $(WS_MAKE_RULES)/prep.mk
4910N/Ainclude $(WS_MAKE_RULES)/configure.mk
4910N/Ainclude $(WS_MAKE_RULES)/ips.mk
4910N/Ainclude $(WS_MAKE_RULES)/lint-libraries.mk
4910N/A
4910N/A# Need to preserve timestamp for Grammar files. If the pickle files are older,
4910N/A# Python will try to rebuild them.
4910N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.txt
4910N/APKGSEND_PUBLISH_OPTIONS += -T \*Grammar\*.pickle
4910N/A
4910N/A# We patch auto* files, so regenerate headers and configure
4976N/ACOMPONENT_PREP_ACTION = (cd $(@D) ; autoheader ; autoconf -f)
4910N/A
4910N/A# The DTrace patch needs this file to be mode 0755.
4910N/ACOMPONENT_PRE_BUILD_ACTION=($(CHMOD) +x \
4910N/A $(SOURCE_DIR)/Include/pydtrace_offsets.sh)
4910N/A
4910N/A# we don't want to leak $(CC_BITS) into BASECFLAGS as it causes problems with
4910N/A# python-config
4910N/ACC += $(CFLAGS)
4910N/A
6901N/Astudio_C99MODE= $(studio_C99_ENABLE)
6901N/ACFLAGS += $(XPG6MODE)
6901N/A
4910N/ACPPFLAGS += -IPython
4910N/A
4910N/A# to find the ncurses headers
4910N/ACPPFLAGS += -I/usr/include/ncurses
4910N/A# enable large files how they did in JDS
4910N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
4910N/A
4910N/A# libffi for _ctypes
4910N/ACPPFLAGS += $(shell pkg-config --cflags-only-I libffi)
4910N/A
4910N/A# because python links with $(CC) ... $(LDFLAGS) ...
4910N/ALDFLAGS = $(CC_BITS) $(CC_PIC)
4910N/A
4910N/A# build pic
4910N/ACFLAGS += $(CC_PIC)
4910N/A
4910N/A# for DWARF
4910N/ACFLAGS.i386 = -preserve_argvalues=complete
5934N/A# Use the Studio VIS SDK in order to explicitly generate nonfaulting loads
5934N/A# that allow Python to work with ADI-aware memory allocators.
5934N/ACFLAGS.studio.sparc.64 = -xvis
5934N/A
4910N/ACFLAGS += $(CFLAGS.$(MACH))
4910N/A
4910N/A# 16-byte memory alignment + interpretation of non-alignment prevents SIGBUS.
4910N/Astudio_ALIGN.sparc.64 = -xmemalign=16i
4910N/A
4910N/A# The python build is profile-guided for studio; to see the benefits of that,
4910N/A# Python must be compiled with -xO5 and a different build target must be used.
4910N/A# Use of xprofile requires that the same options be used during compilation and
4910N/A# linking. The targets chosen are based on Solaris 11 minimum supported system
4910N/A# requirements.
4910N/ACOMPONENT_BUILD_TARGETS = profile-opt
4910N/AXPROFILE_DIR = $(BUILD_DIR_$(BITS))/.profile
4910N/APYFLAGS.i386 = -xtarget=opteron -xarch=sse2 -xcache=generic
4910N/APYFLAGS.sparc =
4910N/ACFLAGS += -xO5 $(PYFLAGS.$(MACH))
4910N/ALDFLAGS += -xO5 $(PYFLAGS.$(MACH))
4910N/A
4910N/A# Python puts its header files in a special place.
4910N/ALINT_FLAGS += -I$(SOURCE_DIR)/Include
4910N/A
4910N/A# PYTHONPATH in the environment can be harmful, but setting it to empty via
4910N/A# _INSTALL_ENV causes problems too, so just ignore the entire environment.
4910N/A# Because of this, we need to specify PATH in multiple places below.
4910N/AENV += -i
4910N/A
4910N/ACONFIGURE_ENV += PATH="$(PATH)"
4910N/A
4910N/ACONFIGURE_OPTIONS += --infodir=$(CONFIGURE_INFODIR)
4910N/ACONFIGURE_OPTIONS += --enable-shared
4910N/ACONFIGURE_OPTIONS += --with-dtrace
4910N/ACONFIGURE_OPTIONS += --with-system-expat
4910N/ACONFIGURE_OPTIONS += --with-system-ffi
4910N/ACONFIGURE_OPTIONS += --without-gcc
4910N/ACONFIGURE_OPTIONS += --without-ensurepip
4910N/ACONFIGURE_OPTIONS += --enable-ipv6
4910N/ACONFIGURE_OPTIONS += --bindir=/usr/bin
4910N/ACONFIGURE_OPTIONS += "ac_cv_func_getentropy=no"
4910N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
4910N/ACONFIGURE_OPTIONS += LDFLAGS="$(LDFLAGS)"
4910N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
4910N/ACONFIGURE_OPTIONS += DFLAGS="-$(BITS)"
4910N/ACONFIGURE_OPTIONS += XPROFILE_DIR="$(XPROFILE_DIR)"
4910N/A
4910N/ACOMPONENT_BUILD_ENV += DFLAGS="-$(BITS)"
4910N/ACOMPONENT_BUILD_ENV += XPROFILE_DIR="$(XPROFILE_DIR)"
4910N/ACOMPONENT_BUILD_ENV += PATH="$(PATH)"
4910N/A
4910N/A# Some tests have non-ASCII characters encoded for international domain names;
4910N/A# the publish step will fail in 'pkgdepend generate' without this:
4910N/ACOMPONENT_PUBLISH_ENV += LC_ALL=en_US.UTF-8
4910N/A
4910N/A# 64 bit shared objects need to go in a 64-bit directory
4910N/ACOMPONENT_INSTALL_ARGS.64 += DESTSHARED=$(CONFIGURE_PREFIX)/lib/python3.5/lib-dynload
4910N/A
4910N/A# Simplify the definitions of CC, CXX, CFLAGS and LDFLAGS so they hard-code
4910N/A# neither paths from our build systems nor Studio-specific options.
4910N/ACOMPONENT_PRE_INSTALL_ACTION= \
4910N/A (cd $(@D) ; \
4910N/A $(GSED) -i -e 's/^CC=.*/CC=\t\tcc/' -e 's/^CXX=.*/CXX=\t\tCC/' \
4910N/A -e 's/^CFLAGS=.*/CFLAGS=\t\t\$$\(BASECFLAGS) \$$\(OPT) \$$\(EXTRA_CFLAGS)/' \
4910N/A -e 's|^LDFLAGS=.*|LDFLAGS=|' Makefile)
4910N/A
4910N/A# Because we stripped the Makefile above, we need to pass several things in the
4910N/A# environment, and use -e to tell gmake to pay attention to the environment.
4910N/ACOMPONENT_INSTALL_ENV += CC="$(CC)"
4910N/ACOMPONENT_INSTALL_ENV += CXX="$(CXX)"
4910N/ACOMPONENT_INSTALL_ENV += CFLAGS="$(CFLAGS)"
4910N/ACOMPONENT_INSTALL_ENV += LDFLAGS="$(LDFLAGS)"
4910N/ACOMPONENT_INSTALL_ENV += PATH="$(PATH)"
4910N/ACOMPONENT_INSTALL_ARGS += -e
4910N/A
4910N/A# Strip build machine paths from _sysconfigdata.py & config/Makefile,
4910N/A# then (re)compile _sysconfigdata.py since we just updated it.
4910N/A# Note that once Python 3.5 has been integrated and propagated to build
4910N/A# machines, then the LD_LIBRARY_PATH setting and PROTO_DIR prefix below
4910N/A# can both be removed.
4910N/ACOMPONENT_POST_INSTALL_ACTION= \
4910N/A (cd $(PROTOUSRLIBDIR)/python3.5 ; \
4910N/A $(GSED) -i -e 's|$(SOURCE_DIR)|.|g' -e 's|$(COMPONENT_DIR)|..|g' \
4910N/A -e 's|$(SPRO_VROOT)/bin/||g' _sysconfigdata.py config-3.5m/Makefile; \
4910N/A LD_LIBRARY_PATH=$(PROTOUSRLIBDIR64) $(PROTO_DIR)$(PYTHON.3.5) -m py_compile _sysconfigdata.py)
4910N/A
4910N/A# common targets
4910N/Aconfigure: $(CONFIGURE_64)
4910N/Abuild: $(BUILD_64)
4910N/Ainstall: $(INSTALL_64)
4910N/A
4910N/A# Using "-uall,-network" ensures all tests are run except the network tests.
4910N/A# The network tests contain many expected failures when run behind a firewall.
4910N/A# The "-v" ensures verbose mode. You can set TESTOPTS_PYTHON_TEST to a
4910N/A# particular test if you want to run just one test. For example,
4910N/A# $ TESTOPTS_PYTHON_TEST=test_sys gmake -k test
4910N/A# Note that when a test succeeds, the builds/*/.tested file gets created. You
4910N/A# may need to remove these files, or run "gmake clobber" or "gmake clean"
4910N/A# between tests.
4910N/A#
4910N/ACOMPONENT_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)"
4910N/A# The distutils tests need $CC in $PATH.
4910N/ACOMPONENT_TEST_ENV += PATH="$(SPRO_VROOT)/bin:$(PATH)"
4910N/A# Prevent the tests from getting stuck waiting for input.
4910N/ACOMPONENT_TEST_TARGETS = test < /dev/null
4910N/A# Some different values for system testing.
4910N/ACOMPONENT_SYSTEM_TEST_ENV = EXTRATESTOPTS="-v -uall,-network $(TESTOPTS_PYTHON_TEST)"
4910N/ACOMPONENT_SYSTEM_TEST_TARGETS =
4910N/ACOMPONENT_SYSTEM_TEST_CMD= $(PYTHON.3.5)
4910N/ACOMPONENT_SYSTEM_TEST_ARGS= /usr/lib/python3.5/test/regrtest.py -v -uall,-network
4910N/A
4910N/A# The test output contains details from each test, in whatever order they
4910N/A# complete. The default _TRANSFORMER is not powerful enough to deal with
4910N/A# this; we need heavier artillery. Extract just the sections that start
4910N/A# with "tests OK." and end with "Re-running failed tests..." for comparison.
4910N/ACOMPONENT_TEST_TRANSFORMER = $(NAWK)
4910N/ACOMPONENT_TEST_TRANSFORMS = "'/tests OK./ {results = 1}; /Re-running failed tests in verbose mode/ {results = 0} {if (results) print $0 } '"
4910N/A
4910N/Atest: $(TEST_64)
4910N/Asystem-test: $(SYSTEM_TEST_64)
4910N/A
4910N/AREQUIRED_PACKAGES += compress/bzip2
4910N/AREQUIRED_PACKAGES += compress/xz
4910N/AREQUIRED_PACKAGES += database/sqlite-3
4910N/AREQUIRED_PACKAGES += library/database/gdbm
4910N/AREQUIRED_PACKAGES += library/expat
4910N/AREQUIRED_PACKAGES += library/libffi
4910N/AREQUIRED_PACKAGES += library/ncurses
4910N/AREQUIRED_PACKAGES += library/readline
4910N/AREQUIRED_PACKAGES += library/security/openssl
4910N/AREQUIRED_PACKAGES += library/zlib
4910N/AREQUIRED_PACKAGES += runtime/tcl-8
4910N/AREQUIRED_PACKAGES += runtime/tk-8
4910N/AREQUIRED_PACKAGES += system/library/math
4910N/AREQUIRED_PACKAGES += x11/library/libx11