[liblatex-tom-perl] 02/22: Import Debian changes 0.8-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 f435af749c725c99b39f6223682cff6f71024269
Merge: 645ad23 4b962ac
Author: Patrick Winnertz <winnie at debian.org>
Date:   Thu Dec 6 19:31:01 2007 +0100

    Import Debian changes 0.8-1
    
    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

 Changes          |   9 ++
 META.yml         |  18 +--
 README           | 288 ++++++++++++++++++++-------------------
 debian/changelog |  10 ++
 debian/control   |   4 +-
 debian/rules     |   4 +-
 lib/LaTeX/TOM.pm | 408 +++++++++++++++++++++++++++++++++++++++----------------
 t/pod-coverage.t |   5 +-
 t/pod.t          |   5 +-
 9 files changed, 478 insertions(+), 273 deletions(-)

diff --cc debian/changelog
index 41bf130,0000000..ecf6790
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,6 -1,0 +1,16 @@@
++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 <winnie at debian.org>  Thu, 06 Dec 2007 19:31:01 +0100
++
 +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 --cc debian/control
index 40b1ddf,0000000..e0f13ff
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,21 -1,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
++Maintainer: Patrick Winnertz <winnie at debian.org>
++Standards-Version: 3.7.3
 +
 +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 --cc debian/rules
index 3414c50,0000000..7e131c3
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,54 -1,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

-- 
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