[PATCH] Byte-compile nobase_*_PYTHON files only once.

2013-09-17 Thread Benoit Sigoure
Byte-compiling was occurring inside of a loop, causing an O(n^2) number of byte-compilations instead of O(n). --- lib/am/python.am | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/am/python.am b/lib/am/python.am index 36f0b2d..06545b1 100644 --- a/lib/am/python.

[PATCH] docs: Add references between the 2 sections on compiling Java.

2011-07-15 Thread Benoit Sigoure
@@ +2011-07-15 Benoit Sigoure + + docs: Add references between the 2 sections on compiling Java. + * doc/automake.texi (Java Support, Java): Add cross-references. + 2011-07-08 Stefano Lattarini tests: fix weakness in 'tests-environment-backcompat.test' diff -

Re: FYI: Quote @abs_top_builddir@ and @[EMAIL PROTECTED]

2007-11-26 Thread Benoit Sigoure
d by default, and once we know for sure we want them in the mainline, we cherry-pick them in `master'. Somewhat like what git does for its own development. (more info can be found here: http://marc.info/? l=git&m=119569175608108&w=2) -- Benoit Sigoure aka Tsuna EPITA Research

Re: Introduce and use the %KEY?TRUE:FALSE% template token

2007-11-19 Thread Benoit Sigoure
in master. It's safer. # inspection: git log; git show # publish: git push # finally, you should not need the branch any more: git branch -d my-ternary HTH. Untested. :) -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory PGP.sig Description: This

Re: Introduce and use the %KEY?TRUE:FALSE% template token

2007-11-19 Thread Benoit Sigoure
git- format-patch and add it in between the `---' and the diffstat. If you want to remove that commit, you can then git reset --hard HEAD~1. Cheers, -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory PGP.sig Description: This is a digitally signed message part

Re: autoconf version control announcements

2007-11-11 Thread Benoit Sigoure
too? I find it very convenient. Cheers, -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory PGP.sig Description: This is a digitally signed message part

Re: [PATCH] Don't create world-writable files.

2007-11-11 Thread Benoit Sigoure
On Nov 11, 2007, at 2:31 PM, Ralf Wildenhues wrote: Hi Benoit, * Benoit Sigoure wrote on Sat, Nov 10, 2007 at 11:10:46PM CET: There is one last occurrence in `distdir' but it seems to be there to work around buggy tar implementations. * Makefile.am (path-check):

[PATCH] Don't create world-writable files.

2007-11-10 Thread Benoit Sigoure
There is one last occurrence in `distdir' but it seems to be there to work around buggy tar implementations. * Makefile.am (path-check): Here. * lib/am/distdir.am (distcheck): Here. * tests/defs.in (trap setup): Here. Signed-off-by: Benoit Sigoure &l

Re: [PATCH] Document AM_MISSING_PROG.

2007-11-05 Thread Benoit Sigoure
On Nov 6, 2007, at 5:04 AM, Ralf Wildenhues wrote: * Benoit Sigoure wrote on Tue, Nov 06, 2007 at 01:24:11AM CET: On Nov 5, 2007, at 10:09 PM, Ralf Wildenhues wrote: Would be good to also have a test with a program that does not exist, i.e., a test that exposes all aspects of `missing&#

Re: [PATCH] Document AM_MISSING_PROG.

2007-11-05 Thread Benoit Sigoure
gh despite my 2Ghz Core2Duo ;o (It'll be better with make -j2, once we include the parallel test feature :D) I'll try to post a revised version of that patch in a couple of days. -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory PGP.sig Description: This is a digitally signed message part

Re: [PATCH] Document AM_MISSING_PROG.

2007-11-05 Thread Benoit Sigoure
On Nov 5, 2007, at 8:14 PM, Ralf Wildenhues wrote: Hello Benoit, * Benoit SIGOURE wrote on Sun, Nov 04, 2007 at 08:44:50PM CET: --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -40,6 +40,7 @@ alpha.test \ alpha2.test \ amassign.test \ ammissing.test \ +ammissingprog.test \ amopt.test

Re: colorful tests

2007-11-05 Thread Benoit Sigoure
On Nov 5, 2007, at 5:01 PM, Bob Proulx wrote: Benoit Sigoure wrote: Bob Proulx wrote: For example when capturing output with 'script' all of those escape sequences get in the way. If you do this, it will DWYM unless you have a broken implementation of `test -t' (which should

Re: colorful tests

2007-11-05 Thread Benoit Sigoure
On Nov 5, 2007, at 1:13 AM, Bob Proulx wrote: Benoit SIGOURE wrote: Now I think that the no-color-tests could be useful for those out there that are allergic to fancy colors and stuff, so I think it'll be worth implementing it (which is easy). I am not quite alergic to it but put me i

Re: [PATCH] Document AM_MISSING_PROG.

