|
|
d9d0ed |
Summary: A GNU tool for automatically configuring source code
|
|
|
d9d0ed |
Name: autoconf213
|
|
|
d9d0ed |
Version: 2.13
|
|
|
d9d0ed |
Release: 39%{?dist}
|
|
|
d9d0ed |
License: GPLv2+
|
|
|
d9d0ed |
Group: Development/Tools
|
|
|
d9d0ed |
URL: http://www.gnu.org/software/autoconf/
|
|
|
d9d0ed |
Source: ftp://prep.ai.mit.edu/pub/gnu/autoconf/autoconf-%{version}.tar.gz
|
|
|
d9d0ed |
Patch0: autoconf-2.12-race.patch
|
|
|
d9d0ed |
Patch1: autoconf-2.13-mawk.patch
|
|
|
d9d0ed |
Patch2: autoconf-2.13-notmp.patch
|
|
|
d9d0ed |
Patch3: autoconf-2.13-c++exit.patch
|
|
|
d9d0ed |
Patch4: autoconf-2.13-headers.patch
|
|
|
d9d0ed |
Patch6: autoconf-2.13-exit.patch
|
|
|
d9d0ed |
Patch7: autoconf-2.13-wait3test.patch
|
|
|
d9d0ed |
Patch8: autoconf-2.13-make-defs-62361.patch
|
|
|
d9d0ed |
Patch9: autoconf-2.13-versioning.patch
|
|
|
d9d0ed |
Patch10: autoconf213-destdir.patch
|
|
|
d9d0ed |
Patch11: autoconf213-info.patch
|
|
|
d9d0ed |
Patch12: autoconf213-testsuite.patch
|
|
|
d9d0ed |
Requires: gawk, m4 >= 1.1, coreutils
|
|
|
d9d0ed |
Requires(post): /sbin/install-info
|
|
|
d9d0ed |
Requires(preun): /sbin/install-info
|
|
|
d9d0ed |
Buildrequires: texinfo, m4 >= 1.1, perl, gawk, dejagnu, flex
|
|
|
d9d0ed |
BuildArch: noarch
|
|
|
d9d0ed |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%description
|
|
|
d9d0ed |
GNU's Autoconf is a tool for configuring source code and Makefiles.
|
|
|
d9d0ed |
Using Autoconf, programmers can create portable and configurable
|
|
|
d9d0ed |
packages, since the person building the package is allowed to specify
|
|
|
d9d0ed |
various configuration options.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
You should install Autoconf if you are developing software and you
|
|
|
d9d0ed |
would like to use it to create shell scripts that will configure your
|
|
|
d9d0ed |
source code packages. If you are installing Autoconf, you will also
|
|
|
d9d0ed |
need to install the GNU m4 package.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
Note that the Autoconf package is not required for the end-user who
|
|
|
d9d0ed |
may be configuring software with an Autoconf-generated script;
|
|
|
d9d0ed |
Autoconf is only required for the generation of the scripts, not their
|
|
|
d9d0ed |
use.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%prep
|
|
|
d9d0ed |
%setup -q -n autoconf-%{version}
|
|
|
d9d0ed |
%patch0 -p1
|
|
|
d9d0ed |
%patch1 -p1
|
|
|
d9d0ed |
%patch2 -p1
|
|
|
d9d0ed |
%patch3 -p1
|
|
|
d9d0ed |
%patch4 -p1
|
|
|
d9d0ed |
%patch6 -p1
|
|
|
d9d0ed |
%patch7 -p1
|
|
|
d9d0ed |
%patch8 -p1
|
|
|
d9d0ed |
%patch9 -p1
|
|
|
d9d0ed |
%patch10 -p1
|
|
|
d9d0ed |
%patch11 -p1
|
|
|
d9d0ed |
%patch12 -p1
|
|
|
d9d0ed |
mv autoconf.texi autoconf213.texi
|
|
|
d9d0ed |
rm -f autoconf.info
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%build
|
|
|
d9d0ed |
%configure --program-suffix=-%{version}
|
|
|
d9d0ed |
make
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%install
|
|
|
d9d0ed |
rm -rf ${RPM_BUILD_ROOT}
|
|
|
d9d0ed |
#makeinstall
|
|
|
d9d0ed |
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
d9d0ed |
|
|
|
d9d0ed |
rm ${RPM_BUILD_ROOT}/%{_bindir}/autoscan-%{version}
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%check
|
|
|
d9d0ed |
make check
|
|
|
d9d0ed |
|
|
|
d9d0ed |
# We don't want to include the standards.info stuff in the package,
|
|
|
d9d0ed |
# because it comes from binutils...
|
|
|
d9d0ed |
rm -f ${RPM_BUILD_ROOT}%{_infodir}/standards*
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%post
|
|
|
d9d0ed |
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%preun
|
|
|
d9d0ed |
if [ "$1" = 0 ]; then
|
|
|
d9d0ed |
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
|
|
|
d9d0ed |
fi
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%clean
|
|
|
d9d0ed |
rm -rf ${RPM_BUILD_ROOT}
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%files
|
|
|
d9d0ed |
%defattr(-,root,root,-)
|
|
|
d9d0ed |
%{_bindir}/*
|
|
|
d9d0ed |
%{_infodir}/*.info*
|
|
|
d9d0ed |
%{_datadir}/autoconf-%{version}/
|
|
|
d9d0ed |
%doc AUTHORS COPYING NEWS README TODO
|
|
|
d9d0ed |
|
|
|
d9d0ed |
%changelog
|
|
|
d9d0ed |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.13-39
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.13-38
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.13-37
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.13-36
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-35
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Feb 20 2015 Pavel Raiskup <praiskup@redhat.com> - 2.13-34
|
|
|
d9d0ed |
- don't ship broken (and ancient) autoscan (rhbz#1194568)
|
|
|
d9d0ed |
- drop explicit 'Requires: perl' (related rhbz#1194568)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Jul 28 2014 Pavel Raiskup <praiskup@redhat.com> - 2.13-32
|
|
|
d9d0ed |
- don't build-require compat-gcc-34-g77 at all
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-31
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Oct 18 2013 Pavel Raiskup <praiskup@redhat.com> - 2.13-30
|
|
|
d9d0ed |
- disable g77 tests for RHEL7 builds
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Oct 09 2013 Pavel Raiskup <praiskup@redhat.com> - 2.13-29
|
|
|
d9d0ed |
- enable testsuite for obsolescent autoconf213
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-28
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.13-27
|
|
|
d9d0ed |
- Perl 5.18 rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-26
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Oct 29 2012 Pavel Raiskup <praiskup@redhat.com> - 2.13-25
|
|
|
d9d0ed |
- remove unnecessary BR, remove trailing whitespaces
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Oct 12 2012 Pavel Raiskup <praiskup@redhat.com> - 2.13-24
|
|
|
d9d0ed |
- update license tag in specfile
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-23
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-22
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-21
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-20
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.13-19
|
|
|
d9d0ed |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Aug 08 2007 Karsten Hopp <karsten@redhat.com> 2.13-18
|
|
|
d9d0ed |
- update license tag
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 26 2007 Karsten Hopp <karsten@redhat.com> 2.13-17
|
|
|
d9d0ed |
- our tarball hat different size and timestamps then the upstream
|
|
|
d9d0ed |
tarball. No changes, though.
|
|
|
d9d0ed |
- rebuild with upstream sources
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Feb 15 2007 Karsten Hopp <karsten@redhat.com> 2.13-16
|
|
|
d9d0ed |
- delete old autoconf.info file
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Feb 15 2007 Karsten Hopp <karsten@redhat.com> 2.13-15
|
|
|
d9d0ed |
- add autoconf213 info entry
|
|
|
d9d0ed |
- add disttag
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Feb 14 2007 Karsten Hopp <karsten@redhat.com> 2.13-14
|
|
|
d9d0ed |
- buildrequire perl for autoscan script
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Feb 14 2007 Karsten Hopp <karsten@redhat.com> 2.13-13
|
|
|
d9d0ed |
- buildroot fixed
|
|
|
d9d0ed |
- removed textutils requirement
|
|
|
d9d0ed |
- dot removed from summary
|
|
|
d9d0ed |
- requires gawk, but not perl
|
|
|
d9d0ed |
- use install-info
|
|
|
d9d0ed |
- use BuildArch
|
|
|
d9d0ed |
- replace tabs with spaces
|
|
|
d9d0ed |
- fix defattr
|
|
|
d9d0ed |
- use 'make install DESTDIR=...'
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.13-12.1
|
|
|
d9d0ed |
- rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 27 2006 Karsten Hopp <karsten@redhat.de> 2.13-12
|
|
|
d9d0ed |
- require m4 >= 1.1
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 27 2006 Karsten Hopp <karsten@redhat.de> 2.13-11
|
|
|
d9d0ed |
- BuildRequire m4 (#181959)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
d9d0ed |
- rebuilt
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 21 2005 Karsten Hopp <karsten@redhat.de> 2.13-10
|
|
|
d9d0ed |
- Copyright -> License
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Sep 23 2004 Daniel Reed <djr@redhat.com> - 2.13-9
|
|
|
d9d0ed |
- rebuilt for dist-fc3
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
d9d0ed |
- rebuilt
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Tue Dec 9 2003 Jens Petersen <petersen@redhat.com> - 2.13-7
|
|
|
d9d0ed |
- buildrequire texinfo (#111169) [mvd@mylinux.com.ua]
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
d9d0ed |
- rebuilt
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 2.13-5
|
|
|
d9d0ed |
- Fix unpackaged file
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Jun 28 2002 Jens Petersen <petersen@redhat.com> 2.13-4
|
|
|
d9d0ed |
- update url (#66840)
|
|
|
d9d0ed |
- added doc files
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.13-3
|
|
|
d9d0ed |
- automated rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu May 23 2002 Tim Powers <timp@redhat.com> 2.13-2
|
|
|
d9d0ed |
- automated rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed May 15 2002 Jens Petersen <petersen@redhat.com> 2.13-1
|
|
|
d9d0ed |
- new package based on autoconf-2.13-17
|
|
|
d9d0ed |
- don't make unversioned bindir symlinks
|
|
|
d9d0ed |
- version datadir
|
|
|
d9d0ed |
- version info filename, but don't install-info it
|
|
|
d9d0ed |
- update AC_OUTPUT_MAKE_DEFS to fix problem with c++exit patch (#62361)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Mar 27 2002 Jens Petersen <petersen@redhat.com> 2.13-17
|
|
|
d9d0ed |
- add URL
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Feb 27 2002 Jens Petersen <petersen@redhat.com> 2.13-16
|
|
|
d9d0ed |
- add version suffix to bindir files and symlink them to their
|
|
|
d9d0ed |
unversioned names
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Feb 25 2002 Elliot Lee <sopwith@redhat.com> 2.13-15
|
|
|
d9d0ed |
- Add wait3test.patch to make sure that the child process actually does
|
|
|
d9d0ed |
something that the kernel will take note of. Fixes the failing wait3 test
|
|
|
d9d0ed |
that was worked around in time-1.7-15.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Aug 6 2001 Tim Powers <timp@redhat.com>
|
|
|
d9d0ed |
- rebuilt to fix bug #50761
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Jul 26 2001 Than Ngo <than@redhat.com>
|
|
|
d9d0ed |
- add patch to fix exit status
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Tue Jul 10 2001 Jens Petersen <petersen@redhat.com>
|
|
|
d9d0ed |
- add patch to include various standard C headers as needed
|
|
|
d9d0ed |
by various autoconf tests (#19114)
|
|
|
d9d0ed |
- add patch to autoscan.pl to get a better choice of init
|
|
|
d9d0ed |
file (#42071), to test for CPP after CC (#42072) and to
|
|
|
d9d0ed |
detect C++ source and g++ (#42073).
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Tue Jun 26 2001 Jens Petersen <petersen@redhat.com>
|
|
|
d9d0ed |
- Add a back-port of _AC_PROG_CXX_EXIT_DECLARATION
|
|
|
d9d0ed |
from version 2.50 to make detection of C++ exit()
|
|
|
d9d0ed |
declaration prototype platform independent. The check is
|
|
|
d9d0ed |
done in AC_PROG_CXX with the result stored in "confdefs.h".
|
|
|
d9d0ed |
The exit() prototype in AC_TRY_RUN_NATIVE is no longer needed.
|
|
|
d9d0ed |
(fixes #18829)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Nov 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
d9d0ed |
- Fix up interoperability with glibc 2.2 and gcc 2.96:
|
|
|
d9d0ed |
AC_TRY_RUN_NATIVE in C++ mode added a prototype for exit() to
|
|
|
d9d0ed |
the test code without throwing an exception, causing a conflict
|
|
|
d9d0ed |
with stdlib.h --> AC_TRY_RUN_NATIVE for C++ code including stdlib.h
|
|
|
d9d0ed |
always failed, returning wrong results
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
d9d0ed |
- add textutils as a dependency (#14439)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
d9d0ed |
- automatic rebuild
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
d9d0ed |
- FHS packaging.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
|
|
d9d0ed |
- fix preun
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
d9d0ed |
- add patch to help autoconf clean after itself and not leave /tmp clobbered
|
|
|
d9d0ed |
with acin.* and acout.* files (can you say annoying?)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
d9d0ed |
- auto rebuild in the new build environment (release 4)
|
|
|
d9d0ed |
- use gawk, not mawk
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Mar 18 1999 Preston Brown <pbrown@redhat.com>
|
|
|
d9d0ed |
- moved /usr/lib/autoconf to /usr/share/autoconf (with automake)
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
|
|
|
d9d0ed |
- Injected new description and group.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Tue Jan 12 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
d9d0ed |
- update to 2.13.
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Fri Dec 18 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
d9d0ed |
- build against glibc 2.1
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Mon Oct 05 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
d9d0ed |
- requires perl
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
d9d0ed |
- patch for fixing /tmp race conditions
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
|
|
|
d9d0ed |
- spec file cleanups
|
|
|
d9d0ed |
- made a noarch package
|
|
|
d9d0ed |
- uses autoconf
|
|
|
d9d0ed |
- uses install-info
|
|
|
d9d0ed |
|
|
|
d9d0ed |
* Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
|
|
|
d9d0ed |
- built with glibc
|