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: mkpkg.py is missing
Type: Stage:
Components: Distutils2 Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: tarek Nosy List: Atsushi.Odagiri, eric.araujo, tarek
Priority: normal Keywords:

Created on 2010-10-17 19:17 by Atsushi.Odagiri, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg118966 - (view) Author: Atsushi Odagiri (Atsushi.Odagiri) Date: 2010-10-17 19:17
I try to install distutils2-1.0a3 to python 2.5.
But I got error such a below.

$ python -V
Python 2.5.2
$ python setup.py build
running build
running build_py
running build_scripts
error: file 'distutils2/mkpkg.py' does not exist
$ ls distutils2/mkpkg.pyls: cannot access distutils2/mkpkg.py: No such file or directory
msg118974 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2010-10-17 19:57
The file was renamed to mkcfg.py, but we forgot to rename it in the scripts options in setup.py for py < 2.6. This was fixed since then.

Until the alpha4 release is out you can make the same change in setup.py for your build to work.
msg118975 - (view) Author: Tarek Ziadé (tarek) * (Python committer) Date: 2010-10-17 19:58
The file was renamed to mkcfg.py, but we forgot to rename it in the scripts options in setup.py for py < 2.6. This was fixed since then.

Until the alpha4 release is out you can make the same change in setup.py for your build to work.
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54341
2010-10-17 21:14:04r.david.murraysettitle: mkpkg.py is lacked. -> mkpkg.py is missing
2010-10-17 19:58:05tareksetmessages: + msg118975
2010-10-17 19:57:59tareksetstatus: open -> closed
resolution: fixed
messages: + msg118974
2010-10-17 19:17:34Atsushi.Odagiricreate