01815b
%global xmlxsdver 2009/01
01815b
01815b
Name: sgml-common
01815b
Version: 0.6.3
01815b
Release: 58%{?dist}
01815b
01815b
Summary: Common SGML catalog and DTD files
01815b
01815b
License: GPL+
01815b
01815b
BuildArch: noarch
01815b
01815b
#Actually - there is no homepage of this project, on that URL
01815b
#page you could get complete ISO 8879 listing as was on the
01815b
#old page - only part of it is included in sgml-common package.
01815b
URL: https://www.w3.org/2003/entities/
01815b
01815b
Source0: https://www.sourceware.org/pub/docbook-tools/new-trials/SOURCES/%{name}-%{version}.tgz
01815b
# Following 4 from openjade/pubtext - same maintainer as in SGML-common, so up2date:
01815b
Source1: xml.dcl
01815b
Source2: xml.soc
01815b
Source3: html.dcl
01815b
Source4: html.soc
01815b
Source5: http://www.w3.org/%{xmlxsdver}/xml.xsd
01815b
Source6: http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd
01815b
Source7: http://www.w3.org/2001/XMLSchema.dtd
01815b
Source8: http://www.w3.org/2001/datatypes.dtd
01815b
Source9: sgmlwhich.1
01815b
Source10: sgml.conf.5
01815b
01815b
Patch0: sgml-common-umask.patch
01815b
Patch1: sgml-common-xmldir.patch
01815b
Patch2: sgml-common-quotes.patch
01815b
01815b
BuildRequires: make
01815b
BuildRequires: libxml2
01815b
BuildRequires: automake
01815b
Requires: %{_bindir}/basename
01815b
01815b
%description
01815b
The sgml-common package contains a collection of entities and DTDs
01815b
that are useful for processing SGML, but that don't need to be
01815b
included in multiple packages.  Sgml-common also includes an
01815b
up-to-date Open Catalog file.
01815b
01815b
%package -n xml-common
01815b
Summary: Common XML catalog and DTD files
01815b
License: GPL+
01815b
Requires(pre): %{_bindir}/xmlcatalog
01815b
01815b
%description -n xml-common
01815b
The xml-common is a subpackage of sgml-common which contains
01815b
a collection XML catalogs that are useful for processing XML,
01815b
but that don't need to be included in main package.
01815b
01815b
%prep
01815b
%setup -q
01815b
%patch0 -p1 -b .umask
01815b
%patch1 -p1 -b .xmldir
01815b
%patch2 -p1 -b .quotes
01815b
01815b
# replace bogus links with files
01815b
automakedir=`ls -1d /usr/share/automake* | head -n +1`
01815b
for file in COPYING INSTALL install-sh missing mkinstalldirs; do
01815b
   rm $file
01815b
   cp -p $automakedir/$file .
01815b
done
01815b
01815b
%build
01815b
%configure
01815b
01815b
%install
01815b
%make_install htmldir='%{_datadir}/doc'
01815b
mkdir $RPM_BUILD_ROOT%{_sysconfdir}/xml
01815b
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sgml/docbook
01815b
mkdir -p $RPM_BUILD_ROOT%{_datadir}/sgml/docbook
01815b
# Touch SGML catalog
01815b
touch $RPM_BUILD_ROOT%{_sysconfdir}/sgml/catalog
01815b
# Create an empty XML catalog.
01815b
XMLCATALOG=$RPM_BUILD_ROOT%{_sysconfdir}/xml/catalog
01815b
%{_bindir}/xmlcatalog --noout --create $XMLCATALOG
01815b
# ...and add xml.xsd in it
01815b
for type in system uri ; do
01815b
	for path in 2001 %{xmlxsdver} ; do
01815b
		%{_bindir}/xmlcatalog --noout --add $type \
01815b
			"http://www.w3.org/$path/xml.xsd" \
01815b
			"file://%{_datadir}/xml/xml.xsd" $XMLCATALOG
01815b
	done
01815b
	# Add xmldsig-core-schema.xsd to catalog
01815b
	%{_bindir}/xmlcatalog --noout --add $type \
01815b
		"http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd" \
01815b
		"file://%{_datadir}/xml/xmldsig-core-schema.xsd" $XMLCATALOG
