components/python/jsonrpclib/Makefile
author Yiteng Zhang <yiteng.zhang@oracle.com>
Thu, 19 Nov 2015 11:19:15 -0800
changeset 5109 5d341c4a6b80
parent 4984 7145b15b7f0d
child 7687 1093e2a9adbd
permissions -rw-r--r--
19877233 ply should hookup its tests 19931836 "gmake test" failures for python/jsonrpclib 20745110 jsonrpclib can now deliver a Python 3.x package 21911841 update pycurl and deliver a Python 3.x package 21912037 update ply to version 3.7 and deliver a Python 3.x package 21985306 update coverage to version 4.0.1 and deliver its Python 3.x package 22067764 update CherryPy to version 3.8.0 and deliver a Python 3.x package
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     1
#
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     3
#
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     7
#
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    12
#
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    18
#
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@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
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    22
#
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 1948
diff changeset
    23
# Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    24
#
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    25
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    26
include ../../../make-rules/shared-macros.mk
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    27
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    28
COMPONENT_NAME=		jsonrpclib
5109
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    29
COMPONENT_VERSION=	0.2.6
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    30
COMPONENT_PROJECT_URL=	https://github.com/tcalmant/jsonrpclib
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    31
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    32
COMPONENT_ARCHIVE=	v$(COMPONENT_VERSION).tar.gz
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    33
COMPONENT_ARCHIVE_HASH=	\
5109
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    34
    sha256:17acc9f89f74fd9f4a22b2fe4bd26a97a7fe68a5ea0a9bd506fb96685cb0fed2
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    35
COMPONENT_ARCHIVE_URL=https://github.com/tcalmant/jsonrpclib/archive/$(COMPONENT_ARCHIVE)
1071
cc3ecf7b3dec 15959394 Several Userland components are using the wrong BugDB cat/subcat.
Rich Burridge <rich.burridge@oracle.com>
parents: 1058
diff changeset
    36
COMPONENT_BUGDB=	python-mod/jsonrpclib
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    37
5109
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    38
TPNO=			24886
1948
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1907
diff changeset
    39
5109
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    40
# upstream not Python 3.5 ready
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    41
PYTHON_VERSIONS=	$(PYTHON2_VERSIONS) 3.4
1907
446472de62e9 PSARC 2014/151 Python 3.4
John Beck <John.Beck@Oracle.COM>
parents: 1890
diff changeset
    42
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 1948
diff changeset
    43
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
    44
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
    45
include $(WS_MAKE_RULES)/ips.mk
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    46
1434
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1310
diff changeset
    47
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
    48
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    49
COMPONENT_TEST_DIR=	$(COMPONENT_SRC)
5109
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    50
COMPONENT_TEST_CMD= /usr/bin/nosetests
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    51
COMPONENT_TEST_ARGS = tests
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    52
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    53
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    54
COMPONENT_TEST_TRANSFORMS += \
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    55
    '-e "s|\(127.0.0.1\).*|\1|" ' \
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    56
    '-e "s|\(^Ran 51 tests in\).*|\1|" '
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    57
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    58
# common targets
1310
ed3f9d06a78b 16828763 Pure python should build with its own macros, not _32/_64
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 1071
diff changeset
    59
build:		$(BUILD_NO_ARCH)
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    60
1310
ed3f9d06a78b 16828763 Pure python should build with its own macros, not _32/_64
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 1071
diff changeset
    61
install:	$(INSTALL_NO_ARCH)
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    62
5109
5d341c4a6b80 19877233 ply should hookup its tests
Yiteng Zhang <yiteng.zhang@oracle.com>
parents: 4984
diff changeset
    63
# Ran 51 tests, OK.
1890
5a4ef66c42bf 16808434 Many components probably don't need a PATH line in their Makefiles
david.comay@oracle.com
parents: 1434
diff changeset
    64
test:		$(TEST_NO_ARCH)
832
d0946a4ddb78 PSARC/2012/198 python-jsonrpclib
Edward Pilatowicz <edward.pilatowicz@oracle.com>
parents:
diff changeset
    65
4339
6501cf9c29f9 21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents: 3817
diff changeset
    66
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: 3817
diff changeset
    67