[issue13151] pysetup3 run bdist_wininst fails

2014-03-12 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue13151] pysetup3 run bdist_wininst fails

2014-03-12 Thread Éric Araujo
Changes by Éric Araujo : -- dependencies: -bdist_wininst depends on MBCS codec, unavailable on non-Windows ___ Python tracker ___ ___

[issue13151] pysetup3 run bdist_wininst fails

2011-10-17 Thread Éric Araujo
Éric Araujo added the comment: To clarify: the part about the tests applies to distutils. 3.x fixes will then be ported to packaging. Starting with successful tests in distutils 2.7 makes me feel more confident about editing distutils 3.x and packaging 3.3. -- _

[issue13151] pysetup3 run bdist_wininst fails

2011-10-17 Thread Éric Araujo
Éric Araujo added the comment: I’ve patched most of bdist_wininst and started to work on a few tests which work under 2.7 and fail under 3.2 without the fixes so that I can assume I’ve not broken anything. However, the mapping API of the Metadata class is quite unfriendly. For example, if I

[issue13151] pysetup3 run bdist_wininst fails

2011-10-14 Thread Éric Araujo
Changes by Éric Araujo : -- dependencies: +bdist_wininst depends on MBCS codec, unavailable on non-Windows ___ Python tracker ___ ___

[issue13151] pysetup3 run bdist_wininst fails

2011-10-14 Thread Éric Araujo
Éric Araujo added the comment: I’ll apply your hack and fix the other issues. -- assignee: tarek -> eric.araujo ___ Python tracker ___ __

[issue13151] pysetup3 run bdist_wininst fails

2011-10-13 Thread Vinay Sajip
Vinay Sajip added the comment: > I don’t have Windows yet, so either we wait or we iterate I make a patch - > you report failures - I make a patch etc. Actually I'm finding these failures on Ubuntu :-) Although there are MBCS encoding issues which will also need to be fixed before you can bu

[issue13151] pysetup3 run bdist_wininst fails

2011-10-13 Thread Éric Araujo
Éric Araujo added the comment: Metadata now only uses item access, and the names have changed: long_description is description, url is home_page, former description is summary, etc. (more in PEP 345). I don’t have Windows yet, so either we wait or we iterate I make a patch - you report failu

[issue13151] pysetup3 run bdist_wininst fails

2011-10-12 Thread Vinay Sajip
Vinay Sajip added the comment: > On line 118, replacing 'install' with 'install_dist' should fix it. Sadly, it just defers the problem: vinay@eta-natty:~/projects/dory$ pysetup3 run bdist_wininst running bdist_wininst running build running build_py running build_scripts installing to build/bdi

[issue13151] pysetup3 run bdist_wininst fails

2011-10-12 Thread Éric Araujo
Changes by Éric Araujo : -- dependencies: +Rename install_dist to install ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue13151] pysetup3 run bdist_wininst fails

2011-10-12 Thread Éric Araujo
Éric Araujo added the comment: On line 118, replacing 'install' with 'install_dist' should fix it. -- ___ Python tracker ___ ___ Pyth

[issue13151] pysetup3 run bdist_wininst fails

2011-10-11 Thread Vinay Sajip
New submission from Vinay Sajip : When you run pysetup3 run bdist_wininst in a project directory with a valid setup.cfg, it fails with error: Invalid command install after the build, build_py and build_scripts steps. For info, pysetup3 run bdist_dumb runs without error. -- assignee: