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