SHA256
3
0
forked from pool/autoconf

Accepting request 48189 from devel:tools:building

Copy from devel:tools:building/autoconf based on submit request 48189 from user coolo

OBS-URL: https://build.opensuse.org/request/show/48189
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/autoconf?expand=0&rev=19
This commit is contained in:
OBS User autobuild 2010-09-17 18:48:48 +00:00 committed by Git OBS Bridge
commit fded14b9c1
8 changed files with 240 additions and 18 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:db11944057f3faf229ff5d6ce3fcd819f565455c152b72cec17ebc1cbb80136b
size 1332522

3
autoconf-2.67.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:80c6bda1dd6ab04510d42f594c69a06f98dc5e589683b03c11abd89270502ac1
size 1158000

View File

@ -1,3 +1,77 @@
-------------------------------------------------------------------
Wed Aug 18 12:04:55 CEST 2010 - pth@suse.de
- Update to 2.67:
* New macro AC_FC_LINE_LENGTH to accept long Fortran source code
lines.
* AC_PREPROC_IFELSE now keeps the preprocessed output in the
conftest.i file for inspection by the commands in the
ACTION-IF-TRUE argument.
* autoreconf passes warning flags to new enough versions of
aclocal.
* Running an Autotest testsuite in parallel mode no longer triggers
a race condition that could cause the testsuite run to end early,
fixing a sporadic failure in autoconf's own testsuite. Bug
present since introduction of parallel tests in 2.63b.
Major changes in Autoconf 2.66 (2010-07-02) [stable]
* AC_FUNC_MMAP works in C++ mode again. Regression introduced in
2.65.
* Use of m4_divert without a named diversion now issues a syntax
warning, since it is seldom right to change diversions behind
autoconf's back.
* The macros AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, and
AC_TYPE_INT64_T work again. Regression introduced in 2.65.
* AC_PROG_INSTALL correctly uses `shtool' again. Regression
introduced in 2.64.
* Autoconf should work on EBCDIC hosts.
* AC_CHECK_DECL and AC_CHECK_DECLS accept optional function
argument types for overloaded C++ functions.
* AS_SET_CATFILE accepts nonliterals in its variable name argument
now.
* Autotest testsuites accept an option --recheck to rerun tests
that failed or passed unexpectedly during the last non-debug
testsuite run.
* AC_ARG_ENABLE and AC_ARG_WITH now also accept `+' signs in
`--enable-*' and `--with-*' arguments, converting them to
underscores for the variable names.
* In configure scripts, loading CONFIG_SITE no longer searches
PATH, and problems in loading the configuration site files are
diagnosed.
* Autotest testsuites may optionally provide colored test results.
* The previously undocumented Autotest macros AT_ARG_OPTION and
AT_ARG_OPTION_ARG have seen bug fixes and are documented now.
AT_ARG_OPTION has been changed in that the negative of a long
option --OPTION is now --no-OPTION rather than --noOPTION.
* The macro AS_LITERAL_IF is slightly more conservative; text
containing shell quotes are no longer treated as literals.
Furthermore, a new macro, AS_LITERAL_WORD_IF, adds an additional
level of checking that no whitespace occurs in literals.
* The macros AS_TR_SH and AS_TR_CPP no longer expand their results.
* The following macros are now documented:
AS_BOX
* New macro AC_FC_FIXEDFORM to accept fixed-form Fortran.
-------------------------------------------------------------------
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de

View File

@ -1,5 +1,5 @@
#
# spec file for package autoconf-el (Version 2.65)
# spec file for package autoconf-el (Version 2.67)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -18,16 +18,16 @@
Name: autoconf-el
BuildRequires: emacs-nox
BuildRequires: emacs-nox xz
License: GPLv3+
Group: Productivity/Editors/Emacs
AutoReqProv: on
Version: 2.65
Release: 8
Version: 2.67
Release: 1
Summary: Emacs mode for editing GNU Autoconf scripts
Url: http://www.gnu.org/software/autoconf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source: autoconf-%{version}.tar.bz2
Source: autoconf-%{version}.tar.xz
BuildArch: noarch
Enhances: emacs
%define site_lisp %{_prefix}/share/emacs/site-lisp

View File

@ -1,3 +1,77 @@
-------------------------------------------------------------------
Wed Aug 18 12:04:55 CEST 2010 - pth@suse.de
- Update to 2.67:
* New macro AC_FC_LINE_LENGTH to accept long Fortran source code
lines.
* AC_PREPROC_IFELSE now keeps the preprocessed output in the
conftest.i file for inspection by the commands in the
ACTION-IF-TRUE argument.
* autoreconf passes warning flags to new enough versions of
aclocal.
* Running an Autotest testsuite in parallel mode no longer triggers
a race condition that could cause the testsuite run to end early,
fixing a sporadic failure in autoconf's own testsuite. Bug
present since introduction of parallel tests in 2.63b.
Major changes in Autoconf 2.66 (2010-07-02) [stable]
* AC_FUNC_MMAP works in C++ mode again. Regression introduced in
2.65.
* Use of m4_divert without a named diversion now issues a syntax
warning, since it is seldom right to change diversions behind
autoconf's back.
* The macros AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, and
AC_TYPE_INT64_T work again. Regression introduced in 2.65.
* AC_PROG_INSTALL correctly uses `shtool' again. Regression
introduced in 2.64.
* Autoconf should work on EBCDIC hosts.
* AC_CHECK_DECL and AC_CHECK_DECLS accept optional function
argument types for overloaded C++ functions.
* AS_SET_CATFILE accepts nonliterals in its variable name argument
now.
* Autotest testsuites accept an option --recheck to rerun tests
that failed or passed unexpectedly during the last non-debug
testsuite run.
* AC_ARG_ENABLE and AC_ARG_WITH now also accept `+' signs in
`--enable-*' and `--with-*' arguments, converting them to
underscores for the variable names.
* In configure scripts, loading CONFIG_SITE no longer searches
PATH, and problems in loading the configuration site files are
diagnosed.
* Autotest testsuites may optionally provide colored test results.
* The previously undocumented Autotest macros AT_ARG_OPTION and
AT_ARG_OPTION_ARG have seen bug fixes and are documented now.
AT_ARG_OPTION has been changed in that the negative of a long
option --OPTION is now --no-OPTION rather than --noOPTION.
* The macro AS_LITERAL_IF is slightly more conservative; text
containing shell quotes are no longer treated as literals.
Furthermore, a new macro, AS_LITERAL_WORD_IF, adds an additional
level of checking that no whitespace occurs in literals.
* The macros AS_TR_SH and AS_TR_CPP no longer expand their results.
* The following macros are now documented:
AS_BOX
* New macro AC_FC_FIXEDFORM to accept fixed-form Fortran.
-------------------------------------------------------------------
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de

