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