Makefile revision 5484
5484N/A#
5484N/A# CDDL HEADER START
5484N/A#
5484N/A# The contents of this file are subject to the terms of the
5484N/A# Common Development and Distribution License (the "License").
5484N/A# You may not use this file except in compliance with the License.
5484N/A#
5484N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5484N/A# or http://www.opensolaris.org/os/licensing.
5484N/A# See the License for the specific language governing permissions
5484N/A# and limitations under the License.
5484N/A#
5484N/A# When distributing Covered Code, include this CDDL HEADER in each
5484N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5484N/A# If applicable, add the following below this CDDL HEADER, with the
5484N/A# fields enclosed by brackets "[]" replaced with your own identifying
5484N/A# information: Portions Copyright [yyyy] [name of copyright owner]
5484N/A#
5484N/A# CDDL HEADER END
5484N/A#
5484N/A
5484N/A#
5484N/A# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
5484N/A#
5484N/A
5484N/Ainclude ../../../make-rules/shared-macros.mk
5484N/A
5484N/ACOMPONENT_NAME= ipaddress
5484N/ACOMPONENT_VERSION= 1.0.14
5484N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
5484N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
5484N/ACOMPONENT_ARCHIVE_HASH= \
5484N/A sha256:226f4be44c6cb64055e23060848266f51f329813baae28b53dc50e93488b3b3e
5484N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
5484N/ACOMPONENT_PROJECT_URL= https://github.com/phihag/ipaddress
5484N/ACOMPONENT_BUGDB= python-mod/ipaddress
5484N/A
5484N/ATPNO= 26070
5484N/A
5484N/A# ipaddress is superfluous in Python 3.4
5484N/APYTHON_VERSIONS = $(PYTHON2_VERSIONS)
5484N/A
5484N/Ainclude $(WS_MAKE_RULES)/prep.mk
5484N/Ainclude $(WS_MAKE_RULES)/setup.py.mk
5484N/Ainclude $(WS_MAKE_RULES)/ips.mk
5484N/A
5484N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
5484N/A
5484N/ACOMPONENT_TEST_DIR = $(SOURCE_DIR)
5484N/ACOMPONENT_TEST_ARGS = test_ipaddress.py
5484N/ACOMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
5484N/A
5484N/ACOMPONENT_TEST_TRANSFORMS += \
5484N/A '-e "s|\(^Ran [0-9]\+ tests in\).*|\1|" '
5484N/A
5484N/A# common targets
5484N/Abuild: $(BUILD_NO_ARCH)
5484N/A
5484N/Ainstall: $(INSTALL_NO_ARCH)
5484N/A
5484N/Atest: $(TEST_NO_ARCH)
5484N/A
5484N/Asystem-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED)