components/python/decorator/Makefile
author Rich Burridge <rich.burridge@oracle.com>
Thu, 23 Feb 2017 13:46:52 -0800
changeset 7687 1093e2a9adbd
parent 6934 e72eb275185d
permissions -rw-r--r--
25590368 Userland components should include "upstream" release tracking information
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     1
#
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     2
# CDDL HEADER START
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     3
#
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     7
#
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    11
# and limitations under the License.
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    12
#
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    18
#
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    19
# CDDL HEADER END
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    20
#
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    21
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    22
#
7687
1093e2a9adbd 25590368 Userland components should include "upstream" release tracking information
Rich Burridge <rich.burridge@oracle.com>
parents: 6934
diff changeset
    23
# Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    24
#
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    25
include ../../../make-rules/shared-macros.mk
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    26
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    27
COMPONENT_NAME=		decorator
6934
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    28
COMPONENT_VERSION=	4.0.10
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    29
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    30
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    31
COMPONENT_ARCHIVE_HASH=	\
6934
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    32
    sha256:9c6e98edcb33499881b86ede07d9968c81ab7c769e28e9af24075f0a5379f070
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    33
COMPONENT_ARCHIVE_URL=	$(call pypi_url)
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    34
COMPONENT_PROJECT_URL=	http://pypi.python.org/pypi/decorator
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    35
COMPONENT_BUGDB=	python-mod/decorator
7687
1093e2a9adbd 25590368 Userland components should include "upstream" release tracking information
Rich Burridge <rich.burridge@oracle.com>
parents: 6934
diff changeset
    36
COMPONENT_ANITYA_ID=	3819
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    37
6934
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    38
TPNO=			31612
1948
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1890
diff changeset
    39
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 1948
diff changeset
    40
include $(WS_MAKE_RULES)/prep.mk
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 1948
diff changeset
    41
include $(WS_MAKE_RULES)/setup.py.mk
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 1948
diff changeset
    42
include $(WS_MAKE_RULES)/ips.mk
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    43
1434
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1310
diff changeset
    44
ASLR_MODE = $(ASLR_NOT_APPLICABLE)
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1310
diff changeset
    45
6934
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    46
COMPONENT_TEST_ARGS=		test.py -v
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    47
COMPONENT_TEST_DIR=		$(SOURCE_DIR)/src/tests
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    48
6934
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    49
COMPONENT_TEST_TRANSFORMS += \
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    50
	'-e "s|\(Ran .* tests in\).*|\1|" '
e72eb275185d 23093759 Upgrade decorator to 4.0.10
Rich Burridge <rich.burridge@oracle.com>
parents: 5028
diff changeset
    51
1310
ed3f9d06a78b 16828763 Pure python should build with its own macros, not _32/_64
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 1293
diff changeset
    52
build:		$(BUILD_NO_ARCH)
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    53
1310
ed3f9d06a78b 16828763 Pure python should build with its own macros, not _32/_64
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 1293
diff changeset
    54
install:	$(INSTALL_NO_ARCH)
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    55
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    56
test:		$(TEST_NO_ARCH)
1293
98e5300bb391 PSARC/2013/114 decorator
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    57
4339
6501cf9c29f9 21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents: 3840
diff changeset
    58
system-test:    $(SYSTEM_TESTS_NOT_IMPLEMENTED)
6501cf9c29f9 21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents: 3840
diff changeset
    59