Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/texi2html-5.0.tar.bz2
|
texi2html-1.82.tar.bz2
|
||||||
|
/texi2html-5.0.tar.bz2
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
20072444ce814d0e74fd7e467d1506908f8c889c SOURCES/texi2html-5.0.tar.bz2
|
|
||||||
@ -1,11 +1,10 @@
|
|||||||
Name: texi2html
|
Name: texi2html
|
||||||
Version: 5.0
|
Version: 5.0
|
||||||
Release: 8%{?dist}
|
Release: 24%{?dist}
|
||||||
# GPLv2+ is for the code
|
# GPLv2+ is for the code
|
||||||
# OFSFDL (Old FSF Documentation License) for the documentation
|
# OFSFDL (Old FSF Documentation License) for the documentation
|
||||||
# CC-BY-SA or GPLv2 for the images
|
# CC-BY-SA or GPLv2 for the images
|
||||||
License: GPLv2+ and OFSFDL and (CC-BY-SA or GPLv2)
|
License: GPL-2.0-or-later AND LicenseRef-OFSFDL AND (CC-BY-SA-3.0 OR GPL-2.0-only)
|
||||||
Group: Applications/Text
|
|
||||||
Summary: A highly customizable texinfo to HTML and other formats translator
|
Summary: A highly customizable texinfo to HTML and other formats translator
|
||||||
Source0: http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.bz2
|
Source0: http://download.savannah.nongnu.org/releases/%{name}/%{name}-%{version}.tar.bz2
|
||||||
# Do not install bundled Unicode-EastAsianWidth, bug #1154436,
|
# Do not install bundled Unicode-EastAsianWidth, bug #1154436,
|
||||||
@ -14,13 +13,13 @@ Patch0: texi2html-5.0-Do-not-install-Unicode-EastAsianWidth-if-external-is.patch
|
|||||||
# Do not install bundled libintl-perl, <https://savannah.nongnu.org/bugs/?43457>
|
# Do not install bundled libintl-perl, <https://savannah.nongnu.org/bugs/?43457>
|
||||||
Patch1: texi2html-5.0-Do-not-install-libintl-perl-if-external-is-used.patch
|
Patch1: texi2html-5.0-Do-not-install-libintl-perl-if-external-is-used.patch
|
||||||
URL: http://www.nongnu.org/texi2html/
|
URL: http://www.nongnu.org/texi2html/
|
||||||
Requires(post): /sbin/install-info
|
|
||||||
Requires(preun): /sbin/install-info
|
|
||||||
Requires: perl-interpreter >= 5.004
|
Requires: perl-interpreter >= 5.004
|
||||||
Requires: latex2html
|
Requires: latex2html
|
||||||
# autotools for the unbundling patches
|
# autotools for the unbundling patches
|
||||||
|
BuildRequires: make
|
||||||
BuildRequires: autoconf automake
|
BuildRequires: autoconf automake
|
||||||
BuildRequires: latex2html tetex-tex4ht gettext
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: latex2html texlive-tex4ht gettext
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl(Data::Dumper)
|
BuildRequires: perl(Data::Dumper)
|
||||||
BuildRequires: perl(Locale::Messages)
|
BuildRequires: perl(Locale::Messages)
|
||||||
@ -31,7 +30,6 @@ BuildRequires: perl(Unicode::EastAsianWidth)
|
|||||||
Requires: perl(Locale::Messages)
|
Requires: perl(Locale::Messages)
|
||||||
Requires: perl(Text::Unidecode)
|
Requires: perl(Text::Unidecode)
|
||||||
Requires: perl(Unicode::EastAsianWidth)
|
Requires: perl(Unicode::EastAsianWidth)
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -71,19 +69,7 @@ mkdir -p $RPM_BUILD_ROOT%{_datadir}/texinfo $RPM_BUILD_ROOT%{_sysconfdir}/texinf
|
|||||||
%check
|
%check
|
||||||
#make check
|
#make check
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%post
|
|
||||||
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir > /dev/null 2>&1 || :
|
|
||||||
|
|
||||||
%preun
|
|
||||||
if [ $1 = 0 ]; then
|
|
||||||
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir > /dev/null 2>&1 || :
|
|
||||||
fi
|
|
||||||
|
|
||||||
%files -f %{name}.lang -f %{name}_document.lang
|
%files -f %{name}.lang -f %{name}_document.lang
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc AUTHORS COPYING ChangeLog NEWS README TODO %{name}.init
|
%doc AUTHORS COPYING ChangeLog NEWS README TODO %{name}.init
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_datadir}/texinfo/html/%{name}.html
|
%{_datadir}/texinfo/html/%{name}.html
|
||||||
@ -98,6 +84,56 @@ fi
|
|||||||
%dir %{_sysconfdir}/texinfo
|
%dir %{_sysconfdir}/texinfo
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 5.0-24
|
||||||
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 5.0-23
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-22
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 21 2023 Than Ngo <than@redhat.com> - 5.0-20
|
||||||
|
- migrated to SPDX license
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-16
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 08 2019 Troy Dawson <tdawson@redhat.com> - 5.0-11
|
||||||
|
- tetex-tex4ht changed to texlive-tex4ht
|
||||||
|
- BuildRequire gcc-c++
|
||||||
|
|
||||||
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-8
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-8
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
@ -213,5 +249,5 @@ fi
|
|||||||
* Mon Jan 10 2005 MATSUURA Takanori <t-matsuu@estyle.ne.jp> - 1.72-1.fc3
|
* Mon Jan 10 2005 MATSUURA Takanori <t-matsuu@estyle.ne.jp> - 1.72-1.fc3
|
||||||
- initial build for Fedora Core 3 based on spec file in source tarball
|
- initial build for Fedora Core 3 based on spec file in source tarball
|
||||||
|
|
||||||
* Mon Mar 23 2004 Patrice Dumas <pertusus@free.fr> 0:1.69-0.fdr.1
|
* Tue Mar 23 2004 Patrice Dumas <pertusus@free.fr> 0:1.69-0.fdr.1
|
||||||
- Initial build.
|
- Initial build.
|
||||||
Loading…
Reference in New Issue
Block a user