01815b
done
01815b
# Now put the common DocBook entries in it
01815b
%{_bindir}/xmlcatalog --noout --add "delegatePublic" \
01815b
	"-//OASIS//ENTITIES DocBook XML" \
01815b
	"file://%{_sysconfdir}/sgml/docbook/xmlcatalog" $XMLCATALOG
01815b
%{_bindir}/xmlcatalog --noout --add "delegatePublic" \
01815b
	"-//OASIS//DTD DocBook XML" \
01815b
	"file://%{_sysconfdir}/sgml/docbook/xmlcatalog" $XMLCATALOG
01815b
%{_bindir}/xmlcatalog --noout --add "delegatePublic" \
01815b
	"ISO 8879:1986" \
01815b
	"file://%{_sysconfdir}/sgml/docbook/xmlcatalog" $XMLCATALOG
01815b
%{_bindir}/xmlcatalog --noout --add "delegateSystem" \
01815b
	"http://www.oasis-open.org/docbook/" \
01815b
	"file://%{_sysconfdir}/sgml/docbook/xmlcatalog" $XMLCATALOG
01815b
%{_bindir}/xmlcatalog --noout --add "delegateURI" \
01815b
	"http://www.oasis-open.org/docbook/" \
01815b
	"file://%{_sysconfdir}/sgml/docbook/xmlcatalog" $XMLCATALOG
01815b
for public in "-//W3C//DTD XMLSchema 200102//EN" "-//W3C//DTD XMLSCHEMA 200102//EN" ; do
01815b
	%{_bindir}/xmlcatalog --noout --add "public" \
01815b
		"$public" \
01815b
		"file://%{_datadir}/xml/XMLSchema.dtd" $XMLCATALOG
01815b
done
01815b
%{_bindir}/xmlcatalog --noout --add "system" \
01815b
	"http://www.w3.org/2001/XMLSchema.dtd" \
01815b
	"file://%{_datadir}/xml/XMLSchema.dtd" $XMLCATALOG
01815b
01815b
# Also create the common DocBook catalog
01815b
%{_bindir}/xmlcatalog --noout --create \
01815b
	$RPM_BUILD_ROOT%{_sysconfdir}/sgml/docbook/xmlcatalog
01815b
ln -sf %{_sysconfdir}/sgml/docbook/xmlcatalog\
01815b
	$RPM_BUILD_ROOT%{_datadir}/sgml/docbook/xmlcatalog
01815b
01815b
rm -f $RPM_BUILD_ROOT%{_datadir}/sgml/xml.dcl
01815b
install -p -m0644 %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} \
01815b
	$RPM_BUILD_ROOT%{_datadir}/sgml
