[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, experimental/ng/var-simplif
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, experimental/ng/var-simplify, created. v1.12-230-ge922f92 |
Date: |
Thu, 24 May 2012 08:04:23 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=e922f92984547e55af284c06ecf7d946240049f6
The branch, experimental/ng/var-simplify has been created
at e922f92984547e55af284c06ecf7d946240049f6 (commit)
- Log -----------------------------------------------------------------
commit e922f92984547e55af284c06ecf7d946240049f6
Author: Stefano Lattarini <address@hidden>
Date: Sun May 20 01:44:48 2012 +0200
refactor: 'push_dist_common' don't directly append to an Automake::Variable
Signed-off-by: Stefano Lattarini <address@hidden>
commit ca980673febb0d85264369b832682a21e5bbbeb4
Author: Stefano Lattarini <address@hidden>
Date: Sun May 20 00:27:10 2012 +0200
cosmetics: avoid redundant use of '&' in subroutine calls
* automake.in: Avoid redundant '&' in calls to the subroutines
'push_dist_common', 'define_variable' and 'define_verbose_tagvar'.
Signed-off-by: Stefano Lattarini <address@hidden>
commit cebb3d6ef02789c631465fc734ad813badd48fbd
Author: Stefano Lattarini <address@hidden>
Date: Sat May 19 23:06:27 2012 +0200
rename: define_pretty_variable -> define_cond_variable()
The new name is more appropriate, now that there is no more
distinction between variables "pretty printed" and "printed
as is".
Signed-off-by: Stefano Lattarini <address@hidden>
commit a2f8d70b5c15a57822c465565bc42085c238e555
Author: Stefano Lattarini <address@hidden>
Date: Sat May 19 22:49:36 2012 +0200
cleanup: prefer 'define_variable' over 'define_pretty_variable'
No semantic change is intended.
* automake.in: Any call to 'define_pretty_variable' where the condition
argument is 'TRUE' can be simplified to a call to 'define_variable'.
Signed-off-by: Stefano Lattarini <address@hidden>
commit 5554154c571d1968989e747c9e0d24013473f28f
Author: Stefano Lattarini <address@hidden>
Date: Sat May 19 22:38:38 2012 +0200
refactor: change signature of 'define_variable()'
This makes the signature more consistent with the one of
'define_pretty_variable()'.
Signed-off-by: Stefano Lattarini <address@hidden>
commit e8cf0b9dff91e605e6e6bf637a2ffa96cad79839
Author: Stefano Lattarini <address@hidden>
Date: Sat May 19 19:34:06 2012 +0200
vars: get rid of VAR_ASIS / VAR_PRETTY distinction
Signed-off-by: Stefano Lattarini <address@hidden>
commit c7f84a4b19a698aab7c1b8d7a6e3ffa3bce7bfb1
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 15:08:39 2012 +0200
vars: keep track of conditionals in appended values and comments
Refactor only needed by later changes.
Signed-off-by: Stefano Lattarini <address@hidden>
commit 0fc38eee36048694c7c98c114cac07e1c4bbcd9c
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 12:00:35 2012 +0200
vars: simplify logic for appending conditionally
This will make the generated Makefiles more bloated, but that's OK,
since further refactorings will change the format used to output
conditional variables extending, and the resulting Makefiles will
once again be smaller (and quite cleaner).
Signed-off-by: Stefano Lattarini <address@hidden>
commit 2befff8183a90b082253bccd9899394b67caeee9
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 10:14:38 2012 +0200
VarDef: store comments and values as a perl array
This is a preparatory refactoring in view of a planned change to
how the definitions of make variables augmented with '+=' are
displayed
Signed-off-by: Stefano Lattarini <address@hidden>
commit 05bd673e044d89294e6843c76deb67dfc85075ef
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 01:08:29 2012 +0200
refactor: support comments only for VarDef, not for ItemDef too
Comments are actually only handled and used for variable definitions,
so no point in handling it also for rule definitions. And this will
simplify our next step where we change how variable definitions (and
related comments) are stored and displayed.
Signed-off-by: Stefano Lattarini <address@hidden>
commit e68e385d3ae24420c82a5c7bccd7076cf3fc9d77
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 15:49:06 2012 +0200
vars: get rid of VAR_SILENT type
Signed-off-by: Stefano Lattarini <address@hidden>
commit 2795b672e012b007defa137d203e9b43c179a7d1
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 00:46:30 2012 +0200
vars: get rid of VAR_SORTED type
It's basically unused, and the tiny cosmetic enhancements it offers
are not worth the complication of having yet another variable type.
Signed-off-by: Stefano Lattarini <address@hidden>
commit e81f96c62d54e96d215e67d4319a63573ecfb4e2
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 13:32:25 2012 +0200
tests: Automake should let us append to undefined variables
This is not the case, mostly for historical reason. However, allowing
that would mimic the behaviour of GNU make more closely (see the test
case 't/spy-var-append.sh'). Very likely, it would also simplify the
implementation.
* t/var-undef-append.sh: New test, still failing.
* Makefile.am (XFAIL_TESTS): Add it.
Signed-off-by: Stefano Lattarini <address@hidden>
commit e3ca6028d6767421d74e69529d5e8a343fda8dd4
Author: Stefano Lattarini <address@hidden>
Date: Thu May 3 12:36:33 2012 +0200
tests: spy behaviour of '+=' with GNU make
* t/spy-var-append.sh: New test.
Signed-off-by: Stefano Lattarini <address@hidden>
-----------------------------------------------------------------------
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, experimental/ng/var-simplify, created. v1.12-230-ge922f92,
Stefano Lattarini <=