components/python/virtualenv/Makefile
changeset 3817 30b42c38bbc4
parent 1948 2d1537e7942d
child 3998 5bd484384122
equal deleted inserted replaced
3814:60344306d223 3817:30b42c38bbc4
    16 # fields enclosed by brackets "[]" replaced with your own identifying
    16 # fields enclosed by brackets "[]" replaced with your own identifying
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
    18 #
    18 #
    19 # CDDL HEADER END
    19 # CDDL HEADER END
    20 #
    20 #
    21 # Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
    21 # Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
    22 #
    22 #
    23 include ../../../make-rules/shared-macros.mk
    23 include ../../../make-rules/shared-macros.mk
    24 
    24 
    25 COMPONENT_NAME=		virtualenv
    25 COMPONENT_NAME=		virtualenv
    26 COMPONENT_VERSION=	1.9.1
    26 COMPONENT_VERSION=	1.9.1
    40 # we are setting PYTHON_VERSIONS below to indicate that the (apparent) lack
    40 # we are setting PYTHON_VERSIONS below to indicate that the (apparent) lack
    41 # of need to build this module with Python 3, but the module owner needs to
    41 # of need to build this module with Python 3, but the module owner needs to
    42 # confirm this.
    42 # confirm this.
    43 PYTHON_VERSIONS=	2.7 2.6
    43 PYTHON_VERSIONS=	2.7 2.6
    44 
    44 
    45 include $(WS_TOP)/make-rules/prep.mk
    45 include $(WS_MAKE_RULES)/prep.mk
    46 include $(WS_TOP)/make-rules/setup.py.mk
    46 include $(WS_MAKE_RULES)/setup.py.mk
    47 include $(WS_TOP)/make-rules/ips.mk
    47 include $(WS_MAKE_RULES)/ips.mk
    48 
    48 
    49 ASLR_MODE = $(ASLR_NOT_APPLICABLE)
    49 ASLR_MODE = $(ASLR_NOT_APPLICABLE)
    50 
    50 
    51 # common targets
    51 # common targets
    52 build:		$(BUILD_NO_ARCH)
    52 build:		$(BUILD_NO_ARCH)
    53 
    53 
    54 install:	$(INSTALL_NO_ARCH)
    54 install:	$(INSTALL_NO_ARCH)
    55 
    55 
    56 test:		$(NO_TESTS)
    56 test:		$(NO_TESTS)
    57 
    57 
    58 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    59 
    58 
    60 include $(WS_TOP)/make-rules/depend.mk
    59 REQUIRED_PACKAGES += library/python/setuptools-26
       
    60 REQUIRED_PACKAGES += library/python/setuptools-27