auto-import changelog data from texinfo-4.3-5.src.rpm

Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt
Tue Jan 07 2003 Tim Waugh <twaugh@redhat.com> 4.3-4
- Fix up spec_install_post to strip debug info out to separate package (bug
    #81226).
Thu Dec 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> 4.3-3
- Make /usr/share/info/dir a real file and remove /etc/info-dir, that file
    should be unused for a long time.
Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com> 4.3-2
- Don't strip files here (rpm takes care of it)
- Use pushd/popd instead of enclosing things in (), to make error detection
    easier
- Use _smp_mflags
Tue Nov 19 2002 Tim Waugh <twaugh@redhat.com> 4.3-1
- 4.3.
- No longer need fileextension or malloccheck patches.
- Update zlib patch.
Wed Oct 23 2002 Tim Waugh <twaugh@redhat.com> 4.2-6
- Don't install files not packaged.
- Fix file list (bug #55816).
This commit is contained in:
cvsdist 2004-09-09 13:14:48 +00:00
parent ec02c3ab4d
commit 7522b72975
3 changed files with 42 additions and 25 deletions

View File

@ -1 +1 @@
texinfo-4.2.tar.bz2
texinfo-4.3.tar.bz2

View File

@ -1 +1 @@
614fe904ffab066be70920b8ffaf4646 texinfo-4.2.tar.bz2
b673d7326d44f533bcfdfd56caa9f20d texinfo-4.3.tar.bz2

View File

@ -1,15 +1,13 @@
Summary: Tools needed to create Texinfo format documentation files.
Name: texinfo
Version: 4.2
Version: 4.3
Release: 5
License: GPL
Group: Applications/Publishing
Source0: ftp://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.bz2
Source1: info-dir
Patch1: texinfo-3.12h-fix.patch
Patch2: texinfo-fileextension.patch
Patch3: texinfo-4.1-zlib.patch
Patch4: texinfo-4.2-malloc-check.patch
Patch0: texinfo-3.12h-fix.patch
Patch1: texinfo-4.3-zlib.patch
Prereq: /sbin/install-info
Prefix: %{_prefix}
Buildroot: %{_tmppath}/%{name}-%{version}-root
@ -17,7 +15,7 @@ Buildroot: %{_tmppath}/%{name}-%{version}-root
# Redifine this to "dir" in the info directory isn't compressed
%define __spec_install_post /usr/lib/rpm/brp-strip \; /usr/lib/rpm/brp-strip-comment-note \; rm -f
%define __spec_install_post %{?__debug_package:%{__debug_install_post}} /usr/lib/rpm/brp-strip \; /usr/lib/rpm/brp-strip-comment-note \; rm -f
%description
Texinfo is a documentation system that can produce both online
@ -45,36 +43,30 @@ browser program for viewing texinfo files.
%prep
%setup -q
%patch1 -p1
%patch2 -p1 -b .ext
%patch3 -p1 -b .zlib
%patch4 -p1 -b .malloccheck
%patch0 -p1
%patch1 -p1 -b .zlib
%build
%configure
make
make %{?_smp_mflags}
rm util/install-info
make -C util LIBS=%{_libdir}/libz.a
%install
rm -rf ${RPM_BUILD_ROOT}
mkdir -p ${RPM_BUILD_ROOT}/{etc,sbin}
mkdir -p ${RPM_BUILD_ROOT}/sbin
%makeinstall
( cd ${RPM_BUILD_ROOT}
pushd ${RPM_BUILD_ROOT}
gzip -n -9f .%{_infodir}/*info*
gzip -n -9f .%{_mandir}/*/*
install -m644 $RPM_SOURCE_DIR/info-dir ./etc/info-dir
ln -sf /etc/info-dir ${RPM_BUILD_ROOT}%{_infodir}/dir
for i in makeinfo texindex info install-info ; do
strip .%{_bindir}/$i
done
install -m644 $RPM_SOURCE_DIR/info-dir .%{_infodir}/dir
mv -f .%{_bindir}/install-info ./sbin
)
popd
rm -f $RPM_BUILD_ROOT%{_datadir}/texinfo/texinfo.{xsl,dtd}
%find_lang %name
%clean
@ -99,7 +91,7 @@ fi
%files -f %{name}.lang
%defattr(-,root,root)
%doc AUTHORS ChangeLog INSTALL INTRODUCTION NEWS README TODO
%doc info/README
%doc --parents info/README
%{_bindir}/makeinfo
%{_bindir}/texindex
%{_bindir}/texi2dvi
@ -112,8 +104,7 @@ fi
%files -n info
%defattr(-,root,root)
#%config(missingok) /etc/X11/applnk/Utilities/info.desktop
%config(noreplace) %verify(not md5 size mtime) /etc/info-dir
%config(noreplace) %{_infodir}/dir
%config(noreplace) %verify(not md5 size mtime) %{_infodir}/dir
%{_bindir}/info
%{_bindir}/infokey
%{_infodir}/info.info*
@ -124,6 +115,32 @@ fi
%{_mandir}/man5/info.5*
%changelog
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt
* Tue Jan 7 2003 Tim Waugh <twaugh@redhat.com> 4.3-4
- Fix up spec_install_post to strip debug info out to separate package
(bug #81226).
* Thu Dec 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> 4.3-3
- Make /usr/share/info/dir a real file and remove /etc/info-dir, that
file should be unused for a long time.
* Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com> 4.3-2
- Don't strip files here (rpm takes care of it)
- Use pushd/popd instead of enclosing things in (), to make
error detection easier
- Use _smp_mflags
* Tue Nov 19 2002 Tim Waugh <twaugh@redhat.com> 4.3-1
- 4.3.
- No longer need fileextension or malloccheck patches.
- Update zlib patch.
* Wed Oct 23 2002 Tim Waugh <twaugh@redhat.com> 4.2-6
- Don't install files not packaged.
- Fix file list (bug #55816).
* Mon Sep 2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-5
- Fix crash w/ MALLOC_CHECK_ == 2 (#72831)