Update to 4.31 (numerous new features documented at
http://www.phys.psu.edu/~collins/software/latexmk-jcc/versions.html).
This commit is contained in:
parent
5b55015d5a
commit
0d2ec6b6f4
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
/latexmk-430a.zip
|
/latexmk-431.zip
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- ./latexmk.pl.orig 2011-12-09 09:59:42.000000000 -0700
|
--- ./latexmk.pl.orig 2012-03-30 05:46:45.000000000 -0600
|
||||||
+++ ./latexmk.pl 2011-12-12 13:12:44.243706213 -0700
|
+++ ./latexmk.pl 2012-04-02 14:19:09.071612093 -0600
|
||||||
@@ -759,10 +759,8 @@ else {
|
@@ -827,10 +827,8 @@ else {
|
||||||
## /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.
|
||||||
@ -13,13 +13,13 @@
|
|||||||
|
|
||||||
$search_path_separator = ':'; # Separator of elements in search_path
|
$search_path_separator = ':'; # Separator of elements in search_path
|
||||||
|
|
||||||
--- ./latexmk.1.orig 2011-12-09 07:23:59.000000000 -0700
|
--- ./latexmk.1.orig 2012-03-30 05:45:25.000000000 -0600
|
||||||
+++ ./latexmk.1 2011-12-12 13:12:44.244706212 -0700
|
+++ ./latexmk.1 2012-04-02 14:19:09.072612092 -0600
|
||||||
@@ -723,6 +723,7 @@ system RC file, in the following order,
|
@@ -761,6 +761,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".
|
||||||
+ On a Fedora system, it only looks for "/etc/latexmk.conf".
|
+ On a Fedora system, it only looks for "/etc/latexmk.conf".
|
||||||
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 for the first it finds of
|
that of cygwin), \fIlatexmk\fR reads for the first it finds of
|
||||||
|
@ -82,6 +82,9 @@
|
|||||||
# Whether to display lists of dependencies
|
# Whether to display lists of dependencies
|
||||||
# $dependents_list = 0;
|
# $dependents_list = 0;
|
||||||
|
|
||||||
|
# Whether lists of dependencies include phony targets
|
||||||
|
# $dependents_phony = 0;
|
||||||
|
|
||||||
# File for dependency list output. Default is stdout.
|
# File for dependency list output. Default is stdout.
|
||||||
# $deps_file = '-';
|
# $deps_file = '-';
|
||||||
|
|
||||||
@ -301,7 +304,7 @@ $ps_update_method = 1;
|
|||||||
# $quote_filenames = 1;
|
# $quote_filenames = 1;
|
||||||
|
|
||||||
# Whether to use the recorder option on (pdf)latex
|
# Whether to use the recorder option on (pdf)latex
|
||||||
# $recorder = 0;
|
# $recorder = 1;
|
||||||
|
|
||||||
# Whether to display lists of dependencies.
|
# Whether to display lists of dependencies.
|
||||||
# $rules_list = 0;
|
# $rules_list = 0;
|
||||||
|
10
latexmk.spec
10
latexmk.spec
@ -1,12 +1,12 @@
|
|||||||
Name: latexmk
|
Name: latexmk
|
||||||
Version: 4.30a
|
Version: 4.31
|
||||||
Release: 2%{?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/%{name}-430a.zip
|
Source0: http://www.phys.psu.edu/~collins/software/latexmk-jcc/%{name}-431.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
|
||||||
@ -58,6 +58,10 @@ install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
|
|||||||
%doc latexmk.pdf
|
%doc latexmk.pdf
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Apr 2 2012 Jerry James <loganjerry@gmail.com> - 4.31-1
|
||||||
|
- Update to 4.31 (numerous new features documented at
|
||||||
|
http://www.phys.psu.edu/~collins/software/latexmk-jcc/versions.html)
|
||||||
|
|
||||||
* Tue Jan 10 2012 Jerry James <loganjerry@gmail.com> - 4.30a-2
|
* Tue Jan 10 2012 Jerry James <loganjerry@gmail.com> - 4.30a-2
|
||||||
- Mass rebuild for Fedora 17
|
- Mass rebuild for Fedora 17
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user