components/python/debtcollector/Makefile
author Rich Burridge <rich.burridge@oracle.com>
Thu, 13 Apr 2017 13:20:29 -0700
changeset 7864 f11e8d81786a
parent 7687 1093e2a9adbd
permissions -rw-r--r--
PSARC 2017/057 pcre2 25783625 Add pcre2 10.23 to Userland because vte 0.47.90 requires it
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6751
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     1
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     2
# CDDL HEADER START
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     3
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     7
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    11
# and limitations under the License.
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    12
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    18
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    19
# CDDL HEADER END
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    20
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    21
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    22
#
7687
1093e2a9adbd 25590368 Userland components should include "upstream" release tracking information
Rich Burridge <rich.burridge@oracle.com>
parents: 6751
diff changeset
    23
# Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
6751
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    24
#
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    25
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    26
include ../../../make-rules/shared-macros.mk
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    27
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    28
COMPONENT_NAME=		debtcollector
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    29
COMPONENT_VERSION=	1.3.0
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    30
COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    31
COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    32
COMPONENT_ARCHIVE_HASH=	\
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    33
    sha256:9a65cf09239eab75b961ef609b3176ed2487bedcfa0a465331661824e1c8db8f
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    34
COMPONENT_ARCHIVE_URL=	$(call pypi_url)
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    35
COMPONENT_PROJECT_URL=	http://docs.openstack.org/developer/debtcollector/
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    36
COMPONENT_BUGDB=	python-mod/debtcollector
7687
1093e2a9adbd 25590368 Userland components should include "upstream" release tracking information
Rich Burridge <rich.burridge@oracle.com>
parents: 6751
diff changeset
    37
COMPONENT_ANITYA_ID=	6107
6751
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    38
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    39
TPNO=			27395
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    40
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    41
include $(WS_MAKE_RULES)/prep.mk
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    42
include $(WS_MAKE_RULES)/setup.py.mk
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    43
include $(WS_MAKE_RULES)/ips.mk
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    44
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    45
ASLR_MODE = $(ASLR_NOT_APPLICABLE)
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    46
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    47
# common targets
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    48
build:		$(BUILD_NO_ARCH)
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    49
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    50
install:	$(INSTALL_NO_ARCH)
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    51
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    52
# See $(COMPONENT_SRC)/test-requirements.txt for the Python modules
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    53
# required to execute unittests.
a90eb6733863 PSARC 2016/360 debtcollector - collect Python deprecation patterns and strategies
Laszlo Peter <laszlo.peter@oracle.com>
parents:
diff changeset
    54
test:		$(NO_TESTS)