Sync from SUSE:SLFO:Main latex2html revision 1d262d3fe1222d65b975b19d7dd4652a
This commit is contained in:
parent
57b14b9c5f
commit
3c0cfc68ec
BIN
latex2html-2023.2.tar.gz
(Stored with Git LFS)
BIN
latex2html-2023.2.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
latex2html-2024.tar.gz
(Stored with Git LFS)
Normal file
BIN
latex2html-2024.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -2,7 +2,7 @@ Index: config/config.pl
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- config/config.pl.orig
|
--- config/config.pl.orig
|
||||||
+++ config/config.pl
|
+++ config/config.pl
|
||||||
@@ -1918,7 +1918,7 @@ else {
|
@@ -2020,7 +2020,7 @@ else {
|
||||||
$newcfg{'SHLIBDIR'} = $newcfg{'PREFIX'};
|
$newcfg{'SHLIBDIR'} = $newcfg{'PREFIX'};
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -11,4 +11,3 @@ Index: config/config.pl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
add_drive_letter($newcfg{'SHLIBDIR'});
|
add_drive_letter($newcfg{'SHLIBDIR'});
|
||||||
|
|
||||||
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 19 03:30:32 UTC 2024 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||||
|
|
||||||
|
- cleanup after test to not modify the install result (boo#1227364)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 29 14:00:54 UTC 2024 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- Use %autosetup macro. Allows to eliminate the usage of deprecated
|
||||||
|
%patchN
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 26 09:33:39 UTC 2024 - Bernhard Wiedemann <bwiedemann@suse.com>
|
||||||
|
|
||||||
|
- Remove .log files during build
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 14 13:50:10 UTC 2024 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- version update to 2024
|
||||||
|
* "make clean" removes manual.pdf
|
||||||
|
https://bugs.debian.org/1046413
|
||||||
|
- modified patches
|
||||||
|
% latex2html-share-dir.diff (refreshed)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 21 07:43:38 UTC 2023 - pgajdos@suse.com
|
Fri Jul 21 07:43:38 UTC 2023 - pgajdos@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package latex2html
|
# spec file for package latex2html
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 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
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%define share_dir %{_datadir}/latex2html
|
%define share_dir %{_datadir}/latex2html
|
||||||
%define _texmfmaindir %{_datadir}/texmf
|
%define _texmfmaindir %{_datadir}/texmf
|
||||||
Name: latex2html
|
Name: latex2html
|
||||||
Version: 2023.2
|
Version: 2024
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: LaTeX to HTML Converter
|
Summary: LaTeX to HTML Converter
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -66,8 +66,7 @@ Group: Productivity/Publishing/TeX/Utilities
|
|||||||
This subpackage contains the documentation for the Latex2HTML converter.
|
This subpackage contains the documentation for the Latex2HTML converter.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -p0
|
||||||
%patch0
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Not autotools based configure
|
# Not autotools based configure
|
||||||
@ -77,7 +76,7 @@ This subpackage contains the documentation for the Latex2HTML converter.
|
|||||||
export LATEX2HTMLDIR=$(pwd)
|
export LATEX2HTMLDIR=$(pwd)
|
||||||
cd docs
|
cd docs
|
||||||
make L2H="../latex2html -nouse_pdftex -test_mode" html
|
make L2H="../latex2html -nouse_pdftex -test_mode" html
|
||||||
find manual -name "*.old" -delete
|
find manual \( -name "*.old" -o -name "*.log" -o -name "*.aux" -o -name WARNINGS \) -delete
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -89,7 +88,9 @@ chmod 755 %{buildroot}%{_datadir}/%{name}/{cweb2html/makemake.pl,cweb2html/cweb2
|
|||||||
|
|
||||||
%check
|
%check
|
||||||
%make_build test
|
%make_build test
|
||||||
|
# cleanup after test to not modify the install result (boo#1227364)
|
||||||
find docs/manual tests \( -name \*.log -o -name \*.aux -o -name WARNINGS \) -delete
|
find docs/manual tests \( -name \*.log -o -name \*.aux -o -name WARNINGS \) -delete
|
||||||
|
rm -rf tests/l2htest
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc Changes FAQ README.md TODO dot.latex2html-init
|
%doc Changes FAQ README.md TODO dot.latex2html-init
|
||||||
|
Loading…
Reference in New Issue
Block a user