Blame SPECS/docbook-style-xsl.spec

e4a843
Name: docbook-style-xsl
e4a843
Version: 1.79.2
e4a843
Release: 16%{?dist}
e4a843
e4a843
Summary: Norman Walsh's XSL stylesheets for DocBook XML
e4a843
e4a843
License: DMIT
e4a843
URL: https://github.com/docbook/xslt10-stylesheets
e4a843
e4a843
Provides: docbook-xsl = %{version}
e4a843
Requires: docbook-dtd-xml
e4a843
# xml-common was using /usr/share/xml until 0.6.3-8.
e4a843
Requires: xml-common >= 0.6.3-8
e4a843
# libxml2 required because of usage of /usr/bin/xmlcatalog
e4a843
Requires(post): libxml2 >= 2.4.8
e4a843
Requires(postun): libxml2 >= 2.4.8
e4a843
# PassiveTeX before 1.21 can't handle the newer stylesheets.
e4a843
Conflicts: passivetex < 1.21
e4a843
BuildRequires: make
e4a843
e4a843
e4a843
BuildArch: noarch
e4a843
Source0: https://github.com/docbook/xslt10-stylesheets/releases/download/release%2F{%version}/docbook-xsl-nons-%{version}.tar.bz2
e4a843
Source1: %{name}.Makefile
e4a843
Source2:  https://github.com/docbook/xslt10-stylesheets/releases/download/release%2F{%version}/docbook-xsl-doc-%{version}.tar.bz2
e4a843
e4a843
e4a843
#Avoid proportional-column-width for passivetex (bug #176766).
e4a843
Patch1: docbook-xsl-pagesetup.patch
e4a843
#Hard-code the margin-left work around to expect passivetex (bug #113456).
e4a843
Patch2: docbook-xsl-marginleft.patch
e4a843
#fix of #161619 - adjustColumnWidths now available
e4a843
Patch3: docbook-xsl-newmethods.patch
e4a843
#change a few non-constant expressions to constant - needed for passivetex(#366441)
e4a843
Patch4: docbook-xsl-non-constant-expressions.patch
e4a843
#added fixes for passivetex extension and list-item-body(#161371)
e4a843
Patch5: docbook-xsl-list-item-body.patch
e4a843
#workaround missing mandir section problem (#727251)
e4a843
Patch6: docbook-xsl-mandir.patch
e4a843
#Non-recursive string.subst that doesn't kill smb.conf.5 generation
e4a843
Patch7: docbook-style-xsl-non-recursive-string-subst.patch
e4a843
#Fix multilib problems with gtk-doc documentation
e4a843
#https://github.com/docbook/xslt10-stylesheets/issues/54
e4a843
Patch8: docbook-style-xsl-1.79.2-fix-gtk-doc-multilib.patch
e4a843
e4a843
%description
e4a843
These XSL stylesheets allow you to transform any DocBook XML document to
e4a843
other formats, such as HTML, FO, and XHMTL.  They are highly customizable.
e4a843
e4a843
e4a843
%prep
e4a843
%setup -c -T -n docbook-xsl-%{version}
e4a843
tar jxf %{SOURCE0}
e4a843
mv docbook-xsl-nons-%{version}/* .
e4a843
pushd ..
e4a843
tar jxf %{SOURCE2}
e4a843
popd
e4a843
%patch1 -p1 -b .pagesetup
e4a843
%patch2 -p1 -b .marginleft
e4a843
%patch3 -p1 -b .newmethods
e4a843
%patch4 -p1 -b .nonconstant
e4a843
%patch5 -p1 -b .listitembody
e4a843
%patch6 -p1 -b .mandir
e4a843
%patch7 -p2 -b .non-recursive-subst
e4a843
%patch8 -p1 -b .gtk-doc-multilib
e4a843
e4a843
cp -p %{SOURCE1} Makefile
e4a843
e4a843
# fix of non UTF-8 files rpmlint warnings
e4a843
for fhtml in $(find ./doc -name '*.html' -type f)
e4a843
do
e4a843
  iconv -f ISO-8859-1 -t UTF-8 "$fhtml" -o "$fhtml".tmp
e4a843
  mv -f "$fhtml".tmp "$fhtml"
e4a843
  sed -i 's/charset=ISO-8859-1/charset=UTF-8/' "$fhtml"
e4a843
done
e4a843
e4a843
for f in $(find -name "*'*")
e4a843
do
e4a843
  mv -v "$f" $(echo "$f" | tr -d "'")
e4a843
done
e4a843
e4a843
e4a843
%build
e4a843
e4a843
e4a843
%install
e4a843
DESTDIR=$RPM_BUILD_ROOT
e4a843
rm -rf $RPM_BUILD_ROOT
e4a843
make install BINDIR=$DESTDIR%{_bindir} DESTDIR=$DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}
e4a843
cp -a VERSION.xsl $DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}/VERSION.xsl
e4a843
ln -s xsl-stylesheets-%{version} \
e4a843
	$DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets
e4a843
e4a843
# Don't ship the extensions (bug #177256).
e4a843
rm -rf $DESTDIR%{_datadir}/sgml/docbook/xsl-stylesheets/extensions/*
e4a843
e4a843
e4a843
%files
e4a843
%doc BUGS
e4a843
%doc README
e4a843
%doc TODO
e4a843
%doc doc
e4a843
%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}
e4a843
%{_datadir}/sgml/docbook/xsl-stylesheets
e4a843
e4a843
e4a843
%post
e4a843
CATALOG=%{_sysconfdir}/xml/catalog
e4a843
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
e4a843
 "http://cdn.docbook.org/release/xsl-nons/%{version}" \
e4a843
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
e4a843
 "http://cdn.docbook.org/release/xsl-nons/%{version}" \
e4a843
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
e4a843
 "http://cdn.docbook.org/release/xsl-nons/current/" \
e4a843
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
e4a843
 "http://cdn.docbook.org/release/xsl-nons/current/" \
e4a843
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
#keep the old one sourceforge URIs at least temporarily
e4a843
%{_bindir}/xmlcatalog --noout --add "rewriteSystem" \
e4a843
 "http://docbook.sourceforge.net/release/xsl/current" \
e4a843
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
%{_bindir}/xmlcatalog --noout --add "rewriteURI" \
e4a843
 "http://docbook.sourceforge.net/release/xsl/current" \
e4a843
 "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
e4a843
e4a843
e4a843
%postun
e4a843
# remove entries only on removal of package
e4a843
if [ "$1" = 0 ]; then
e4a843
  CATALOG=%{_sysconfdir}/xml/catalog
e4a843
  %{_bindir}/xmlcatalog --noout --del \
e4a843
   "file://%{_datadir}/sgml/docbook/xsl-stylesheets-%{version}" $CATALOG
e4a843
fi
e4a843
e4a843
%changelog
e4a843
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.79.2-16
e4a843
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
e4a843
  Related: rhbz#1991688
e4a843
e4a843
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.79.2-15
e4a843
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
e4a843
e4a843
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-14
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
e4a843
e4a843
* Fri Jan 15 2021 David King <amigadave@amigadave.com> - 1.79.2-13
e4a843
- Fix gtk-doc multilib failures
e4a843
e4a843
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-12
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e4a843
e4a843
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-11
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e4a843
e4a843
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-10
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e4a843
e4a843
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-9
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e4a843
e4a843
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-8
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e4a843
e4a843
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-7
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e4a843
e4a843
* Wed Sep 13 2017 Alexander Bokovoy <abokovoy@redhat.com> - 1.79.2-6
e4a843
- Use non-recursive string.subst to allow building large documents like smb.conf.5
e4a843
e4a843
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-5
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e4a843
e4a843
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.79.2-4
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e4a843
e4a843
* Tue Jan 03 2017 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-3
e4a843
- keep old sourceforge entries at least temporarily (#1409587)
e4a843
e4a843
* Mon Jan 02 2017 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-2
e4a843
- update xmlcatalog entries to docbook.org cdn
e4a843
e4a843
* Mon Jan 02 2017 Ondrej Vasik <ovasik@redhat.com> - 1.79.2-1
e4a843
- new upstream release 1.79.2
e4a843
- upstream moved to github
e4a843
e4a843
* Fri Jul 08 2016 Ondrej Vasik <ovasik@redhat.com> - 1.79.1-1
e4a843
- new upstream release 1.79.1
e4a843
e4a843
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.78.1-5
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e4a843
e4a843
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.1-4
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e4a843
e4a843
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.1-3
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e4a843
e4a843
* Mon Jul 29 2013 Ondrej Vasik <ovasik@redhat.com> 1.78.1-2
e4a843
- use DMIT (modified MIT) as a license for the
e4a843
  stylesheets (#988715)
e4a843
e4a843
* Mon Mar 18 2013 Ondrej Vasik <ovasik@redhat.com> 1.78.1-1
e4a843
- new upstream release 1.78.1
e4a843
e4a843
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.78.0-2
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e4a843
e4a843
* Thu Dec 20 2012 Ondrej Vasik <ovasik@redhat.com> 1.78.0-1
e4a843
- new upstream release 1.78.0
e4a843
e4a843
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.77.1-3
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e4a843
e4a843
* Tue Jun  5 2012 Ondrej Vasik <ovasik@redhat.com> 1.77.1-2
e4a843
- ship VERSION.xsl file (#829014)
e4a843
e4a843
* Tue Jun  5 2012 Ondrej Vasik <ovasik@redhat.com> 1.77.1-1
e4a843
- new stable upstream release 1.77.1
e4a843
- defuzz patches
e4a843
e4a843
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76.1-5
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e4a843
e4a843
* Tue Sep  6 2011 Ondrej Vasik <ovasik@redhat.com> 1.76.1-4
e4a843
- revert previous change, workaround the mandir links issue
e4a843
  in buildroot (#727251)
e4a843
e4a843
* Mon Aug 29 2011 Ondrej Vasik <ovasik@redhat.com> 1.76.1-3
e4a843
- make man.output.in.separate.dir "on" by default (#727251)
e4a843
e4a843
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.76.1-2
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e4a843
e4a843
* Tue Nov 02 2010 Ondrej Vasik <ovasik@redhat.com> 1.76.1-1
e4a843
- new upstream release 1.76.1
e4a843
e4a843
* Mon Sep 06 2010 Ondrej Vasik <ovasik@redhat.com> 1.76.0-1
e4a843
- new upstream release 1.76.0
e4a843
e4a843
* Tue May 04 2010 Ondrej Vasik <ovasik@redhat.com> 1.75.2-6
e4a843
- ship eclipse help stylesheets(#588613)
e4a843
e4a843
* Fri Dec 18 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-5
e4a843
- comment patches purpose
e4a843
- License Copyright only
e4a843
e4a843
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.75.2-4
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e4a843
e4a843
* Thu Jul 23 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-3
e4a843
- upstream changed changed doc tarball after release
e4a843
  (empty reference pdf file in old tarball)
e4a843
e4a843
* Wed Jul 22 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-2
e4a843
- upstream changed tarballs after release
e4a843
e4a843
* Tue Jul 21 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.2-1
e4a843
- New upstream release 1.75.2
e4a843
e4a843
* Thu May 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.1-1
e4a843
- New upstream release 1.75.1
e4a843
e4a843
* Mon May 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.75.0-1
e4a843
- New upstream release 1.75.0
e4a843
- update marginleft patch
e4a843
e4a843
* Wed Mar 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.3-1
e4a843
- New upstream release 1.74.3
e4a843
e4a843
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.74.2-3
e4a843
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e4a843
e4a843
* Mon Feb 23 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.2-2
e4a843
- updated Makefile: do ship .svg images(#486849), xsl
e4a843
  stylesheets for website, xhtml-1_1, docbook -> epub
e4a843
  convertor
e4a843
e4a843
* Fri Feb 20 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.2-1
e4a843
- New upstream release 1.74.2
e4a843
e4a843
* Wed Feb 18 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.1-1
e4a843
- New upstream release, removed included patches
e4a843
e4a843
* Wed Feb 11 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-7
e4a843
- fix broken varlistentry (#479683)
e4a843
e4a843
* Mon Feb 02 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-6
e4a843
- fix improper localization for rtl languages, thanks
e4a843
  Muayyad Alsadi(#475077)
e4a843
e4a843
* Wed Jan 28 2009 Ondrej Vasik <ovasik@redhat.com> 1.74.0-5
e4a843
- fix xsl stylesheets for rtl languages(#475077)
e4a843
e4a843
* Fri Dec 12 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-4
e4a843
- Author_Group "<orgname>" merged between "<surname>"
e4a843
  and "<surname>" (#473019)
e4a843
e4a843
* Wed Aug 06 2008 Kamil Dudka <kdudka@redhat.com> 1.74.0-3
e4a843
- Rediffed all patches to work with patch --fuzz=0
e4a843
e4a843
* Wed Aug 06 2008 Kamil Dudka <kdudka@redhat.com> 1.74.0-2
e4a843
- Tiny changes in docbook-xsl-newmethods.patch to work with xalan
e4a843
  (#452867)
e4a843
e4a843
* Tue Jun 03 2008 Ondrej Vasik <ovasik@redhat.com> 1.74.0-1
e4a843
- New upstream release 1.74.0, adapted patches
e4a843
e4a843
* Fri Dec 14 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-9
e4a843
- added fixes for passivetex extension and list-item-body
e4a843
  (#161371)
e4a843
e4a843
* Tue Dec 11 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-8
e4a843
- remove entries from xmlcatalog only on removal of package
e4a843
  (required because of the change with droping release
e4a843
   -caused drop of catalog entries during update)
e4a843
e4a843
* Tue Dec 04 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-7
e4a843
- change a few non-constant expressions to constant that
e4a843
  could now be handled by passivetex(#366441)
e4a843
e4a843
* Mon Dec 03 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-6
e4a843
- fixed docbook-xsl-pagesetup.patch to follow Norman Walsh's
e4a843
  documentation for nonpassivetex processing(#307001)
e4a843
e4a843
* Tue Nov 27 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-5
e4a843
- convert all html files in doc to UTF-8 in prep
e4a843
  (latest rpmlint gives warnings)
e4a843
- no longer using release in style-xsl dir(#389231)
e4a843
e4a843
* Tue Nov 06 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-4
e4a843
- Merge review(#225704)
e4a843
- spec file modified to follow guidelines
e4a843
e4a843
* Wed Oct 24 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-3
e4a843
- rpmlint check
e4a843
- fixed License Tag, Requires and some cosmetic issues 
e4a843
e4a843
* Fri Sep  7 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-2
e4a843
- Added PreReq of libxml2(#253962)
e4a843
e4a843
* Wed Sep  5 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.2-1
e4a843
- new upstream version
e4a843
e4a843
* Thu Aug 30 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.1-2
e4a843
- removed patch for #249294(included in new version other way)
e4a843
e4a843
* Wed Aug 29 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.1-1
e4a843
- new upstream version(fixing some bugs)
e4a843
- small new-methods patch change
e4a843
e4a843
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.0-2
e4a843
- fixed manpages/docbook.xsl failure(Tim Waugh,#249294)
e4a843
e4a843
* Mon Jul 23 2007 Ondrej Vasik <ovasik@redhat.com> 1.73.0-1
e4a843
- update to latest upstream version
e4a843
- patch changes because of rejects
e4a843
e4a843
* Mon Jun 18 2007 Ondrej Vasik <ovasik@redhat.com> 1.72.0-3
e4a843
- patch fixing #161619 taken from upstream
e4a843
e4a843
* Wed Jan 24 2007 Tomas Mraz <tmraz@redhat.com> 1.72.0-2
e4a843
- Install missing *.ent from common.
e4a843
e4a843
* Tue Jan 23 2007 Tim Waugh <twaugh@redhat.com> 1.72.0-1
e4a843
- 1.72.0.
e4a843
e4a843
* Fri Jan 19 2007 Tomas Mraz <tmraz@redhat.com> 1.71.1-2
e4a843
- Add new wordml and especially highlighting (which is referenced
e4a843
  from html) subdirs to Makefile.
e4a843
e4a843
* Fri Jan 19 2007 Tim Waugh <twaugh@redhat.com> 1.71.1-1
e4a843
- 1.71.1.  No longer seem to need lists patch.  Removed out of date sp
e4a843
  patch.
e4a843
e4a843
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.69.1-5.1
e4a843
- rebuild
e4a843
e4a843
* Tue Jan 24 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-5
e4a843
- Don't ship docsrc/* (bug #177256).
e4a843
- Don't ship the extensions (bug #177256).
e4a843
e4a843
* Thu Jan 19 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-4
e4a843
- Better 'lists' patch (bug #161371).
e4a843
e4a843
* Thu Jan 19 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-3
e4a843
- Apply patch to fix simpara manpage output, which asciidoc tends to use
e4a843
  (bug #175592).
e4a843
e4a843
* Tue Jan  3 2006 Tim Waugh <twaugh@redhat.com> 1.69.1-2
e4a843
- Patches from W. Michael Petullo:
e4a843
  - Fix lists blocking (bug #161371).
e4a843
  - Avoid proportional-column-width for passivetex (bug #176766).
e4a843
e4a843
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e4a843
- rebuilt
e4a843
e4a843
* Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 1.69.1-1
e4a843
- 1.69.1.
e4a843
e4a843
* Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 1.69.0-1
e4a843
- 1.69.0.
e4a843
e4a843
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com> 1.68.1-1
e4a843
- 1.68.1.
e4a843
e4a843
* Wed Feb  9 2005 Tim Waugh <twaugh@redhat.com> 1.68.0-1
e4a843
- 1.68.0.
e4a843
e4a843
* Wed Dec  8 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-2
e4a843
- Prevent expressions in passivetex output from index.xsl (bug #142229).
e4a843
e4a843
* Thu Dec  2 2004 Tim Waugh <twaugh@redhat.com> 1.67.2-1
e4a843
- 1.67.2.
e4a843
- No longer need nbsp or listblock patches.
e4a843
e4a843
* Mon Nov 22 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-3
e4a843
- Avoid non-ASCII in generated man pages.
e4a843
e4a843
* Wed Nov 10 2004 Tim Waugh <twaugh@redhat.com> 1.67.0-1
e4a843
- 1.67.0.
e4a843
e4a843
* Tue Nov  2 2004 Tim Waugh <twaugh@redhat.com> 1.66.1-1
e4a843
- 1.66.1 (bug #133586).
e4a843
e4a843
* Fri Jun  4 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-2
e4a843
- Fix strange filenames (bug #125311).
e4a843
e4a843
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com> 1.65.1-1
e4a843
- 1.65.1.
e4a843
e4a843
* Mon Mar  1 2004 Tim Waugh <twaugh@redhat.com> 1.65.0-1
e4a843
- 1.65.0.
e4a843
e4a843
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e4a843
- rebuilt
e4a843
e4a843
* Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-6
e4a843
- Fix last margin-left fix (bug #113456).
e4a843
- Reduce instances of itemized/ordered lists having misalignments.
e4a843
e4a843
* Sun Jan 18 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-5
e4a843
- And another (bug #113456).
e4a843
e4a843
* Thu Jan 15 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-4
e4a843
- Fixed another instance of bug #113456 in lists layout.
e4a843
e4a843
* Wed Jan 14 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-3
e4a843
- Hard-code the margin-left work around to expect passivetex (bug #113456).
e4a843
e4a843
* Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-2
e4a843
- Another manpage fix.
e4a843
e4a843
* Fri Dec 19 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-1
e4a843
- 1.64.1.
e4a843
e4a843
* Thu Dec 18 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-2
e4a843
- Another manpage fix.
e4a843
e4a843
* Tue Dec 16 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-1
e4a843
- 1.64.0.
e4a843
e4a843
* Fri Dec 12 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-3
e4a843
- Use the fr.xml from 1.62.1 (bug #111989).
e4a843
e4a843
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-2
e4a843
- Manpages fixes.
e4a843
e4a843
* Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-1
e4a843
- 1.62.4.
e4a843
- No longer need hyphens patch.
e4a843
- Avoid expressions in margin-left attributes, since passivetex does not
e4a843
  understand them.
e4a843
e4a843
* Fri Jul  4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2.1
e4a843
- Rebuilt.
e4a843
e4a843
* Fri Jul  4 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-2
e4a843
- Rebuilt.
e4a843
e4a843
* Fri May 23 2003 Tim Waugh <twaugh@redhat.com> 1.61.2-1
e4a843
- 1.61.2.
e4a843
e4a843
* Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 1.61.1-1
e4a843
- 1.61.1.
e4a843
e4a843
* Fri May  9 2003 Tim Waugh <twaugh@redhat.com> 1.61.0-1
e4a843
- Prevent hyphenation-character confusing passivetex.
e4a843
- 1.61.0.
e4a843
e4a843
* Thu Mar  6 2003 Tim Waugh <twaugh@redhat.com> 1.60.1-1
e4a843
- 1.60.1.
e4a843
e4a843
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
e4a843
- rebuilt
e4a843
e4a843
* Mon Dec  2 2002 Tim Waugh <twaugh@redhat.com> 1.58.1-1
e4a843
- 1.58.1.
e4a843
- No longer need marker patch.
e4a843
e4a843
* Mon Nov  4 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-2
e4a843
- Ship profiling directory (bug #77191).
e4a843
e4a843
* Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-1
e4a843
- 1.57.0.
e4a843
e4a843
* Wed Oct 16 2002 Tim Waugh <twaugh@redhat.com> 1.56.1-1
e4a843
- 1.56.1.
e4a843
- Use value-of not copy-of for fo:marker content.
e4a843
- Conflict with passivetex < 1.21.
e4a843
e4a843
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
e4a843
- automated rebuild
e4a843
e4a843
* Thu May 23 2002 Tim Powers <timp@redhat.com>
e4a843
- automated rebuild
e4a843
e4a843
* Wed May  1 2002 Tim Waugh <twaugh@redhat.com> 1.50.0-1
e4a843
- 1.50.0.
e4a843
e4a843
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 1.49-1
e4a843
- 1.49.
e4a843
- Rebuild in new environment.
e4a843
e4a843
* Fri Feb  1 2002 Tim Waugh <twaugh@redhat.com> 1.48-4
e4a843
- Put URIs instead of pathnames in the XML catalog.
e4a843
e4a843
* Thu Jan 17 2002 Tim Waugh <twaugh@redhat.com> 1.48-3
e4a843
- Back to /usr/share/sgml.
e4a843
e4a843
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.48-2
e4a843
- automated rebuild
e4a843
e4a843
* Mon Jan  7 2002 Tim Waugh <twaugh@redhat.com> 1.48-1
e4a843
- 1.48.
e4a843
e4a843
* Sat Dec  8 2001 Tim Waugh <twaugh@redhat.com> 1.47-2
e4a843
- Conflict with PassiveTeX before 1.11.
e4a843
e4a843
* Tue Oct 16 2001 Tim Waugh <twaugh@redhat.com> 1.47-1
e4a843
- 1.47-experimental.
e4a843
e4a843
* Tue Oct  9 2001 Tim Waugh <twaugh@redhat.com> 1.45-2
e4a843
- Fix unversioned symlink.
e4a843
e4a843
* Mon Oct  8 2001 Tim Waugh <twaugh@redhat.com> 1.45-1
e4a843
- XML Catalog entries.
e4a843
- Move files to /usr/share/xml.
e4a843
e4a843
* Mon Oct  1 2001 Tim Waugh <twaugh@redhat.com> 1.45-0.1
e4a843
- 1.45.
e4a843
- Built for Red Hat Linux.
e4a843
e4a843
* Tue Jun 26 2001 Chris Runge <crunge@pobox.com>
e4a843
- 1.40
e4a843
e4a843
* Sat Jun 09 2001 Chris Runge <crunge@pobox.com>
e4a843
- added extensions and additional doc
e4a843
- bin added to doc; the Perl files are for Win32 Perl and so need some
e4a843
  conversion first
e4a843
e4a843
* Fri Jun 08 2001 Chris Runge <crunge@pobox.com>
e4a843
- Initial RPM (based on docbook-style-dsssl RPM)
e4a843
- note: no catalog right now (I don't know how to do it; and not sure why
e4a843
  it is necessary)