Update to 4.54.
This commit is contained in:
parent
9f5b866fbf
commit
c84ef26f80
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,4 +1,4 @@
|
|||||||
/latexmk-448.zip
|
|
||||||
/latexmk-451.zip
|
/latexmk-451.zip
|
||||||
/latexmk-452c.zip
|
/latexmk-452c.zip
|
||||||
/latexmk-453a.zip
|
/latexmk-453a.zip
|
||||||
|
/latexmk-454.zip
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- latexmk.1.orig 2017-05-16 11:34:22.000000000 -0600
|
--- latexmk.1.orig 2017-11-20 09:58:34.000000000 -0700
|
||||||
+++ latexmk.1 2017-08-09 20:08:23.813895103 -0600
|
+++ latexmk.1 2017-11-22 17:45:10.409205865 -0700
|
||||||
@@ -1098,6 +1098,7 @@ system RC file, in the following order,
|
@@ -1138,6 +1138,7 @@ system RC file, in the following order,
|
||||||
"/opt/local/share/latexmk/LatexMk",
|
"/opt/local/share/latexmk/LatexMk",
|
||||||
"/usr/local/share/latexmk/LatexMk",
|
"/usr/local/share/latexmk/LatexMk",
|
||||||
"/usr/local/lib/latexmk/LatexMk".
|
"/usr/local/lib/latexmk/LatexMk".
|
||||||
@ -8,9 +8,9 @@
|
|||||||
On a MS-Windows system it looks for "C:\\latexmk\\LatexMk".
|
On a MS-Windows system it looks for "C:\\latexmk\\LatexMk".
|
||||||
On a cygwin system (i.e., a MS-Windows system in which Perl is
|
On a cygwin system (i.e., a MS-Windows system in which Perl is
|
||||||
that of cygwin), \fIlatexmk\fR reads the first it finds of
|
that of cygwin), \fIlatexmk\fR reads the first it finds of
|
||||||
--- latexmk.pl.orig 2017-05-16 11:51:42.000000000 -0600
|
--- latexmk.pl.orig 2017-11-20 10:33:53.000000000 -0700
|
||||||
+++ latexmk.pl 2017-08-09 20:08:23.815895097 -0600
|
+++ latexmk.pl 2017-11-22 17:45:10.410205861 -0700
|
||||||
@@ -873,13 +873,9 @@ else {
|
@@ -915,13 +915,9 @@ else {
|
||||||
## /usr/local/share, depending on the local conventions.
|
## /usr/local/share, depending on the local conventions.
|
||||||
## But /usr/local/lib/latexmk is put in the list for
|
## But /usr/local/lib/latexmk is put in the list for
|
||||||
## compatibility with older versions of latexmk.
|
## compatibility with older versions of latexmk.
|
||||||
|
11
latexmk.conf
11
latexmk.conf
@ -14,7 +14,7 @@
|
|||||||
# If nonzero, always analyze .log files for input files in the <...> and (...)
|
# If nonzero, always analyze .log files for input files in the <...> and (...)
|
||||||
# constructions. Otherwise, only do the analysis when fls file doesn't exist
|
# constructions. Otherwise, only do the analysis when fls file doesn't exist
|
||||||
# or is out of date.
|
# or is out of date.
|
||||||
# $analyze_input_log_always = 0;
|
# $analyze_input_log_always = 1;
|
||||||
|
|
||||||
# Whether to read rc files automatically
|
# Whether to read rc files automatically
|
||||||
# $auto_rc_use = 1;
|
# $auto_rc_use = 1;
|
||||||
@ -49,9 +49,12 @@
|
|||||||
# The switch that puts BibTeX in silent mode
|
# The switch that puts BibTeX in silent mode
|
||||||
# $bibtex_silent_switch = '-terse';
|
# $bibtex_silent_switch = '-terse';
|
||||||
|
|
||||||
# Whether to run bibtex to update bbl files: 0 means never run bibtex, 1 means
|
# Whether to run bibtex to update bbl files: 0 means never run bibtex and do
|
||||||
# run bibtex only if the source files exist and the bbl files are out of date,
|
# not delete bbl files on cleanup, 1 means run bibtex only if the source files
|
||||||
# 2 means run bibtex whenever the bbl files are out of date.
|
# exist and the bbl files are out of date and do not delete bbl files on
|
||||||
|
# cleanup, 1.5 is the same as 1 but deletes bbl files on cleanup if source
|
||||||
|
# files exist, and 2 means run bibtex whenever the bbl files are out of date
|
||||||
|
# and delete bbl files on cleanup.
|
||||||
# $bibtex_use = 1;
|
# $bibtex_use = 1;
|
||||||
|
|
||||||
# Extra file extensions to remove when cleaning
|
# Extra file extensions to remove when cleaning
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: latexmk
|
Name: latexmk
|
||||||
Version: 4.53a
|
Version: 4.54
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A make-like utility for LaTeX files
|
Summary: A make-like utility for LaTeX files
|
||||||
|
|
||||||
@ -75,6 +75,9 @@ rm -f extra-scripts/*.bat
|
|||||||
%license COPYING
|
%license COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 24 2017 Jerry James <loganjerry@gmail.com> - 4.54-1
|
||||||
|
- Update to 4.54
|
||||||
|
|
||||||
* Wed Aug 9 2017 Jerry James <loganjerry@gmail.com> - 4.53a-1
|
* Wed Aug 9 2017 Jerry James <loganjerry@gmail.com> - 4.53a-1
|
||||||
- Update to 4.53a
|
- Update to 4.53a
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (latexmk-453a.zip) = 401789383f75ecd78820dadf968e60ede762be0d9a781488e07a0a8239e213ae04959777a6ea87fc6b2bb64315ce00bdda25f7f25542370b5edf2ae5af9ba46e
|
SHA512 (latexmk-454.zip) = 6866622def84c135a2b0eceb0388e442bae377a961ea492eb2eadacac319fc23e0589c83d21fa75be263f7e25649e5c0746c1314b8c991cca9b82f38ebad9f0d
|
||||||
|
Loading…
Reference in New Issue
Block a user