This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: packaging’s pysetup script should be named differently than distutils2’s pysetup
Type: Stage: resolved
Components: Distutils2 Versions: Python 3.3
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: eric.araujo Nosy List: alexis, eric.araujo, tarek
Priority: normal Keywords:

Created on 2012-05-29 03:40 by eric.araujo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg161848 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2012-05-29 03:40
The whole point of naming distutils2 “packaging” in the standard library is to avoid name conflicts in case someone wants to import a distutils2 version from site-packages that’s newer than the packaging version in the standard library.  However the main command-line entry point, the pysetup script, has a conflicting name: both packaging and distutils2 use it.

I don’t have an elegant solution to that; suggestions welcome.
msg161865 - (view) Author: Alexis Metaireau (alexis) * (Python triager) Date: 2012-05-29 10:12
Good catch,

One solution would be to have the pysetup script name suffixed by the 
version of python is comes with. For instance, for python 3.3 it would 
be "pysetup3.3" (that's how it is atm).

This means that "pysetup" would point to "pysetup3.3" after a fresh 
python install, but distutils2 could change this and propose a 
different version of pysetup.

The 3.3 version would still be available but under "pysetup3.3".
msg161881 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2012-05-29 14:03
I’m afraid that won’t work: depending on how python3 is installed, it may install both pysetup3.3 and pysetup3, so distutils2-python3 can’t use any of these names.

Note that on Debian and probably other systems, two packages really cannot use the same file path without using some machinery; just overwriting something is not permitted.

(On a related topic, I’m not sure distutils2 should ever install pysetup or pysetup3 without version number: contrary to e.g. a mail client where I don’t care about the version used, this is a version-specific program that should have a version number in its name.)

The problem really is that when we talk about “the 3.3 version of pysetup” we may talk about the one that comes with packaging or with d2.
History
Date User Action Args
2022-04-11 14:57:30adminsetgithub: 59151
2014-03-13 00:56:57eric.araujosetstatus: open -> closed
resolution: out of date
stage: resolved
2012-05-29 14:03:50eric.araujosetmessages: + msg161881
2012-05-29 10:12:58alexissetmessages: + msg161865
2012-05-29 03:41:02eric.araujosettitle: packaging’spysetup script should be named differently than distutils2’s pysetup -> packaging’s pysetup script should be named differently than distutils2’s pysetup
2012-05-29 03:40:37eric.araujocreate