Blame SPECS/docbook-style-xsl.spec

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