Makefile revision 4982
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentis#
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# CDDL HEADER START
7fb4c0766e858653c9776474005a6ae6d94828afgryzor#
aa02de5e10b5b1ed0bd27e048283bba70657ac71rbowen# The contents of this file are subject to the terms of the
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# Common Development and Distribution License (the "License").
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# You may not use this file except in compliance with the License.
7fb4c0766e858653c9776474005a6ae6d94828afgryzor#
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# or http://www.opensolaris.org/os/licensing.
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# See the License for the specific language governing permissions
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# and limitations under the License.
7fb4c0766e858653c9776474005a6ae6d94828afgryzor#
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# When distributing Covered Code, include this CDDL HEADER in each
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# If applicable, add the following below this CDDL HEADER, with the
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# fields enclosed by brackets "[]" replaced with your own identifying
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# information: Portions Copyright [yyyy] [name of copyright owner]
7fb4c0766e858653c9776474005a6ae6d94828afgryzor#
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# CDDL HEADER END
7fb4c0766e858653c9776474005a6ae6d94828afgryzor#
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
7fb4c0766e858653c9776474005a6ae6d94828afgryzor#
7fb4c0766e858653c9776474005a6ae6d94828afgryzorinclude ../../../make-rules/shared-macros.mk
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_NAME= mock
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_VERSION= 1.0.1
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_PROJECT_URL= http://www.voidspace.org.uk/python/mock/
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_SRC= $(COMPONENT_SRC_NAME)-$(COMPONENT_VERSION)
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_ARCHIVE_HASH= \
7fb4c0766e858653c9776474005a6ae6d94828afgryzor sha256:b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentisCOMPONENT_ARCHIVE_URL= http://pypi.python.org/packages/source/m/mock/$(COMPONENT_ARCHIVE)
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_BUGDB= python-mod/mock
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
7fb4c0766e858653c9776474005a6ae6d94828afgryzorTPNO= 12679
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# mock has been subsumed into Python starting with 3.3, so no need to build
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# it for Python 3.
7fb4c0766e858653c9776474005a6ae6d94828afgryzorPYTHON_VERSIONS= $(PYTHON2_VERSIONS)
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentis
7fb4c0766e858653c9776474005a6ae6d94828afgryzorinclude $(WS_MAKE_RULES)/prep.mk
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentisinclude $(WS_MAKE_RULES)/setup.py.mk
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentisinclude $(WS_MAKE_RULES)/ips.mk
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_TEST_DIR = $(SOURCE_DIR)
7fb4c0766e858653c9776474005a6ae6d94828afgryzorCOMPONENT_TEST_ARGS = setup.py test
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentis
7fb4c0766e858653c9776474005a6ae6d94828afgryzorASLR_MODE = $(ASLR_NOT_APPLICABLE)
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
7fb4c0766e858653c9776474005a6ae6d94828afgryzor# common targets
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentisbuild: $(BUILD_NO_ARCH)
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentis
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentisinstall: $(INSTALL_NO_ARCH)
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentistest: $(TEST_NO_ARCH)
f98460c087bf9c741a3a21c4cf07c7c2ef110d3blgentis
c143f681754bc83f46cb70910e7450026886c59clgentissystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)
7fb4c0766e858653c9776474005a6ae6d94828afgryzor
7fb4c0766e858653c9776474005a6ae6d94828afgryzor