From 7cf94d2bd95f8d69a02a7830d4f445911b7149e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 21 Jun 2006 06:54:00 +0000 Subject: [PATCH 01/42] auto-import html401-dtds-4.01-19991224.2 on branch devel from html401-dtds-4.01-19991224.2.src.rpm Initial import (#181068). --- .cvsignore | 1 + html401-dtds-catalog.patch | 27 ++++++++ html401-dtds.spec | 125 +++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 154 insertions(+) create mode 100644 html401-dtds-catalog.patch create mode 100644 html401-dtds.spec diff --git a/.cvsignore b/.cvsignore index e69de29..603ad23 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +html40.tgz diff --git a/html401-dtds-catalog.patch b/html401-dtds-catalog.patch new file mode 100644 index 0000000..d5d15a5 --- /dev/null +++ b/html401-dtds-catalog.patch @@ -0,0 +1,27 @@ +--- HTML4.cat.orig 1999-12-25 01:26:00.000000000 +0200 ++++ HTML4.cat 2004-06-20 14:03:06.021819048 +0300 +@@ -6,3 +6,24 @@ + PUBLIC "-//W3C//ENTITIES Latin1//EN//HTML" HTMLlat1.ent + PUBLIC "-//W3C//ENTITIES Special//EN//HTML" HTMLspecial.ent + PUBLIC "-//W3C//ENTITIES Symbols//EN//HTML" HTMLsymbol.ent ++ ++-- Fedora modification: added DTDDECLs -- ++ ++DTDDECL "-//W3C//DTD HTML 4.01//EN" HTML4.decl ++DTDDECL "-//W3C//DTD HTML 4.01 Transitional//EN" HTML4.decl ++DTDDECL "-//W3C//DTD HTML 4.01 Frameset//EN" HTML4.decl ++DTDDECL "-//W3C//ENTITIES Latin1//EN//HTML" HTML4.decl ++DTDDECL "-//W3C//ENTITIES Special//EN//HTML" HTML4.decl ++DTDDECL "-//W3C//ENTITIES Symbols//EN//HTML" HTML4.decl ++ ++-- Fedora modification: added additional public id "aliases" defined in ++ ISO-HTML Annex B, http://purl.org/NET/ISO+IEC.15445/Users-Guide.html#DTD -- ++ ++PUBLIC "-//W3C//ENTITIES Latin alphabet No. 1//EN//HTML" HTMLlat1.ent ++PUBLIC "-//W3C//ENTITIES Full Latin 1//EN//HTML" HTMLlat1.ent ++PUBLIC "-//W3C//ENTITIES Latin 1//EN//HTML" HTMLlat1.ent ++PUBLIC "-//W3C//ENTITIES Symbolic//EN//HTML" HTMLsymbol.ent ++DTDDECL "-//W3C//ENTITIES Latin alphabet No. 1//EN//HTML" HTML4.decl ++DTDDECL "-//W3C//ENTITIES Full Latin 1//EN//HTML" HTML4.decl ++DTDDECL "-//W3C//ENTITIES Latin 1//EN//HTML" HTML4.decl ++DTDDECL "-//W3C//ENTITIES Symbolic//EN//HTML" HTML4.decl diff --git a/html401-dtds.spec b/html401-dtds.spec new file mode 100644 index 0000000..acb1b43 --- /dev/null +++ b/html401-dtds.spec @@ -0,0 +1,125 @@ +# Note to self: like is with the HTML 2.0 and 3.2 DTDs, HTML 4.0 and 4.01 +# have the same public id to their ENTITIES files. They are not exactly the +# same in 4.0 and 4.01, but the changes are in comments only, so no need +# use a hardcoded system id. Well, until something installs another, and +# incompatible set of entities using the same public id anyway... + +%define date 19991224 + +Name: html401-dtds +Version: 4.01 +Release: %{date}.2%{?dist} +Summary: HTML 4.01 specification and document type definitions + +Group: Applications/Text +License: W3C License +URL: http://www.w3.org/TR/1999/REC-html401-%{date}/ +Source0: http://www.w3.org/TR/1999/REC-html401-%{date}/html40.tgz +Patch0: %{name}-catalog.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +BuildRequires: perl(File::Spec) +Requires: sgml-common +Requires(post): /usr/bin/install-catalog +Requires(preun): /usr/bin/install-catalog + +%description +This package provides the three HTML 4.01 DTDs (strict, frameset, and +transitional). The DTDs are required for processing HTML 4.01 +document instances using SGML tools such as OpenSP, OpenJade, or +SGMLSpm. + + +%prep +%setup -q -c +%patch0 -p0 + + +%build + + +%install +rm -rf $RPM_BUILD_ROOT __docs + +abs2rel() { perl -MFile::Spec -e 'print File::Spec->abs2rel(@ARGV)' "$@" ; } +docdir=%{_docdir}/%{name}-%{version} + +mkdir __docs +cp -pR *.html $(find * -maxdepth 1 -type d -not -name __docs) __docs +ln -s cover.html __docs/index.html + +mkdir -p $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 +for file in *.dtd *.cat *.ent *.decl ; do + cp -p $file $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 + ln -s $(abs2rel %{_datadir}/sgml/html/4.01/$file $docdir) __docs/$file +done + +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sgml +cd $RPM_BUILD_ROOT%{_sysconfdir}/sgml +touch %{name}-%{version}-%{release}.soc +ln -s %{name}-%{version}-%{release}.soc %{name}.soc +cd - + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +/usr/bin/install-catalog --add \ + %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc \ + %{_datadir}/sgml/html/4.01/HTML4.cat >/dev/null + +%preun +/usr/bin/install-catalog --remove \ + %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc \ + %{_datadir}/sgml/html/4.01/HTML4.cat >/dev/null || : + + +%files +%defattr(644,root,root,755) +%doc __docs/* +%ghost %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc +%{_sysconfdir}/sgml/%{name}.soc +%{_datadir}/sgml/html/ + + +%changelog +* Tue Jun 20 2006 Ville Skyttä - 4.01-19991224.2 +- Require install-catalog at post-install and pre-uninstall time (#181068). + +* Sun Jun 18 2006 Ville Skyttä - 4.01-19991224.1 +- Include specification date in release field (#181068). +- Make doc symlinks relative. + +* Sat Feb 25 2006 Ville Skyttä - 4.01-0.3 +- Improve description (#181068). +- Fold specification into main package as %%doc (#181068). + +* Wed Jun 15 2005 Ville Skyttä - 4.01-0.2 +- Rebuild for FC4. + +* Sat Apr 16 2005 Ville Skyttä - 4.01-0.1 +- Use -maxdepth before other options to find(1). + +* Tue Jun 22 2004 Ville Skyttä - 0:4.01-0.fdr.6 +- Move files below %%{_datadir}/sgml/html/4.01, remove alternatives. +- Add non-versioned %%{_sysconfdir}/sgml/%%{name}.soc symlink. + +* Sun Jun 20 2004 Ville Skyttä - 0:4.01-0.fdr.5 +- Add additional public id "aliases" for entities to SGML catalog as defined + in ISO-HTML Annex B, http://purl.org/NET/ISO+IEC.15445/Users-Guide.html#DTD + +* Sat Jun 19 2004 Ville Skyttä - 0:4.01-0.fdr.4 +- Add DTDDECLs to SGML catalog. + +* Sun Dec 7 2003 Ville Skyttä - 0:4.01-0.fdr.3 +- Use alternatives to install preferred HTML DTD location. + +* Sat Dec 6 2003 Ville Skyttä - 0:4.01-0.fdr.2 +- Install dir directly under %%{_datadir}/sgml. +- Spec cleanups. + +* Tue Dec 2 2003 Ville Skyttä - 0:4.01-0.fdr.1 +- First build. diff --git a/sources b/sources index e69de29..ca2a8f7 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +1ed76627ba80816079649f67023ec7ab html40.tgz From 708be675dd9ebc6d32c2fd97f0c599bef451be44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 21 Jun 2006 06:57:04 +0000 Subject: [PATCH 02/42] Fine tune %description. --- html401-dtds.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index acb1b43..e8bab1c 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -25,10 +25,10 @@ Requires(post): /usr/bin/install-catalog Requires(preun): /usr/bin/install-catalog %description -This package provides the three HTML 4.01 DTDs (strict, frameset, and -transitional). The DTDs are required for processing HTML 4.01 -document instances using SGML tools such as OpenSP, OpenJade, or -SGMLSpm. +This package provides the HTML 4.01 specification and the three DTDs +(strict, frameset, and transitional). The DTDs are required for +processing HTML 4.01 document instances using SGML tools such as +OpenSP, OpenJade, or SGMLSpm. %prep From 62e9ce444749e30630ae55d2ac6e6da8b10fa07c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 27 Aug 2006 20:30:52 +0000 Subject: [PATCH 03/42] http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild --- needs.rebuild | 1 + 1 file changed, 1 insertion(+) create mode 100644 needs.rebuild diff --git a/needs.rebuild b/needs.rebuild new file mode 100644 index 0000000..815fd29 --- /dev/null +++ b/needs.rebuild @@ -0,0 +1 @@ +http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From e16642cbbea996bca435d759059f141050dff8c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 29 Aug 2006 22:01:07 +0000 Subject: [PATCH 04/42] Does not benefit from a rebuild. --- needs.rebuild | 1 - 1 file changed, 1 deletion(-) delete mode 100644 needs.rebuild diff --git a/needs.rebuild b/needs.rebuild deleted file mode 100644 index 815fd29..0000000 --- a/needs.rebuild +++ /dev/null @@ -1 +0,0 @@ -http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From 487e59c9d10bfe1f024ba5c68a45e0c03d139666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 15 Sep 2006 16:22:35 +0000 Subject: [PATCH 05/42] - Rebuild. --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index e8bab1c..60b5e67 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.2%{?dist} +Release: %{date}.3%{?dist} Summary: HTML 4.01 specification and document type definitions Group: Applications/Text @@ -86,6 +86,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Sep 15 2006 Ville Skyttä - 4.01-19991224.3 +- Rebuild. + * Tue Jun 20 2006 Ville Skyttä - 4.01-19991224.2 - Require install-catalog at post-install and pre-uninstall time (#181068). From 23fe828632183d6b9a1a961df5d1057a89451ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 13 Aug 2007 11:34:02 +0000 Subject: [PATCH 06/42] - Don't ship the docs, the W3C Documentation License is not an acceptable one per Fedora licensing guidelines. - License: W3C --- html401-dtds.spec | 42 +++++++++++++++++++----------------------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 60b5e67..2da2736 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,27 +8,28 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.3%{?dist} -Summary: HTML 4.01 specification and document type definitions +Release: %{date}.4%{?dist} +Summary: HTML 4.01 document type definitions Group: Applications/Text -License: W3C License +# W3C Software License for DTDs etc: +# http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620#DTD +License: W3C URL: http://www.w3.org/TR/1999/REC-html401-%{date}/ Source0: http://www.w3.org/TR/1999/REC-html401-%{date}/html40.tgz Patch0: %{name}-catalog.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: perl(File::Spec) Requires: sgml-common Requires(post): /usr/bin/install-catalog Requires(preun): /usr/bin/install-catalog %description -This package provides the HTML 4.01 specification and the three DTDs -(strict, frameset, and transitional). The DTDs are required for -processing HTML 4.01 document instances using SGML tools such as -OpenSP, OpenJade, or SGMLSpm. +This package provides the three HTML 4.01 DTDs (strict, frameset, and +transitional). The DTDs are required for processing HTML 4.01 +document instances using SGML tools such as OpenSP, OpenJade, or +SGMLSpm. %prep @@ -40,22 +41,13 @@ OpenSP, OpenJade, or SGMLSpm. %install -rm -rf $RPM_BUILD_ROOT __docs +rm -rf $RPM_BUILD_ROOT -abs2rel() { perl -MFile::Spec -e 'print File::Spec->abs2rel(@ARGV)' "$@" ; } -docdir=%{_docdir}/%{name}-%{version} +install -dm 755 $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 +install -pm 644 *.dtd *.cat *.ent *.decl \ + $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 -mkdir __docs -cp -pR *.html $(find * -maxdepth 1 -type d -not -name __docs) __docs -ln -s cover.html __docs/index.html - -mkdir -p $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 -for file in *.dtd *.cat *.ent *.decl ; do - cp -p $file $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 - ln -s $(abs2rel %{_datadir}/sgml/html/4.01/$file $docdir) __docs/$file -done - -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sgml +install -dm 755 $RPM_BUILD_ROOT%{_sysconfdir}/sgml cd $RPM_BUILD_ROOT%{_sysconfdir}/sgml touch %{name}-%{version}-%{release}.soc ln -s %{name}-%{version}-%{release}.soc %{name}.soc @@ -79,13 +71,17 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(644,root,root,755) -%doc __docs/* %ghost %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc %{_sysconfdir}/sgml/%{name}.soc %{_datadir}/sgml/html/ %changelog +* Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.4 +- Don't ship the docs, the W3C Documentation License is not an acceptable + one per Fedora licensing guidelines. +- License: W3C + * Fri Sep 15 2006 Ville Skyttä - 4.01-19991224.3 - Rebuild. From 10e04d7319a5a8caa0e2c7003e9106673b289e9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 13 Aug 2007 11:48:19 +0000 Subject: [PATCH 07/42] - Don't use %{dist}. --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 2da2736..3599ba9 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.4%{?dist} +Release: %{date}.5 Summary: HTML 4.01 document type definitions Group: Applications/Text @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.5 +- Don't use %%{dist}. + * Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.4 - Don't ship the docs, the W3C Documentation License is not an acceptable one per Fedora licensing guidelines. From f6a9a51a4fc57c92ea72c6ed4fca7a7cc987e641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 20 Feb 2009 20:54:37 +0000 Subject: [PATCH 08/42] - Prune nondistributable content from source tarball. --- .cvsignore | 2 +- html401-dtds-prepare-tarball.sh | 20 ++++++++++++++++++++ html401-dtds.spec | 11 ++++++++--- sources | 2 +- 4 files changed, 30 insertions(+), 5 deletions(-) create mode 100755 html401-dtds-prepare-tarball.sh diff --git a/.cvsignore b/.cvsignore index 603ad23..2a7ac8f 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -html40.tgz +html401-dtds-19991224.tar.bz2 diff --git a/html401-dtds-prepare-tarball.sh b/html401-dtds-prepare-tarball.sh new file mode 100755 index 0000000..36948c5 --- /dev/null +++ b/html401-dtds-prepare-tarball.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +# Prune content from upstream tarball: +# https://www.redhat.com/archives/fedora-legal-list/2009-February/msg00015.html + +date="19991224" +url="http://www.w3.org/TR/1999/REC-html401-$date/html40.tgz" + +mkdir html401-dtds +cd html401-dtds + +curl -O $url +tar zxf $(basename $url) +rm -r $(find . -maxdepth 1 -mindepth 1 -type d) $(basename $url) + +cd .. +tar jcvf html401-dtds-$date.tar.bz2 html401-dtds +rm -r html401-dtds diff --git a/html401-dtds.spec b/html401-dtds.spec index 3599ba9..143d7ff 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.5 +Release: %{date}.8 Summary: HTML 4.01 document type definitions Group: Applications/Text @@ -16,7 +16,9 @@ Group: Applications/Text # http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620#DTD License: W3C URL: http://www.w3.org/TR/1999/REC-html401-%{date}/ -Source0: http://www.w3.org/TR/1999/REC-html401-%{date}/html40.tgz +# Source0 generated with Source99, see comments in the script +Source0: %{name}-%{date}.tar.bz2 +Source99: %{name}-prepare-tarball.sh Patch0: %{name}-catalog.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -33,7 +35,7 @@ SGMLSpm. %prep -%setup -q -c +%setup -q -n %{name} %patch0 -p0 @@ -77,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 20 2009 Ville Skyttä - 4.01-19991224.8 +- Prune nondistributable content from source tarball. + * Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.5 - Don't use %%{dist}. diff --git a/sources b/sources index ca2a8f7..3560bfa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1ed76627ba80816079649f67023ec7ab html40.tgz +97b8858e7f8bcc69d52ee43ca30fa85e html401-dtds-19991224.tar.bz2 From fe36dd18c1b5c640e6f63282fc88e092a5747b52 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 04:09:01 +0000 Subject: [PATCH 09/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 143d7ff..592a5d4 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.8 +Release: %{date}.9 Summary: HTML 4.01 document type definitions Group: Applications/Text @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 24 2009 Fedora Release Engineering - 4.01-19991224.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Feb 20 2009 Ville Skyttä - 4.01-19991224.8 - Prune nondistributable content from source tarball. From f8f730c3c26cdee9f2505df9353079ffb3df962d Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 25 Jul 2009 02:15:31 +0000 Subject: [PATCH 10/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 592a5d4..fb5915c 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.9 +Release: %{date}.10 Summary: HTML 4.01 document type definitions Group: Applications/Text @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 4.01-19991224.10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Feb 24 2009 Fedora Release Engineering - 4.01-19991224.9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From bcf3e0f049dfa3dd95fd0468a2c248db8afaaeab Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:54:53 +0000 Subject: [PATCH 11/42] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e377e9f..e95f3ca 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: html401-dtds -# $Id$ +# $Id: Makefile,v 1.1 2006/06/21 06:53:16 scop Exp $ NAME := html401-dtds SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From cc4ecdc140d541be4c7379c6d1294ad9cb8e9f7e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 17:49:24 +0000 Subject: [PATCH 12/42] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index e95f3ca..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: html401-dtds -# $Id: Makefile,v 1.1 2006/06/21 06:53:16 scop Exp $ -NAME := html401-dtds -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From b6b3fbba6d48e24f92bbfcb90356a8026901ed7e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 03:30:13 -0600 Subject: [PATCH 13/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index fb5915c..d1600b4 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.10 +Release: %{date}.11 Summary: HTML 4.01 document type definitions Group: Applications/Text @@ -79,6 +79,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 4.01-19991224.11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 4.01-19991224.10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 50198ec74e9a2c89a0700eb2ac005325e2cd43a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 2 Dec 2011 00:41:28 +0200 Subject: [PATCH 14/42] Add system entries to catalog. Drop specfile constructs no longer needed with Fedora or EL6+. --- html401-dtds-catalog.patch | 56 ++++++++++++++++++++++++++------------ html401-dtds.spec | 46 ++++++++++++++----------------- 2 files changed, 60 insertions(+), 42 deletions(-) diff --git a/html401-dtds-catalog.patch b/html401-dtds-catalog.patch index d5d15a5..cf2447b 100644 --- a/html401-dtds-catalog.patch +++ b/html401-dtds-catalog.patch @@ -1,27 +1,49 @@ ---- HTML4.cat.orig 1999-12-25 01:26:00.000000000 +0200 -+++ HTML4.cat 2004-06-20 14:03:06.021819048 +0300 -@@ -6,3 +6,24 @@ +diff -up html401-dtds/HTML4.cat.orig html401-dtds/HTML4.cat +--- html401-dtds/HTML4.cat.orig 1999-12-25 01:26:00.000000000 +0200 ++++ html401-dtds/HTML4.cat 2011-12-02 00:34:21.235252388 +0200 +@@ -6,3 +6,45 @@ PUBLIC "-//W3C//DTD HTML 4.01 Frameset// PUBLIC "-//W3C//ENTITIES Latin1//EN//HTML" HTMLlat1.ent PUBLIC "-//W3C//ENTITIES Special//EN//HTML" HTMLspecial.ent PUBLIC "-//W3C//ENTITIES Symbols//EN//HTML" HTMLsymbol.ent + ++-- Fedora modification: added SYSTEMs -- ++ ++SYSTEM "http://www.w3.org/TR/html4/strict.dtd" "strict.dtd" ++SYSTEM "http://www.w3.org/TR/html4/loose.dtd" "loose.dtd" ++SYSTEM "http://www.w3.org/TR/html4/frameset.dtd" "frameset.dtd" ++SYSTEM "http://www.w3.org/TR/html4/HTMLlat1.ent" "HTMLlat1.ent" ++SYSTEM "http://www.w3.org/TR/html4/HTMLsymbol.ent" "HTMLsymbol.ent" ++SYSTEM "http://www.w3.org/TR/html4/HTMLspecial.ent" "HTMLspecial.ent" ++SYSTEM "http://www.w3.org/TR/html401/strict.dtd" "strict.dtd" ++SYSTEM "http://www.w3.org/TR/html401/loose.dtd" "loose.dtd" ++SYSTEM "http://www.w3.org/TR/html401/frameset.dtd" "frameset.dtd" ++SYSTEM "http://www.w3.org/TR/html401/HTMLlat1.ent" "HTMLlat1.ent" ++SYSTEM "http://www.w3.org/TR/html401/HTMLsymbol.ent" "HTMLsymbol.ent" ++SYSTEM "http://www.w3.org/TR/html401/HTMLspecial.ent" "HTMLspecial.ent" ++SYSTEM "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd" "strict.dtd" ++SYSTEM "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd" "loose.dtd" ++SYSTEM "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd" "frameset.dtd" ++SYSTEM "http://www.w3.org/TR/1999/REC-html401-19991224/HTMLlat1.ent" "HTMLlat1.ent" ++SYSTEM "http://www.w3.org/TR/1999/REC-html401-19991224/HTMLsymbol.ent" "HTMLsymbol.ent" ++SYSTEM "http://www.w3.org/TR/1999/REC-html401-19991224/HTMLspecial.ent" "HTMLspecial.ent" ++ +-- Fedora modification: added DTDDECLs -- + -+DTDDECL "-//W3C//DTD HTML 4.01//EN" HTML4.decl -+DTDDECL "-//W3C//DTD HTML 4.01 Transitional//EN" HTML4.decl -+DTDDECL "-//W3C//DTD HTML 4.01 Frameset//EN" HTML4.decl -+DTDDECL "-//W3C//ENTITIES Latin1//EN//HTML" HTML4.decl -+DTDDECL "-//W3C//ENTITIES Special//EN//HTML" HTML4.decl -+DTDDECL "-//W3C//ENTITIES Symbols//EN//HTML" HTML4.decl ++DTDDECL "-//W3C//DTD HTML 4.01//EN" "HTML4.decl" ++DTDDECL "-//W3C//DTD HTML 4.01 Transitional//EN" "HTML4.decl" ++DTDDECL "-//W3C//DTD HTML 4.01 Frameset//EN" "HTML4.decl" ++DTDDECL "-//W3C//ENTITIES Latin1//EN//HTML" "HTML4.decl" ++DTDDECL "-//W3C//ENTITIES Special//EN//HTML" "HTML4.decl" ++DTDDECL "-//W3C//ENTITIES Symbols//EN//HTML" "HTML4.decl" + +-- Fedora modification: added additional public id "aliases" defined in + ISO-HTML Annex B, http://purl.org/NET/ISO+IEC.15445/Users-Guide.html#DTD -- + -+PUBLIC "-//W3C//ENTITIES Latin alphabet No. 1//EN//HTML" HTMLlat1.ent -+PUBLIC "-//W3C//ENTITIES Full Latin 1//EN//HTML" HTMLlat1.ent -+PUBLIC "-//W3C//ENTITIES Latin 1//EN//HTML" HTMLlat1.ent -+PUBLIC "-//W3C//ENTITIES Symbolic//EN//HTML" HTMLsymbol.ent -+DTDDECL "-//W3C//ENTITIES Latin alphabet No. 1//EN//HTML" HTML4.decl -+DTDDECL "-//W3C//ENTITIES Full Latin 1//EN//HTML" HTML4.decl -+DTDDECL "-//W3C//ENTITIES Latin 1//EN//HTML" HTML4.decl -+DTDDECL "-//W3C//ENTITIES Symbolic//EN//HTML" HTML4.decl ++PUBLIC "-//W3C//ENTITIES Latin alphabet No. 1//EN//HTML" "HTMLlat1.ent" ++PUBLIC "-//W3C//ENTITIES Full Latin 1//EN//HTML" "HTMLlat1.ent" ++PUBLIC "-//W3C//ENTITIES Latin 1//EN//HTML" "HTMLlat1.ent" ++PUBLIC "-//W3C//ENTITIES Symbolic//EN//HTML" "HTMLsymbol.ent" ++DTDDECL "-//W3C//ENTITIES Latin alphabet No. 1//EN//HTML" "HTML4.decl" ++DTDDECL "-//W3C//ENTITIES Full Latin 1//EN//HTML" "HTML4.decl" ++DTDDECL "-//W3C//ENTITIES Latin 1//EN//HTML" "HTML4.decl" ++DTDDECL "-//W3C//ENTITIES Symbolic//EN//HTML" "HTML4.decl" diff --git a/html401-dtds.spec b/html401-dtds.spec index d1600b4..7657969 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,10 +8,9 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.11 +Release: %{date}.12 Summary: HTML 4.01 document type definitions -Group: Applications/Text # W3C Software License for DTDs etc: # http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620#DTD License: W3C @@ -20,7 +19,6 @@ URL: http://www.w3.org/TR/1999/REC-html401-%{date}/ Source0: %{name}-%{date}.tar.bz2 Source99: %{name}-prepare-tarball.sh Patch0: %{name}-catalog.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: sgml-common @@ -36,14 +34,13 @@ SGMLSpm. %prep %setup -q -n %{name} -%patch0 -p0 +%patch0 -p1 %build %install -rm -rf $RPM_BUILD_ROOT install -dm 755 $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 install -pm 644 *.dtd *.cat *.ent *.decl \ @@ -56,10 +53,6 @@ ln -s %{name}-%{version}-%{release}.soc %{name}.soc cd - -%clean -rm -rf $RPM_BUILD_ROOT - - %post /usr/bin/install-catalog --add \ %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc \ @@ -72,13 +65,16 @@ rm -rf $RPM_BUILD_ROOT %files -%defattr(644,root,root,755) %ghost %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc %{_sysconfdir}/sgml/%{name}.soc %{_datadir}/sgml/html/ %changelog +* Thu Dec 1 2011 Ville Skyttä - 4.01-19991224.12 +- Add system entries to catalog. +- Drop specfile constructs no longer needed with Fedora or EL6+. + * Wed Feb 09 2011 Fedora Release Engineering - 4.01-19991224.11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild @@ -88,54 +84,54 @@ rm -rf $RPM_BUILD_ROOT * Tue Feb 24 2009 Fedora Release Engineering - 4.01-19991224.9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Fri Feb 20 2009 Ville Skyttä - 4.01-19991224.8 +* Fri Feb 20 2009 Ville Skyttä - 4.01-19991224.8 - Prune nondistributable content from source tarball. -* Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.5 +* Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.5 - Don't use %%{dist}. -* Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.4 +* Mon Aug 13 2007 Ville Skyttä - 4.01-19991224.4 - Don't ship the docs, the W3C Documentation License is not an acceptable one per Fedora licensing guidelines. - License: W3C -* Fri Sep 15 2006 Ville Skyttä - 4.01-19991224.3 +* Fri Sep 15 2006 Ville Skyttä - 4.01-19991224.3 - Rebuild. -* Tue Jun 20 2006 Ville Skyttä - 4.01-19991224.2 +* Tue Jun 20 2006 Ville Skyttä - 4.01-19991224.2 - Require install-catalog at post-install and pre-uninstall time (#181068). -* Sun Jun 18 2006 Ville Skyttä - 4.01-19991224.1 +* Sun Jun 18 2006 Ville Skyttä - 4.01-19991224.1 - Include specification date in release field (#181068). - Make doc symlinks relative. -* Sat Feb 25 2006 Ville Skyttä - 4.01-0.3 +* Sat Feb 25 2006 Ville Skyttä - 4.01-0.3 - Improve description (#181068). - Fold specification into main package as %%doc (#181068). -* Wed Jun 15 2005 Ville Skyttä - 4.01-0.2 +* Wed Jun 15 2005 Ville Skyttä - 4.01-0.2 - Rebuild for FC4. -* Sat Apr 16 2005 Ville Skyttä - 4.01-0.1 +* Sat Apr 16 2005 Ville Skyttä - 4.01-0.1 - Use -maxdepth before other options to find(1). -* Tue Jun 22 2004 Ville Skyttä - 0:4.01-0.fdr.6 +* Tue Jun 22 2004 Ville Skyttä - 0:4.01-0.fdr.6 - Move files below %%{_datadir}/sgml/html/4.01, remove alternatives. - Add non-versioned %%{_sysconfdir}/sgml/%%{name}.soc symlink. -* Sun Jun 20 2004 Ville Skyttä - 0:4.01-0.fdr.5 +* Sun Jun 20 2004 Ville Skyttä - 0:4.01-0.fdr.5 - Add additional public id "aliases" for entities to SGML catalog as defined in ISO-HTML Annex B, http://purl.org/NET/ISO+IEC.15445/Users-Guide.html#DTD -* Sat Jun 19 2004 Ville Skyttä - 0:4.01-0.fdr.4 +* Sat Jun 19 2004 Ville Skyttä - 0:4.01-0.fdr.4 - Add DTDDECLs to SGML catalog. -* Sun Dec 7 2003 Ville Skyttä - 0:4.01-0.fdr.3 +* Sun Dec 7 2003 Ville Skyttä - 0:4.01-0.fdr.3 - Use alternatives to install preferred HTML DTD location. -* Sat Dec 6 2003 Ville Skyttä - 0:4.01-0.fdr.2 +* Sat Dec 6 2003 Ville Skyttä - 0:4.01-0.fdr.2 - Install dir directly under %%{_datadir}/sgml. - Spec cleanups. -* Tue Dec 2 2003 Ville Skyttä - 0:4.01-0.fdr.1 +* Tue Dec 2 2003 Ville Skyttä - 0:4.01-0.fdr.1 - First build. From 8b742828a742a10e2f2353edecfe498b76080506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 2 Dec 2011 00:43:04 +0200 Subject: [PATCH 15/42] :( --- html401-dtds.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 7657969..7ab9575 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12 +Release: %{date}.12%{?dist} Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: From f58e060e33d8a3a275d3a61ef3dc95d46b09c82b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 22:59:38 -0600 Subject: [PATCH 16/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 7ab9575..efdf00a 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist} +Release: %{date}.12%{?dist}.1 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 4.01-19991224.12.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Thu Dec 1 2011 Ville Skyttä - 4.01-19991224.12 - Add system entries to catalog. - Drop specfile constructs no longer needed with Fedora or EL6+. From d0c4f79ce906591ebac092bf6edfb105291066cc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 08:11:25 -0500 Subject: [PATCH 17/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index efdf00a..13bec27 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.1 +Release: %{date}.12%{?dist}.2 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 4.01-19991224.12.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 4.01-19991224.12.1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 423ff1d71aa2699ce85a24467afb9e3cf732b1d4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 19:15:07 -0600 Subject: [PATCH 18/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 13bec27..dfb8e94 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.2 +Release: %{date}.12%{?dist}.3 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 4.01-19991224.12.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Thu Jul 19 2012 Fedora Release Engineering - 4.01-19991224.12.2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From c7d43c4fbe7899f70cf33b1e27c51e8981b13ed6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 12:57:21 -0500 Subject: [PATCH 19/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index dfb8e94..61b9421 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.3 +Release: %{date}.12%{?dist}.4 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 4.01-19991224.12.4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 4.01-19991224.12.3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From e8ab402a8a99870207f4507730b6e49689699aed Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 15:27:38 -0500 Subject: [PATCH 20/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 61b9421..f3ef260 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.4 +Release: %{date}.12%{?dist}.5 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 4.01-19991224.12.5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 4.01-19991224.12.4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From a2df24f941fb9369769e6c9504f90be0783e6b2e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 10:34:16 +0000 Subject: [PATCH 21/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index f3ef260..a179a35 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.5 +Release: %{date}.12%{?dist}.6 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 4.01-19991224.12.6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 4.01-19991224.12.5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 2731b88dbaf8198148260d1be76411832a063bf1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 23:54:52 +0000 Subject: [PATCH 22/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index a179a35..7d446c8 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.6 +Release: %{date}.12%{?dist}.7 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 4.01-19991224.12.7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 4.01-19991224.12.6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 5c647a5675a787ab538ddd03d7f510970e862eca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 12:44:22 +0000 Subject: [PATCH 23/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 7d446c8..79663e9 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.7 +Release: %{date}.12%{?dist}.8 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 4.01-19991224.12.8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 4.01-19991224.12.7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From d7639c6daf5c084669663c84e0409bf5f6aa8c78 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 12:50:50 +0000 Subject: [PATCH 24/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 79663e9..e8dc957 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.8 +Release: %{date}.12%{?dist}.9 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 4.01-19991224.12.9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 4.01-19991224.12.8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 94cd53f5c2fa80b8d776b5c5ecf397d2324ca30f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 16:28:56 +0000 Subject: [PATCH 25/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index e8dc957..fffeb1b 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.9 +Release: %{date}.12%{?dist}.10 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 4.01-19991224.12.10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 4.01-19991224.12.9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 18c86ff2eaf14a6a05f8a1512def8a9d2a81348c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 05:05:39 +0000 Subject: [PATCH 26/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index fffeb1b..be050d8 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.10 +Release: %{date}.12%{?dist}.11 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 4.01-19991224.12.11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 4.01-19991224.12.10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From e2639412936708cc7a617f917adc1ae1453701d0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 02:25:51 +0000 Subject: [PATCH 27/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index be050d8..64a7314 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.11 +Release: %{date}.12%{?dist}.12 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 4.01-19991224.12.12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 4.01-19991224.12.11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From e11226ef9d02942ae211fda3f4ed3e0f904f419f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 08:35:41 +0000 Subject: [PATCH 28/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 64a7314..2ce0b33 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.12 +Release: %{date}.12%{?dist}.13 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 4.01-19991224.12.13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 4.01-19991224.12.12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 5c5cb3d3104a581cc00d79f0b880023ad477b61a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 04:25:47 +0000 Subject: [PATCH 29/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 2ce0b33..cc7ec94 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.13 +Release: %{date}.12%{?dist}.14 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 4.01-19991224.12.14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 4.01-19991224.12.13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From ee9483f0d24a400200710b19994b6a7e2620d810 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 00:59:50 +0000 Subject: [PATCH 30/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index cc7ec94..1295c32 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.14 +Release: %{date}.12%{?dist}.15 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 4.01-19991224.12.15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 4.01-19991224.12.14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 9d52444163fc7d6893dadf2dab3e893ee86615b4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 13:35:16 +0000 Subject: [PATCH 31/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 1295c32..92a04e1 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.15 +Release: %{date}.12%{?dist}.16 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 4.01-19991224.12.16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 4.01-19991224.12.15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From aa8e8f03adba4c114a15860b73113459a6b40c79 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 07:44:35 +0000 Subject: [PATCH 32/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 92a04e1..98beb94 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.16 +Release: %{date}.12%{?dist}.17 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 4.01-19991224.12.17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 4.01-19991224.12.16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 54df029271674856bbffbc94d5651573f3147c46 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 12:27:49 +0000 Subject: [PATCH 33/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 98beb94..53b3e0c 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.17 +Release: %{date}.12%{?dist}.18 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 4.01-19991224.12.18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 4.01-19991224.12.17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From f430a286c1ef11ab2a921e96894530847731899d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 13:46:17 +0000 Subject: [PATCH 34/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 53b3e0c..00117aa 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.18 +Release: %{date}.12%{?dist}.19 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 4.01-19991224.12.19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jan 20 2022 Fedora Release Engineering - 4.01-19991224.12.18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From b7cfe1a71b2d037c7d389c7d1cc6e50e10544fe3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 12:15:15 +0000 Subject: [PATCH 35/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 00117aa..f489f4b 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.19 +Release: %{date}.12%{?dist}.20 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 4.01-19991224.12.20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Thu Jul 21 2022 Fedora Release Engineering - 4.01-19991224.12.19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From e36e25b45295ef1eb57a3b3a8ef859604b620148 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 06:27:27 +0000 Subject: [PATCH 36/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index f489f4b..a91eadd 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.20 +Release: %{date}.12%{?dist}.21 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -71,6 +71,9 @@ cd - %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 4.01-19991224.12.21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Thu Jan 19 2023 Fedora Release Engineering - 4.01-19991224.12.20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 0cdac9ba3789615eeff4e5e7b9698257752b4915 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Thu, 21 Sep 2023 13:56:08 -0400 Subject: [PATCH 37/42] Minor spec file cleanups Verified the License tag carries an SPDX expression Signed-off-by: David Cantrell --- html401-dtds.spec | 45 +++++++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index a91eadd..59df1fe 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -4,25 +4,25 @@ # use a hardcoded system id. Well, until something installs another, and # incompatible set of entities using the same public id anyway... -%define date 19991224 +%define date 19991224 -Name: html401-dtds -Version: 4.01 -Release: %{date}.12%{?dist}.21 -Summary: HTML 4.01 document type definitions +Name: html401-dtds +Version: 4.01 +Release: %{date}.12%{?dist}.22 +Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: # http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620#DTD -License: W3C -URL: http://www.w3.org/TR/1999/REC-html401-%{date}/ +License: W3C +URL: http://www.w3.org/TR/1999/REC-html401-%{date}/ # Source0 generated with Source99, see comments in the script -Source0: %{name}-%{date}.tar.bz2 -Source99: %{name}-prepare-tarball.sh -Patch0: %{name}-catalog.patch +Source0: %{name}-%{date}.tar.bz2 +Source99: %{name}-prepare-tarball.sh +Patch0: %{name}-catalog.patch -BuildArch: noarch -Requires: sgml-common -Requires(post): /usr/bin/install-catalog +BuildArch: noarch +Requires: sgml-common +Requires(post): /usr/bin/install-catalog Requires(preun): /usr/bin/install-catalog %description @@ -34,7 +34,7 @@ SGMLSpm. %prep %setup -q -n %{name} -%patch0 -p1 +%patch -P 0 -p1 %build @@ -42,15 +42,12 @@ SGMLSpm. %install -install -dm 755 $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 -install -pm 644 *.dtd *.cat *.ent *.decl \ - $RPM_BUILD_ROOT%{_datadir}/sgml/html/4.01 +install -dm 0755 %{buildroot}%{_datadir}/sgml/html/4.01 +install -pm 0644 *.dtd *.cat *.ent *.decl %{buildroot}%{_datadir}/sgml/html/4.01 -install -dm 755 $RPM_BUILD_ROOT%{_sysconfdir}/sgml -cd $RPM_BUILD_ROOT%{_sysconfdir}/sgml -touch %{name}-%{version}-%{release}.soc -ln -s %{name}-%{version}-%{release}.soc %{name}.soc -cd - +install -dm 0755 %{buildroot}%{_sysconfdir}/sgml +touch %{buildroot}%{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc +ln -s %{name}-%{version}-%{release}.soc %{buildroot}%{_sysconfdir}/sgml/%{name}.soc %post @@ -71,6 +68,10 @@ cd - %changelog +* Thu Sep 21 2023 David Cantrell - 4.01-19991224.12.22 +- Minor spec file cleanups +- Verified the License tag carries an SPDX expression + * Thu Jul 20 2023 Fedora Release Engineering - 4.01-19991224.12.21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 1baef1a8ac9a9604dcf9f3fe5b8b9fc4ebc117a6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jan 2024 22:13:24 +0000 Subject: [PATCH 38/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 59df1fe..761e892 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.22 +Release: %{date}.12%{?dist}.23 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -68,6 +68,9 @@ ln -s %{name}-%{version}-%{release}.soc %{buildroot}%{_sysconfdir}/sgml/%{name}. %changelog +* Sat Jan 20 2024 Fedora Release Engineering - 4.01-19991224.12.23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Sep 21 2023 David Cantrell - 4.01-19991224.12.22 - Minor spec file cleanups - Verified the License tag carries an SPDX expression From 243f63e3a41630ad41c7478336a2977f4e6c0329 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jan 2024 21:47:49 +0000 Subject: [PATCH 39/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 761e892..675a677 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.23 +Release: %{date}.12%{?dist}.24 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -68,6 +68,9 @@ ln -s %{name}-%{version}-%{release}.soc %{buildroot}%{_sysconfdir}/sgml/%{name}. %changelog +* Wed Jan 24 2024 Fedora Release Engineering - 4.01-19991224.12.24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jan 20 2024 Fedora Release Engineering - 4.01-19991224.12.23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From b2e8e33cbd1f1c5aa04582c0a72d5446925864dc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 18 Jul 2024 09:23:15 +0000 Subject: [PATCH 40/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 675a677..d496501 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.24 +Release: %{date}.12%{?dist}.25 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -68,6 +68,9 @@ ln -s %{name}-%{version}-%{release}.soc %{buildroot}%{_sysconfdir}/sgml/%{name}. %changelog +* Thu Jul 18 2024 Fedora Release Engineering - 4.01-19991224.12.25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Wed Jan 24 2024 Fedora Release Engineering - 4.01-19991224.12.24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From b3ec0dc4b43420b34073d1aef8f8220bad150481 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jan 2025 06:03:43 +0000 Subject: [PATCH 41/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index d496501..710eb47 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.25 +Release: %{date}.12%{?dist}.26 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -68,6 +68,9 @@ ln -s %{name}-%{version}-%{release}.soc %{buildroot}%{_sysconfdir}/sgml/%{name}. %changelog +* Fri Jan 17 2025 Fedora Release Engineering - 4.01-19991224.12.26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Jul 18 2024 Fedora Release Engineering - 4.01-19991224.12.25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From e3c74414a87db9e2e46bc6ead5361e1b78d2552b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 24 Jul 2025 17:05:53 +0000 Subject: [PATCH 42/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- html401-dtds.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html401-dtds.spec b/html401-dtds.spec index 710eb47..8896378 100644 --- a/html401-dtds.spec +++ b/html401-dtds.spec @@ -8,7 +8,7 @@ Name: html401-dtds Version: 4.01 -Release: %{date}.12%{?dist}.26 +Release: %{date}.12%{?dist}.27 Summary: HTML 4.01 document type definitions # W3C Software License for DTDs etc: @@ -68,6 +68,9 @@ ln -s %{name}-%{version}-%{release}.soc %{buildroot}%{_sysconfdir}/sgml/%{name}. %changelog +* Thu Jul 24 2025 Fedora Release Engineering - 4.01-19991224.12.27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri Jan 17 2025 Fedora Release Engineering - 4.01-19991224.12.26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild