Makefile revision 3996
2338N/A#
2338N/A# CDDL HEADER START
2338N/A#
2338N/A# The contents of this file are subject to the terms of the
2338N/A# Common Development and Distribution License (the "License").
2338N/A# You may not use this file except in compliance with the License.
2338N/A#
2338N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2338N/A# or http://www.opensolaris.org/os/licensing.
2338N/A# See the License for the specific language governing permissions
2338N/A# and limitations under the License.
2338N/A#
2338N/A# When distributing Covered Code, include this CDDL HEADER in each
2338N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2338N/A# If applicable, add the following below this CDDL HEADER, with the
2338N/A# fields enclosed by brackets "[]" replaced with your own identifying
2338N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2338N/A#
2338N/A# CDDL HEADER END
2338N/A#
2338N/A# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
2665N/A#
2338N/Ainclude ../../../make-rules/shared-macros.mk
2338N/A
2338N/ACOMPONENT_NAME= importlib
2338N/ACOMPONENT_VERSION= 1.0.2
2338N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
2338N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
2338N/ACOMPONENT_ARCHIVE_HASH= \
2338N/A sha256:24d0966aa76859b288485803f310076512f87377e6c9afe9c28c52a8ccdd328c
2338N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
2338N/ACOMPONENT_PROJECT_URL= https://pypi.python.org/pypi/importlib
2665N/ACOMPONENT_BUGDB= python-mod/importlib
2338N/A
2338N/ATPNO= 14503
2338N/A
2338N/A# The importlib module was integrated into Python 2.7, so we should
2338N/A# only deliver a 2.6 module.
2665N/APYTHON_VERSIONS = 2.6
2338N/A
2338N/Ainclude $(WS_MAKE_RULES)/prep.mk
2665N/Ainclude $(WS_MAKE_RULES)/setup.py.mk
2338N/Ainclude $(WS_MAKE_RULES)/ips.mk
2338N/A
2338N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
2338N/A
2338N/A# common targets
2338N/Abuild: $(BUILD_NO_ARCH)
2338N/A
2338N/Ainstall: $(INSTALL_NO_ARCH)
2338N/A
2338N/Atest: $(NO_TESTS)