Update to 4.27a:
Fixes making ps/pdf files via a temporary file with no %D placeholder. Adds png to list of graphics extensions for pdflatex. Adds -norc option to prevent auto-reading of rc files. Adds -aux-directory and -output-directory options.
This commit is contained in:
parent
f87d7c804a
commit
f9915bfe6a
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
/latexmk-426.zip
|
/latexmk-427a.zip
|
||||||
|
@ -1,16 +1,6 @@
|
|||||||
--- ./latexmk.1.orig 2011-08-09 18:09:17.000000000 -0600
|
--- ./latexmk.pl.orig 2011-10-10 14:47:21.000000000 -0600
|
||||||
+++ ./latexmk.1 2011-08-15 08:59:54.012928333 -0600
|
+++ ./latexmk.pl 2011-10-17 12:05:32.082065909 -0600
|
||||||
@@ -645,6 +645,7 @@
|
@@ -718,10 +718,8 @@
|
||||||
"/opt/local/share/latexmk/LatexMk",
|
|
||||||
"/usr/local/share/latexmk/LatexMk",
|
|
||||||
"/usr/local/lib/latexmk/LatexMk".
|
|
||||||
+ On a Fedora system, it only looks for "/etc/latexmk.conf".
|
|
||||||
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
|
|
||||||
that of cygwin), \fIlatexmk\fR reads for the first it finds of
|
|
||||||
--- ./latexmk.pl.orig 2011-08-09 18:00:56.000000000 -0600
|
|
||||||
+++ ./latexmk.pl 2011-08-15 08:59:54.011928363 -0600
|
|
||||||
@@ -692,10 +692,8 @@
|
|
||||||
## /usr/local/share, depending on the local conventions.
|
## /usr/local/share, depending on the local conventions.
|
||||||
## /usr/local/lib/latexmk/LatexMk is put in the list for
|
## /usr/local/lib/latexmk/LatexMk is put in the list for
|
||||||
## compatibility with older versions of latexmk.
|
## compatibility with older versions of latexmk.
|
||||||
@ -23,3 +13,13 @@
|
|||||||
|
|
||||||
$search_path_separator = ':'; # Separator of elements in search_path
|
$search_path_separator = ':'; # Separator of elements in search_path
|
||||||
|
|
||||||
|
--- ./latexmk.1.orig 2011-10-10 14:47:54.000000000 -0600
|
||||||
|
+++ ./latexmk.1 2011-10-17 12:05:32.079065912 -0600
|
||||||
|
@@ -723,6 +723,7 @@
|
||||||
|
"/opt/local/share/latexmk/LatexMk",
|
||||||
|
"/usr/local/share/latexmk/LatexMk",
|
||||||
|
"/usr/local/lib/latexmk/LatexMk".
|
||||||
|
+ On a Fedora system, it only looks for "/etc/latexmk.conf".
|
||||||
|
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
|
||||||
|
that of cygwin), \fIlatexmk\fR reads for the first it finds of
|
||||||
|
@ -8,6 +8,12 @@
|
|||||||
# from a temporary copy
|
# from a temporary copy
|
||||||
# $always_view_file_via_temporary = 0;
|
# $always_view_file_via_temporary = 0;
|
||||||
|
|
||||||
|
# Whether to read rc files automatically
|
||||||
|
# $auto_rc_use = 1;
|
||||||
|
|
||||||
|
# Directory for aux files (log, aux, etc.)
|
||||||
|
# $aux_dir = '';
|
||||||
|
|
||||||
# If nonzero, DVI-to-postscript conversion adds a banner message on each page
|
# If nonzero, DVI-to-postscript conversion adds a banner message on each page
|
||||||
# $banner = 0;
|
# $banner = 0;
|
||||||
|
|
||||||
@ -205,6 +211,9 @@ $MSWin_fudge_break = 0;
|
|||||||
# nonzero, always start a new previewer.
|
# nonzero, always start a new previewer.
|
||||||
# $new_viewer_always = 0;
|
# $new_viewer_always = 0;
|
||||||
|
|
||||||
|
# Directory for output files
|
||||||
|
# $out_dir = '';
|
||||||
|
|
||||||
# 0 = do not create a PDF file
|
# 0 = do not create a PDF file
|
||||||
# 1 = Create a PDF file with pdflatex
|
# 1 = Create a PDF file with pdflatex
|
||||||
# 2 = Create a PDF file with ps2pdf
|
# 2 = Create a PDF file with ps2pdf
|
||||||
|
11
latexmk.spec
11
latexmk.spec
@ -1,12 +1,12 @@
|
|||||||
Name: latexmk
|
Name: latexmk
|
||||||
Version: 4.26
|
Version: 4.27a
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A make-like utility for LaTeX files
|
Summary: A make-like utility for LaTeX files
|
||||||
|
|
||||||
Group: Applications/Publishing
|
Group: Applications/Publishing
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://www.phys.psu.edu/~collins/software/latexmk-jcc/
|
URL: http://www.phys.psu.edu/~collins/software/latexmk-jcc/
|
||||||
Source0: http://www.phys.psu.edu/~collins/software/latexmk-jcc/latexmk-426.zip
|
Source0: http://www.phys.psu.edu/~collins/software/latexmk-jcc/latexmk-427a.zip
|
||||||
Source1: latexmk.conf
|
Source1: latexmk.conf
|
||||||
Source2: latexmk-README.fedora
|
Source2: latexmk-README.fedora
|
||||||
# Change the system-wide configuration file to /etc/latexmk.conf and fix the
|
# Change the system-wide configuration file to /etc/latexmk.conf and fix the
|
||||||
@ -53,6 +53,13 @@ install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
|
|||||||
%doc CHANGES COPYING INSTALL README README.fedora extra-scripts example_rcfiles
|
%doc CHANGES COPYING INSTALL README README.fedora extra-scripts example_rcfiles
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 17 2011 Jerry James <loganjerry@gmail.com> - 4.27a-1
|
||||||
|
- Update to 4.27a:
|
||||||
|
- Fixes making ps/pdf files via a temporary file with no %%D placeholder
|
||||||
|
- Adds png to list of graphics extensions for pdflatex
|
||||||
|
- Adds -norc option to prevent auto-reading of rc files
|
||||||
|
- Adds -aux-directory and -output-directory options
|
||||||
|
|
||||||
* Mon Aug 15 2011 Jerry James <loganjerry@gmail.com> - 4.26-1
|
* Mon Aug 15 2011 Jerry James <loganjerry@gmail.com> - 4.26-1
|
||||||
- Update to 4.26 (fix some bugs in error reporting)
|
- Update to 4.26 (fix some bugs in error reporting)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user