automake-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Automake-commit] [SCM] GNU Automake branch, branch-1.13.2, created. v1.


From: Stefano Lattarini
Subject: [Automake-commit] [SCM] GNU Automake branch, branch-1.13.2, created. v1.13.1-20-gaf633f5
Date: Mon, 21 Jan 2013 12:40:42 +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=af633f5c7f110fa0ddc1f8163506c62c2549d526

The branch, branch-1.13.2 has been created
        at  af633f5c7f110fa0ddc1f8163506c62c2549d526 (commit)

- Log -----------------------------------------------------------------
commit af633f5c7f110fa0ddc1f8163506c62c2549d526
Author: Thien-Thi Nguyen <address@hidden>
Date:   Mon Jan 21 13:35:03 2013 +0100

    tests: avoid a spurious failure when running inside Emacs
    
    Some versions of Emacs set the environment variable 'EMACS' to 't'
    for child processes.  Thus, when running from inside Emacs, "$(MAKE) -e"
    erroneously allows the 't' to override the one in the Makefile.
    
    * t/lisp-flags.sh: Unset var 'EMACS', fixing the issue.
    
    Copyright-paperwork-exempt: yes
    Signed-off-by: Stefano Lattarini <address@hidden>

commit ad4e856e1f3e568f400be99188fa190901bb9fbd
Author: Stefano Lattarini <address@hidden>
Date:   Thu Jan 3 13:42:20 2013 +0100

    tests: make two new test executable
    
    * t/backslash-issues.sh: This.
    * t/extra-data.sh: And this.
    
    Issue revealed by the 'sc_tests_executable' maintainer check.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

commit 18cb8eb2a52df73618b8484948b1040b770d4f0f
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 18 13:39:38 2013 +0100

    m4: rename an m4 file to a more appropriate name
    
    * m4/obsolete-err.m4: Rename ...
    * m4/obsolete.m4: ... like this.
    * Makefile.am (dist_automake_ac_DATA): Adjust.
    * t/ansi2knr-no-more.sh: Likewise.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

commit 4d32ebdd74545bd0cd729c9aaabe3a8c2e992feb
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 18 13:32:12 2013 +0100

    NEWS: update w.r.t. recent documentation fixes
    
    Signed-off-by: Stefano Lattarini <address@hidden>

commit eada7ef7dfdee457c7e773ae96f435de81c2f0ce
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 18 13:13:30 2013 +0100

    compat: reinstate AM_CONFIG_HEADER and AM_PROG_CC_STDC
    
    Make them give runtime warnings in the obsolete category, but apart
    from that, make them behave as they did in Automake 1.12.x and earlier.
    
    While removing those macros seemed quite harmless, because it didn't put
    a real burden on the developers (requiring them just to do a quick edit
    to configure.ac), it turned out to place an unsustainable burden (or at
    least, a burden perceived as such) on distro packagers who use the latest
    Automake to bootstrap existing packages.  Many of those packages, while
    having likely updated to AC_CONFIG_HEADERS in their development version,
    still used AM_CONFIG_HEADER in their existing released versions, and the
    removal of this macro would have thus forced the Fedora packagers to
    patch all of them.  References:
    
      <http://www.mail-archive.com/address@hidden/msg52840.html>
      <http://www.spinics.net/lists/fedora-devel/msg175922.html>
      <http://blog.flameeyes.eu/2013/01/autotools-mythbuster-automake-pains>
    
    In addition, the Fedora packagers have already decided to patch their
    Automake 1.13.1 to reinstate the AM_CONFIG_HEADER and AM_PROG_CC_STDC
    macros (plus other macros that I don't believe it's worth worrying about):
    
      <http://www.spinics.net/lists/fedora-devel/msg176098.html>
      <http://www.mail-archive.com/address@hidden/msg53030.html>
      <http://pkgs.fedoraproject.org/cgit/automake.git/commit/?id=ffe6bc39>
    
    So, rather than having one more incompatibility floating around, we
    better mirror that change (or, actually, its relevant parts) in the
    upstream.
    
    * m4/obsolete-err.m4 (AM_CONFIG_HEADER, AM_PROG_CC_STDC): Revert to the
    older semantics, plus a runtime warning in the 'obsolete' category.
    * t/backcompat6.sh: Use AM_CONFIG_HEADER once again.
    * t/am-config-header-no-more.sh: Rename ...
    * t/am-config-header.sh: ... like this, and adjust.
    * t/am-prog-cc-stdc-no-more.sh: Rename ...
    * t/am-prog-cc-stdc.sh: ... like this, and adjust.
    * t/list-of-tests.mk: Adjust.
    * NEWS: Update.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

commit 81527ed5b4f5742bd01d69c7e556f63bf30fb6c8
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 18 12:02:23 2013 +0100

    docs: parallel-tests is no longer experimental
    
    So don't declare it as such in the documentation.
    
    Reported by Brandon Black:
    <http://lists.gnu.org/archive/html/automake/2013-01/msg00052.html>
    
    * doc/automake.texi: Adjust.
    * THANKS: Update.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

commit a7b2069b891f6abcba194cd7fc7790307d47576d
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 18 11:39:28 2013 +0100

    docs: serial-tests are not deprecated, just discouraged
    
    We don't plan to remove support for them, nor to have the serial-tests
    option give any kind of runtime warning, so don't alarm the users
    still using serial tests with pointless "deprecation" or "obsolescence"
    warnings.
    
    Fixes automake bug#13478.
    
    See also:
    <http://lists.gnu.org/archive/html/automake/2013-01/msg00058.html>
    
    * doc/automake.texi: Adjust.
    * THANKS: Update.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

commit ae4d4fcfa5a9401737568f897cd71d1f5a0e7faa
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 18 11:04:25 2013 +0100

    NEWS: we are not going to remove AM_PROG_MKDIR_P in Automake 1.14
    
    See commit v1.13.1-109-g030ecb4 of 2013-01-16, "compat: restore
    AM_PROG_MKDIR, again", for the rationale.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

-----------------------------------------------------------------------


hooks/post-receive
-- 
GNU Automake



reply via email to

[Prev in Thread] Current Thread [Next in Thread]