Compare commits
No commits in common. "c8s" and "c9s" have entirely different histories.
@ -1,6 +1,6 @@
|
|||||||
--- !Policy
|
--- !Policy
|
||||||
product_versions:
|
product_versions:
|
||||||
- rhel-8
|
- rhel-9
|
||||||
decision_context: osci_compose_gate
|
decision_context: osci_compose_gate
|
||||||
rules:
|
rules:
|
||||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: A DSSSL implementation
|
Summary: A DSSSL implementation
|
||||||
Name: openjade
|
Name: openjade
|
||||||
Version: 1.3.2
|
Version: 1.3.2
|
||||||
Release: 57%{?dist}
|
Release: 72%{?dist}
|
||||||
Requires: sgml-common
|
Requires: sgml-common
|
||||||
URL: http://openjade.sourceforge.net/
|
URL: http://openjade.sourceforge.net/
|
||||||
Source: http://download.sourceforge.net/openjade/openjade-%{version}.tar.gz
|
Source: http://download.sourceforge.net/openjade/openjade-%{version}.tar.gz
|
||||||
@ -24,15 +24,17 @@ Patch4: openjade-1.3.2-gcc46.patch
|
|||||||
#use Getopt:Std to prevent build failure
|
#use Getopt:Std to prevent build failure
|
||||||
Patch5: openjade-getoptperl.patch
|
Patch5: openjade-getoptperl.patch
|
||||||
License: DMIT
|
License: DMIT
|
||||||
Group: Applications/Text
|
|
||||||
|
|
||||||
#Last jade version is from Red Hat 6.2
|
#Last jade version is from Red Hat 6.2
|
||||||
Provides: jade = %{version}-%{release}
|
Provides: jade = %{version}-%{release}
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: make
|
||||||
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: opensp-devel
|
BuildRequires: opensp-devel
|
||||||
|
|
||||||
BuildRequires: perl-interpreter
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl-POSIX
|
||||||
|
BuildRequires: perl-Getopt-Std
|
||||||
|
|
||||||
%description
|
%description
|
||||||
OpenJade is an implementation of the ISO/IEC 10179:1996 standard DSSSL
|
OpenJade is an implementation of the ISO/IEC 10179:1996 standard DSSSL
|
||||||
@ -84,8 +86,11 @@ cd -
|
|||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.so $RPM_BUILD_ROOT%{_libdir}/*.la
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.so $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
|
|
||||||
|
# Stop check-rpaths from complaining about standard runpaths.
|
||||||
|
export QA_RPATHS=0x0001
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
%{?ldconfig}
|
||||||
/usr/bin/install-catalog --add /etc/sgml/%{name}-%{version}-%{release}.soc \
|
/usr/bin/install-catalog --add /etc/sgml/%{name}-%{version}-%{release}.soc \
|
||||||
%{_datadir}/sgml/%{name}-%{version}/catalog >/dev/null 2>/dev/null || :
|
%{_datadir}/sgml/%{name}-%{version}/catalog >/dev/null 2>/dev/null || :
|
||||||
|
|
||||||
@ -93,12 +98,18 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.so $RPM_BUILD_ROOT%{_libdir}/*.la
|
|||||||
/usr/bin/install-catalog --remove /etc/sgml/%{name}-%{version}-%{release}.soc \
|
/usr/bin/install-catalog --remove /etc/sgml/%{name}-%{version}-%{release}.soc \
|
||||||
%{_datadir}/sgml/%{name}-%{version}/catalog >/dev/null 2>/dev/null || :
|
%{_datadir}/sgml/%{name}-%{version}/catalog >/dev/null 2>/dev/null || :
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%ldconfig_postun
|
||||||
|
|
||||||
|
# The install-catalog removes the file making uninstallation throw a warning about removing a non-existent file
|
||||||
|
# This file creation suppresses the warning (rhbz#2193429)
|
||||||
|
touch %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc jadedoc/* dsssl/README.jadetex
|
%doc jadedoc/* dsssl/README.jadetex
|
||||||
%doc README COPYING VERSION
|
%doc README COPYING VERSION
|
||||||
%ghost /etc/sgml/%{name}-%{version}-%{release}.soc
|
|
||||||
|
# Removed %%ghost for succesful instalation on OSTree (rhbz#2193429)
|
||||||
|
%verify(not size filedigest mtime) %{_sysconfdir}/sgml/%{name}-%{version}-%{release}.soc
|
||||||
/etc/sgml/%{name}.soc
|
/etc/sgml/%{name}.soc
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/*.so.*
|
||||||
@ -106,6 +117,58 @@ rm -f $RPM_BUILD_ROOT%{_libdir}/*.so $RPM_BUILD_ROOT%{_libdir}/*.la
|
|||||||
%{_datadir}/sgml/%{name}-%{version}
|
%{_datadir}/sgml/%{name}-%{version}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Oct 15 2023 Ondrej Sloup <osloup@redhat.com> - 1.3.2-72
|
||||||
|
- Add an environment variable to prevent gating from complaining about rpaths (rhbz#2193429)
|
||||||
|
Related: RHEL-11772
|
||||||
|
|
||||||
|
* Mon Sep 18 2023 Ondřej Sloup <osloup@redhat.com> - 1.3.2-71
|
||||||
|
- Add %verify to ignore modified socket file after install
|
||||||
|
- Remove unused OpenSP-1.5 from sources
|
||||||
|
Related: rhbz#2193429
|
||||||
|
|
||||||
|
* Thu Sep 14 2023 Ondřej Sloup <osloup@redhat.com> - 1.3.2-70
|
||||||
|
- Rebuild with gating.yaml to allow automatic tests
|
||||||
|
Related: rhbz#2193429
|
||||||
|
|
||||||
|
* Tue Aug 22 2023 Ondrej Sloup <osloup@redhat.com> - 1.3.2-69
|
||||||
|
- Fix installation on OSTree by removing %%ghost
|
||||||
|
Resolves: rhbz#2193429
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.3.2-68
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.3.2-67
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-66
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 27 2020 Than Ngo <than@redhat.com> - 1.3.2-65
|
||||||
|
- fixed FTBFS
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-64
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-63
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-62
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-61
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-60
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 21 2018 Ondrej Vasik <ovasik@redhat.com> - 1.3.2-59
|
||||||
|
- BuildRequires for gcc-c++ (#1605320)
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-58
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Jul 11 2018 Ondrej Vasik <ovasik@redhat.com> - 1.3.2-57
|
* Wed Jul 11 2018 Ondrej Vasik <ovasik@redhat.com> - 1.3.2-57
|
||||||
- License should be DMIT actually
|
- License should be DMIT actually
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user