2006-10-24 21:57:13 +00:00
|
|
|
Summary: The GNU macro processor
|
2004-09-09 08:07:17 +00:00
|
|
|
Name: m4
|
2006-11-26 05:42:17 +00:00
|
|
|
Version: 1.4.8
|
|
|
|
Release: 1
|
2005-02-27 22:01:22 +00:00
|
|
|
License: GPL
|
2004-09-09 08:07:17 +00:00
|
|
|
Group: Applications/Text
|
2005-10-22 17:31:37 +00:00
|
|
|
Source0: ftp://ftp.gnu.org/gnu/m4/m4-%{version}.tar.bz2
|
|
|
|
Source1: ftp://ftp.gnu.org/gnu/m4/m4-%{version}.tar.bz2.sig
|
2004-12-12 19:12:36 +00:00
|
|
|
URL: http://www.gnu.org/software/m4/
|
2004-09-09 08:09:31 +00:00
|
|
|
Buildroot: %{_tmppath}/%{name}-root
|
2006-07-17 14:01:49 +00:00
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(preun): /sbin/install-info
|
2004-09-09 08:07:17 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A GNU implementation of the traditional UNIX macro processor. M4 is
|
|
|
|
useful for writing text files which can be logically parsed, and is used
|
|
|
|
by many programs as part of their build process. M4 has built-in
|
|
|
|
functions for including files, running shell commands, doing arithmetic,
|
|
|
|
etc. The autoconf program needs m4 for generating configure scripts, but
|
|
|
|
not for running configure scripts.
|
|
|
|
|
|
|
|
Install m4 if you need a macro processor.
|
|
|
|
|
|
|
|
%prep
|
2005-04-01 09:48:10 +00:00
|
|
|
%setup -q
|
2004-09-09 08:07:17 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
2004-12-12 19:12:36 +00:00
|
|
|
make
|
2004-09-09 08:07:17 +00:00
|
|
|
|
|
|
|
%install
|
2006-07-17 14:01:49 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2005-10-22 17:31:37 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2006-07-17 11:44:15 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
2004-09-09 08:07:17 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2006-07-17 01:34:39 +00:00
|
|
|
%doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
|
2005-10-22 17:31:37 +00:00
|
|
|
%{_bindir}/m4
|
2004-09-09 08:09:40 +00:00
|
|
|
%{_infodir}/*
|
2006-07-17 01:34:39 +00:00
|
|
|
%{_mandir}/man1/m4.1*
|
2004-09-09 08:07:17 +00:00
|
|
|
|
|
|
|
%post
|
2006-07-17 14:01:49 +00:00
|
|
|
/sbin/install-info %{_infodir}/m4.info %{_infodir}/dir || :
|
2004-09-09 08:07:17 +00:00
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ "$1" = 0 ]; then
|
2006-07-17 14:01:49 +00:00
|
|
|
/sbin/install-info --delete %{_infodir}/m4.info %{_infodir}/dir || :
|
2004-09-09 08:07:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%changelog
|
2006-11-26 05:42:17 +00:00
|
|
|
* Sun Nov 26 2006 Miloslav Trmac <mitr@redhat.com> - 1.4.8-1
|
|
|
|
- Update to m4-1.4.8
|
|
|
|
|
2006-10-24 23:53:18 +00:00
|
|
|
* Wed Oct 25 2006 Miloslav Trmac <mitr@redhat.com> - 1.4.7-2
|
|
|
|
- Drop %%check again. SIGPIPE is set to SIG_IGN in mock, which breaks the
|
|
|
|
sysval test.
|
|
|
|
|
2006-10-24 21:57:13 +00:00
|
|
|
* Tue Oct 24 2006 Miloslav Trmac <mitr@redhat.com> - 1.4.7-1
|
|
|
|
- Update to m4-1.4.7
|
|
|
|
- Add %%check
|
|
|
|
- Fix a rpmlint warning about Summary:
|
|
|
|
|
2006-07-17 14:01:49 +00:00
|
|
|
* Mon Jul 17 2006 Miloslav Trmac <mitr@redhat.com> - 1.4.5-3
|
|
|
|
- Use the install-info scriptlets recommended in the Fedora Extras wiki
|
|
|
|
- Move $RPM_BUILD_ROOT cleaning from %%prep to %%install
|
|
|
|
|
2006-07-17 11:44:15 +00:00
|
|
|
* Mon Jul 17 2006 Tomas Mraz <tmraz@redhat.com> - 1.4.5-2
|
|
|
|
- remove infodir/dir so it isn't included in the package
|
|
|
|
|
2006-07-17 01:34:39 +00:00
|
|
|
* Mon Jul 17 2006 Miloslav Trmac <mitr@redhat.com> - 1.4.5-1
|
|
|
|
- Update to m4-1.4.5
|
|
|
|
|
2006-07-12 07:16:57 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.4.4-1.2.2
|
|
|
|
- rebuild
|
|
|
|
|
2006-02-11 04:27:04 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.4.4-1.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 12:54:19 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.4.4-1.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:41:52 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-10-22 17:31:37 +00:00
|
|
|
* Sat Oct 22 2005 Miloslav Trmac <mitr@redhat.com> - 1.4.4-1
|
|
|
|
- Update to m4-1.4.4
|
|
|
|
|
2005-09-17 22:47:06 +00:00
|
|
|
* Sun Sep 18 2005 Miloslav Trmac <mitr@redhat.com> - 1.4.3-2
|
|
|
|
- Ship COPYING and ChangeLog
|
|
|
|
|
2005-04-01 09:48:10 +00:00
|
|
|
* Fri Apr 1 2005 Miloslav Trmac <mitr@redhat.com> - 1.4.3-1
|
|
|
|
- Update to m4-1.4.3
|
|
|
|
|
2005-03-02 13:13:39 +00:00
|
|
|
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 1.4.2-3
|
|
|
|
- build with gcc-4
|
|
|
|
|
2005-02-27 22:01:22 +00:00
|
|
|
* Sun Feb 27 2005 Florian La Roche <laroche@redhat.com>
|
|
|
|
- rebuild
|
|
|
|
|
2004-12-12 19:12:36 +00:00
|
|
|
* Sun Dec 12 2004 Miloslav Trmac <mitr@redhat.com> - 1.4.2-1
|
|
|
|
- Update to m4-1.4.2
|
|
|
|
|
2004-09-09 08:12:17 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 08:12:12 +00:00
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 08:11:17 +00:00
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 08:10:40 +00:00
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Mon Nov 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add french translation file
|
|
|
|
|
2004-09-09 08:10:01 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 08:09:51 +00:00
|
|
|
* Wed Jun 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- do not strip apps
|
|
|
|
|
|
|
|
* Fri Jun 14 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 08:09:40 +00:00
|
|
|
* Thu Mar 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- use _infodir on popular request #47465
|
|
|
|
|
2004-09-09 08:09:31 +00:00
|
|
|
* Sat Jan 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add URL tag
|
|
|
|
- improved spec file
|
|
|
|
- add hack to update config.guess config.sub
|
|
|
|
- fix to build with newer autoconf versions
|
|
|
|
|
2004-09-09 08:07:41 +00:00
|
|
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- Bump release + rebuild.
|
|
|
|
|
2004-09-09 08:07:30 +00:00
|
|
|
* Tue Feb 13 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- signal patch is not necessary anymore
|
|
|
|
- fix printf buffer overflow problem
|
|
|
|
|
2004-09-09 08:07:17 +00:00
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Sat Jun 17 2000 Matt Wilson <msw@redhat.com>
|
|
|
|
- added defattr
|
|
|
|
|
|
|
|
* Mon Jun 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
|
- FHS compliance
|
|
|
|
- 1.4.1
|
|
|
|
- some fixes to spec file
|
|
|
|
|
|
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 12)
|
|
|
|
|
|
|
|
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- build against glibc 2.1
|
|
|
|
|
|
|
|
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
|
|
|
|
- translations modified for de, fr, tr
|
|
|
|
|
|
|
|
* Fri Apr 10 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- Manhattan build
|
|
|
|
|
|
|
|
* Wed Oct 21 1997 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- added info file handling and BuildRoot
|
|
|
|
|
|
|
|
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- built against glibc
|
|
|
|
|