Makefile revision 3778
228N/A#
228N/A# CDDL HEADER START
228N/A#
228N/A# The contents of this file are subject to the terms of the
228N/A# Common Development and Distribution License (the "License").
228N/A# You may not use this file except in compliance with the License.
228N/A#
228N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
228N/A# or http://www.opensolaris.org/os/licensing.
228N/A# See the License for the specific language governing permissions
228N/A# and limitations under the License.
228N/A#
228N/A# When distributing Covered Code, include this CDDL HEADER in each
228N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
228N/A# If applicable, add the following below this CDDL HEADER, with the
228N/A# fields enclosed by brackets "[]" replaced with your own identifying
228N/A# information: Portions Copyright [yyyy] [name of copyright owner]
228N/A#
228N/A# CDDL HEADER END
228N/A#
228N/A# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
228N/A#
844N/Ainclude ../../../make-rules/shared-macros.mk
228N/A
228N/ACOMPONENT_NAME= kombu
228N/ACOMPONENT_VERSION= 2.5.12
228N/ACOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
228N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
315N/ACOMPONENT_ARCHIVE_HASH= \
618N/A sha256:cc5b33eb96fd2d3846bd0b2fec34cfacf8205b69a1669a17c97af77bc6f1aa09
228N/ACOMPONENT_ARCHIVE_URL= $(call pypi_url)
228N/ACOMPONENT_PROJECT_URL= http://kombu.readthedocs.org/
844N/ACOMPONENT_BUGDB= python-mod/kombu
844N/A
618N/ATPNO= 14503
228N/A
228N/A# Depends on pyrabbit which depends on httplib2 which has its own dependency
228N/A# issues (see its Makefile for details). So don't build for Python 3 until
228N/A# dependencies resolved.
228N/APYTHON_VERSIONS= 2.7 2.6
228N/A
228N/Ainclude $(WS_TOP)/make-rules/prep.mk
228N/Ainclude $(WS_TOP)/make-rules/setup.py.mk
228N/Ainclude $(WS_TOP)/make-rules/ips.mk
228N/A
228N/AASLR_MODE = $(ASLR_NOT_APPLICABLE)
228N/A
228N/A# common targets
228N/Abuild: $(BUILD_NO_ARCH)
228N/A
228N/Ainstall: $(INSTALL_NO_ARCH)
228N/A
228N/A# Tests require:
228N/A# ordereddict, importlib, amqp, anyjson, unittest2, nose-cover3
228N/A# which haven't been integrated yet.
228N/Atest: $(NO_TESTS)
228N/A
228N/ABUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
228N/A
228N/Ainclude $(WS_TOP)/make-rules/depend.mk
228N/A