pkg/transforms/extract_metadata
author Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
Fri, 26 Jun 2015 17:12:16 -0700
changeset 1476 db63a2409b45
parent 1207 996eb6e88a18
permissions -rw-r--r--
21329956 libXext does not export XSync*Fence or XGE* functions

#
# Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#

<transform pkg -> default pkg.obsolete false>
<transform pkg -> default pkg.renamed false>

#
# Generate a short package name for use in facet.version-lock
#
<transform pkg pkg.fmri=(pkg:/)?([^@]*) -> default pkg.name %<2>>

# 
# All packages should be included in the consolidation 
# incorporation, unless marked otherwise
#
<transform pkg -> default org.opensolaris.noincorp false>
<transform pkg -> default org.opensolaris.incorporation \
    pkg:/consolidation/X/X-incorporation>

#
# Most packages should have a version-lock facet named after the package
# in order to allow an escape hatch for systems which need a different 
# version of the package and are willing to accept the risk of using an
# untested combination.  Renamed packages do not need this facet.
#

<transform pkg pkg.renamed=true -> \
    default org.opensolaris.version-lock-facet false>
<transform pkg -> \
    default org.opensolaris.version-lock-facet true>

<transform pkg org.opensolaris.noincorp=false \
    org.opensolaris.version-lock-facet=true -> print \
    %(org.opensolaris.incorporation): depend type=incorporate fmri=%(pkg.fmri) \
    facet.version-lock.%(pkg.name)=%(org.opensolaris.version-lock-facet)>
<transform pkg org.opensolaris.noincorp=false \
    org.opensolaris.version-lock-facet=false -> print \
    %(org.opensolaris.incorporation): depend type=incorporate fmri=%(pkg.fmri)>

# Add dependency on the incorporation to each non-obsolete package in it
<transform pkg pkg.obsolete=false org.opensolaris.noincorp=false -> emit \
    depend type=require fmri=%(org.opensolaris.incorporation)>

<transform set name=org.opensolaris.noincorp -> drop>
<transform set name=org.opensolaris.incorporation -> drop>
<transform set name=org.opensolaris.version-lock-facet -> drop>

# 
# Packages that are neither obsolete nor renamed should be included in
# the X-all group package, unless marked otherwise
#
<transform pkg -> default org.opensolaris.nogroup false>
<transform pkg pkg.renamed=false pkg.obsolete=false \
    org.opensolaris.nogroup=false pkg.fmri=^(.*)@.* -> print \
    pkg:/consolidation/X/X-all: depend type=group fmri=%<1> >
<transform set name=org.opensolaris.nogroup -> drop>