images/elements/rocky-common/bin/map-packages

118 lines
3.9 KiB
Python
Executable File

#!/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: