Makefile revision 2035
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington#
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# CDDL HEADER START
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington#
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# The contents of this file are subject to the terms of the
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# Common Development and Distribution License (the "License").
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# You may not use this file except in compliance with the License.
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington#
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# or http://www.opensolaris.org/os/licensing.
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# See the License for the specific language governing permissions
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# and limitations under the License.
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington#
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# When distributing Covered Code, include this CDDL HEADER in each
5b2db69e215078c268a3e690d144373baebbf17bJames Phillpotts# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# If applicable, add the following below this CDDL HEADER, with the
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# fields enclosed by brackets "[]" replaced with your own identifying
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunnington# information: Portions Copyright [yyyy] [name of copyright owner]
abffea1c30ac3b8508f7d708cdd90d9198b64e04Jaco Jooste#
a093731116a8c24d49b903df7602cf586e499b45Phill Cunnington# CDDL HEADER END
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.com#
abba466207a7a0932f2e83e44989ac71b58e1269Brian Bailey# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
56a57c8c53f79c4b460a6c4c632721901f7b0c7ePhill Cunnington#
56a57c8c53f79c4b460a6c4c632721901f7b0c7ePhill Cunningtoninclude ../../../make-rules/shared-macros.mk
56a57c8c53f79c4b460a6c4c632721901f7b0c7ePhill Cunnington
56a57c8c53f79c4b460a6c4c632721901f7b0c7ePhill CunningtonCOMPONENT_NAME= kombu
56a57c8c53f79c4b460a6c4c632721901f7b0c7ePhill CunningtonCOMPONENT_VERSION= 2.5.12
abffea1c30ac3b8508f7d708cdd90d9198b64e04Jaco JoosteCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
a093731116a8c24d49b903df7602cf586e499b45Phill CunningtonCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
71b128a7314b40bf2b9740cfa80f6cdba76740e8Phill CunningtonCOMPONENT_ARCHIVE_HASH= \
71b128a7314b40bf2b9740cfa80f6cdba76740e8Phill Cunnington sha256:cc5b33eb96fd2d3846bd0b2fec34cfacf8205b69a1669a17c97af77bc6f1aa09
71b128a7314b40bf2b9740cfa80f6cdba76740e8Phill CunningtonCOMPONENT_ARCHIVE_URL= $(call pypi_url)
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.comCOMPONENT_PROJECT_URL= http://kombu.readthedocs.org/
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.comCOMPONENT_BUGDB= python-mod/kombu
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.com
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.cominclude $(WS_TOP)/make-rules/prep.mk
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.cominclude $(WS_TOP)/make-rules/setup.py.mk
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.cominclude $(WS_TOP)/make-rules/ips.mk
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.com
4ccae7e16b9ab014016a21612e4b9a62739f73d6tom.rumsey@forgerock.comASLR_MODE = $(ASLR_NOT_APPLICABLE)
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington# common targets
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunningtonbuild: $(BUILD_NO_ARCH)
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunningtoninstall: $(INSTALL_NO_ARCH)
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington# Tests require:
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington# ordereddict, importlib, amqp, anyjson, unittest2, nose-cover3
5db031755ab3a8762e266f96f5d74832548d330bPhill Cunnington# which haven't been integrated yet.
756d4b8bce5a58e5bd8fe686688b6c42d2e7052bPhill Cunningtontest: $(NO_TESTS)
af38905e8a5231702db169603d942d5d2e0c4332David Luna
af38905e8a5231702db169603d942d5d2e0c4332David LunaBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
adc14d0be45af50dbde99eb71c21de3bc1ddb1c6Phill Cunnington
dc6d43370c72fa78628f52dfb8166e1f3acd7559Rich Rileyinclude $(WS_TOP)/make-rules/depend.mk
dc6d43370c72fa78628f52dfb8166e1f3acd7559Rich Riley