View File

@ -1,5 +1,5 @@
#
# spec file for package autoconf-testsuite (Version 2.65)
# spec file for package autoconf-testsuite (Version 2.67)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -18,17 +18,17 @@
Name: autoconf-testsuite
BuildRequires: help2man
BuildRequires: help2man xz
License: GPLv3+
Group: Development/Tools/Building
Url: http://www.gnu.org/software/autoconf
AutoReqProv: on
Requires: m4 >= 1.4.6
PreReq: %{install_info_prereq}
Version: 2.65
Release: 8
Version: 2.67
Release: 1
Summary: A GNU Tool for Automatically Configuring Source Code
Source: autoconf-%{version}.tar.bz2
Source: autoconf-%{version}.tar.xz
Patch0: autoreconf-ltdl.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch

View File

@ -1,3 +1,77 @@
-------------------------------------------------------------------
Wed Aug 18 12:04:55 CEST 2010 - pth@suse.de
- Update to 2.67:
* New macro AC_FC_LINE_LENGTH to accept long Fortran source code
lines.
* AC_PREPROC_IFELSE now keeps the preprocessed output in the
conftest.i file for inspection by the commands in the
ACTION-IF-TRUE argument.
* autoreconf passes warning flags to new enough versions of
aclocal.
* Running an Autotest testsuite in parallel mode no longer triggers
a race condition that could cause the testsuite run to end early,
fixing a sporadic failure in autoconf's own testsuite. Bug
present since introduction of parallel tests in 2.63b.
Major changes in Autoconf 2.66 (2010-07-02) [stable]
* AC_FUNC_MMAP works in C++ mode again. Regression introduced in
2.65.
* Use of m4_divert without a named diversion now issues a syntax
warning, since it is seldom right to change diversions behind
autoconf's back.
* The macros AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, and
AC_TYPE_INT64_T work again. Regression introduced in 2.65.
* AC_PROG_INSTALL correctly uses `shtool' again. Regression
introduced in 2.64.
* Autoconf should work on EBCDIC hosts.
* AC_CHECK_DECL and AC_CHECK_DECLS accept optional function
argument types for overloaded C++ functions.
* AS_SET_CATFILE accepts nonliterals in its variable name argument
now.
* Autotest testsuites accept an option --recheck to rerun tests
that failed or passed unexpectedly during the last non-debug
testsuite run.
* AC_ARG_ENABLE and AC_ARG_WITH now also accept `+' signs in
`--enable-*' and `--with-*' arguments, converting them to
underscores for the variable names.
* In configure scripts, loading CONFIG_SITE no longer searches
PATH, and problems in loading the configuration site files are
diagnosed.
* Autotest testsuites may optionally provide colored test results.
* The previously undocumented Autotest macros AT_ARG_OPTION and
AT_ARG_OPTION_ARG have seen bug fixes and are documented now.
AT_ARG_OPTION has been changed in that the negative of a long
option --OPTION is now --no-OPTION rather than --noOPTION.
* The macro AS_LITERAL_IF is slightly more conservative; text
containing shell quotes are no longer treated as literals.
Furthermore, a new macro, AS_LITERAL_WORD_IF, adds an additional
level of checking that no whitespace occurs in literals.
* The macros AS_TR_SH and AS_TR_CPP no longer expand their results.
* The following macros are now documented:
AS_BOX
* New macro AC_FC_FIXEDFORM to accept fixed-form Fortran.
-------------------------------------------------------------------
Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de

View File

@ -1,5 +1,5 @@
#
# spec file for package autoconf (Version 2.65)
# spec file for package autoconf (Version 2.67)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -18,17 +18,17 @@
Name: autoconf
BuildRequires: help2man
BuildRequires: help2man xz
License: GPLv3+
Group: Development/Tools/Building
Url: http://www.gnu.org/software/autoconf
AutoReqProv: on
Requires: m4 >= 1.4.6
PreReq: %{install_info_prereq}
Version: 2.65
Release: 8
Version: 2.67
Release: 1
Summary: A GNU Tool for Automatically Configuring Source Code
Source: autoconf-%{version}.tar.bz2
Source: autoconf-%{version}.tar.xz
Patch0: autoreconf-ltdl.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch