[liblatex-tom-perl] 01/22: Import Debian changes 0.6-1

gregor herrmann gregoa at debian.org
Sat Sep 9 18:16:03 UTC 2017


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository liblatex-tom-perl.

commit 645ad23a4ddb5b7c28fe959564b2e89a92de39ac
Author: Patrick Winnertz <patrick.winnertz at skolelinux.org>
Date:   Fri Mar 30 17:37:06 2007 +0200

    Import Debian changes 0.6-1
    
    liblatex-tom-perl (0.6-1) unstable; urgency=low
    
      * Initial release (Closes: #417031)
---
 debian/changelog |  6 ++++++
 debian/compat    |  1 +
 debian/control   | 21 +++++++++++++++++++++
 debian/copyright | 13 +++++++++++++
 debian/docs      |  1 +
 debian/rules     | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 96 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..41bf130
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+liblatex-tom-perl (0.6-1) unstable; urgency=low
+
+  * Initial release (Closes: #417031)
+
+ -- Patrick Winnertz <patrick.winnertz at skolelinux.org>  Fri, 30 Mar 2007 17:37:06 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..40b1ddf
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+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 <patrick.winnertz at skolelinux.org>
+Standards-Version: 3.7.2
+
+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).
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..05d15b6
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,13 @@
+This is the debian package for the LaTeX-TOM module.
+It was created by Patrick Winnertz  <patrick.winnertz at skolelinux.org> using dh-make-perl.
+
+The upstream author is: Aaron Krowne <akrowne at vt.edu.org>.
+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.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..1333ed7
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+TODO
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3414c50
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,54 @@
+#!/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)
+
+	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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/liblatex-tom-perl.git



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