Makefile revision 2818
1405N/A#
2535N/A# CDDL HEADER START
1405N/A#
1405N/A# The contents of this file are subject to the terms of the
1405N/A# Common Development and Distribution License (the "License").
1405N/A# You may not use this file except in compliance with the License.
2362N/A#
1405N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2362N/A# or http://www.opensolaris.org/os/licensing.
1405N/A# See the License for the specific language governing permissions
1405N/A# and limitations under the License.
1405N/A#
1405N/A# When distributing Covered Code, include this CDDL HEADER in each
1405N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1405N/A# If applicable, add the following below this CDDL HEADER, with the
1405N/A# fields enclosed by brackets "[]" replaced with your own identifying
1405N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1405N/A#
1405N/A# CDDL HEADER END
1405N/A#
2362N/A# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
2362N/A#
2362N/Ainclude ../../../make-rules/shared-macros.mk
1405N/A
1405N/ACOMPONENT_NAME= FormEncode
1405N/ACOMPONENT_VERSION= 1.2.6
1405N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
1405N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).zip
1405N/ACOMPONENT_ARCHIVE_HASH= \
1405N/A sha256:70fc1d2cf8022b1cc7fcebb5d87cc984dde799e587f05c0a0fe509b374221b0c
1405N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
1405N/ACOMPONENT_PROJECT_URL= http://www.formencode.org/en/latest/
1405N/ACOMPONENT_BUGDB= python-mod/formencode
1405N/A
1405N/A# Code explicitly checks for sys.version < '3.0'
1405N/APYTHON_VERSIONS= 2.7 2.6
1405N/A
1405N/Ainclude $(WS_TOP)/make-rules/prep.mk
1405N/Ainclude $(WS_TOP)/make-rules/setup.py.mk
1405N/Ainclude $(WS_TOP)/make-rules/ips.mk
1405N/A
2535N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
1405N/A
1405N/A# Remove the trailing Control-M's from msgfmt.py otherwise pkgdepend bitchs.
1405N/ACOMPONENT_PRE_BUILD_ACTION = \
1405N/A $(GSED) -i -e 's/
1405N/A//g' $(SOURCE_DIR)/formencode/i18n/msgfmt.py
1405N/A
1405N/A# common targets
1405N/Abuild: $(BUILD_NO_ARCH)
1405N/A
2535N/Ainstall: $(INSTALL_NO_ARCH)
1405N/A
1405N/A# Tests require:
1405N/A# pyDNS, pycountry, pytest-cov, pytest-codecheckers,
1405N/A# pytest-capturelog, pytest, cov-core, pyflakes
1405N/A# which haven't been integrated yet.
1405N/Atest: $(NO_TESTS)
1405N/A
1405N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
1405N/A
1405N/Ainclude $(WS_TOP)/make-rules/depend.mk
1405N/A