[issue30232] configure: support Git worktree

2017-05-03 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue30232] configure: support Git worktree

2017-05-03 Thread STINNER Victor
STINNER Victor added the comment: I applied the enhanced (called bugfix by Brett ;-)) to 2.7, 3.5, 3.6 and master (3.7). I close the issue. Example: haypo@selma$ cat .git gitdir: /home/haypo/prog/python/master/.git/worktrees/2.7 haypo@selma$ ./python Python 2.7.13+ (heads/test_ssl_27:dda4d78

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset 360fb81367bb409bb7a1d261d88fcf82cee528f0 by Victor Stinner in branch '3.5': [3.5] bpo-30232: Support Git worktree in configure.ac (#1398) (#1401) https://github.com/python/cpython/commit/360fb81367bb409bb7a1d261d88fcf82cee528f0 -- _

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset df5692549a68741d3d0228f9fef74f349712 by Victor Stinner in branch '2.7': bpo-30232: Support Git worktree in configure.ac (#1402) https://github.com/python/cpython/commit/df5692549a68741d3d0228f9fef74f349712 -- ___

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1510 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1509 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4dae0d111dd7bb34ec730eea2327a3219acff211 by Victor Stinner in branch '3.6': [3.6] bpo-30232: Support Git worktree in configure.ac (#1398) https://github.com/python/cpython/commit/4dae0d111dd7bb34ec730eea2327a3219acff211 -- _

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1507 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9ed34a89532763cf89f5e11fffb91ef7dee29fed by Victor Stinner in branch 'master': bpo-30232: Regenerate configure (#1396) https://github.com/python/cpython/commit/9ed34a89532763cf89f5e11fffb91ef7dee29fed --

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1504 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset 5facdbb29169c2799c42f887cef4cd9d087b0167 by Victor Stinner in branch 'master': bpo-30232: Support Git worktree in configure.ac (#1391) https://github.com/python/cpython/commit/5facdbb29169c2799c42f887cef4cd9d087b0167 --

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: See the bpo-29798 which added support for Git worktree in `make patchcheck`. -- ___ Python tracker ___ _

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1498 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30232] configure: support Git worktree

2017-05-02 Thread STINNER Victor
New submission from STINNER Victor: configure.ac tests if .git/HEAD file exists to decide if it should get the git version / tag / branch. I use git worktree to get 2.7, 3.5, 3.6 and master in their own directory. When using git worktree, ".git" is a text file with a content like: haypo@selma