Makefile revision 2899
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
499b34cea04a46823d003d4c0520c8b03e8513cbBrian Wellington# CDDL HEADER START
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# The contents of this file are subject to the terms of the
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# Common Development and Distribution License (the "License").
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# You may not use this file except in compliance with the License.
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence#
15a44745412679c30a6d022733925af70a38b715David Lawrence# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15a44745412679c30a6d022733925af70a38b715David Lawrence# or http://www.opensolaris.org/os/licensing.
15a44745412679c30a6d022733925af70a38b715David Lawrence# See the License for the specific language governing permissions
15a44745412679c30a6d022733925af70a38b715David Lawrence# and limitations under the License.
15a44745412679c30a6d022733925af70a38b715David Lawrence#
15a44745412679c30a6d022733925af70a38b715David Lawrence# When distributing Covered Code, include this CDDL HEADER in each
15a44745412679c30a6d022733925af70a38b715David Lawrence# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15a44745412679c30a6d022733925af70a38b715David Lawrence# If applicable, add the following below this CDDL HEADER, with the
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# fields enclosed by brackets "[]" replaced with your own identifying
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# information: Portions Copyright [yyyy] [name of copyright owner]
806c235ecf533b98d068b3f8df9d7abbe1e30cf9Mark Andrews#
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence# CDDL HEADER END
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley#
8775909be9fc67180fc480115716f88174e74471James Bristerinclude ../../../make-rules/shared-macros.mk
e4653123ecc6cdbfc0b9eda6e98e44af3b1f9a08Mark Andrews
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_NAME= six
e3b279bfa9c251f4094338a24096209be40b512fAndreas GustafssonCOMPONENT_VERSION= 1.6.1
996f4a8bc34cb0203ce6a40ff82bca8bf32423ccAndreas GustafssonCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
e3b279bfa9c251f4094338a24096209be40b512fAndreas GustafssonCOMPONENT_ARCHIVE_HASH= \
9cd6d409b78a6f833b681c13a68fbdc7c024fe66David Lawrence sha256:d4392a7c8d91b005c002568a85faf617c67241c8cd8399cc395e8f1005aff80d
242bba8991b030b7764f0bdca3922d75c34ea51eAndreas GustafssonCOMPONENT_ARCHIVE_URL= $(call pypi_url)
d8e34837cd6c88c42b3ecdb9107a43ecf8252e79David LawrenceCOMPONENT_PROJECT_URL= http://pypi.python.org/pypi/six/
1a69a1a78cfaa86f3b68bbc965232b7876d4da2aDavid LawrenceCOMPONENT_BUGDB= python-mod/six
440be4c866f6935ac069db79a414304507a664c2Michael Graff
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyTPNO= 17859
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/prep.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/setup.py.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/ips.mk
72614620fc3767efe209219a4f68d6c283af4184Bob Halley
066faef1195d539f575816ccab87ff3e85b1b13eBrian WellingtonASLR_MODE = $(ASLR_NOT_APPLICABLE)
10e22ebcc3629be94d37bf408157e2c5ee5740e0Andreas Gustafsson
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_TEST_DIR = $(SOURCE_DIR)
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyCOMPONENT_TEST_ARGS = test_six.py
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
bb812feb3c94032bac0c9538d41e767b6bbad88eBrian Wellington# common targets
f6478f5e44e63d69e649ded415ef5700ad7f0087Brian Wellingtonbuild: $(BUILD_NO_ARCH)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinstall: $(INSTALL_NO_ARCH)
92ef1a9b9dbd48ecb507b42ac62c15afefdaf838David Lawrence
92ef1a9b9dbd48ecb507b42ac62c15afefdaf838David Lawrence# Tests require the py Python module which hasn't been integrated yet.
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleytest: $(NO_TESTS)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob HalleyBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halleyinclude $(WS_TOP)/make-rules/depend.mk
903b7c030e426b5a785c4b61c924c03913d0b162Bob Halley