auto-import changelog data from autoconf-2.53-7.src.rpm

Fri Jun 28 2002 Jens Petersen <petersen@redhat.com> 2.53-7
- update url (#66840)
- added doc files
Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.53-6
- automated rebuild
Sun May 26 2002 Tim Powers <timp@redhat.com> 2.53-5
- automated rebuild
Mon May 20 2002 Bill Nottingham <notting@redhat.com> 2.53-4
- provide autoconf253
Thu May 16 2002 Bill Nottingham <notting@redhat.com> 2.53-3
- obsolete autoconf253
Wed May 08 2002 Jens Petersen <petersen@redhat.com> 2.53-2
- patch autoheader so that --warnings=CATEGORY works (#64566) [reported
    with fix by hjl@gnu.org]
Tue Apr 23 2002 Jens Petersen <petersen@redhat.com> 2.53-1
- update to autoconf-2.53
- drop mawk patch again
- version suffix bindir files and add symlinks to unversioned names
This commit is contained in:
cvsdist 2004-09-09 03:20:02 +00:00
parent 424a92cf24
commit 096a4d10f6
3 changed files with 81 additions and 62 deletions

View File

@ -1 +1 @@
autoconf-2.13.tar.gz
autoconf-2.53.tar.bz2

View File

@ -1,50 +1,39 @@
Summary: A GNU tool for automatically configuring source code.
Name: autoconf
Version: 2.13
Release: 17
Version: 2.53
Release: 7
Copyright: GPL
Group: Development/Tools
URL: http://sources.redhat.com/autoconf/
Source: ftp://prep.ai.mit.edu/pub/gnu/autoconf/autoconf-%{version}.tar.gz
Patch0: autoconf-2.12-race.patch
Patch1: autoconf-2.13-mawk.patch
Patch2: autoconf-2.13-notmp.patch
Patch3: autoconf-2.13-c++exit.patch
Patch4: autoconf-2.13-headers.patch
Patch5: autoconf-2.13-autoscan.patch
Patch6: autoconf-2.13-exit.patch
Patch7: autoconf-2.13-wait3test.patch
Prereq: /sbin/install-info
Source: ftp://prep.ai.mit.edu/pub/gnu/autoconf/autoconf-%{version}.tar.bz2
URL: http://www.gnu.org/software/autoconf/
Patch1: autoconf-2.52-wait3.patch
Patch2: autoconf-2.53-autoheader-warn.patch
Prereq(post,preun): /sbin/install-info
Requires: gawk, m4, mktemp, perl, textutils
Obsoletes: autoconf253
Provides: autoconf253
BuildArchitectures: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRoot: %{_tmppath}/%{name}-root
%description
GNU's Autoconf is a tool for configuring source code and Makefiles.
Using Autoconf, programmers can create portable and configurable
packages, since the person building the package is allowed to specify
various configuration options.
packages, since the person building the package is allowed to
specify various configuration options.
You should install Autoconf if you are developing software and you
would like to use it to create shell scripts that will configure your
source code packages. If you are installing Autoconf, you will also
need to install the GNU m4 package.
You should install Autoconf if you are developing software and
would like to create shell scripts that configure your source code
packages. If you are installing Autoconf, you will also need to
install the GNU m4 package.
Note that the Autoconf package is not required for the end-user who
may be configuring software with an Autoconf-generated script;
Autoconf is only required for the generation of the scripts, not their
use.
Autoconf is only required for the generation of the scripts, not
their use.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch6 -p1
%patch7 -p1
%setup -q -n autoconf-%{version}
%patch2 -p1 -b .warn
%build
%configure --program-suffix=-%{version}
@ -52,30 +41,22 @@ make
%install
rm -rf ${RPM_BUILD_ROOT}
mkdir -p ${RPM_BUILD_ROOT}%{_infodir}
#make prefix=${RPM_BUILD_ROOT}%{_prefix} install
%makeinstall
ln -s autoconf-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoconf
ln -s autoheader-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoheader
ln -s autom4te-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autom4te
ln -s autoreconf-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoreconf
ln -s autoscan-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoscan
ln -s autoupdate-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoupdate
ln -s ifnames-%{version} ${RPM_BUILD_ROOT}%{_bindir}/ifnames
gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/autoconf.info*
# We don't want to include the standards.info stuff in the package,
# because it comes from binutils...
rm -f ${RPM_BUILD_ROOT}%{_infodir}/standards*
cp install-sh ${RPM_BUILD_ROOT}%{_datadir}/autoconf
## why doesn't this work here?
#for i in ${RPM_BUILD_ROOT}%{_bindir}/*; do
# echo $i | sed 's/-%{version}//'
# ln -s $(basename $i) `echo $i | sed 's/-%{version}//'`
#done
ln -s autoconf-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoconf
ln -s autoheader-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoheader
ln -s autoreconf-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoreconf
ln -s autoscan-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoscan
ln -s autoupdate-%{version} ${RPM_BUILD_ROOT}%{_bindir}/autoupdate
ln -s ifnames-%{version} ${RPM_BUILD_ROOT}%{_bindir}/ifnames
# cp install-sh ${RPM_BUILD_ROOT}%{_datadir}/autoconf
%clean
rm -rf ${RPM_BUILD_ROOT}
@ -93,25 +74,62 @@ fi
%{_bindir}/*
%{_infodir}/*.info*
%{_datadir}/autoconf
%doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
%changelog
* Wed Mar 27 2002 Jens Petersen <petersen@redhat.com> 2.13-17
* Fri Jun 28 2002 Jens Petersen <petersen@redhat.com> 2.53-7
- update url (#66840)
- added doc files
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.53-6
- automated rebuild
* Sun May 26 2002 Tim Powers <timp@redhat.com> 2.53-5
- automated rebuild
* Mon May 20 2002 Bill Nottingham <notting@redhat.com> 2.53-4
- provide autoconf253
* Thu May 16 2002 Bill Nottingham <notting@redhat.com> 2.53-3
- obsolete autoconf253
* Wed May 8 2002 Jens Petersen <petersen@redhat.com> 2.53-2
- patch autoheader so that --warnings=CATEGORY works (#64566)
[reported with fix by hjl@gnu.org]
* Tue Apr 23 2002 Jens Petersen <petersen@redhat.com> 2.53-1
- update to autoconf-2.53
- drop mawk patch again
- version suffix bindir files and add symlinks to unversioned names
* Fri Feb 1 2002 Jens Petersen <petersen@redhat.com> 2.52-7
- revert to 2.52 (also fixes #58210!)
- remove relversion variable
- bring back mawk -> gawk patch
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.52-6
- automated rebuild
* Thu Dec 20 2001 Jens Petersen <petersen@redhat.com> 2.52-5
- update to 2.52f
- add URL
- minor description improvements
- define relversion to carry version number
- mawk.patch no longer needed
* Wed Feb 27 2002 Jens Petersen <petersen@redhat.com> 2.13-16
- add version suffix to bindir files and symlink them to their
unversioned names
* Sat Nov 17 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.52-4
- rebuild
* Mon Feb 25 2002 Elliot Lee <sopwith@redhat.com> 2.13-15
- Add wait3test.patch to make sure that the child process actually does
something that the kernel will take note of. Fixes the failing wait3 test
that was worked around in time-1.7-15.
* Wed Sep 19 2001 Jens Petersen <petersen@redhat.com> 2.52-3
- restore patch to prefer gawk to mawk
* Mon Aug 6 2001 Tim Powers <timp@redhat.com>
- rebuilt to fix bug #50761
* Tue Sep 18 2001 Florian La Roche <Florian.LaRoche@redhat.de> 2.52-2
- update to 2.52d
* Thu Jul 26 2001 Than Ngo <than@redhat.com>
- add patch to fix exit status
* Mon Sep 17 2001 Jens Petersen <petersen@redhat.com> 2.52-1
- update to 2.52
- remove obsolete patches, since already new version
- dont install install-sh
* Tue Jul 10 2001 Jens Petersen <petersen@redhat.com>
- add patch to include various standard C headers as needed
@ -181,3 +199,4 @@ that was worked around in time-1.7-15.
* Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
- built with glibc

View File

@ -1 +1 @@
f17672fa61dcb22f2ae0ca23d4deeec4 autoconf-2.13.tar.gz
c121b003f51e293c2bf5a6105c721388 autoconf-2.53.tar.bz2