2007-11-04 Thread Benoit SIGOURE
On Nov 4, 2007, at 8:22 PM, Benoit Sigoure wrote: * TODO: Kill the relevant entry. * doc/automake.texi (Public macros): Document AM_MISSING_PROG. * tests/Makefile.am: Add the new test. * tests/ammissingprog.test: New. Signed-off-by: Benoit Sigoure <[EM

[PATCH] Document AM_MISSING_PROG.

2007-11-04 Thread Benoit Sigoure
* TODO: Kill the relevant entry. * doc/automake.texi (Public macros): Document AM_MISSING_PROG. * tests/Makefile.am: Add the new test. * tests/ammissingprog.test: New. Signed-off-by: Benoit Sigoure <[EMAIL PROTECTED]> --- Please drop autoconf-patches when re

Re: prepare Automake's test suite for parallelization

2007-11-04 Thread Benoit SIGOURE
27; $signal +done +signal=0 That's great, I'm going to use this in my own testsuites! # Copy in some files we need. for file in install-sh missing depcomp; do - cp $srcdir/../lib/$file testSubDir/$file || exit 1 + cp $srcdir/../lib/$file $testSubDir/$file || exit 1 done -cd ./

Re: colorful tests

2007-11-04 Thread Benoit SIGOURE
On Nov 4, 2007, at 7:17 PM, Ralf Wildenhues wrote: Hello Benoit, * Benoit SIGOURE wrote on Sun, Nov 04, 2007 at 06:50:08PM CET: On Nov 4, 2007, at 6:41 PM, Ralf Wildenhues wrote: I took the various bits of code from the parallel tests check.mk from Akim and tried to mangle that suitable

Re: colorful tests

2007-11-04 Thread Benoit SIGOURE
results, document new option. * lib/Automake/Options.pm (_process_option_list): Handle it. * lib/am/check.am (am__tty_colors): New variable. Use ... (check-TESTS): ... here. * NEWS: Mention color-tests. * tests/Makefile.in, lib/Automake/tests/Makefile.in: Regenerate. Thanks

Re: [Bug-tar] GNU tar 1.19 on HP-UX

2007-10-18 Thread Benoit SIGOURE
ee if I can invent some evil scheme to make $CONFIG_SITE, being a shell script, alter all the Makefile* in the tree like # find . -name 'Makefile*' |\ xargs perl -pi -e's/^check:/test check:/' and there was no more cursing :) Ahah. Doing this will lead to some unexpect

Re: support for lzma in automake?

2007-10-07 Thread Benoit SIGOURE
'd be interested indeed. -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory PGP.sig Description: This is a digitally signed message part

Re: Patch proposal: Add --clean options to unbootstrap a project.

2007-10-01 Thread Benoit SIGOURE
making changes in this area, why not fix it? Either check for and reject cache names containing apostrophe, or (better yet) support the names. That's true but let's first get this change out of the way, I'll be glad to tackle this issue afterwards. -- Benoit Sigoure aka Tsuna EP

Re: Patch proposal: Add --clean options to unbootstrap a project.

2007-06-24 Thread Benoit Sigoure
ecious time in this change (which is not critical, not release-blocker, not fixing any bug...). * Benoit Sigoure wrote on Tue, Jun 19, 2007 at 12:22:05AM CEST: 2007-06-17 Benoit Sigoure <[EMAIL PROTECTED]> * automake.in, aclocal.in: New option `--clean'. ($c

Re: Patch proposal: Add --clean options to unbootstrap a project.

2007-06-18 Thread Benoit Sigoure
Quoting Ralf Wildenhues <[EMAIL PROTECTED]>: Hello Benoit, * Benoit Sigoure wrote on Sun, Jun 17, 2007 at 01:16:35AM CEST: I've reviewed the patches I proposed back in March, completed them with tests, ChangeLog and NEWS entries. If they are accepted, I'll write the documen

CVS Automake fails to make check with CVS Autoconf

2007-06-15 Thread Benoit Sigoure
m4; do $i --version | sed q; done autoconf (GNU Autoconf) 2.61b automake (GNU automake) 1.10a ltmain.sh (GNU libtool 1.2468 2007/06/09 17:46:40) 2.1a m4 (GNU M4) 1.4.9 (They are all from yesterday's CVS HEAD excepted GNU M4) Maybe this test ought to be removed from Automake? Cheers, -- Benoit

Re: Problem distchecking CVS automake

2007-06-15 Thread Benoit Sigoure
Quoting Ralf Wildenhues <[EMAIL PROTECTED]>: Hello Benoit, Thanks for the report. * Benoit Sigoure wrote on Thu, Jun 14, 2007 at 01:44:45PM CEST: it looks like it's impossible to dist or distcheck automake after a fresh checkout, one has to run make all first. Is that a problem,

Problem distchecking CVS automake

2007-06-14 Thread Benoit Sigoure
1.23 +++ lib/Automake/Makefile.am14 Jun 2007 11:36:48 - @@ -68,4 +68,6 @@ chmod a-w Config.tmp mv -f Config.tmp Config.pm +dist-hook: Config.pm + EXTRA_DIST = Config.in Cheers, -- Benoit Sigoure aka Tsuna EPITA Research and Development Laboratory This message was sent using IMP, the Internet Messaging Program.