[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset c6787a4c544e by Ross Lagerwall in branch '3.2': Fix regression from issue #16262 http://hg.python.org/cpython/rev/c6787a4c544e New changeset b82a4f8a4c67 by Ross Lagerwall in branch '3.3': Merge with 3.2 for issue #16262

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-29 Thread Ross Lagerwall
Changes by Ross Lagerwall rosslagerw...@gmail.com: -- assignee: - rosslagerwall nosy: +rosslagerwall resolution: - fixed stage: - committed/rejected status: open - closed versions: +Python 3.2, Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-28 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The following syntax is broken: if $PYTHON = not-found; then ... checking for python3.4... python3.4 python3.4: can't open file '=': [Errno 2] No such file or directory checking for a BSD-compatible install... /usr/bin/install -c ... You

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-24 Thread R. David Murray
R. David Murray added the comment: Ah, good point. From what I understand, that's entirely possible on that machine. Then the question becomes, do we want to support pre-2.4 for a rebuild? The answer is almost certainly no, but that leaves the DMG builders hosed. Re-closing issue, as this

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-24 Thread Trent Nelson
Trent Nelson added the comment: On Sun, Oct 21, 2012 at 02:59:37PM -0700, R. David Murray wrote: R. David Murray added the comment: This change appears to have broken the dmg builders: http://buildbot.python.org/all/builders/bolen-dmg-3.x/builds/19

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-24 Thread Matthias Klose
Matthias Klose added the comment: yes, the test checks with a recent version first, then the older ones. However you can configure with PYTHON=python2.4 configure ... to overwrite these defaults. -- ___ Python tracker rep...@bugs.python.org

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-24 Thread R. David Murray
R. David Murray added the comment: Wait, does that mean you are explicitly supporting older Python versions? In that case there's still a bug here (either fix the set, or don't accept versions older than 2.4). -- ___ Python tracker

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-24 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +ned.deily ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___ ___ Python-bugs-list mailing list

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-24 Thread Matthias Klose
Matthias Klose added the comment: Wait, does that mean you are explicitly supporting older Python versions? no, that is unchanged. the Parser/asdl_c.py script had a shebang with python. Of course you could replace the python in AC_CHECK_PROCS with the allowed python2.x versions. But then

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 03236a19eb87 by Matthias Klose in branch '3.2': - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. http://hg.python.org/cpython/rev/03236a19eb87 New changeset ea6de576d1c8 by Matthias Klose in branch '3.3': - Issue #16262:

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-21 Thread Matthias Klose
Matthias Klose added the comment: now checked in even without review, because it was broken on the branches too. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-21 Thread R. David Murray
R. David Murray added the comment: This change appears to have broken the dmg builders: http://buildbot.python.org/all/builders/bolen-dmg-3.x/builds/19 http://buildbot.python.org/all/builders/bolen-dmg-3.3/builds/17 -- nosy: +r.david.murray status: closed - open

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-18 Thread Ezio Melotti
Ezio Melotti added the comment: I think you mean b23ad0a6cf87 (see #12273). -- nosy: +ezio.melotti type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-18 Thread Roumen Petrov
Roumen Petrov added the comment: issue 15819 is still open -- nosy: +rpetrov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___ ___

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Matthias Klose
New submission from Matthias Klose: seen with the 3.3 branch and the trunk: also, I think using python now unconditionally breaks the cross builds, so this should call PYTHON_FOR_BUILD, not python. /bin/mkdir -p Include hg: no-repository, python: found! cannot run ../Parser/asdl_c.py -h

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Matthias Klose
Matthias Klose added the comment: looking at the unused subprocess import in asdl_c.py, maybe some call-outs to svn/hg were made in the past? the patch removes the check for hg for the asdl.[ch] builds, and sets ADSLGEN to a appropriate python interpreter if one is found. fixes the build for

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Matthias Klose
Matthias Klose added the comment: r71315 did remove the call-out to hg, so it looks safe to not check for hg in ASDLGEN. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Matthias Klose
Matthias Klose added the comment: typo, r71375 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___ ___ Python-bugs-list mailing list

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Matthias Klose
Changes by Matthias Klose d...@debian.org: -- components: +Build versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___ ___

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +trent ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___ ___ Python-bugs-list mailing

[issue16262] srcdir != builddir builds fail, if hg is not installed

2012-10-17 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16262 ___