Makefile revision 5484
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# CDDL HEADER START
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# The contents of this file are subject to the terms of the
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# Common Development and Distribution License (the "License").
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# You may not use this file except in compliance with the License.
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# or http://www.opensolaris.org/os/licensing.
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# See the License for the specific language governing permissions
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# and limitations under the License.
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# When distributing Covered Code, include this CDDL HEADER in each
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# If applicable, add the following below this CDDL HEADER, with the
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# fields enclosed by brackets "[]" replaced with your own identifying
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# information: Portions Copyright [yyyy] [name of copyright owner]
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# CDDL HEADER END
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith# Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith#
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smithinclude ../../../make-rules/shared-macros.mk
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke Smith
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke SmithCOMPONENT_NAME= pyasn1
b40f5113b5f28daabc29b6ad49c905f290cf6cb7Luke SmithCOMPONENT_VERSION= 0.1.9
COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_HASH= \
sha256:853cacd96d1f701ddd67aa03ecc05f51890135b7262e922710112f12a2ed2a7f
COMPONENT_ARCHIVE_URL= $(call pypi_url)
COMPONENT_PROJECT_URL= http://pyasn1.sourceforge.net/
COMPONENT_BUGDB= python-mod/pyasn1
TPNO= 26348
include $(WS_MAKE_RULES)/prep.mk
include $(WS_MAKE_RULES)/setup.py.mk
include $(WS_MAKE_RULES)/ips.mk
COMPONENT_TEST_DIR = $(SOURCE_DIR)
COMPONENT_TEST_ARGS = setup.py test
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
# The test output contains arbitrary output. Use nawk to extract just the
# sections that summarizes the test result.
COMPONENT_TEST_TRANSFORMER = $(NAWK)
COMPONENT_TEST_TRANSFORMS = "'/^Ran .+ / { sub(\" tests in .+s\", \" tests in\"); print }; /!NF/ { print }; /^OK/ { print };'"
ASLR_MODE = $(ASLR_NOT_APPLICABLE)
# common targets
build: $(BUILD_NO_ARCH)
install: $(INSTALL_NO_ARCH)
test: $(TEST_NO_ARCH)
system-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)