components/python/tox/tox-PYVER.p5m
changeset 1607 861db9bed008
child 1666 69d14d547e77
child 3661 47545fb8aed4
child 4156 4b1def16fe9b
equal deleted inserted replaced
1606:3c7c8020eda1 1607:861db9bed008
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 # Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 
       
    24 set name=pkg.fmri \
       
    25     value=pkg:/library/python-2/tox-$(PYV)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
       
    26 set name=pkg.summary value="virtualenv-based automation of test activities"
       
    27 set name=pkg.description \
       
    28     value="Tox as is a generic virtualenv management and test command line tool you can use for: checking your package installs correctly with different Python versions and interpreters; running your tests in each of the environments; configuring your test tool of choice; acting as a frontend to Continuous Integration servers, greatly reducing boilerplate and merging CI and shell-based testing."
       
    29 set name=com.oracle.info.description value="the Python tox module"
       
    30 set name=com.oracle.info.tpno value=14503
       
    31 set name=info.classification \
       
    32     value=org.opensolaris.category.2008:Development/Python
       
    33 set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
       
    34 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
       
    35 set name=org.opensolaris.arc-caseid value=PSARC/2013/361
       
    36 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
       
    37 link path=usr/bin/tox target=tox-$(PYVER) mediator=python \
       
    38     mediator-version=$(PYVER)
       
    39 file path=usr/bin/tox-$(PYVER)
       
    40 link path=usr/bin/tox-quickstart target=tox-quickstart-$(PYVER) \
       
    41     mediator=python mediator-version=$(PYVER)
       
    42 file path=usr/bin/tox-quickstart-$(PYVER)
       
    43 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/PKG-INFO
       
    44 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/SOURCES.txt
       
    45 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/dependency_links.txt
       
    46 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/entry_points.txt
       
    47 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/requires.txt
       
    48 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/top_level.txt
       
    49 file path=usr/lib/python$(PYVER)/vendor-packages/tox-$(COMPONENT_VERSION)-py$(PYVER).egg-info/zip-safe
       
    50 file path=usr/lib/python$(PYVER)/vendor-packages/tox/__init__.py
       
    51 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_cmdline.py
       
    52 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_config.py
       
    53 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_exception.py
       
    54 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_pytestplugin.py
       
    55 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_quickstart.py
       
    56 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_venv.py
       
    57 file path=usr/lib/python$(PYVER)/vendor-packages/tox/_verlib.py
       
    58 license tox.license license="GPLv2 BSD, MIT, PSF"
       
    59 
       
    60 # force a dependency on argparse; pkgdepend work is needed to flush this out.
       
    61 $(PYTHON_2.6_ONLY)depend type=require fmri=library/python-2/argparse-26
       
    62 
       
    63 # force a dependency on py; pkgdepend work is needed to flush this out.
       
    64 depend type=require fmri=library/python-2/py-$(PYV)
       
    65 
       
    66 # force a dependency on pytest; pkgdepend work is needed to flush this out.
       
    67 depend type=require fmri=library/python-2/pytest-$(PYV)
       
    68 
       
    69 # force a dependency on the tox package
       
    70 depend type=require \
       
    71     fmri=library/python-2/tox@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)