components/python/pyyaml/pyyaml-PYVER.p5m
author Mike Sullivan <Mike.Sullivan@Oracle.COM>
Wed, 28 Oct 2015 10:24:22 -0700
changeset 5021 c5e330e6831f
parent 4984 7145b15b7f0d
permissions -rw-r--r--
Close of build 86.1.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3500
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     1
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     2
# CDDL HEADER START
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     3
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     7
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    11
# and limitations under the License.
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    12
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    18
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    19
# CDDL HEADER END
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    20
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    21
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    22
#
4191
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    23
# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
3500
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    24
#
4191
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    25
3500
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    26
set name=pkg.fmri \
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    27
    value=pkg:/library/python/pyyaml-$(PYV)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    28
set name=pkg.summary value="a YAML parser and emitter for the Python language"
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    29
set name=pkg.description \
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    30
    value="PyYAML is a complete YAML 1.1 parser. In particular, PyYAML can parse all examples from the specification. The parsing algorithm is simple enough to be a reference for YAML parser implementors. Features include Unicode support including UTF-8/UTF-16 input/output and \u escape sequences, low-level event-based parser and emitter API (like SAX), high-level API for serializing and deserializing native Python objects (like DOM or pickle), support for all types from the  YAML types repository (a simple extension API is provided), both pure-Python and fast LibYAML-based parsers and emitters, relatively sensible error messages."
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    31
set name=com.oracle.info.description \
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    32
    value="A YAML parser and emitter for the Python language"
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    33
set name=com.oracle.info.tpno value=$(TPNO)
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    34
set name=info.classification \
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    35
    value=org.opensolaris.category.2008:Development/Python
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    36
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    37
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    38
set name=org.opensolaris.arc-caseid value=PSARC/2008/676
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    39
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    40
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    41
file path=usr/lib/python$(PYVER)/vendor-packages/PyYAML-$(COMPONENT_VERSION)-py$(PYVER).egg-info
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    42
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/__init__.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    43
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/composer.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    44
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/constructor.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    45
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/cyaml.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    46
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/dumper.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    47
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/emitter.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    48
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/error.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    49
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/events.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    50
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/loader.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    51
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/nodes.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    52
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/parser.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    53
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/reader.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    54
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/representer.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    55
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/resolver.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    56
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/scanner.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    57
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/serializer.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    58
file path=usr/lib/python$(PYVER)/vendor-packages/yaml/tokens.py
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    59
#
2cce85bb343d 20054525 Migrate pyyaml from Desktop to Userland
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    60
license LICENSE license=MIT
4191
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    61
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    62
# force a dependency on the Python runtime
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    63
depend type=require fmri=__TBD pkg.debug.depend.file=python$(PYVER) \
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    64
    pkg.debug.depend.path=usr/bin
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    65
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    66
# force a dependency on the pyyaml package
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    67
depend type=require \
1f94830c259d 20934542 pyyaml is missing a runtime and an unversioned dependency
david.comay@oracle.com
parents: 3500
diff changeset
    68
    fmri=library/python/pyyaml@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)