File: map-packages

package info (click to toggle)
python-diskimage-builder 3.39.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,704 kB
  • sloc: sh: 7,474; python: 6,454; makefile: 37
file content (117 lines) | stat: -rwxr-xr-x 3,952 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/usr/bin/env python3
# dib-lint: disable=indent
# dib-lint indent requirements causes issue with pep8

# Copyright 2012 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

import sys

# Manually maintained for brevity; consider making this compiled from
# distromatch or other rich data sources.
# Debian name on the left, Fedora/RHEL on the right.

#
#           !!! DO NOT ADD ANY ENTRIES TO THIS FILE !!!
#
# This global list has been deprecated by the pkg-map element.  New
# package mappings should go in pkg-map files inside each element.
#
package_map = {
    'apache2': 'httpd',
    'arping': 'iputils',
    'augeas-tools': 'augeas',
    'build-essential': 'make automake gcc gcc-c++ kernel-devel',
    'default-jre': 'java',
    'extlinux': 'syslinux-extlinux',
    'gearman-job-server': 'gearmand',
    'grub-pc': 'grub2-tools grub2',
    'libaio1': 'libaio',
    'libapache2-mod-wsgi': 'mod_wsgi',
    'libc6-dev': 'glibc-devel',
    'libmariadb-dev': 'mariadb-devel',
    'libffi-dev': 'libffi-devel',
    'libldap2-dev': 'python-ldap',
    'libmysql-dev': 'mysql++-devel',
    'libmysql-java': 'mysql-connector-java',
    'libmysqlclient-dev': 'mysql-devel',
    'libpq-dev': 'libpqxx-devel',
    'libxslt-dev': 'libxslt-devel',
    'libsasl2-dev': 'cyrus-sasl-devel',
    'libsqlite3-dev': 'libsqlite3x-devel',
    'libssl-dev': 'openssl-devel',
    'libvirt-bin': 'libvirt',
    'libxml2-dev': 'libxml2-devel',
    'libz-dev': 'zlib-devel',
    'linux-headers-generic': 'kernel-headers',
    'linux-image-generic': 'kernel',
    'lm-sensors': 'lm_sensors',
    'mysql-client-5.5': 'mariadb',
    'mysql-server-5.5': 'mariadb-server',
    'nagios-plugins-basic': 'nagios-plugins-all',
    'netcat-openbsd': 'nmap-ncat',
    'nfs-common': 'nfs-utils',
    'nfs-kernel-server': 'nfs-utils',
    'open-iscsi': 'iscsi-initiator-utils',
    'openjdk-7-jre-headless': 'java-1.7.0-openjdk-headless',
    'openssh-client': 'openssh-clients',
    'openvswitch-common': 'openvswitch',
    'openvswitch-switch': 'openvswitch',
    'python-dev': 'python-devel',
    'python-libvirt': 'libvirt-python',
    'python-memcache': 'python-memcached',
    'python-mysqldb': 'MySQL-python',
    'python-numpy': 'numpy',
    'python-pyopenssl': 'pyOpenSSL',
    'python-xattr': 'pyxattr',
    'qemu-utils': 'qemu-img',
    'qpid-client': 'qpid-cpp-client',
    'qpidd': 'qpid-cpp-server',
    'snmp-mibs-downloader': '',
    'snmpd': 'net-snmp',
    'stunnel4': 'stunnel',
    'tftpd-hpa': 'tftp-server',
    'tgt': 'scsi-target-utils',
    'vlan': 'vconfig',
    # openstack mappings
    'openstack-neutron-dhcp-agent': 'openstack-neutron',
}

deprecated = []
for arg in sys.argv[1:]:
    if arg not in package_map and arg.endswith('-dev'):
        # convert -dev into devel
        converted = '%s%s' % (arg, 'el')
        deprecated.append((arg, converted))
        print(converted)
    else:
        converted = package_map.get(arg, arg)
        if converted != arg:
            deprecated.append((arg, converted))
        print(converted)

if deprecated:
    print("WARNING: The following packages were re-mapped by "
          "redhat-common map-packages\n"
          "They should be converted to pkg-map:", file=sys.stderr)
    for arg, converted in deprecated:
        print(" %s -> %s" % (arg, converted), file=sys.stderr)

sys.exit(0)


# Tell emacs to use python-mode
# Local variables:
# mode: python
# End: