setup.py.mk revision 5844
791N/A#
791N/A# CDDL HEADER START
1302N/A#
791N/A# The contents of this file are subject to the terms of the
1607N/A# Common Development and Distribution License (the "License").
791N/A# You may not use this file except in compliance with the License.
791N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A
919N/A#
919N/A# Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
919N/A#
791N/A
791N/A# $ (foreach suffix,$(VERSIONS),$(eval include $(WS_MAKE_RULES)/python-$(suffix).mk))
791N/A
791N/A
1035N/A$(BUILD_DIR)/%-2.7/.built: PYTHON_VERSION=2.7
791N/A$(BUILD_DIR)/%-3.4/.built: PYTHON_VERSION=3.4
970N/A$(BUILD_DIR)/%-3.5/.built: PYTHON_VERSION=3.5
970N/A$(BUILD_DIR)/$(MACH32)-%/.built: BITS=32
970N/A$(BUILD_DIR)/$(MACH64)-%/.built: BITS=64
970N/A
970N/A$(BUILD_DIR)/%-2.7/.installed: PYTHON_VERSION=2.7
1645N/A$(BUILD_DIR)/%-3.4/.installed: PYTHON_VERSION=3.4
1645N/A$(BUILD_DIR)/%-3.5/.installed: PYTHON_VERSION=3.5
970N/A$(BUILD_DIR)/$(MACH32)-%/.installed: BITS=32
970N/A$(BUILD_DIR)/$(MACH64)-%/.installed: BITS=64
970N/A
970N/A$(BUILD_DIR)/%-2.7/.tested: PYTHON_VERSION=2.7
1645N/A$(BUILD_DIR)/%-3.4/.tested: PYTHON_VERSION=3.4
970N/A$(BUILD_DIR)/%-3.5/.tested: PYTHON_VERSION=3.5
1645N/A$(BUILD_DIR)/$(MACH32)-%/.tested: BITS=32
1551N/A$(BUILD_DIR)/$(MACH64)-%/.tested: BITS=64
970N/A
970N/A$(BUILD_DIR)/%-2.7/.tested-and-compared: PYTHON_VERSION=2.7
970N/A$(BUILD_DIR)/%-3.4/.tested-and-compared: PYTHON_VERSION=3.4
1003N/A$(BUILD_DIR)/%-3.5/.tested-and-compared: PYTHON_VERSION=3.5
970N/A$(BUILD_DIR)/$(MACH32)-%/.tested-and-compared: BITS=32
1645N/A$(BUILD_DIR)/$(MACH64)-%/.tested-and-compared: BITS=64
1645N/A
1645N/A$(BUILD_DIR)/%-2.6/.system-tested: PYTHON_VERSION=2.6
1356N/A$(BUILD_DIR)/%-2.7/.system-tested: PYTHON_VERSION=2.7
1645N/A$(BUILD_DIR)/%-3.4/.system-tested: PYTHON_VERSION=3.4
1302N/A$(BUILD_DIR)/%-3.5/.system-tested: PYTHON_VERSION=3.5
791N/A$(BUILD_DIR)/$(MACH32)-%/.system-tested: BITS=32
1645N/A$(BUILD_DIR)/$(MACH64)-%/.system-tested: BITS=64
791N/A
1645N/A$(BUILD_DIR)/%-2.6/.system-tested-and-compared: PYTHON_VERSION=2.6
1645N/A$(BUILD_DIR)/%-2.7/.system-tested-and-compared: PYTHON_VERSION=2.7
1645N/A$(BUILD_DIR)/%-3.4/.system-tested-and-compared: PYTHON_VERSION=3.4
911N/A$(BUILD_DIR)/%-3.5/.system-tested-and-compared: PYTHON_VERSION=3.5
791N/A$(BUILD_DIR)/$(MACH32)-%/.system-tested-and-compared: BITS=32
1645N/A$(BUILD_DIR)/$(MACH64)-%/.system-tested-and-compared: BITS=64
791N/A
1645N/ABUILD_32 = $(PYTHON2_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.built)
1645N/ABUILD_64 = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.built)
1645N/ABUILD_NO_ARCH = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.built)
791N/Aifeq ($(PYTHON_VERSION),3.4)
1645N/ABUILD_32_and_64 = $(BUILD_64)
1645N/Aendif
1645N/Aifeq ($(PYTHON_VERSION),3.5)
1645N/ABUILD_32_and_64 = $(BUILD_64)
1645N/Aendif
1645N/A
791N/AINSTALL_32 = $(PYTHON2_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.installed)
791N/AINSTALL_64 = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.installed)
1645N/AINSTALL_NO_ARCH = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.installed)
791N/Aifeq ($(PYTHON_VERSION),3.4)
791N/AINSTALL_32_and_64 = $(INSTALL_64)
791N/Aendif
791N/Aifeq ($(PYTHON_VERSION),3.5)
791N/AINSTALL_32_and_64 = $(INSTALL_64)
791N/Aendif
791N/A
791N/APYTHON_ENV = CC="$(CC)"
791N/APYTHON_ENV += CFLAGS="$(CFLAGS)"
1645N/APYTHON_ENV += PATH="$(PATH):$(SPRO_VROOT)/bin"
791N/A
1645N/ACOMPONENT_BUILD_ENV += $(PYTHON_ENV)
1645N/ACOMPONENT_INSTALL_ENV += $(PYTHON_ENV)
1033N/ACOMPONENT_TEST_ENV += $(PYTHON_ENV)
1646N/ACOMPONENT_SYSTEM_TEST_ENV += $(PYTHON_ENV)
1646N/A
791N/A# Build the canonical version (currently 2.7) last.
791N/Aifneq ($(findstring 3.4,$(PYTHON_VERSIONS)),)
791N/A$(BUILD_DIR)/%-2.7/.built: $(BUILD_DIR)/%-3.4/.built
1645N/A$(BUILD_DIR)/%-2.7/.installed: $(BUILD_DIR)/%-3.4/.installed
1645N/Aendif
1645N/Aifneq ($(findstring 3.5,$(PYTHON_VERSIONS)),)
1645N/A$(BUILD_DIR)/%-2.7/.built: $(BUILD_DIR)/%-3.5/.built
1645N/A$(BUILD_DIR)/%-2.7/.installed: $(BUILD_DIR)/%-3.5/.installed
1645N/Aendif
1645N/A
1645N/A# Create a distutils config file specific to the combination of build
1645N/A# characteristics (bittedness x Python version), and put it in its own
1645N/A# directory. We can set $HOME to point distutils at it later, allowing
1645N/A# the install phase to find the temporary build directories.
791N/ACFG=.pydistutils.cfg
1645N/A$(BUILD_DIR)/config-%/$(CFG):
1645N/A $(MKDIR) $(@D)
1645N/A echo "[build]\nbuild_base = $(BUILD_DIR)/$*" > $@
1645N/A
1645N/A# build the configured source
1647N/A$(BUILD_DIR)/%/.built: $(SOURCE_DIR)/.prep $(BUILD_DIR)/config-%/$(CFG)
1647N/A $(RM) -r $(@D) ; $(MKDIR) $(@D)
1647N/A $(COMPONENT_PRE_BUILD_ACTION)
1645N/A (cd $(SOURCE_DIR) ; $(ENV) HOME=$(BUILD_DIR)/config-$* $(COMPONENT_BUILD_ENV) \
1645N/A $(PYTHON.$(BITS)) ./setup.py build)
1647N/A $(COMPONENT_POST_BUILD_ACTION)
1645N/Aifeq ($(strip $(PARFAIT_BUILD)),yes)
1647N/A -$(PARFAIT) $(@D)
1647N/Aendif
1645N/A $(TOUCH) $@
1645N/A
1647N/A
1645N/ACOMPONENT_INSTALL_ARGS += --root $(PROTO_DIR)
1645N/ACOMPONENT_INSTALL_ARGS += --install-lib=$(PYTHON_LIB)
1647N/ACOMPONENT_INSTALL_ARGS += --install-purelib=$(PYTHON_LIB)
COMPONENT_INSTALL_ARGS += --install-platlib=$(PYTHON_LIB)
COMPONENT_INSTALL_ARGS += --install-data=$(PYTHON_DATA)
COMPONENT_INSTALL_ARGS += --force
# install the built source into a prototype area
$(BUILD_DIR)/%/.installed: $(BUILD_DIR)/%/.built $(BUILD_DIR)/config-%/$(CFG)
$(COMPONENT_PRE_INSTALL_ACTION)
(cd $(SOURCE_DIR) ; $(ENV) HOME=$(BUILD_DIR)/config-$* $(COMPONENT_INSTALL_ENV) \
$(PYTHON.$(BITS)) ./setup.py install $(COMPONENT_INSTALL_ARGS))
$(COMPONENT_POST_INSTALL_ACTION)
$(TOUCH) $@
# Define bit specific and Python version specific filenames.
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-$(PYTHON_VERSION)-$(BITS).master
COMPONENT_TEST_OUTPUT = $(COMPONENT_TEST_BUILD_DIR)/test-$(PYTHON_VERSION)-$(BITS)-results
COMPONENT_TEST_DIFFS = $(COMPONENT_TEST_BUILD_DIR)/test-$(PYTHON_VERSION)-$(BITS)-diffs
COMPONENT_TEST_SNAPSHOT = $(COMPONENT_TEST_BUILD_DIR)/results-$(PYTHON_VERSION)-$(BITS).snapshot
COMPONENT_TEST_TRANSFORM_CMD = $(COMPONENT_TEST_BUILD_DIR)/transform-$(PYTHON_VERSION)-$(BITS)-results
COMPONENT_TEST_DEP = $(BUILD_DIR)/%/.installed
COMPONENT_TEST_DIR = $(COMPONENT_SRC)/test
COMPONENT_TEST_ENV_CMD = $(ENV)
COMPONENT_TEST_ENV += PYTHONPATH=$(PROTO_DIR)$(PYTHON_VENDOR_PACKAGES)
COMPONENT_TEST_CMD = $(PYTHON)
COMPONENT_TEST_ARGS += ./runtests.py
COMPONENT_SYSTEM_TEST_DEP = $(SOURCE_DIR)/.prep
COMPONENT_SYSTEM_TEST_DIR = $(COMPONENT_SRC)/test
COMPONENT_SYSTEM_TEST_ENV_CMD = $(ENV)
COMPONENT_SYSTEM_TEST_ENV += PYTHONPATH=$(PYTHON_VENDOR_PACKAGES)
COMPONENT_SYSTEM_TEST_CMD = $(PYTHON)
COMPONENT_SYSTEM_TEST_ARGS += ./runtests.py
# determine the type of tests we want to run.
ifeq ($(strip $(wildcard $(COMPONENT_TEST_RESULTS_DIR)/results-*.master)),)
TEST_32 = $(PYTHON2_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.tested)
TEST_64 = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.tested)
TEST_NO_ARCH = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.tested)
else
TEST_32 = $(PYTHON2_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.tested-and-compared)
TEST_64 = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.tested-and-compared)
TEST_NO_ARCH = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.tested-and-compared)
endif
ifeq ($(PYTHON_VERSION),3.4)
TEST_32_and_64 = $(TEST_64)
endif
ifeq ($(PYTHON_VERSION),3.5)
TEST_32_and_64 = $(TEST_64)
endif
ifeq ($(strip $(wildcard $(COMPONENT_SYSTEM_TEST_RESULTS_DIR)/results-*.master)),)
SYSTEM_TEST_32 = $(PYTHON2_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.system-tested)
SYSTEM_TEST_64 = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.system-tested)
SYSTEM_TEST_NO_ARCH = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.system-tested)
else
SYSTEM_TEST_32 = $(PYTHON2_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.system-tested-and-compared)
SYSTEM_TEST_64 = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.system-tested-and-compared)
SYSTEM_TEST_NO_ARCH = $(PYTHON_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.system-tested-and-compared)
endif
ifeq ($(PYTHON_VERSION),3.4)
SYSTEM_TEST_32_and_64 = $(SYSTEM_TEST_64)
endif
ifeq ($(PYTHON_VERSION),3.5)
SYSTEM_TEST_32_and_64 = $(SYSTEM_TEST_64)
endif
# test the built source
$(BUILD_DIR)/%/.tested-and-compared: $(COMPONENT_TEST_DEP)
$(RM) -rf $(COMPONENT_TEST_BUILD_DIR)
$(MKDIR) $(COMPONENT_TEST_BUILD_DIR)
$(COMPONENT_PRE_TEST_ACTION)
-(cd $(COMPONENT_TEST_DIR) ; \
$(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \
$(COMPONENT_TEST_CMD) $(COMPONENT_TEST_ARGS)) \
&> $(COMPONENT_TEST_OUTPUT)
$(COMPONENT_POST_TEST_ACTION)
$(COMPONENT_TEST_CREATE_TRANSFORMS)
$(COMPONENT_TEST_PERFORM_TRANSFORM)
$(COMPONENT_TEST_COMPARE)
$(COMPONENT_TEST_CLEANUP)
$(TOUCH) $@
$(BUILD_DIR)/%/.tested: $(COMPONENT_TEST_DEP)
$(COMPONENT_PRE_TEST_ACTION)
(cd $(COMPONENT_TEST_DIR) ; \
$(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \
$(COMPONENT_TEST_CMD) $(COMPONENT_TEST_ARGS))
$(COMPONENT_POST_TEST_ACTION)
$(COMPONENT_TEST_CLEANUP)
$(TOUCH) $@
# test the installed system
$(BUILD_DIR)/%/.system-tested-and-compared: $(COMPONENT_SYSTEM_TEST_DEP)
$(RM) -rf $(COMPONENT_TEST_BUILD_DIR)
$(MKDIR) $(COMPONENT_TEST_BUILD_DIR)
$(RM) -rf $(@D)
$(MKDIR) $(@D)
$(COMPONENT_PRE_SYSTEM_TEST_ACTION)
-(cd $(COMPONENT_SYSTEM_TEST_DIR) ; \
$(COMPONENT_SYSTEM_TEST_ENV_CMD) $(COMPONENT_SYSTEM_TEST_ENV) \
$(COMPONENT_SYSTEM_TEST_CMD) $(COMPONENT_SYSTEM_TEST_ARGS)) \
&> $(COMPONENT_TEST_OUTPUT)
$(COMPONENT_POST_SYSTEM_TEST_ACTION)
$(COMPONENT_TEST_CREATE_TRANSFORMS)
$(COMPONENT_TEST_PERFORM_TRANSFORM)
$(COMPONENT_TEST_COMPARE)
$(COMPONENT_SYSTEM_TEST_CLEANUP)
$(TOUCH) $@
$(BUILD_DIR)/%/.system-tested: $(COMPONENT_SYSTEM_TEST_DEP)
$(COMPONENT_PRE_SYSTEM_TEST_ACTION)
(cd $(COMPONENT_SYSTEM_TEST_DIR) ; \
$(COMPONENT_SYSTEM_TEST_ENV_CMD) $(COMPONENT_SYSTEM_TEST_ENV) \
$(COMPONENT_SYSTEM_TEST_CMD) $(COMPONENT_SYSTEM_TEST_ARGS))
$(COMPONENT_POST_SYSTEM_TEST_ACTION)
$(COMPONENT_SYSTEM_TEST_CLEANUP)
$(TOUCH) $@
ifeq ($(strip $(PARFAIT_BUILD)),yes)
parfait: build
else
parfait:
$(MAKE) PARFAIT_BUILD=yes parfait
endif
# Make it easy to construct a URL for a pypi source download. This
# construct supports an optional call to a number from
# NUM_EXTRA_ARCHIVES for multiple archive downloads.
PYPI_BASE = http://pypi.python.org/packages/source
pypi_url_multi = $(shell echo $(COMPONENT_NAME_$(1)) | cut -c1)/$(COMPONENT_NAME_$(1))/$(COMPONENT_ARCHIVE_$(1))
pypi_url_single = $(shell echo $(COMPONENT_NAME) | cut -c1)/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
pypi_url = $(PYPI_BASE)/$(if $(COMPONENT_NAME_$(1)),$(pypi_url_multi),$(pypi_url_single))
ifneq ($(findstring 2.7, $(PYTHON_VERSIONS)),)
REQUIRED_PACKAGES += runtime/python-27
REQUIRED_PACKAGES += library/python/setuptools-27
endif
ifneq ($(findstring 3.4, $(PYTHON_VERSIONS)),)
REQUIRED_PACKAGES += runtime/python-34
REQUIRED_PACKAGES += library/python/setuptools-34
endif
ifneq ($(findstring 3.5, $(PYTHON_VERSIONS)),)
REQUIRED_PACKAGES += runtime/python-35
REQUIRED_PACKAGES += library/python/setuptools-35
endif