Makefile revision 2899
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# CDDL HEADER START
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# The contents of this file are subject to the terms of the
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# Common Development and Distribution License (the "License").
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# You may not use this file except in compliance with the License.
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# or http://www.opensolaris.org/os/licensing.
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# See the License for the specific language governing permissions
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# and limitations under the License.
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# When distributing Covered Code, include this CDDL HEADER in each
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# If applicable, add the following below this CDDL HEADER, with the
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# fields enclosed by brackets "[]" replaced with your own identifying
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# information: Portions Copyright [yyyy] [name of copyright owner]
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# CDDL HEADER END
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
c713350eb0c205161e2a4ab06cd996300721ac78John Johnson#
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeinclude ../../../make-rules/shared-macros.mk
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_NAME= pytest
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_VERSION= 2.3.5
c713350eb0c205161e2a4ab06cd996300721ac78John JohnsonCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_ARCHIVE_HASH= \
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje sha256:804c28bef415fc6a54de7934f05b2d67a9cc8a230de98685fca274d9fcbe8b1c
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_ARCHIVE_URL= $(call pypi_url)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_PROJECT_URL= https://pypi.python.org/pypi/pytest
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_BUGDB= python-mod/pytest
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeTPNO= 14503
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeinclude $(WS_TOP)/make-rules/prep.mk
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeinclude $(WS_TOP)/make-rules/setup.py.mk
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeinclude $(WS_TOP)/make-rules/ips.mk
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_TEST_DIR = $(COMPONENT_SRC)/testing
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_TEST_CMD = $(PROTOUSRBINDIR)/py.test
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeCOMPONENT_TEST_ARGS = test_assertion.py
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeASLR_MODE = $(ASLR_NOT_APPLICABLE)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# common targets
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjebuild: $(BUILD_NO_ARCH)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeinstall: $(INSTALL_NO_ARCH)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje# Tests require the py package to be installed.
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjetest: $(TEST_NO_ARCH)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setjeinclude $(WS_TOP)/make-rules/depend.mk
986fd29a0dc13f7608ef7f508f6e700bd7bc2720setje