Bug 480717

Summary: python-setuptools 0.6c9-1.fc9 broken
Product: [Fedora] Fedora Reporter: David Rees <drees76>
Component: python-setuptoolsAssignee: Konstantin Ryabitsev <icon>
Status: CLOSED NOTABUG QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: high Docs Contact:
Priority: low    
Version: 9CC: a.badger, icon, icon
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2009-01-21 22:40:57 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description David Rees 2009-01-20 04:03:15 UTC
python-setuptools 0.6c9-1.fc9 is broken.  Specifically, /usr/bin/easy_install (and /usr/bin/easy_install-2.5) still refer to version 0.6c8 of python-setuptools.

Simply updating those files to refer to 0.6c9 as expected seems to get things working again.

Comment 1 Konstantin Ryabitsev 2009-01-21 22:40:57 UTC
Looking at the contents of /usr/bin/easy_install from http://kojipkgs.fedoraproject.org/packages/python-setuptools/0.6c9/1.fc9/noarch/python-setuptools-devel-0.6c9-1.fc9.noarch.rpm:

#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==0.6c9','console_scripts','easy_install'
__requires__ = 'setuptools==0.6c9'
import sys
from pkg_resources import load_entry_point

sys.exit(
   load_entry_point('setuptools==0.6c9', 'console_scripts', 'easy_install')()
)

Unless I'm missing something, everything is correct.

Note, that /usr/bin/easy_install* is not provided by python-setuptools, but python-setuptools-devel. Perhaps these files on your system are left over from a manual installation? You can check by running:

rpm -qf /usr/bin/easy_install

Comment 2 David Rees 2009-01-21 22:55:58 UTC
Damn, you're right.  I swear I checked that /usr/bin/easy_install was part of python-setuptools, but I just double checked, and it was not.  It was indeed left over from a previous install.

Changing the status to NOTABUG, since this obviously is not.

Thanks!