Makefile revision 4506
99N/A#
99N/A# CDDL HEADER START
99N/A#
99N/A# The contents of this file are subject to the terms of the
99N/A# Common Development and Distribution License (the "License").
99N/A# You may not use this file except in compliance with the License.
99N/A#
99N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
99N/A# or http://www.opensolaris.org/os/licensing.
99N/A# See the License for the specific language governing permissions
99N/A# and limitations under the License.
99N/A#
99N/A# When distributing Covered Code, include this CDDL HEADER in each
99N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
99N/A# If applicable, add the following below this CDDL HEADER, with the
99N/A# fields enclosed by brackets "[]" replaced with your own identifying
99N/A# information: Portions Copyright [yyyy] [name of copyright owner]
99N/A#
99N/A# CDDL HEADER END
99N/A#
1364N/A
99N/A#
127N/A# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
99N/A#
2086N/A
99N/Ainclude ../../../make-rules/shared-macros.mk
99N/A
2086N/ACOMPONENT_NAME= pecan
99N/ACOMPONENT_VERSION= 0.8.3
99N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
844N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
2086N/ACOMPONENT_ARCHIVE_HASH= \
2086N/A sha256:ca6c31e1fb98e4ae780a44a40a88eacb7a19172d3f64d4e31f32049a784a1281
2086N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
1364N/ACOMPONENT_PROJECT_URL= http://pecanpy.org/
99N/ACOMPONENT_BUGDB= python-mod/pecan
99N/A
99N/ATPNO= 22205
99N/A
99N/A# Depends on logutils and webtest which are not Python 3 ready.
2086N/APYTHON_VERSIONS= 2.7 2.6
2086N/A
2086N/Ainclude $(WS_MAKE_RULES)/prep.mk
2086N/Ainclude $(WS_MAKE_RULES)/setup.py.mk
2086N/Ainclude $(WS_MAKE_RULES)/ips.mk
2086N/A
2086N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
2086N/A
99N/ACOMPONENT_POST_INSTALL_ACTION = \
99N/A (cd $(PROTO_DIR)/usr/bin ; $(MV) -f pecan pecan-$(PYTHON_VERSION))
99N/A
99N/ACOMPONENT_TEST_ARGS= setup.py test
99N/ACOMPONENT_TEST_DIR= $(COMPONENT_SRC)
2086N/A
99N/A# common targets
99N/Abuild: $(BUILD_NO_ARCH)
99N/A
99N/Ainstall: $(INSTALL_NO_ARCH)
test: $(TEST_NO_ARCH)
REQUIRED_PACKAGES += library/python/setuptools-26
REQUIRED_PACKAGES += library/python/setuptools-27