Makefile revision 2880
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# CDDL HEADER START
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# The contents of this file are subject to the terms of the
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# Common Development and Distribution License (the "License").
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# You may not use this file except in compliance with the License.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# or http://www.opensolaris.org/os/licensing.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# See the License for the specific language governing permissions
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# and limitations under the License.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# When distributing Covered Code, include this CDDL HEADER in each
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# If applicable, add the following below this CDDL HEADER, with the
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# fields enclosed by brackets "[]" replaced with your own identifying
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# information: Portions Copyright [yyyy] [name of copyright owner]
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# CDDL HEADER END
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterinclude ../../../make-rules/shared-macros.mk
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_NAME= python-heatclient
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_VERSION= 0.2.9
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
a393c458f24ae38c8259dea2245aa436abe248f9Phill CunningtonCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_ARCHIVE_HASH= \
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster sha256:8cc6d99f86529633b8b5d99417358fd7c023223572f190ae3e1da09ff435420f
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_ARCHIVE_URL= $(call pypi_url)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_PROJECT_URL= http://launchpad.net/python-heatclient
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_BUGDB= service/heat
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterinclude $(WS_TOP)/make-rules/prep.mk
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterinclude $(WS_TOP)/make-rules/setup.py.mk
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterinclude $(WS_TOP)/make-rules/ips.mk
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterASLR_MODE = $(ASLR_NOT_APPLICABLE)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterCOMPONENT_POST_INSTALL_ACTION = \
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster (cd $(PROTO_DIR)/usr/bin ; $(MV) -f heat heat-$(PYTHON_VERSION))
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# common targets
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterbuild: $(BUILD_NO_ARCH)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterinstall: $(INSTALL_NO_ARCH)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# tests require:
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# hacking, discover, fixtures, sphinx, testrepository, testtools,
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster# testscenarios, and mox3 some of which have not been integrated.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fostertest: $(NO_TESTS)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Fosterinclude $(WS_TOP)/make-rules/depend.mk
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster