components/python/pep8/Makefile
author Stacy Yeh <stacy.yeh@oracle.com>
Thu, 21 May 2015 13:48:49 -0700
changeset 4339 6501cf9c29f9
parent 4107 fc74767e62e5
child 4588 913c846a2d69
permissions -rw-r--r--
21116842 add system-test targets to each component Makefile and to top-level Makefiles
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     1
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     3
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     7
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    12
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    18
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    20
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    21
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    22
#
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3582
diff changeset
    23
# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    24
#
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    25
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    26
include ../../../make-rules/shared-macros.mk
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    27
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    28
COMPONENT_NAME=		pep8
4107
fc74767e62e5 20837255 Update Python pep8 to version 1.6.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    29
COMPONENT_VERSION=	1.6.2
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    30
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    31
COMPONENT_PROJECT_URL=  http://pypi.python.org/pypi/pep8
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    32
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    33
COMPONENT_ARCHIVE_HASH=	\
4107
fc74767e62e5 20837255 Update Python pep8 to version 1.6.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    34
    sha256:b8b7e35630b5539e26a197dfc6005be9e1e9a135496b377723a8ebc01b9bcbff
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    35
COMPONENT_ARCHIVE_URL=	http://pypi.python.org/packages/source/p/$(COMPONENT_NAME)/$(COMPONENT_ARCHIVE)
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    36
COMPONENT_BUGDB=	python-mod/pep8
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    37
4107
fc74767e62e5 20837255 Update Python pep8 to version 1.6.2
Rich Burridge <rich.burridge@oracle.com>
parents: 3817
diff changeset
    38
TPNO=			22209
1948
2d1537e7942d 18978320 Userland components should specify TPNOs in Makefiles instead of pkg manifests
John Beck <John.Beck@Oracle.COM>
parents: 1434
diff changeset
    39
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3582
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: 3582
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: 3582
diff changeset
    42
include $(WS_MAKE_RULES)/ips.mk
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    43
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    44
# Replace "#!/usr/bin/env ..." shebang lines with properly versioned ones.
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    45
COMPONENT_PRE_BUILD_ACTION = \
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    46
	/usr/bin/find $(SOURCE_DIR) -name *.py \
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    47
		-exec $(GSED) -i -e 's/env python/python$(PYTHON_VERSION)/' "{}" \; ;
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    48
1233
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    49
# Put the correct pep8 version number on the .TH line in the man page in
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    50
# the proto area.
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    51
COMPONENT_POST_INSTALL_ACTION += \
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    52
	($(MKDIR) $(PROTO_DIR)/usr/share/man/man1; \
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    53
	$(GSED) -e 's/XXX/$(COMPONENT_VERSION)/' \
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    54
	    $(COMPONENT_DIR)/files/pep8.1 > \
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    55
	    $(PROTO_DIR)/usr/share/man/man1/pep8.1);
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    56
4817abd9e86b 16425619 Request to update pep8 to the latest version in s12
Rich Burridge <rich.burridge@oracle.com>
parents: 1187
diff changeset
    57
COMPONENT_POST_INSTALL_ACTION += \
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    58
	(cd $(PROTO_DIR)/usr/bin ; $(MV) -f pep8 pep8-$(PYTHON_VERSION))
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    59
3582
12b8b4df2138 20244362 pep8 should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 2189
diff changeset
    60
# Master test results are the same for all versions of Python, so override
12b8b4df2138 20244362 pep8 should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 2189
diff changeset
    61
# here, rather than create multiple identical master files.
12b8b4df2138 20244362 pep8 should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 2189
diff changeset
    62
COMPONENT_TEST_MASTER =	$(COMPONENT_TEST_RESULTS_DIR)/results-all.master
12b8b4df2138 20244362 pep8 should have some master test results to compare against
Rich Burridge <rich.burridge@oracle.com>
parents: 2189
diff changeset
    63
2044
bd546952feea 18331082 Update pep8 to the latest version and hookup 'gmake test'
Rich Burridge <rich.burridge@oracle.com>
parents: 1948
diff changeset
    64
COMPONENT_TEST_DIR =	$(SOURCE_DIR)
bd546952feea 18331082 Update pep8 to the latest version and hookup 'gmake test'
Rich Burridge <rich.burridge@oracle.com>
parents: 1948
diff changeset
    65
COMPONENT_TEST_ARGS =	pep8.py --testsuite testsuite
bd546952feea 18331082 Update pep8 to the latest version and hookup 'gmake test'
Rich Burridge <rich.burridge@oracle.com>
parents: 1948
diff changeset
    66
1434
c782e620dd26 17296512 Add ASLR_NOT_APPLICABLE as an ASLR mode in Userland
Rich Burridge <rich.burridge@oracle.com>
parents: 1310
diff changeset
    67
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
    68
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    69
# common targets
1310
ed3f9d06a78b 16828763 Pure python should build with its own macros, not _32/_64
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 1233
diff changeset
    70
build:		$(BUILD_NO_ARCH)
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    71
1310
ed3f9d06a78b 16828763 Pure python should build with its own macros, not _32/_64
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents: 1233
diff changeset
    72
install:	$(INSTALL_NO_ARCH)
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    73
2044
bd546952feea 18331082 Update pep8 to the latest version and hookup 'gmake test'
Rich Burridge <rich.burridge@oracle.com>
parents: 1948
diff changeset
    74
test:		$(TEST_NO_ARCH)
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    75
4339
6501cf9c29f9 21116842 add system-test targets to each component Makefile and to top-level Makefiles
Stacy Yeh <stacy.yeh@oracle.com>
parents: 4107
diff changeset
    76
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: 4107
diff changeset
    77
1187
28a8efc39260 PSARC 2012/301 pep8 version 1.3.3 - Python Style Guide Checker
Rich Burridge <rich.burridge@oracle.com>
parents:
diff changeset
    78
3817
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3582
diff changeset
    79
REQUIRED_PACKAGES += library/python/setuptools-26
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3582
diff changeset
    80
REQUIRED_PACKAGES += library/python/setuptools-27
30b42c38bbc4 15786608 SUNBT7162754 create new meta package developer/opensolaris/userland
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents: 3582
diff changeset
    81
REQUIRED_PACKAGES += library/python/setuptools-34