Update to 4.44.
This commit is contained in:
parent
6cc58a02e7
commit
40965eb00d
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
|||||||
/latexmk-442.zip
|
|
||||||
/latexmk-443a.zip
|
/latexmk-443a.zip
|
||||||
|
/latexmk-444.zip
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- ./latexmk.1.orig 2015-03-09 10:01:22.000000000 -0600
|
--- latexmk.1.orig 2016-02-24 10:28:22.000000000 -0700
|
||||||
+++ ./latexmk.1 2015-11-26 15:48:36.358568318 -0700
|
+++ latexmk.1 2016-02-25 19:19:08.175799405 -0700
|
||||||
@@ -986,6 +986,7 @@ system RC file, in the following order,
|
@@ -998,6 +998,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 for the first it finds of
|
that of cygwin), \fIlatexmk\fR reads for the first it finds of
|
||||||
--- ./latexmk.pl.orig 2015-02-05 17:00:50.000000000 -0700
|
--- latexmk.pl.orig 2016-02-24 09:05:16.000000000 -0700
|
||||||
+++ ./latexmk.pl 2015-11-26 15:48:36.370567346 -0700
|
+++ latexmk.pl 2016-02-25 19:19:08.181798924 -0700
|
||||||
@@ -936,13 +936,9 @@ else {
|
@@ -947,13 +947,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.
|
||||||
|
24
latexmk.spec
24
latexmk.spec
@ -1,6 +1,6 @@
|
|||||||
Name: latexmk
|
Name: latexmk
|
||||||
Version: 4.43a
|
Version: 4.44
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A make-like utility for LaTeX files
|
Summary: A make-like utility for LaTeX files
|
||||||
|
|
||||||
%global upstreamver %(sed 's/\\.//' <<< %{version})
|
%global upstreamver %(sed 's/\\.//' <<< %{version})
|
||||||
@ -36,9 +36,21 @@ Before using a previewer, read the file README.fedora.
|
|||||||
%setup -q -n %{name}
|
%setup -q -n %{name}
|
||||||
%patch0
|
%patch0
|
||||||
|
|
||||||
|
fixtimestamp() {
|
||||||
|
touch -r $1.orig $1
|
||||||
|
rm -f $1.orig
|
||||||
|
}
|
||||||
|
|
||||||
|
# Fix encoding
|
||||||
|
pushd example_rcfiles
|
||||||
|
mv texinfo-latexmkrc texinfo-latexmkrc.orig
|
||||||
|
iconv -f iso8859-1 -t utf-8 texinfo-latexmkrc.orig > texinfo-latexmkrc
|
||||||
|
fixtimestamp texinfo-latexmkrc
|
||||||
|
popd
|
||||||
|
|
||||||
# Invoke perl directly
|
# Invoke perl directly
|
||||||
sed -i.orig "s|^#\!/usr/bin/env perl|#\!/usr/bin/perl -w|" latexmk.pl
|
sed -i.orig "s|^#\!/usr/bin/env perl|#\!/usr/bin/perl -w|" latexmk.pl
|
||||||
touch -r latexmk.pl.orig latexmk.pl
|
fixtimestamp latexmk.pl
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cp -p %{SOURCE2} README.fedora
|
cp -p %{SOURCE2} README.fedora
|
||||||
@ -51,6 +63,9 @@ 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 latexmk.1 $RPM_BUILD_ROOT%{_mandir}/man1
|
||||||
install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
|
install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
|
||||||
|
|
||||||
|
# Remove files we don't want in the docs
|
||||||
|
rm -f extra-scripts/*.bat
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
@ -60,6 +75,9 @@ install -m 0644 -p %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
|
|||||||
%license COPYING
|
%license COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 25 2016 Jerry James <loganjerry@gmail.com> - 4.44-1
|
||||||
|
- Update to 4.44
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.43a-2
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.43a-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user