[issue20022] "modernize" the Mac bundlebuilder.py script

2014-03-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3cf72994d5ae by Ned Deily in branch 'default': Issue #20022: Eliminate use of deprecated bundlebuilder in OS X builds. http://hg.python.org/cpython/rev/3cf72994d5ae -- nosy: +python-dev ___ Python tracker

[issue20022] "modernize" the Mac bundlebuilder.py script

2013-12-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: Removing bundle builder should be easy enough if it is only used to create the PythonLauncher application bundle: that bundle does not contain python code at all and constructing it is just a matter of copying files to the right location. The attached patch s

[issue20022] "modernize" the Mac bundlebuilder.py script

2013-12-19 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- keywords: +needs review, patch stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mai

[issue20022] "modernize" the Mac bundlebuilder.py script

2013-12-19 Thread Ned Deily
Ned Deily added the comment: bundlebuild.py is a deprecated legacy tool that has been superseded by the third-party py2app. AFAIK, its only use in Python 3 is to build PythonLauncher.app; it is not included in a Python installation. Rather than refactor it, its use should be eliminated in Ma

[issue20022] "modernize" the Mac bundlebuilder.py script

2013-12-18 Thread Eric Snow
New submission from Eric Snow: Mac/Tools/bundlebuilder.py uses deprecated imp APIs. It should be refactored to use the current import-related APIs. -- messages: 206578 nosy: eric.snow priority: low severity: normal status: open title: "modernize" the Mac bundlebuilder.py script type: e