Package: condor
Version: 8.2.8~dfsg.1-1
Severity: serious
Tags: patch

condor fails to build because of the new tetex.

You're using the "H" float option.  According to
https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions you
need \usepackage{float} for that, but it seems simpler solution is to
replace it with "!h" or "h".

I have attached one possible patch.

> sbuild (Debian sbuild) 0.64.1 (13 Oct 2013) on m400-c2n1.hlinux.usa.hp.com
...
> ./misc/numbers.tex:18: LaTeX Error: Unknown float option `H'.
> See the LaTeX manual or LaTeX Companion for explanation.
> Type  H <return>  for immediate help.
>  ...
> 
> l.18 \begin{table}[H]
> 
> Output written on ref.dvi (988 pages, 3400200 bytes).
> Transcript written on ref.log.
> Makefile:74: recipe for target 'ref.html' failed


-- 
Martin Michlmayr
Linux for HP Helion, Hewlett-Packard
Description: Fix LaTeX errors

--- condor-8.2.8~dfsg.1.orig/doc/misc/numbers.tex
+++ condor-8.2.8~dfsg.1/doc/misc/numbers.tex
@@ -15,7 +15,7 @@ where the exit code is the value 100.
 Table~\ref{table:shadow-exit-codes} lists these codes.
 % shadow error codes
 \begin{center}
-\begin{table}[H]
+\begin{table}[h]
 \caption{\label{table:shadow-exit-codes}\Condor{shadow} Exit Codes}
 \begin{tabular}{|c|l|l|} \hline
 \emph{Value} & \emph{Error Name} & \emph{Description} \\ \hline \hline
@@ -55,7 +55,7 @@ the first field within a job event log f
 See more detailed descriptions of these values in
 section~\ref{sec:job-log-events}.
 \begin{center}
-\begin{table}[H]
+\begin{table}[h]
 \caption{\label{table:user-log-event-codes}Event Codes in a Job Event Log}
 \begin{tabular}{|l|c|} \hline
 \emph{Event Code} & \emph{Description}   \\ \hline \hline
@@ -100,7 +100,7 @@ section~\ref{sec:job-log-events}.
 
 
 \begin{center}
-\begin{table}[H]
+\begin{table}[h]
 \caption{\label{well-known-port-numbers}Well-Known Port Numbers}
 \begin{tabular}{|l|c|} \hline
 \emph{Server} & \emph{Port Number}   \\ \hline \hline
@@ -115,7 +115,7 @@ GT4 web services      &   8443  \\ \hlin
 
 
 \begin{center}
-\begin{table}[H]
+\begin{table}[h]
 \caption{\label{daemoncore-commands}DaemonCore Commands}
 \begin{tabular}{|l|c|} \hline
 \emph{Number} & \emph{Name}   \\ \hline \hline
@@ -144,7 +144,7 @@ GT4 web services      &   8443  \\ \hlin
 
 
 \begin{center}
-\begin{table}[H]
+\begin{table}[h]
 \caption{\label{daemon-exit-codes}DaemonCore Daemon Exit Codes}
 \begin{tabular}{|l|c|} \hline
 \emph{Exit Code} & \emph{Description}   \\ \hline \hline

Reply via email to