Version 4.82
This commit is contained in:
parent
b764c2fe33
commit
9d1f1c8000
@ -1,5 +1,5 @@
|
|||||||
Name: latexmk
|
Name: latexmk
|
||||||
Version: 4.81
|
Version: 4.82
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A make-like utility for LaTeX files
|
Summary: A make-like utility for LaTeX files
|
||||||
|
|
||||||
@ -7,7 +7,7 @@ Summary: A make-like utility for LaTeX files
|
|||||||
|
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
URL: https://www.cantab.net/users/johncollins/latexmk/
|
URL: https://www.cantab.net/users/johncollins/latexmk/
|
||||||
Source0: %{url}/%{name}-%{upstreamver}.zip
|
Source0: %{url}%{name}-%{upstreamver}.zip
|
||||||
Source1: latexmkrc
|
Source1: latexmkrc
|
||||||
Source2: latexmk-README.fedora
|
Source2: latexmk-README.fedora
|
||||||
|
|
||||||
@ -59,6 +59,9 @@ rm -f extra-scripts/*.bat
|
|||||||
%license COPYING
|
%license COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 26 2023 Jerry James <loganjerry@gmail.com> - 4.82-1
|
||||||
|
- Version 4.82
|
||||||
|
|
||||||
* Tue Nov 7 2023 Jerry James <loganjerry@gmail.com> - 4.81-1
|
* Tue Nov 7 2023 Jerry James <loganjerry@gmail.com> - 4.81-1
|
||||||
- Version 4.81
|
- Version 4.81
|
||||||
- New project URL
|
- New project URL
|
||||||
|
29
latexmkrc
29
latexmkrc
@ -84,6 +84,13 @@
|
|||||||
# Command to use in pvc mode for compiling
|
# Command to use in pvc mode for compiling
|
||||||
# $compiling_cmd = "";
|
# $compiling_cmd = "";
|
||||||
|
|
||||||
|
# Whether to search for ^^ notation in log file for non-7-bit characters, and
|
||||||
|
# and convert to bytes. (Note: ^^ notation is produced by hilatex in TeXLive
|
||||||
|
# 2023, and by pdflatex in MiKTeX 22.1 if no special option is used
|
||||||
|
# (-enable-8bit-chars). Also pdflatex in TeXLive 2023 (and earlier) gives it
|
||||||
|
# if -translate-file=empty is used.
|
||||||
|
# $conv_hathat = 1;
|
||||||
|
|
||||||
# A custom dependency list; see the man page for details
|
# A custom dependency list; see the man page for details
|
||||||
# @cus_dep_list = ();
|
# @cus_dep_list = ();
|
||||||
|
|
||||||
@ -182,17 +189,20 @@ $dvi_update_method = 1;
|
|||||||
# This option is made nonzero if the -pvc command line option is used.
|
# This option is made nonzero if the -pvc command line option is used.
|
||||||
# $force_mode = 0;
|
# $force_mode = 0;
|
||||||
|
|
||||||
# The list of extensions for files that are generated in one run and consumed
|
|
||||||
# by later runs of one of the LaTeX tools. The 'aux' and 'bbl' extensions are
|
|
||||||
# treated specially.
|
|
||||||
# @generated_exts = ( 'aux', 'bcf', 'fls', 'idx', 'ind', 'lof', 'lot', 'out',
|
|
||||||
# 'toc', 'blg', 'ilg', 'log', 'xdv' );
|
|
||||||
|
|
||||||
# 1 = process files regardless of timestamps
|
# 1 = process files regardless of timestamps
|
||||||
# 2 = do a full cleanup first
|
# 2 = do a full cleanup first
|
||||||
# 3 = just force primary rule(s) to run
|
# 3 = just force primary rule(s) to run
|
||||||
# $go_mode = 0;
|
# $go_mode = 0;
|
||||||
|
|
||||||
|
# Default switches to pass to the hilatex program
|
||||||
|
# $hilatex_default_switches = '';
|
||||||
|
|
||||||
|
# The command line switch to make hilatex run in silent mode
|
||||||
|
# $hilatex_silent_switch = '-interaction=batchmode';
|
||||||
|
|
||||||
|
# The command to invoke a PDF previewer
|
||||||
|
# $hnt_previewer = 'NONE';
|
||||||
|
|
||||||
# The basename of generated files
|
# The basename of generated files
|
||||||
# $jobname = "";
|
# $jobname = "";
|
||||||
|
|
||||||
@ -255,6 +265,9 @@ $dvi_update_method = 1;
|
|||||||
# references.
|
# references.
|
||||||
# $max_repeat = 5;
|
# $max_repeat = 5;
|
||||||
|
|
||||||
|
# Minimum nonzero sleep time
|
||||||
|
# $min_sleep_time = 0.01;
|
||||||
|
|
||||||
# Set to 1 to give special treatment to Ctrl-c and Ctrl-Break in -pvc mode on
|
# Set to 1 to give special treatment to Ctrl-c and Ctrl-Break in -pvc mode on
|
||||||
# Windows. This is unnecessary on Unix platforms.
|
# Windows. This is unnecessary on Unix platforms.
|
||||||
# $MSWin_fudge_break = 1;
|
# $MSWin_fudge_break = 1;
|
||||||
@ -360,6 +373,10 @@ $ps_update_method = 1;
|
|||||||
# Whether to display lists of dependencies.
|
# Whether to display lists of dependencies.
|
||||||
# $rules_list = 0;
|
# $rules_list = 0;
|
||||||
|
|
||||||
|
# Suffix to be added to filename when an erroneous file is saved instead of
|
||||||
|
# being deleted.
|
||||||
|
# $save_error_suffix = '-SAVE-ERROR';
|
||||||
|
|
||||||
# The character that separates paths in a list of paths
|
# The character that separates paths in a list of paths
|
||||||
# $search_path_separator = ':';
|
# $search_path_separator = ':';
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (latexmk-481.zip) = 085e32a065a04e1f2292d7d2806073340d35eaa8fe9d065b64d46517d893859a8f104a86babef58b9dafe05f4af248bf101dea7681c108d74c1938a733bb7c9b
|
SHA512 (latexmk-482.zip) = 680e26631f79d1b94b10e93f8d320cf09be658084154326ac3ec9d853a4537cacb817ac6bbaadc9e099b6f94b66e6bbef78f5a718a3ab3544c1e94a0774dafca
|
||||||
|
Loading…
Reference in New Issue
Block a user