Update to 4.39:

- Automatic creation of subdirectories of auxdir
- Add error diagnostics to if_source
- Allow print_type = 'auto'
- Fix use of directories with names containing perl glob characters
- Ensure that subdirectories are created properly
- In output of dependencies, include pathname of target file(s) in the rule.
- In -pvc mode, writing of deps file is per make not per overall run.
This commit is contained in:
Jerry James 2013-12-02 16:03:34 -07:00
parent c92d00e29d
commit c3418b88f9
5 changed files with 30 additions and 12 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
/latexmk-437.zip
/latexmk-439.zip

View File

@ -1,6 +1,6 @@
--- latexmk.pl.orig 2013-07-02 11:45:01.000000000 -0600
+++ latexmk.pl 2013-07-09 16:42:34.735326876 -0600
@@ -934,10 +934,8 @@
--- latexmk.pl.orig 2013-11-10 11:07:12.000000000 -0700
+++ latexmk.pl 2013-12-02 12:00:00.000000000 -0700
@@ -854,10 +854,8 @@
## /usr/local/share, depending on the local conventions.
## /usr/local/lib/latexmk/LatexMk is put in the list for
## compatibility with older versions of latexmk.
@ -13,9 +13,9 @@
$search_path_separator = ':'; # Separator of elements in search_path
--- latexmk.1.orig 2013-07-02 12:45:03.000000000 -0600
+++ latexmk.1 2013-07-09 16:42:34.736326876 -0600
@@ -955,6 +955,7 @@
--- latexmk.1.orig 2013-11-21 09:29:13.000000000 -0700
+++ latexmk.1 2013-12-02 12:00:00.000000000 -0700
@@ -962,6 +962,7 @@
"/opt/local/share/latexmk/LatexMk",
"/usr/local/share/latexmk/LatexMk",
"/usr/local/lib/latexmk/LatexMk".

View File

@ -4,6 +4,9 @@
# The following options are given their default values.
# Uncomment them and change the values if the defaults do not suit your needs.
# Allow missing subdirectories of aux_dir to be created as needed
# $allow_subdir_creation = 1;
# When previewing, whether to make the viewer read from the generated file or
# from a temporary copy
# $always_view_file_via_temporary = 0;
@ -263,8 +266,8 @@ $pdf_previewer = 'xdg-open %O %S';
# If nonzero, run a previewer to preview the document
# $preview_mode = 0;
# The type of file to printout: 'dvi', 'none', 'pdf', or 'ps'
# $print_type = 'ps';
# The type of file to printout: 'auto', 'dvi', 'none', 'pdf', or 'ps'
# $print_type = 'auto';
# If nonzero, print the document using lpr each time it is created
# $printout_mode = 0;

View File

@ -1,6 +1,6 @@
Name: latexmk
Version: 4.37
Release: 2%{?dist}
Version: 4.39
Release: 1%{?dist}
Summary: A make-like utility for LaTeX files
%global upstreamver %(sed 's/\\.//' <<<%{version})
@ -41,6 +41,11 @@ sed "s|^#\!/usr/bin/env perl|#\!/usr/bin/perl -w|" latexmk.pl > latexmk.pl.new
touch -r latexmk.pl latexmk.pl.new
mv -f latexmk.pl.new latexmk.pl
# Fix a minor man page bug
sed -i.orig "s/^'/\\\\'/" latexmk.1
touch -r latexmk.1.orig latexmk.1
rm -f latexmk.1.orig
%build
cp -p %{SOURCE2} README.fedora
@ -60,6 +65,16 @@ install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
%doc latexmk.pdf
%changelog
* Mon Dec 2 2013 Jerry James <loganjerry@gmail.com> - 4.39-1
- Update to 4.39:
- Automatic creation of subdirectories of auxdir
- Add error diagnostics to if_source
- Allow print_type = 'auto'
- Fix use of directories with names containing perl glob characters
- Ensure that subdirectories are created properly
- In output of dependencies, include pathname of target file(s) in the rule.
- In -pvc mode, writing of deps file is per make not per overall run.
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.37-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

View File

@ -1 +1 @@
7b8988aaf1b1e2e585ffffb8d50f4d58 latexmk-437.zip
29c91c0e1878e35135eebf67aa05c06d latexmk-439.zip