Package: rubber
Version: 1.1+20100306-2
Severity: normal
Tags: patch upstream

Hi,

Currently the package has no support for dependency checking of
the ltxtable package. Please consider to install the attached
file to [0] to add support for it.

[0] /usr/share/pyshared/rubber/latex_modules/ltxtable.py

-- Sebastian

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
armhf

Kernel: Linux 3.6-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages rubber depends on:
ii  dpkg                1.16.9
ii  install-info        4.13a.dfsg.1-10
ii  python              2.7.3~rc2-1
ii  python-support      1.0.15
ii  texlive-latex-base  2012.20120611-5

rubber recommends no packages.

Versions of packages rubber suggests:
ii  imagemagick  8:6.7.7.10-5
pn  sam2p        <none>
pn  transfig     <none>

-- no debconf information
# This file is part of Rubber and thus covered by the GPL
# (c) Sebastian Reichel, 2012
"""
Dependency analysis for package 'ltxtable' in Rubber.
"""

def setup (document, context):
	global doc
	doc = document
	doc.hook_macro('LTXtable', 'aa', hook_ltxtable)

def hook_ltxtable (loc, width, file):
	# If the file name looks like it contains a control sequence or a macro
	# argument, forget about this \LTXtable.
	if file.find('\\') < 0 and file.find('#') < 0:
		doc.add_source(file)

Reply via email to