r39754 - in /trunk/liblatex-table-perl/debian: ./ changelog compat control copyright liblatex-table-perl.docs liblatex-table-perl.examples rules watch

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sun Jul 12 12:18:23 UTC 2009


Author: carnil-guest
Date: Sun Jul 12 12:18:17 2009
New Revision: 39754

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=39754
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/liblatex-table-perl/debian/
    trunk/liblatex-table-perl/debian/changelog
    trunk/liblatex-table-perl/debian/compat
    trunk/liblatex-table-perl/debian/control
    trunk/liblatex-table-perl/debian/copyright
    trunk/liblatex-table-perl/debian/liblatex-table-perl.docs
    trunk/liblatex-table-perl/debian/liblatex-table-perl.examples
    trunk/liblatex-table-perl/debian/rules   (with props)
    trunk/liblatex-table-perl/debian/watch

Added: trunk/liblatex-table-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/changelog?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/changelog (added)
+++ trunk/liblatex-table-perl/debian/changelog Sun Jul 12 12:18:17 2009
@@ -1,0 +1,5 @@
+liblatex-table-perl (0.9.15-1) unstable; urgency=low
+  
+  * Initial Release. (Closes: #531334)
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Wed, 03 Jun 2009 22:44:30 +0200

Added: trunk/liblatex-table-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/compat?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/compat (added)
+++ trunk/liblatex-table-perl/debian/compat Sun Jul 12 12:18:17 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/liblatex-table-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/control?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/control (added)
+++ trunk/liblatex-table-perl/debian/control Sun Jul 12 12:18:17 2009
@@ -1,0 +1,44 @@
+Source: liblatex-table-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: libmoose-perl, libmoose-policy-perl, libtemplate-perl,
+ libtest-nowarnings-perl, libtest-pod-coverage-perl (>= 1.04),
+ libtest-pod-perl (>= 1.14), perl (>= 5.10.0)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+Standards-Version: 3.8.2
+Homepage: http://search.cpan.org/dist/LaTeX-Table/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/liblatex-table-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/liblatex-table-perl/
+
+Package: liblatex-table-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, liblatex-driver-perl,
+ liblatex-encode-perl, libmoose-perl, libmoose-policy-perl, libreadonly-perl,
+ libtemplate-perl, libtext-csv-perl, libnumber-format-perl
+Description: Perl extension for the automatic generation of LaTeX tables
+ LaTeX::Table is a Perl extension for the automatic generation of LaTeX tables
+ .
+ LaTeX makes professional typesetting easy. Unfortunately, this is not
+ entirely true for tables and the standard LaTeX table macros have a rather
+ limited functionality. LaTeX::Table supports many CTAN packages and hides the
+ complexity of using them behind an easy and intuitive API.
+ .
+ This module supports multipage tables via the xtab and the longtable package.
+ For publication quality tables it utilizes the booktabs package. It also
+ supports the tabularx and tabulary packages for nicer fixed-width tables.
+ Furthermore, it supports the colortbl package for colored tables optimized for
+ presentations.  The powerful new ctable package is supported and especially
+ recommended when footnotes are needed. LaTeX::Table ships with some
+ predefined, good looking themes.
+ .
+ This module ships with two small utilities. The first, csv2pdf is a CSV to PDF
+ converter. It is only about 100 lines of code short and only meant as an
+ example application, but it is already very powerful. It requires Getopt::Long,
+ Text::CSV, LaTeX::Encode and LaTeX::Driver.
+ .
+ The second utility is ltpretty. It takes a lazy formatted LaTeX table from
+ STDIN (typically piped from Vim or emacs) and outputs a completely formatted
+ table. This makes this module not only useful for automatically generated
+ reports, but also saves a lot of typing work in creating custom tables.

Added: trunk/liblatex-table-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/copyright?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/copyright (added)
+++ trunk/liblatex-table-perl/debian/copyright Sun Jul 12 12:18:17 2009
@@ -1,0 +1,28 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Maintainer: Markus Riester <mriester at gmx.de>
+Source: http://search.cpan.org/dist/LaTeX-Table/
+Name: LaTeX-Table
+
+Files: *
+Copyright: 2006-2009, Markus Riester <mriester at gmx.de>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2009, Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+X-Comment:
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+X-Comment:
+ On Debian GNU/Linux systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/liblatex-table-perl/debian/liblatex-table-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/liblatex-table-perl.docs?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/liblatex-table-perl.docs (added)
+++ trunk/liblatex-table-perl/debian/liblatex-table-perl.docs Sun Jul 12 12:18:17 2009
@@ -1,0 +1,2 @@
+README
+TODO

Added: trunk/liblatex-table-perl/debian/liblatex-table-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/liblatex-table-perl.examples?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/liblatex-table-perl.examples (added)
+++ trunk/liblatex-table-perl/debian/liblatex-table-perl.examples Sun Jul 12 12:18:17 2009
@@ -1,0 +1,2 @@
+examples/*
+examples/*

Added: trunk/liblatex-table-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/rules?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/rules (added)
+++ trunk/liblatex-table-perl/debian/rules Sun Jul 12 12:18:17 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/liblatex-table-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/liblatex-table-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-table-perl/debian/watch?rev=39754&op=file
==============================================================================
--- trunk/liblatex-table-perl/debian/watch (added)
+++ trunk/liblatex-table-perl/debian/watch Sun Jul 12 12:18:17 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/LaTeX-Table/   .*/LaTeX-Table-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list