Makefile revision 2899
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# CDDL HEADER START
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# The contents of this file are subject to the terms of the
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# Common Development and Distribution License (the "License").
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# You may not use this file except in compliance with the License.
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# or http://www.opensolaris.org/os/licensing.
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# See the License for the specific language governing permissions
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# and limitations under the License.
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# When distributing Covered Code, include this CDDL HEADER in each
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# If applicable, add the following below this CDDL HEADER, with the
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# fields enclosed by brackets "[]" replaced with your own identifying
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# CDDL HEADER END
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync#
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncinclude ../../../make-rules/shared-macros.mk
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_NAME= PasteDeploy
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_VERSION= 1.5.0
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_ARCHIVE_HASH= \
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync sha256:61c205633adae996cd0e306451c8a28deca0499524e2a38c65ff1570f35a8a53
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_ARCHIVE_URL= $(call pypi_url)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_PROJECT_URL= http://pythonpaste.org/deploy/
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncCOMPONENT_BUGDB= python-mod/paste-deploy
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncTPNO= 14503
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# Depends on paste which is not Python 3 ready.
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncPYTHON_VERSIONS= 2.7 2.6
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncinclude $(WS_TOP)/make-rules/prep.mk
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncinclude $(WS_TOP)/make-rules/setup.py.mk
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncinclude $(WS_TOP)/make-rules/ips.mk
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncASLR_MODE = $(ASLR_NOT_APPLICABLE)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync# common targets
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncbuild: $(BUILD_NO_ARCH)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncinstall: $(INSTALL_NO_ARCH)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsynctest: $(NO_TESTS)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync
b9a21c3c91c47e090316e28d759194e46628ed49vboxsyncinclude $(WS_TOP)/make-rules/depend.mk
b9a21c3c91c47e090316e28d759194e46628ed49vboxsync