* Mon Mar 28 2011 Jerry James <loganjerry@gmail.com> - 4.23-1

- Update to 4.23 (several bug fixes, new dependency-tracking functionality)
- Drop BuildRoot and %clean
This commit is contained in:
Jerry James 2011-03-28 10:06:01 -06:00
parent f565c3890f
commit 0cb21a6566
5 changed files with 32 additions and 17 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
latexmk-422e.zip
latexmk-423.zip

View File

@ -1,6 +1,6 @@
--- latexmk.1.orig 2011-02-03 09:15:56.000000000 -0700
+++ latexmk.1 2011-02-07 11:46:54.147919231 -0700
@@ -562,6 +562,7 @@
--- latexmk.1.orig 2011-03-22 07:32:52.000000000 -0600
+++ latexmk.1 2011-03-28 10:00:36.478299325 -0600
@@ -645,6 +645,7 @@
"/opt/local/share/latexmk/LatexMk",
"/usr/local/share/latexmk/LatexMk",
"/usr/local/lib/latexmk/LatexMk".
@ -8,9 +8,9 @@
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-02-03 09:17:40.000000000 -0700
+++ latexmk.pl 2011-02-07 11:46:54.151919231 -0700
@@ -700,10 +700,8 @@
--- latexmk.pl.orig 2011-03-21 19:05:02.000000000 -0600
+++ latexmk.pl 2011-03-28 10:00:36.481299174 -0600
@@ -673,10 +673,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.

View File

@ -76,6 +76,9 @@
# Whether to display lists of dependencies
# $dependents_list = 0;
# File for dependency list output. Default is stdout.
# $deps_file = '-';
# Whether to get diagnostic output from latexmk
# $diagnostics = 0;
@ -133,7 +136,7 @@ $dvi_update_method = 1;
# $fdb_ext = 'fdb_latexmk';
# Version number for kind of fdb_file
# $fdb_ver = 2;
# $fdb_ver = 3;
# If nonzero, continue processing past minor LaTeX errors
# This option is made nonzero if the -pvc command line option is used.
@ -142,7 +145,7 @@ $dvi_update_method = 1;
# 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', 'bbl', 'idx', 'ind', 'lof', 'lot', 'out', 'toc' );
# @generated_exts = ( 'aux', 'bcf', 'fls', 'idx', 'ind', 'lof', 'lot', 'out', 'toc' );
# 1 = process files regardless of timestamps
# 2 = do a full cleanup first
@ -180,6 +183,9 @@ $dvi_update_method = 1;
# The program that prints PDF files
# $lpr_pdf = 'NONE $lpr_pdf variable is not configured to allow printing of pdf files';
# Command to run make
# $make = 'make';
# The name of the makeindex program
# $makeindex = 'makeindex %O -o %D %S';
@ -285,6 +291,12 @@ $ps_update_method = 1;
# containing spaces.
# $quote_filenames = 1;
# Whether to use the recorder option on (pdf)latex
# $recorder = 0;
# Whether to display lists of dependencies.
# $rules_list = 0;
# The character that separates paths in a list of paths
# $search_path_separator = ':';
@ -309,6 +321,9 @@ $ps_update_method = 1;
# The directory to store temporary files; omit the trailing '/'
# $tmpdir = $ENV{TMPDIR} || '/tmp';
# Whether to use make to try to create missing files
# $use_make_for_missing_files = 0;
# Which kind of file is to be previewed if a previewer is used. The possible
# values are 'default', 'dvi', 'ps', and 'pdf'. The value of 'default' means
# that the PDF is viewed if it is generated, else PostScript is viewed if it is

View File

@ -1,12 +1,12 @@
Name: latexmk
Version: 4.22e
Release: 2%{?dist}
Version: 4.23
Release: 1%{?dist}
Summary: A make-like utility for LaTeX files
Group: Applications/Publishing
License: GPLv2+
URL: http://www.phys.psu.edu/~collins/software/latexmk-jcc/
Source0: http://www.phys.psu.edu/~collins/software/latexmk-jcc/latexmk-422e.zip
Source0: http://www.phys.psu.edu/~collins/software/latexmk-jcc/latexmk-423.zip
Source1: latexmk.conf
Source2: latexmk-README.fedora
# Change the system-wide configuration file to /etc/latexmk.conf and fix the
@ -14,7 +14,6 @@ Source2: latexmk-README.fedora
# upstream needs to be backwards compatible with previous versions of latexmk.
# Fedora has only ever used /etc/latexmk.conf.
Patch0: latexmk-conf.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: tex(latex), ghostscript, xdg-utils
@ -47,9 +46,6 @@ install -m 0755 -p latexmk.pl $RPM_BUILD_ROOT%{_bindir}/latexmk
install -m 0644 -p latexmk.1 $RPM_BUILD_ROOT%{_mandir}/man1
install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_bindir}/*
@ -58,6 +54,10 @@ rm -rf $RPM_BUILD_ROOT
%doc CHANGES COPYING INSTALL README README.fedora extra-scripts example_rcfiles
%changelog
* Mon Mar 28 2011 Jerry James <loganjerry@gmail.com> - 4.23-1
- Update to 4.23 (several bug fixes, new dependency-tracking functionality)
- Drop BuildRoot and %%clean
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.22e-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

View File

@ -1 +1 @@
482add7c85439be2939f81f940cd0ebe latexmk-422e.zip
78b3fb3d2b1e963db17fa9d10b37a9cc latexmk-423.zip