--- liblatex-tom-perl-1.00.orig/debian/compat +++ liblatex-tom-perl-1.00/debian/compat @@ -0,0 +1 @@ +5 --- liblatex-tom-perl-1.00.orig/debian/copyright +++ liblatex-tom-perl-1.00/debian/copyright @@ -0,0 +1,13 @@ +This is the debian package for the LaTeX-TOM module. +It was created by Patrick Winnertz using dh-make-perl. + +The upstream author is: Aaron Krowne . +Copyright (c) 2002 Aaron Krowne + +The sourcecode is downloaded from: http://search.cpan.org/~schubiger/LaTeX-TOM-0.6/lib/LaTeX/TOM.pm + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- liblatex-tom-perl-1.00.orig/debian/watch +++ liblatex-tom-perl-1.00/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/CPAN/authors/id/S/SC/SCHUBIGER/LaTeX-TOM-([\d\.]*).tar.gz \ No newline at end of file --- liblatex-tom-perl-1.00.orig/debian/docs +++ liblatex-tom-perl-1.00/debian/docs @@ -0,0 +1 @@ +TODO --- liblatex-tom-perl-1.00.orig/debian/rules +++ liblatex-tom-perl-1.00/debian/rules @@ -0,0 +1,56 @@ +#!/usr/bin/make -f + +export PERL_MM_USE_DEFAULT=1 +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Build.PL installdirs=vendor + OPTIMIZE="-Wall -O2 -g" $(PERL) Build + touch build-stamp + +clean: + dh_testdir + dh_testroot + -$(PERL) Build distclean + rm -rf Makefile.old + dh_clean build-stamp install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + $(PERL) Build test + $(PERL) Build install destdir=$(TMP) + find $(TMP) -type f -name .packlist | xargs rm -f + #Delete automatically empty dirs. + find $(TMP) -depth -type d -empty -exec rmdir {} \; + touch install-stamp + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- liblatex-tom-perl-1.00.orig/debian/changelog +++ liblatex-tom-perl-1.00/debian/changelog @@ -0,0 +1,25 @@ +liblatex-tom-perl (1.00-1) unstable; urgency=low + + * New upstream release (Closes: #531336) + * Added watchfile to see when newer version are released. + * Added Hompage: to control + * Bumped standards-version to 3.8.3, no further changes needed + + -- Patrick Winnertz Mon, 25 Jan 2010 22:39:34 +0100 + +liblatex-tom-perl (0.8-1) unstable; urgency=low + + * New upstream release + * Changed maintainer address + * Bumped Standard-Versions number + * Remove .packlist from package (added find ... | xargs rm -f statement to + debian/rules + + -- Patrick Winnertz Thu, 06 Dec 2007 19:31:01 +0100 + +liblatex-tom-perl (0.6-1) unstable; urgency=low + + * Initial release (Closes: #417031) + + -- Patrick Winnertz Fri, 30 Mar 2007 17:37:06 +0200 + --- liblatex-tom-perl-1.00.orig/debian/control +++ liblatex-tom-perl-1.00/debian/control @@ -0,0 +1,22 @@ +Source: liblatex-tom-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.0-7), libmodule-build-perl, libtest-pod-coverage-perl, libtest-pod-perl +Maintainer: Patrick Winnertz +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/~schubiger/LaTeX-TOM-1.00/lib/LaTeX/TOM.pm + +Package: liblatex-tom-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: A module for parsing, analyzing and manipulating latex documents + This module provides a parser which parses and interprets (though not fully) + LaTeX documents and returns a tree-based representation of what it finds. + This tree is a LaTeX::TOM::Tree. The tree contains LaTeX::TOM::Node nodes. + . + This module should be especially useful to anyone who wants to do processing + of LaTeX documents that requires extraction of plain-text information, or + altering of the plain-text components (or alternatively, the math-text + components). +