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

2011-09-19 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Fixed in distutils2 in 95172b1c5498. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10946 ___

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

2011-09-04 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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 -- ___

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

2011-08-30 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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

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

2011-08-30 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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 -- ___

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

2011-08-30 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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

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

2011-08-29 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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

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

2011-06-12 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- hgrepos: +27 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10946 ___ ___ Python-bugs-list mailing

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

2011-06-12 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: Added file: http://bugs.python.org/file22335/a099e7001aa8.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10946 ___

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

2011-06-12 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I’ll edit the patch to use set_undefined_options. -- versions: +Python 3.3 -Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10946

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

2011-05-04 Thread Senthil Kumaran
Changes by Senthil Kumaran sent...@uthcode.com: -- nosy: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10946 ___ ___ Python-bugs-list

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

2011-04-18 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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

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

2011-04-16 Thread Wojciech Wojtyniak
Wojciech Wojtyniak radi...@gmail.com 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

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

2011-01-19 Thread Éric Araujo
New submission from Éric Araujo mer...@netwok.org: 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:

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

2011-01-19 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +tarek ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10946 ___ ___ Python-bugs-list mailing

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

2011-01-19 Thread Éric Araujo
Éric Araujo mer...@netwok.org 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,