Re: [PATCH] python: prioritize python 3.x over 2.x

2022-01-27 Thread Jacob Bachmeyer
Zack Weinberg wrote: On Wed, Jan 26, 2022, at 10:10 PM, Mike Frysinger wrote: On 26 Jan 2022 10:07, Zack Weinberg wrote: Please also move the plain "python" command down to the python2 block (right after "python2" would be the best place I think). Any system on which "python" runs Pyth

Re: [PATCH] tests: remove spurious +x bits

2022-01-27 Thread Karl Berry
Subject: [PATCH] tests: remove spurious +x bits Sure, sounds good. Thanks. -k

Re: [PATCH] python: prioritize python 3.x over 2.x

2022-01-27 Thread Zack Weinberg
On Wed, Jan 26, 2022, at 10:10 PM, Mike Frysinger wrote: > On 26 Jan 2022 10:07, Zack Weinberg wrote: >> Please also move the plain "python" command down to the python2 >> block (right after "python2" would be the best place I think). Any >> system on which "python" runs Python 3 is grossly miscon

[PATCH] tests: remove spurious +x bits

2022-01-27 Thread Mike Frysinger
None of these files are (or can be) executed directly, so drop the spurious +x permission bit. None of the other tests do this either. * t/built-sources-install-exec.sh: Remove +x bit. * t/ccnoco-deps.sh: Likewise. * t/ccnoco-lib.sh: Likewise. * t/ccnoco-lt.sh: Likewise. * t/perf/cond.sh: Likewis

[PATCH v2] python: prioritize python 3.x over 2.x

2022-01-27 Thread Mike Frysinger
Since Python 2.x went EOL years ago, stop searching for it before any of the Python 3 versions. * m4/python.m4: Move python2 after all python3 versions. * NEWS: Mention update in version search. --- NEWS | 6 ++ m4/python.m4 | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) di