[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-09-19 Thread Éric Araujo
Éric Araujo added the comment: Fixed in distutils2 in 95172b1c5498. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-09-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset a78629c62ee8 by Éric Araujo in branch '3.2': Make bdist_* commands respect --skip-build passed to bdist (#10946) http://hg.python.org/cpython/rev/a78629c62ee8 -- ___ Python tracker

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-08-30 Thread Éric Araujo
Éric Araujo added the comment: I simplified my patch and pushed it. I had to discover again that I needed to inject customized command objects into dist.command_obj, like you found out a few months ago when we had a private email discussion :) > Using set_undefined_options in install_* is de

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-08-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4ff92eb1a915 by Éric Araujo in branch '2.7': Make bdist_* commands respect --skip-build passed to bdist (#10946) http://hg.python.org/cpython/rev/4ff92eb1a915 -- ___ Python tracker

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-08-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 326a7e44bb66 by Éric Araujo in branch '3.2': Make bdist_* commands respect --skip-build passed to bdist (#10946) http://hg.python.org/cpython/rev/326a7e44bb66 New changeset 2f69b4f3df2e by Éric Araujo in branch 'default': Merge fix for #10946 from

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-08-29 Thread Éric Araujo
Éric Araujo added the comment: The fix was actually very simple. I have committed it to my 3.2 repo and will push later. -- stage: test needed -> commit review Added file: http://bugs.python.org/file23061/fix-bdist-skip-build.diff ___ Python tracke

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-06-12 Thread Éric Araujo
Éric Araujo added the comment: I’ll edit the patch to use set_undefined_options. -- versions: +Python 3.3 -Python 3.1 ___ Python tracker ___

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-06-12 Thread Éric Araujo
Changes by Éric Araujo : Added file: http://bugs.python.org/file22335/a099e7001aa8.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-06-12 Thread Éric Araujo
Changes by Éric Araujo : -- hgrepos: +27 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-05-04 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-04-18 Thread Éric Araujo
Éric Araujo added the comment: > Could you please at least describe the test that you mentioned (link > doesn't work). I still have a local copy \o/. Yannick’s patch looks like this: def test_skip_build(self): pkg_pth, dist = self.create_dist() # With the skip_build option

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-04-16 Thread Wojciech Wojtyniak
Wojciech Wojtyniak added the comment: Could you please at least describe the test that you mentioned (link doesn't work). I added line that passes skip_build from bdist.py to its subcommands and it worked for me (at least for simple cases) - base.py is not called. If bdist wouldn't call any i

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-01-19 Thread Éric Araujo
Éric Araujo added the comment: I added the required calls to pass skip-build from bdist to bdist_* but that isn’t enough to make the test from https://bitbucket.org/ygingras/distutils2/changeset/71f5c39c9100 pass. build gets somehow called, even though install, install_lib, bdist and bdist_d

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-01-19 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +tarek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue10946] bdist doesn’t pass --skip-build on to subcommands

2011-01-19 Thread Éric Araujo
New submission from Éric Araujo : Yannick has found that bdist_* commands don’t get the --skip-build option from bdist. This should be solved easily thanks to set_undefined_options. Adding people from #414775 (r25075) to nosy. -- assignee: eric.araujo components: Distutils, Distutils2