01815b
rm -rf $RPM_BUILD_ROOT%{_datadir}/xml/*
01815b
install -p -m0644 %{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE8} \
01815b
	$RPM_BUILD_ROOT%{_datadir}/xml
01815b
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
01815b
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man5
01815b
install -p -m0644 %{SOURCE9} $RPM_BUILD_ROOT%{_mandir}/man1
01815b
install -p -m0644 %{SOURCE10} $RPM_BUILD_ROOT%{_mandir}/man5
01815b
01815b
# remove installed doc file and prepare installation with %%doc
01815b
rm $RPM_BUILD_ROOT%{_datadir}/doc/*.html
01815b
rm -rf __dist_doc/html/
01815b
mkdir -p __dist_doc/html/
01815b
cp -p doc/HTML/*.html __dist_doc/html/
01815b
01815b
01815b
%pre -n xml-common
01815b
if [ $1 -gt 1 ] && [ -e %{_sysconfdir}/xml/catalog ]; then
01815b
	for type in system uri ; do
01815b
		for path in 2001 %{xmlxsdver} ; do
01815b
			%{_bindir}/xmlcatalog --noout --add $type \
01815b
				"http://www.w3.org/$path/xml.xsd" \
01815b
				"file://%{_datadir}/xml/xml.xsd" \
01815b
				%{_sysconfdir}/xml/catalog
01815b
		done
01815b
		%{_bindir}/xmlcatalog --noout --add $type \
01815b
			"http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd" \
01815b
			"file://%{_datadir}/xml/xmldsig-core-schema.xsd" %{_sysconfdir}/xml/catalog
01815b
	done
01815b
	for public in "-//W3C//DTD XMLSchema 200102//EN" "-//W3C//DTD XMLSCHEMA 200102//EN" ; do
01815b
		%{_bindir}/xmlcatalog --noout --add "public" \
01815b
			"$public" \
01815b
			"file://%{_datadir}/xml/XMLSchema.dtd" %{_sysconfdir}/xml/catalog
01815b
	done
01815b
fi
01815b
01815b
%files
01815b
%doc __dist_doc/html/ AUTHORS NEWS ChangeLog COPYING README
01815b
%dir %{_sysconfdir}/sgml
01815b
%config(noreplace) %{_sysconfdir}/sgml/sgml.conf
01815b
%ghost %verify(not md5 size mtime) %config(noreplace,missingok) %{_sysconfdir}/sgml/catalog
01815b
%dir %{_datadir}/sgml
01815b
%dir %{_datadir}/sgml/sgml-iso-entities-8879.1986
01815b
%{_datadir}/sgml/sgml-iso-entities-8879.1986/*
01815b
%{_datadir}/sgml/xml.dcl
01815b
%{_datadir}/sgml/xml.soc
01815b
%{_datadir}/sgml/html.dcl
01815b
%{_datadir}/sgml/html.soc
01815b
%{_bindir}/sgmlwhich
01815b
%{_bindir}/install-catalog
01815b
%{_mandir}/man8/install-catalog.8*
01815b
%{_mandir}/man1/sgmlwhich.1*
01815b
%{_mandir}/man5/sgml.conf.5*
01815b
01815b
%files -n xml-common
01815b
%doc AUTHORS NEWS ChangeLog COPYING README
01815b
%dir %{_sysconfdir}/xml
01815b
%dir %{_sysconfdir}/sgml
01815b
%dir %{_sysconfdir}/sgml/docbook
01815b
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/xml/catalog
01815b
%config(noreplace) %verify(not md5 size mtime) %{_sysconfdir}/sgml/docbook/xmlcatalog
01815b
%dir %{_datadir}/sgml
01815b
%dir %{_datadir}/sgml/docbook
01815b
%{_datadir}/sgml/docbook/xmlcatalog
01815b
%dir %{_datadir}/xml
01815b
%{_datadir}/xml/xml.xsd
01815b
%{_datadir}/xml/xmldsig-core-schema.xsd
01815b
%{_datadir}/xml/XMLSchema.dtd
01815b
%{_datadir}/xml/datatypes.dtd
01815b
01815b
%changelog
01815b
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 0.6.3-58
01815b
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
01815b
  Related: rhbz#1991688
01815b
01815b
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.6.3-57
01815b
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
01815b
01815b
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-56
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
01815b
01815b
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-55
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
01815b
01815b
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-54
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
01815b
01815b
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-53
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
01815b
01815b
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-52
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
01815b
01815b
* Fri Oct 05 2018 Ondrej Vasik <ovasik@redhat.com> - 0.6.3-51
01815b
- add basic manpages for sgml.conf(5) and sgmlwhich(1) (#1612272)
01815b
01815b
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-50
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
01815b
01815b
* Tue Jun 12 2018 Jan Pazdziora <jpazdziora@redhat.com> - 0.6.3-49
01815b
- Package and catalog xmldsig-core-schema.xsd, XMLSchema.dtd, and datatypes.dtd
01815b
01815b
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-48
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
01815b
01815b
* Tue Oct 31 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.6.3-47
01815b
- Use /usr/bin instead of /bin in Requires
01815b
01815b
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-46
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
01815b
01815b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-45
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
01815b
01815b
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.3-44
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
01815b
01815b
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-43
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
01815b
01815b
* Mon Dec 15 2014 Ondrej Vasik <ovasik@redhat.com> 0.6.3-42
01815b
- add /etc/sgml ownership to xml-common subpackage (#1173925)
01815b
01815b
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-41
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
01815b
01815b
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-40
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
01815b
01815b
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-39
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
01815b
01815b
* Thu Oct 11 2012 Ondrej Vasik <ovasik@redhat.com> 0.6.3-38
01815b
- get rid of the explicit automake14 requirement
01815b
01815b
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-37
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
01815b
01815b
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-36
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
01815b
01815b
* Sun Oct 30 2011 Ville Skyttä <ville.skytta@iki.fi> - 0.6.3-35
01815b
- Include xml.xsd in xml-common (#750073).
01815b
01815b
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-34
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
01815b
01815b
* Mon Jul 12 2010 Ondrej Vasik <ovasik@redhat.com> 0.6.3-33
01815b
- ship COPYING file with both sgml-common and xml-common
01815b
- ship documentation with xml-common
01815b
01815b
* Fri Jan 15 2010 Ondrej Vasik <ovasik@redhat.com> 0.6.3-32
01815b
- Merge review #226415: remove unapplied patches, remove
01815b
  versioned BR
01815b
01815b
* Wed Nov 11 2009 Ondrej Vasik <ovasik@redhat.com> 0.6.3-31
01815b
- apply quotes patch once again (accidently deleted in Nov07-#533058)
01815b
01815b
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-30
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
01815b
01815b
* Thu May 28 2009 Ondrej Vasik <ovasik@redhat.com> 0.6.3-29
01815b
- do own /etc/sgml/catalog
01815b
01815b
* Tue May 19 2009 Ondrej Vasik <ovasik@redhat.com> 0.6.3-28
01815b
- do not provide explicit url for xml-common subpackage,
01815b
  fix trailing spaces
01815b
- add Requires: /bin/basename (#501360)
01815b
01815b
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-27
01815b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
01815b
01815b
* Thu Aug 07 2008 Ondrej Vasik <ovasik@redhat.com> 0.6.3-26
01815b
- /etc/sgml/docbook dir now owned by package(#458230)
01815b
- get rid off fuzz in patches
01815b
01815b
* Tue Jul 01 2008 Ondrej Vasik <ovasik@redhat.com> 0.6.3-25
01815b
- mark xmlcatalog config(noreplace) to prevent overwriting
01815b
  of the content, move it to sysconfdir and make symlink for
01815b
  it to silence rpmlint
01815b
01815b
* Mon Jun 30 2008 Ondrej Vasik <ovasik@redhat.com> 0.6.3-24
01815b
- mark catalog files as (not md5 size mtime) for verify to
01815b
  prevent info about changed files (#453271)
01815b
01815b
* Thu Nov 22 2007 Ondrej Vasik <ovasik@redhat.com> 0.6.3-23
01815b
- Another MergeReview improvements(provided by Patrice Dumas)
01815b
- copy Automake-1.4 files instead of rerunning autotools,
01815b
- better preserving timestamps, better handling of documentation
01815b
- improved XML-common description
01815b
01815b
* Thu Nov 15 2007 Ondrej Vasik <ovasik@redhat.com> 0.6.3-22
01815b
- Merge Review(226415)
01815b
- changed: License Tag, using RPM macros instead of hardcoded
01815b
  dirs, summary ended with dot, added URL, removed CHANGES
01815b
  file as obsolete, preserved timestamps and some other cosmetic
01815b
  changes
01815b
- no longer shipping old automake tarball, fixed issue with man8_DATA,
01815b
  BuildRequire:Automake,Autoconf again(see MergeReview discussion)
01815b
01815b
* Mon May 28 2007 Ondrej Vasik <ovasik@redhat.com> 0.6.3-21
01815b
- Fixed broken URL (changed to XML entity declarations) (bug #237726)
01815b
- Rebuilt
01815b
01815b
* Tue May 15 2007 Tim Waugh <twaugh@redhat.com> 0.6.3-20
01815b
- Added dist tag.
01815b
- Fixed summary.
01815b
- Removed build dependency on autoconf/automake.
01815b
01815b
* Tue Oct 24 2006 Tim Waugh <twaugh@redhat.com> 0.6.3-19
01815b
- Removed stale URL (bug #210848).
01815b
01815b
* Mon Jun 12 2006 Tim Waugh <twaugh@redhat.com> 0.6.3-18
01815b
- Build requires automake and autoconf (bug #194709).
01815b
01815b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
01815b
- rebuilt
01815b
01815b
* Wed Sep 22 2004 Than Ngo <than@redhat.com> 0.6.3-17
01815b
- rebuilt
01815b
01815b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
01815b
- rebuilt
01815b
01815b
* Mon Dec  8 2003 Tim Waugh <twaugh@redhat.com> 0.6.3-15
01815b
- Patch from Ville Skyttä <ville.skytta@iki.fi> (bug #111625):
01815b
  - Include /usr/share/xml in xml-common.
01815b
  - Own /usr/share/sgml and /usr/share/xml.
01815b
01815b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
01815b
- rebuilt
01815b
01815b
* Wed Oct 23 2002 Tim Waugh <twaugh@redhat.com> 0.6.3-13
01815b
- Ship the installed documentation.
01815b
- Don't install files not packaged.
01815b
01815b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
01815b
- automated rebuild
01815b
01815b
* Thu May 23 2002 Tim Powers <timp@redhat.com>
01815b
- automated rebuild
01815b
01815b
* Wed Apr 24 2002 Tim Waugh <twaugh@redhat.com> 0.6.3-10
01815b
- Ship {xml,html}.{dcl,soc} (bug #63500, bug #62980).
01815b
- Work around broken tarball packaging.
01815b
01815b
* Thu Feb 21 2002 Tim Waugh <twaugh@redhat.com> 0.6.3-9
01815b
- Rebuild in new environment.
01815b
01815b
* Thu Jan 17 2002 Tim Waugh <twaugh@redhat.com> 0.6.3-8
01815b
- Back to /usr/share/sgml.  Now install docbook-dtds.
01815b
- Use a real install-sh, not the symlink shipped in the tarball.
01815b
01815b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 0.6.3-7
01815b
- automated rebuild
01815b
01815b
* Mon Nov  5 2001 Tim Waugh <twaugh@redhat.com> 0.6.3-6
01815b
- Don't create a useless empty catalog.
01815b
- Don't try to put install things outside the build root.
01815b
- Build requires a libxml2 that actually works.
01815b
01815b
* Mon Nov  5 2001 Tim Waugh <twaugh@redhat.com> 0.6.3-4
01815b
- Use (and handle) catalog files with quotes in install-catalog.
01815b
01815b
* Thu Nov  1 2001 Tim Waugh <twaugh@redhat.com> 0.6.3-3
01815b
- Create default XML Catalog at build time, not install time.
01815b
01815b
* Fri Oct  5 2001 Tim Waugh <twaugh@redhat.com> 0.6.3-2
01815b
- Move XML things into /usr/share/xml, and split them out into separate
01815b
  xml-common package.
01815b
01815b
* Mon Oct  1 2001 Tim Waugh <twaugh@redhat.com> 0.6.3-1
01815b
- 0.6.3.  Incorporates oldsyntax and quiet patches.
01815b
- Make /etc/sgml/sgml.conf noreplace.
01815b
- Own /etc/sgml, various other directories (bug #47485, bug #54180).
01815b
01815b
* Wed May 23 2001 Tim Waugh <twaugh@redhat.com> 0.5-7
01815b
- Remove execute bit from data files.
01815b
01815b
* Mon May 21 2001 Tim Waugh <twaugh@redhat.com> 0.5-6
01815b
- install-catalog needs to make sure that it creates world-readable files
01815b
  (bug #41552).
01815b
01815b
* Wed Mar 14 2001 Tim Powers <timp@redhat.com> 0.5-5
01815b
- fixed license
01815b
01815b
* Wed Jan 24 2001 Tim Waugh <twaugh@redhat.com>
01815b
- Make install-catalog quieter during normal operation.
01815b
01815b
* Tue Jan 23 2001 Tim Waugh <twaugh@redhat.com>
01815b
- Require textutils, fileutils, grep (bug #24719).
01815b
01815b
* Wed Jan 17 2001 Tim Waugh <twaugh@redhat.com>
01815b
- Require sh-utils.
01815b
01815b
* Mon Jan 15 2001 Tim Waugh <twaugh@redhat.com>
01815b
- Don't play so many macro games.
01815b
- Fix typo in install-catalog patch.
01815b
01815b
* Mon Jan 08 2001 Tim Waugh <twaugh@redhat.com>
01815b
- Change group.
01815b
- Install by hand (man/en/...).  Use %%{_mandir}.
01815b
- Use %%{_tmppath}.
01815b
- Make install-catalog fail silently if given the old syntax.
01815b
- Add CHANGES file.
01815b
- Change Copyright: to License:.
01815b
- Remove Packager: line.
01815b
01815b
* Mon Jan 08 2001 Tim Waugh <twaugh@redhat.com>
01815b
- Based on Eric Bischoff's new-trials packages.