auto-import changelog data from sed-3.02-8.src.rpm
Wed Jul 12 2000 Prospector <bugzilla@redhat.com> - automatic rebuild Mon Jun 05 2000 Jeff Johnson <jbj@redhat.com> - FHS packaging. Mon Feb 07 2000 Jeff Johnson <jbj@redhat.com> - compress man pages. Tue Jan 18 2000 Jakub Jelinek <jakub@redhat.com> - rebuild with glibc 2.1.3 to fix an mmap64 bug in sys/mman.h Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> - auto rebuild in the new build environment (release 4) Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com> - update to 3.02 Sun Jul 26 1998 Jeff Johnson <jbj@redhat.com> - update to 3.01 Mon Apr 27 1998 Prospector System <bugs@redhat.com> - translations modified for de, fr, tr Thu Oct 23 1997 Donnie Barnes <djb@redhat.com> - removed references to the -g option from the man page that we add Fri Oct 17 1997 Donnie Barnes <djb@redhat.com> - spec file cleanups - added BuildRoot Mon Jun 02 1997 Erik Troan <ewt@redhat.com> - built against glibc
This commit is contained in:
parent
cc17d866e4
commit
288337bff8
@ -0,0 +1 @@
|
||||
sed-3.02.tar.gz
|
||||
99
sed.spec
Normal file
99
sed.spec
Normal file
@ -0,0 +1,99 @@
|
||||
Summary: A GNU stream text editor.
|
||||
Name: sed
|
||||
Version: 3.02
|
||||
Release: 8
|
||||
Copyright: GPL
|
||||
Group: Applications/Text
|
||||
Source0: ftp://prep.ai.mit.edu/pub/gnu/sed-%{version}.tar.gz
|
||||
Prereq: /sbin/install-info
|
||||
Prefix: %{_prefix}
|
||||
Buildroot: %{_tmppath}/%{name}-root
|
||||
|
||||
%description
|
||||
The sed (Stream EDitor) editor is a stream or batch (non-interactive)
|
||||
editor. Sed takes text as input, performs an operation or set of
|
||||
operations on the text and outputs the modified text. The operations
|
||||
that sed performs (substitutions, deletions, insertions, etc.) can be
|
||||
specified in a script file or from the command line.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
|
||||
%configure
|
||||
make
|
||||
|
||||
%install
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
%makeinstall
|
||||
|
||||
{ cd ${RPM_BUILD_ROOT}
|
||||
|
||||
%ifos linux
|
||||
mkdir -p ./bin
|
||||
mv .%{_bindir}/sed ./bin/sed
|
||||
rmdir .%{_bindir}
|
||||
%endif
|
||||
|
||||
gzip -9nf .%{_infodir}/sed.info*
|
||||
rm -f .%{_infodir}/dir
|
||||
}
|
||||
|
||||
%post
|
||||
/sbin/install-info %{_infodir}/sed.info.gz %{_infodir}/dir
|
||||
|
||||
%preun
|
||||
if [ $1 = 0 ]; then
|
||||
/sbin/install-info --delete %{_infodir}/sed.info.gz %{_infodir}/dir
|
||||
fi
|
||||
|
||||
%clean
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc ANNOUNCE BUGS NEWS README TODO
|
||||
%ifos linux
|
||||
/bin/sed
|
||||
%else
|
||||
%{_bindir}/sed
|
||||
%endif
|
||||
%{_infodir}/*.info*
|
||||
%{_mandir}/man*/*
|
||||
|
||||
%changelog
|
||||
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
||||
- automatic rebuild
|
||||
|
||||
* Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
|
||||
- FHS packaging.
|
||||
|
||||
* Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
|
||||
- compress man pages.
|
||||
|
||||
* Tue Jan 18 2000 Jakub Jelinek <jakub@redhat.com>
|
||||
- rebuild with glibc 2.1.3 to fix an mmap64 bug in sys/mman.h
|
||||
|
||||
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||||
- auto rebuild in the new build environment (release 4)
|
||||
|
||||
* Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
|
||||
- update to 3.02
|
||||
|
||||
* Sun Jul 26 1998 Jeff Johnson <jbj@redhat.com>
|
||||
- update to 3.01
|
||||
|
||||
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
|
||||
- translations modified for de, fr, tr
|
||||
|
||||
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
|
||||
- removed references to the -g option from the man page that we add
|
||||
|
||||
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
|
||||
- spec file cleanups
|
||||
- added BuildRoot
|
||||
|
||||
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
|
||||
- built against glibc
|
||||
Loading…
Reference in New Issue
Block a user