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