6747N/A#
6747N/A# CDDL HEADER START
6747N/A#
6747N/A# The contents of this file are subject to the terms of the
6747N/A# Common Development and Distribution License (the "License").
6747N/A# You may not use this file except in compliance with the License.
6747N/A#
6747N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6747N/A# or http://www.opensolaris.org/os/licensing.
6747N/A# See the License for the specific language governing permissions
6747N/A# and limitations under the License.
6747N/A#
6747N/A# When distributing Covered Code, include this CDDL HEADER in each
6747N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6747N/A# If applicable, add the following below this CDDL HEADER, with the
6747N/A# fields enclosed by brackets "[]" replaced with your own identifying
6747N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6747N/A#
6747N/A# CDDL HEADER END
6747N/A#
6747N/A
6747N/A#
6747N/A# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
6747N/A#
6747N/A
6747N/Ainclude ../../../make-rules/shared-macros.mk
6747N/A
6747N/ACOMPONENT_NAME= croniter
6747N/ACOMPONENT_VERSION= 0.3.12
6747N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
6747N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
6747N/ACOMPONENT_ARCHIVE_HASH= \
6747N/A sha256:445cb26bc2f3cff25a7b06575caf98312b552affffeee0437f26d416c6e3c895
6747N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
6747N/ACOMPONENT_PROJECT_URL= http://github.com/kiorky/croniter
6747N/ACOMPONENT_BUGDB= python-mod/croniter
6747N/A
6747N/ATPNO= 28601
6747N/A
6747N/Ainclude $(WS_MAKE_RULES)/prep.mk
6747N/Ainclude $(WS_MAKE_RULES)/setup.py.mk
6747N/Ainclude $(WS_MAKE_RULES)/ips.mk
6747N/A
6747N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
6747N/A
6747N/A# common targets
6747N/Abuild: $(BUILD_NO_ARCH)
6747N/A
6747N/Ainstall: $(INSTALL_NO_ARCH)
6747N/A
6747N/A# Run the tests in the build directory so as not to touch the source directory.
6747N/A# The tests are copied over during the build, so we don't have to do that now.
6747N/ACOMPONENT_TEST_DIR = $(@D)
6747N/ACOMPONENT_TEST_CMD = py.test-$(PYTHON_VERSION)
6747N/ACOMPONENT_TEST_ARGS = --result-log=$(COMPONENT_TEST_OUTPUT)
6747N/ACOMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
6747N/A
6747N/Atest: $(TEST_NO_ARCH)
6747N/A
6747N/Asystem-test: $(NO_TESTS)
6747N/A
6747N/A
6747N/AREQUIRED_PKGS_PYVER += library/python/dateutil-PYVER
6747N/AREQUIRED_PACKAGES += $(foreach v,$(subst .,,$(PYTHON_VERSIONS)),$(subst -PYVER,-$(v),$(REQUIRED_PKGS_PYVER)))