r4583 - in /packages/libtree-simple-perl/trunk: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch lib/Tree/Simple.pm

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Mon Dec 4 23:50:50 CET 2006


Author: ntyni-guest
Date: Mon Dec  4 23:50:50 2006
New Revision: 4583

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4583
Log:
Load libtree-simple-perl-1.17 into packages/libtree-simple-perl/trunk.

Added:
    packages/libtree-simple-perl/trunk/debian/
    packages/libtree-simple-perl/trunk/debian/changelog
    packages/libtree-simple-perl/trunk/debian/compat
    packages/libtree-simple-perl/trunk/debian/control
    packages/libtree-simple-perl/trunk/debian/copyright
    packages/libtree-simple-perl/trunk/debian/rules   (with props)
    packages/libtree-simple-perl/trunk/debian/watch
Modified:
    packages/libtree-simple-perl/trunk/lib/Tree/Simple.pm   (props changed)

Added: packages/libtree-simple-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtree-simple-perl/trunk/debian/changelog?rev=4583&op=file
==============================================================================
--- packages/libtree-simple-perl/trunk/debian/changelog (added)
+++ packages/libtree-simple-perl/trunk/debian/changelog Mon Dec  4 23:50:50 2006
@@ -1,0 +1,61 @@
+libtree-simple-perl (1.17-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stephen Quinney <sjq at debian.org>  Fri, 27 Oct 2006 20:45:39 +0100
+
+libtree-simple-perl (1.16-1) unstable; urgency=low
+
+  * New upstream release
+  * Updated dependencies on perl to 5.8.8-1 so we get a minimum version of
+    1.18 for Scalar::Util
+  * Switched to my debian.org email address
+  * Updated copyright years to match upstream
+
+ -- Stephen Quinney <sjq at debian.org>  Thu, 23 Feb 2006 21:25:50 +0000
+
+libtree-simple-perl (1.15-1) unstable; urgency=low
+
+  * New upstream release
+  * debian/copyright - Updated statement to include 2005.
+
+ -- Stephen Quinney <sjq at debian.org>  Sat, 11 Jun 2005 11:46:49 +0100
+
+libtree-simple-perl (1.14-1) unstable; urgency=low
+
+  * New upstream release - various new functionality.
+
+ -- Stephen Quinney <sjq at debian.org>  Mon, 22 Nov 2004 18:50:26 +0000
+
+libtree-simple-perl (1.12-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stephen Quinney <sjq at debian.org>  Sat,  9 Oct 2004 08:12:38 +0100
+
+libtree-simple-perl (1.10-1) unstable; urgency=low
+
+  * New upstream release - some new methods and a fix for a memory leak.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  3 Sep 2004 19:19:08 +0100
+
+libtree-simple-perl (1.07-1) unstable; urgency=low
+
+  * New upstream release - minor change adding 2 new methods.
+  * Added build-dependency on libtest-pod-perl.
+
+ -- Stephen Quinney <sjq at debian.org>  Tue,  3 Aug 2004 19:05:46 +0100
+
+libtree-simple-perl (1.06-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Stephen Quinney <sjq at debian.org>  Mon, 12 Jul 2004 15:16:06 +0100
+
+libtree-simple-perl (1.05-1) unstable; urgency=low
+
+  *  Inital release, closes: #256644.
+
+ -- Stephen Quinney <sjq at debian.org>  Fri,  2 Jul 2004 11:58:17 +0100
+
+

Added: packages/libtree-simple-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtree-simple-perl/trunk/debian/compat?rev=4583&op=file
==============================================================================
--- packages/libtree-simple-perl/trunk/debian/compat (added)
+++ packages/libtree-simple-perl/trunk/debian/compat Mon Dec  4 23:50:50 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libtree-simple-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtree-simple-perl/trunk/debian/control?rev=4583&op=file
==============================================================================
--- packages/libtree-simple-perl/trunk/debian/control (added)
+++ packages/libtree-simple-perl/trunk/debian/control Mon Dec  4 23:50:50 2006
@@ -1,0 +1,37 @@
+Source: libtree-simple-perl
+Section: perl
+Priority: optional
+Maintainer: Stephen Quinney <sjq at debian.org>
+Build-Depends: debhelper (>= 4)
+Build-Depends-Indep: perl (>= 5.8.8-1), libtest-exception-perl (>= 0.15), libtest-pod-perl (>= 1.14)
+Standards-Version: 3.7.2
+
+Package: libtree-simple-perl
+Architecture: all
+Depends: perl (>= 5.8.8-1)
+Description: A simple tree object
+ This module is a fully object-oriented implementation of a simple
+ n-ary tree. It is built upon the concept of parent-child
+ relationships, so therefore every Tree::Simple object has both a
+ parent and a set of children (who themselves may have children, and so
+ on). Every Tree::Simple object also has siblings, as they are just the
+ children of their immediate parent.
+ .
+ It can be used to model hierarchal information such as a file-system,
+ the organizational structure of a company, an object inheritance
+ hierarchy, versioned files from a version control system or even an
+ abstract syntax tree for use in a parser. It makes no assumptions as
+ to your intended usage, but instead simply provides the structure and
+ means of accessing and traversing said structure.
+ .
+ This module uses exceptions and a minimal Design By Contract
+ style. All method arguments are required unless specified in the
+ documentation, if a required argument is not defined an exception will
+ usually be thrown. Many arguments are also required to be of a
+ specific type, for instance the $parent argument to the constructor
+ must be a Tree::Simple object or an object derived from Tree::Simple,
+ otherwise an exception is thrown. This may seems harsh to some, but
+ this allows me to have the confidence that my code works as I intend,
+ and for you to enjoy the same level of confidence when using this
+ module. Note however that this module does not use any Exception or
+ Error module, the exceptions are just strings thrown with die.

Added: packages/libtree-simple-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtree-simple-perl/trunk/debian/copyright?rev=4583&op=file
==============================================================================
--- packages/libtree-simple-perl/trunk/debian/copyright (added)
+++ packages/libtree-simple-perl/trunk/debian/copyright Mon Dec  4 23:50:50 2006
@@ -1,0 +1,26 @@
+This package was debianized by Stephen Quinney <sjq at debian.org> on
+Fri, 02 Jul 2004 11:59:25 +0100
+
+It was downloaded from http://search.cpan.org/CPAN/authors/id/S/ST/STEVAN/
+
+Author: Stevan Little <stevan at iinteractive.com>
+
+Copyright:
+
+   Copyright 2004 - 2006 by Infinity Interactive, Inc.
+   http://www.iinteractive.com
+
+   This library is free software; you can redistribute it and/or modify
+   it under the same terms as Perl itself, these are:
+
+   a) the GNU General Public License as published by the Free Software
+      Foundation; either version 1, or (at your option) any later
+      version, or
+
+   b) the "Artistic License" which comes with Perl.
+
+   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: packages/libtree-simple-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtree-simple-perl/trunk/debian/rules?rev=4583&op=file
==============================================================================
--- packages/libtree-simple-perl/trunk/debian/rules (added)
+++ packages/libtree-simple-perl/trunk/debian/rules Mon Dec  4 23:50:50 2006
@@ -1,0 +1,73 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE=$(shell dh_listpackages)
+
+PERL = /usr/bin/perl
+
+DESTDIR=..
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+
+	$(PERL) Makefile.PL verbose INSTALLDIRS=vendor
+
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp
+	dh_testdir
+
+	$(MAKE)
+	$(MAKE) test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot 
+
+	[ ! -e Makefile ] || $(MAKE) distclean
+
+	dh_clean build-stamp configure-stamp
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+	# Remove any empty directories
+
+	find $(TMP)/usr -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty
+
+
+# Build architecture-independent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installman
+	dh_installchangelogs Changes
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
+

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

Added: packages/libtree-simple-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libtree-simple-perl/trunk/debian/watch?rev=4583&op=file
==============================================================================
--- packages/libtree-simple-perl/trunk/debian/watch (added)
+++ packages/libtree-simple-perl/trunk/debian/watch Mon Dec  4 23:50:50 2006
@@ -1,0 +1,6 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://www.cpan.org/modules/by-authors/id/S/ST/STEVAN/Tree-Simple-(\d+\.\d+)\.tar\.gz debian uupdate

Propchange: packages/libtree-simple-perl/trunk/lib/Tree/Simple.pm
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Mon Dec  4 23:50:50 2006
@@ -1,0 +1,1 @@
+*




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