Compare commits
16 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a37c9283be | ||
|
|
1007ac0539 | ||
|
|
4cc47e1b6c | ||
|
|
09c08a97f6 | ||
|
|
861086fd0f | ||
|
|
df45734cc6 | ||
|
|
ffce1010c2 | ||
|
|
320802a5db | ||
|
|
6592c6c608 | ||
|
|
09a34c5ea9 | ||
|
|
34a4440a1f | ||
|
|
6267450ea0 | ||
|
|
26ddb30519 | ||
| d37b5e81ab | |||
|
|
a40c36611d | ||
|
|
048faee480 |
3 changed files with 63 additions and 16 deletions
|
|
@ -28,7 +28,7 @@ $cfg{'HTML_VALIDATOR'} = q'';
|
|||
$cfg{'ICONPATH'} = q'file:/usr/share/latex2html/icons';
|
||||
$cfg{'ICONSERVER'} = q'';
|
||||
$cfg{'ICONSTORAGE'} = q'';
|
||||
$cfg{'IMAGE_TYPES'} = q'png gif';
|
||||
$cfg{'IMAGE_TYPES'} = q'svg png gif';
|
||||
$cfg{'INITEX'} = q'/usr/bin/initex';
|
||||
$cfg{'JPEGTOPNM'} = q'/usr/bin/jpegtopnm';
|
||||
$cfg{'KPSEWHICH'} = q'/usr/bin/kpsewhich';
|
||||
|
|
|
|||
|
|
@ -1,25 +1,30 @@
|
|||
%if 0%{?fedora}
|
||||
%define enable_japanese 1
|
||||
%else
|
||||
%define enable_japanese 0
|
||||
%endif
|
||||
|
||||
Summary: Converts LaTeX documents to HTML
|
||||
Name: latex2html
|
||||
Version: 2020.2
|
||||
Release: 5%{?dist}
|
||||
License: GPLv2+
|
||||
Version: 2026
|
||||
Release: 2%{?dist}
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/latex2html/latex2html/releases
|
||||
# main latex2html source
|
||||
Source0: https://github.com/latex2html/latex2html/archive/v%{version}.tar.gz
|
||||
Source0: https://github.com/%{name}/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
Source1: cfgcache.pm
|
||||
Source2: %{name}-manpages.tar.gz
|
||||
# support for Japanese
|
||||
# http://takeno.iee.niit.ac.jp/~shige/TeX/latex2html/
|
||||
Source3: http://takeno.iee.niit.ac.jp/~shige/TeX/latex2html/data2/l2h-2020-jp20200515.tar.gz
|
||||
Source3: http://takeno.iee.niit.ac.jp/~shige/TeX/latex2html/data2/l2h-2026-jp3.2b1.43.tar.gz
|
||||
Patch1: latex2html-2018.2-teTeX-l2h-config.patch
|
||||
Patch4: latex2html-2002-2-1-SHLIB.patch
|
||||
Requires: tex(latex), tex(dvips), tex(url.sty), tex(preview.sty), netpbm-progs
|
||||
BuildRequires: perl-interpreter >= 5.003, perl-generators, ghostscript >= 4.03, netpbm-progs >= 9.21, tex(latex)
|
||||
Patch2: latex2html-2002-2-1-SHLIB.patch
|
||||
Requires: tex(latex), tex(dvips), tex(url.sty), tex(preview.sty), netpbm-progs, poppler-utils
|
||||
BuildRequires: tex(latex), tex(dvips), tex(url.sty), tex(preview.sty), netpbm-progs, poppler-utils
|
||||
BuildRequires: perl-interpreter >= 5.003, perl-generators, ghostscript >= 4.03
|
||||
BuildRequires: perl(Carp), perl(Config), perl(Cwd), perl(DB), perl(Exporter),
|
||||
BuildRequires: perl(File::Copy), perl(FindBin), perl(IO::File), perl(Sys::Hostname)
|
||||
BuildRequires: perl(lib), perl(strict), perl(vars)
|
||||
BuildRequires: perl(Unicode::Collate::Locale), perl(lib), perl(strict), perl(vars)
|
||||
BuildRequires: make
|
||||
BuildArch: noarch
|
||||
|
||||
|
|
@ -32,14 +37,14 @@ LATEX2HTML does also a good job in rapid web site deployment. These
|
|||
pages are generated from a single LATEX source.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version} -c -a 0
|
||||
%setup -q -c -a 0
|
||||
|
||||
pushd %{name}-%{version}
|
||||
# Patch from Oliver Paukstadt <oliver.paukstadt@millenux.com>
|
||||
%patch1 -p2 -b .config
|
||||
%patch -P1 -p2 -b .config
|
||||
|
||||
# fix SHLIBDIR
|
||||
%patch4 -p1 -b .shlib
|
||||
%patch -P2 -p1 -b .shlib
|
||||
|
||||
# remove all platforms we don't need
|
||||
for i in Dos Mac OS2 Win32; do
|
||||
|
|
@ -195,7 +200,7 @@ make -C %{name}-%{version}JA check
|
|||
%endif
|
||||
|
||||
%files
|
||||
%doc latex2html-%{version}/{LICENSE,LICENSE.orig,README.md,FAQ,BUGS,docs,example}
|
||||
%doc latex2html-%{version}/{LICENSE,README.md,FAQ,BUGS,docs,example}
|
||||
%{_bindir}/latex2html
|
||||
%{_bindir}/pstoimg
|
||||
%{_bindir}/texexpand
|
||||
|
|
@ -217,6 +222,48 @@ make -C %{name}-%{version}JA check
|
|||
%{_mandir}/man1/pstoimg.*
|
||||
|
||||
%changelog
|
||||
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2026-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Tue Jun 09 2026 Than Ngo <than@redhat.com> - 2026-1
|
||||
- Update to 2026
|
||||
|
||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Nov 12 2024 Than Ngo <than@redhat.com> - 2023.2-6
|
||||
- Remove .orig files
|
||||
|
||||
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2023.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jul 18 2023 Than Ngo <than@redhat.com> - 2023.2-1
|
||||
- update to 2023.2
|
||||
|
||||
* Mon Jan 30 2023 Ben Cotton <bcotton@fedoraproject.org> - 2020.2-8
|
||||
- Update License field to match SPDX formatting
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2020.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2020.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2020.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
4
sources
4
sources
|
|
@ -1,3 +1,3 @@
|
|||
SHA512 (latex2html-manpages.tar.gz) = 113fdc27c9ab5c2d7ef76c86eb5b55bccf30077e987fd1645ae9c8f96d037372d9446b13d73b2ad3cf7655787366ac7ee8899db8682e354fe3a1acec4e92b829
|
||||
SHA512 (v2020.2.tar.gz) = 222711ab62580b433acf85be9c6ae8c0b7c87e5b771762c10939866e205e5d62601ffee54a6a928fbae8eab4a46d3dce47f35c023aeac6986dc7757f415fb83f
|
||||
SHA512 (l2h-2020-jp20200515.tar.gz) = 4a206d6dfbab209781bf8cca30f4864b93165737d866fe78cb5576107b80587bd6df61fc0038c3b6bcbccc03502b08a4a13aeb5c64445c5b272e39915757c53d
|
||||
SHA512 (l2h-2026-jp3.2b1.43.tar.gz) = 4b7c9424d462329173a883fff7ef330222440be132ec9190c9c06798e2d6ef1ec7f14bdb375db0742181e1f661f153e7fa002d786c4b5632d0f28a598543f713
|
||||
SHA512 (latex2html-2026.tar.gz) = e607bc637fd8c618db30d967c298a5f5d2e58846a7f32705ef8d58efa87bdea3f012d9852e6a0305f6c5698a9ebe427e71bf0a3b39584923120102cc57ac272a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue