r21538 - in /trunk/libtree-simple-visitorfactory-perl: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules patch-stamp

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 15:53:28 UTC 2008


Author: gregoa
Date: Sun Jun 15 15:53:28 2008
New Revision: 21538

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

Added:
    trunk/libtree-simple-visitorfactory-perl/debian/
    trunk/libtree-simple-visitorfactory-perl/debian/changelog
    trunk/libtree-simple-visitorfactory-perl/debian/compat
    trunk/libtree-simple-visitorfactory-perl/debian/control
    trunk/libtree-simple-visitorfactory-perl/debian/copyright
    trunk/libtree-simple-visitorfactory-perl/debian/rules   (with props)
    trunk/libtree-simple-visitorfactory-perl/patch-stamp

Added: trunk/libtree-simple-visitorfactory-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtree-simple-visitorfactory-perl/debian/changelog?rev=21538&op=file
==============================================================================
--- trunk/libtree-simple-visitorfactory-perl/debian/changelog (added)
+++ trunk/libtree-simple-visitorfactory-perl/debian/changelog Sun Jun 15 15:53:28 2008
@@ -1,0 +1,26 @@
+libtree-simple-visitorfactory-perl (0.10-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467928
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:09:14 +0100
+
+libtree-simple-visitorfactory-perl (0.10-1) unstable; urgency=low
+
+  * New upstream release.
+  * Updated Maintainer field with my new mail address.
+  * Added Tree::Simple::Visitor::VariableDepthClone to the package
+    description.
+  * Introduced version in Test::Simple dependency.
+  * Cleaned up debian/rules.
+  * Removed dpatch stuff. It's not needed anymore.
+  * Added upstream URL to debian/copyright.
+
+ -- Florian Ragwitz <rafl at debian.org>  Fri, 27 Jan 2006 07:33:20 +0100
+
+libtree-simple-visitorfactory-perl (0.05-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <florian at mookooh.org>  Mon, 30 May 2005 14:41:05 +0200
+

Added: trunk/libtree-simple-visitorfactory-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtree-simple-visitorfactory-perl/debian/compat?rev=21538&op=file
==============================================================================
--- trunk/libtree-simple-visitorfactory-perl/debian/compat (added)
+++ trunk/libtree-simple-visitorfactory-perl/debian/compat Sun Jun 15 15:53:28 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libtree-simple-visitorfactory-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtree-simple-visitorfactory-perl/debian/control?rev=21538&op=file
==============================================================================
--- trunk/libtree-simple-visitorfactory-perl/debian/control (added)
+++ trunk/libtree-simple-visitorfactory-perl/debian/control Sun Jun 15 15:53:28 2008
@@ -1,0 +1,36 @@
+Source: libtree-simple-visitorfactory-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libtree-simple-perl (>= 1.12), libtest-exception-perl, libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.6.2
+
+Package: libtree-simple-visitorfactory-perl
+Architecture: all
+Depends: ${perl:Depends}, libtree-simple-perl (>= 1.12)
+Description: A collection of dispensing visitor objects for Tree::Simple
+ This package contains a number of visitor objects which can perform various
+ tasks on Tree::Simple objects.
+ .
+ The following visitors are included:
+  * PathToRoot: find the path back to the tree's root node
+  * FindByPath: find the node specified by a path
+  * FindByUID: find the node with the same UID
+  * FindByNodeValue: find the node with the same node value
+  * BreadthFirstTraversal: implements a breadth-first traversal
+  * PostOrderTraversal: implements a post-order traversal
+  * PreOrderTraversal: implements a pre-order traversal
+  * LoadDirectoryTree: load a directory tree into a Tree::Simple hierarchy
+  * CreateDirectoryTree: create a set of directories and files from a
+    Tree::Simple hierarchy
+  * FromNestedArray: create a Tree::Simple hierarchy from nested arrays
+  * ToNestedArray: create a nested array construct from a Tree::Simple hierarchy
+  * Tree::Simple::Visitor::VariableDepthClone: clone parts of Tree hierarchies
+  * FromNestedHash: create a Tree::Simple hierarchy from nested hashes
+  * ToNestedHash: create a nested hash construct from a Tree::Simple hierarchy
+  * LoadClassHierarchy: create a Tree::Simple hierarchy which models the classes
+    inheritance heirarchy
+  * GetAllDescendents: return all the descendents recursively on down the
+    hierarchy
+  * Sort: implements a multi-level sort of a Tree::Simple heirarchy

Added: trunk/libtree-simple-visitorfactory-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtree-simple-visitorfactory-perl/debian/copyright?rev=21538&op=file
==============================================================================
--- trunk/libtree-simple-visitorfactory-perl/debian/copyright (added)
+++ trunk/libtree-simple-visitorfactory-perl/debian/copyright Sun Jun 15 15:53:28 2008
@@ -1,0 +1,17 @@
+This package was debianized by Florian Ragwitz <florian at mookooh.org> on
+Mon, 30 May 2005 14:57:19 +0200.
+
+It was downloaded from http://search.cpan.org/~stevan/Tree-Simple-VisitorFactory/
+
+Upstream Author: Stevan Little <stevan at iinteractive.com>
+
+Copyright: Copyright 2004 by Infinity Interactive, Inc.
+
+License: 
+
+ This library is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+
+ On Debian GNU/Linux systems, the complete text of the GNU General Public
+ License can be found in `/usr/share/common-licenses/GPL' and the Artistic
+ Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libtree-simple-visitorfactory-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtree-simple-visitorfactory-perl/debian/rules?rev=21538&op=file
==============================================================================
--- trunk/libtree-simple-visitorfactory-perl/debian/rules (added)
+++ trunk/libtree-simple-visitorfactory-perl/debian/rules Sun Jun 15 15:53:28 2008
@@ -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) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

Propchange: trunk/libtree-simple-visitorfactory-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtree-simple-visitorfactory-perl/patch-stamp
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtree-simple-visitorfactory-perl/patch-stamp?rev=21538&op=file
==============================================================================
--- trunk/libtree-simple-visitorfactory-perl/patch-stamp (added)
+++ trunk/libtree-simple-visitorfactory-perl/patch-stamp Sun Jun 15 15:53:28 2008
@@ -1,0 +1,2 @@
+Patches applied in the Debian version of :
+




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