The first issue came with package python-Twisted. This failed dependency check with an error saying that it required python-zope-interface. The package name is actually python-zopeinterface and is already installed. The spec file for python-Twisted contains:
Code: Alles auswählen
%if 0%{?rhel_version} == 600 || 0%{?centos_version} || 0%{?fedora_version}
BuildRequires: python-zope-interface
Requires: python-zope-interface
%else
BuildRequires: python-zopeinterface
Requires: python-zopeinterface
%endif
I attempted to continue excluding python-Twisted from the update process. The next error was more sinister. This is the error from yum:
Code: Alles auswählen
Running rpm_check_debug
Running Transaction Test
Error: Transaction Check Error:
file /usr/lib64/python2.6/site-packages/MySQLdb/__init__.py conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/__init__.pyc conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/connections.py conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/connections.pyc conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/converters.py conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/converters.pyc conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/cursors.py conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/cursors.pyc conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/release.py conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/release.pyc conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/times.py conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/MySQLdb/times.pyc conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
file /usr/lib64/python2.6/site-packages/_mysql.so conflicts between attempted installs of MySQL-python-1.2.3-0.3.c1.1.el6.x86_64 and python-mysql-1.2.2-98.3.x86_64
Thanks