Makefile revision 5680
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# CDDL HEADER START
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# The contents of this file are subject to the terms of the
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# Common Development and Distribution License (the "License").
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# You may not use this file except in compliance with the License.
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# or http://www.opensolaris.org/os/licensing.
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# See the License for the specific language governing permissions
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# and limitations under the License.
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# When distributing Covered Code, include this CDDL HEADER in each
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# If applicable, add the following below this CDDL HEADER, with the
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# fields enclosed by brackets "[]" replaced with your own identifying
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# information: Portions Copyright [yyyy] [name of copyright owner]
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# CDDL HEADER END
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
1426d65aa9264a283c76d271972aeb7f6a070be3sm#
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
25cf1a301a396c38e8adf52c15f537b80d2483f7jl#
25cf1a301a396c38e8adf52c15f537b80d2483f7jlinclude ../../../make-rules/shared-macros.mk
e98fafb9956429b59c817d4fbd27720c73879203jl
e98fafb9956429b59c817d4fbd27720c73879203jlCOMPONENT_NAME= setuptools-git
e98fafb9956429b59c817d4fbd27720c73879203jlCOMPONENT_VERSION= 1.0
e98fafb9956429b59c817d4fbd27720c73879203jlCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_ARCHIVE_HASH= \
25cf1a301a396c38e8adf52c15f537b80d2483f7jl sha256:eb75844bd56bd33f7c461246cdf99e6fa50b6a8dde2c56c967db54cd47b51af4
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_ARCHIVE_URL= $(call pypi_url)
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_PROJECT_URL= https://github.com/wichert/setuptools-git
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_BUGDB= python-mod/setuptools
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jlTPNO= 14503
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jlinclude $(WS_MAKE_RULES)/prep.mk
25cf1a301a396c38e8adf52c15f537b80d2483f7jlinclude $(WS_MAKE_RULES)/setup.py.mk
25cf1a301a396c38e8adf52c15f537b80d2483f7jlinclude $(WS_MAKE_RULES)/ips.mk
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jlASLR_MODE = $(ASLR_NOT_APPLICABLE)
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_TEST_DIR= $(SOURCE_DIR)
25cf1a301a396c38e8adf52c15f537b80d2483f7jlCOMPONENT_TEST_ARGS= setup.py test
3cbfd4cf9e3b91b2efed73184d8c6dc586fc1935jimand
25cf1a301a396c38e8adf52c15f537b80d2483f7jl# common targets
25cf1a301a396c38e8adf52c15f537b80d2483f7jlbuild: $(BUILD_NO_ARCH)
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jlinstall: $(INSTALL_NO_ARCH)
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jltest: $(TEST_NO_ARCH)
25cf1a301a396c38e8adf52c15f537b80d2483f7jl
25cf1a301a396c38e8adf52c15f537b80d2483f7jlsystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
25cf1a301a396c38e8adf52c15f537b80d2483f7jl