Sync from SUSE:SLFO:Main iso_ent revision 34823b6ef96943065402086ce2f86b8d

This commit is contained in:
Adrian Schröter 2024-10-03 17:21:03 +02:00
parent e5173b7809
commit d6f402c255
2 changed files with 38 additions and 35 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Thu Feb 22 13:49:58 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- Use %patch -P N instead of deprecated %patchN.
-------------------------------------------------------------------
Sat May 20 07:49:39 UTC 2023 - Martin Pluskal <mpluskal@suse.com>
- Modernise spec file
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 11 14:11:47 UTC 2012 - coolo@suse.com Mon Jun 11 14:11:47 UTC 2012 - coolo@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package iso_ent # spec file for package iso_ent
# #
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2023 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -12,61 +12,58 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #
%define regcat %{_bindir}/sgml-register-catalog
%define ke_pkg ISOEnts.zip
Name: iso_ent Name: iso_ent
BuildRequires: sgml-skel
BuildRequires: unzip
BuildArch: noarch
Provides: iso-ent
Provides: iso-entities
%define regcat /usr/bin/sgml-register-catalog
PreReq: %{regcat}
Version: 2000.11.03 Version: 2000.11.03
Release: 0 Release: 0
Summary: Character Entity Sets for ISO 8879:1986 Summary: Character Entity Sets for ISO 8879:1986
License: SUSE-Permissive License: SUSE-Permissive
Group: Productivity/Publishing/SGML
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define ke_pkg ISOEnts.zip
Source0: http://www.oasis-open.org/cover/ISOEnts.zip Source0: http://www.oasis-open.org/cover/ISOEnts.zip
Source1: ISOgrk5.gz Source1: ISOgrk5.gz
Patch: iso_ent.dif Patch0: iso_ent.dif
BuildRequires: sgml-skel
BuildRequires: unzip
Requires(pre): %{regcat}
Provides: iso-ent
Provides: iso-entities
BuildArch: noarch
%description %description
Character entity sets for ISO 8879:1986. Character entity sets for ISO 8879:1986.
%define INSTALL install -m755 -s %define INSTALL install -m755 -s
%define INSTALL_DIR install -d -m755 %define INSTALL_DIR install -d -m755
%define INSTALL_DATA install -m644 %define INSTALL_DATA install -m644
%define sgml_dir %{_datadir}/sgml %define sgml_dir %{_datadir}/sgml
%define sgml_config_dir /var/lib/sgml %define sgml_config_dir %{_localstatedir}/lib/sgml
%prep %prep
%setup -n %{name} -c -T %setup -q -n %{name} -c -T
unzip -aq $RPM_SOURCE_DIR/%{ke_pkg} unzip -aq $RPM_SOURCE_DIR/%{ke_pkg}
cp -p $RPM_SOURCE_DIR/ISOgrk5.gz . cp -p $RPM_SOURCE_DIR/ISOgrk5.gz .
gunzip ISOgrk5.gz gunzip ISOgrk5.gz
%patch -p1 %patch -P 0 -p1
%build %build
%install %install
root=$RPM_BUILD_ROOT root=%{buildroot}
# sgml_dir=${root}%{_datadir}/sgml # sgml_dir=${root}%{_datadir}/sgml
# sgml_dir_config=${root}/var/lib/sgml # sgml_dir_config=${root}/var/lib/sgml
sgml_dir_iso=$RPM_BUILD_ROOT%{sgml_dir}/iso-ent sgml_dir_iso=%{buildroot}%{sgml_dir}/iso-ent
sgml_dir_ISO=$RPM_BUILD_ROOT%{sgml_dir}/ISO_8879:1986/entities sgml_dir_ISO=%{buildroot}%{sgml_dir}/ISO_8879:1986/entities
%{INSTALL_DIR} $RPM_BUILD_ROOT%{sgml_config_dir} %{INSTALL_DIR} %{buildroot}%{sgml_config_dir}
%{INSTALL_DIR} $RPM_BUILD_ROOT%{sgml_dir}/iso-ent %{INSTALL_DIR} %{buildroot}%{sgml_dir}/iso-ent
%{INSTALL_DIR} $RPM_BUILD_ROOT%{sgml_dir}/{ISO_8879:1986,ISO_9573-15:1993}/entities %{INSTALL_DIR} %{buildroot}%{sgml_dir}/{ISO_8879:1986,ISO_9573-15:1993}/entities
%{INSTALL_DATA} ISO* $RPM_BUILD_ROOT%{sgml_dir}/iso-ent %{INSTALL_DATA} ISO* %{buildroot}%{sgml_dir}/iso-ent
%{INSTALL_DATA} CATALOG $RPM_BUILD_ROOT%{sgml_config_dir}/CATALOG.iso_ent %{INSTALL_DATA} CATALOG %{buildroot}%{sgml_config_dir}/CATALOG.iso_ent
pushd $RPM_BUILD_ROOT%{sgml_dir} pushd %{buildroot}%{sgml_dir}
ln -sf ../../../var/lib/sgml/CATALOG.iso_ent CATALOG.iso_ent ln -sf ../../..%{_localstatedir}/lib/sgml/CATALOG.iso_ent CATALOG.iso_ent
rm -f ISO_8879-1986 rm -f ISO_8879-1986
ln -s ISO_8879:1986 ISO_8879-1986 ln -s ISO_8879:1986 ISO_8879-1986
popd popd
@ -92,11 +89,11 @@ ln -s ../../iso-ent/ISOnum Numeric_and_Special_Graphic
ln -s ../../iso-ent/ISOpub Publishing ln -s ../../iso-ent/ISOpub Publishing
ln -s ../../iso-ent/ISOtech General_Technical ln -s ../../iso-ent/ISOtech General_Technical
popd popd
pushd $RPM_BUILD_ROOT%{sgml_dir} pushd %{buildroot}%{sgml_dir}
rm -f ISO_9573-15-1993 rm -f ISO_9573-15-1993
ln -s ISO_9573-15:1993 ISO_9573-15-1993 ln -s ISO_9573-15:1993 ISO_9573-15-1993
popd popd
pushd $RPM_BUILD_ROOT%{sgml_dir}/ISO_9573-15:1993/entities pushd %{buildroot}%{sgml_dir}/ISO_9573-15:1993/entities
rm -f * 2>/dev/null rm -f * 2>/dev/null
ln -s ../../iso-ent/ISOgrk5 Extra_Classical_Greek_Letters ln -s ../../iso-ent/ISOgrk5 Extra_Classical_Greek_Letters
popd popd
@ -117,13 +114,9 @@ if [ "$1" = "0" -a -x %{regcat} ]; then
done done
fi fi
%clean
rm -fr $RPM_BUILD_ROOT
%files %files
%defattr(-, root, root)
# %doc README.SuSE # %doc README.SuSE
%config /var/lib/sgml/CATALOG.iso_ent %config %{_localstatedir}/lib/sgml/CATALOG.iso_ent
%{sgml_dir}/CATALOG.iso_ent %{sgml_dir}/CATALOG.iso_ent
%{sgml_dir}/iso-ent %{sgml_dir}/iso-ent
%{sgml_dir}/ISO_8879-1986 %{sgml_dir}/ISO_8879-1986