transforms/python-3-groups
author Patrick Einheber <patrick.einheber@oracle.com>
Thu, 22 Oct 2015 07:49:29 -0700
changeset 4995 ecffc6614cfa
parent 4912 0b79e9575718
child 5405 66fd59fecd68
permissions -rw-r--r--
18631785 puppet command should be part of Puppet Management profile 21925076 ldap provider incorrectly handles list properties 21936192 facter should use ifconfig, getent or host if available to get ip address
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1913
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     1
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     2
# CDDL HEADER START
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     3
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     4
# The contents of this file are subject to the terms of the
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     5
# Common Development and Distribution License (the "License").
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     6
# You may not use this file except in compliance with the License.
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     7
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     8
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
     9
# or http://www.opensolaris.org/os/licensing.
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    10
# See the License for the specific language governing permissions
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    11
# and limitations under the License.
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    12
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    13
# When distributing Covered Code, include this CDDL HEADER in each
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    14
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    15
# If applicable, add the following below this CDDL HEADER, with the
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    16
# fields enclosed by brackets "[]" replaced with your own identifying
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    17
# information: Portions Copyright [yyyy] [name of copyright owner]
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    18
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    19
# CDDL HEADER END
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    20
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    21
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    22
#
4912
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    23
# Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
1913
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    24
#
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    25
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    26
# We have various group dependencies between Python modules to express the
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    27
# intent "if installing A, also install B if possible".  This is for cases
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    28
# where module A uses module B if it is available.  But in some cases, B
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    29
# is not Python 3 ready even though A is.  These group dependencies would
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    30
# prevent A-34 from being installed because B-34 does not exist.  So drop
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    31
# such group dependencies.
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    32
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    33
<transform depend fmri=library/python/boto-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    34
<transform depend fmri=library/python/coverage-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    35
<transform depend fmri=library/python/django-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    36
<transform depend fmri=library/python/keystoneclient-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    37
<transform depend fmri=library/python/librabbitmq-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    38
<transform depend fmri=library/python/m2crypto-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    39
<transform depend fmri=library/python/paste-34 type=group -> drop>
bf893655bc39 15819724 SUNBT7202228 python 3.4 (drop nonexistent group dependencies)
John Beck <John.Beck@Oracle.COM>
parents:
diff changeset
    40
<transform depend fmri=library/python/python-imaging-34 type=group -> drop>
4912
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    41
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    42
<transform depend fmri=library/python/boto-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    43
<transform depend fmri=library/python/coverage-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    44
<transform depend fmri=library/python/django-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    45
<transform depend fmri=library/python/keystoneclient-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    46
<transform depend fmri=library/python/librabbitmq-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    47
<transform depend fmri=library/python/m2crypto-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    48
<transform depend fmri=library/python/paste-35 type=group -> drop>
0b79e9575718 PSARC 2015/414 Python 3.5
John Beck <John.Beck@Oracle.COM>
parents: 3998
diff changeset
    49
<transform depend fmri=library/python/python-imaging-35 type=group -> drop>