r10411 - in /trunk/libtree-dagnode-perl/debian: ./ changelog compat control copyright docs rules watch

vdanjean at users.alioth.debian.org vdanjean at users.alioth.debian.org
Sat Dec 1 12:23:49 UTC 2007


Author: vdanjean
Date: Sat Dec  1 12:23:49 2007
New Revision: 10411

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

Added:
    trunk/libtree-dagnode-perl/debian/
    trunk/libtree-dagnode-perl/debian/changelog
    trunk/libtree-dagnode-perl/debian/compat
    trunk/libtree-dagnode-perl/debian/control
    trunk/libtree-dagnode-perl/debian/copyright
    trunk/libtree-dagnode-perl/debian/docs
    trunk/libtree-dagnode-perl/debian/rules   (with props)
    trunk/libtree-dagnode-perl/debian/watch

Added: trunk/libtree-dagnode-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/changelog?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/changelog (added)
+++ trunk/libtree-dagnode-perl/debian/changelog Sat Dec  1 12:23:49 2007
@@ -1,0 +1,18 @@
+libtree-dagnode-perl (1.05-1) unstable; urgency=low
+
+  * New upstream version
+
+ -- Jay Bonci <jaybonci at debian.org>  Mon, 17 Jan 2005 00:19:52 -0500
+
+libtree-dagnode-perl (1.04-2) unstable; urgency=low
+
+  * Adds debian/watch file so uscan will work
+
+ -- Jay Bonci <jaybonci at debian.org>  Mon, 11 Oct 2004 03:25:43 -0400
+
+libtree-dagnode-perl (1.04-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #220287)
+
+ -- Jay Bonci <jaybonci at debian.org>  Tue, 11 Nov 2003 17:25:37 -0500
+

Added: trunk/libtree-dagnode-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/compat?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/compat (added)
+++ trunk/libtree-dagnode-perl/debian/compat Sat Dec  1 12:23:49 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libtree-dagnode-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/control?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/control (added)
+++ trunk/libtree-dagnode-perl/debian/control Sat Dec  1 12:23:49 2007
@@ -1,0 +1,21 @@
+Source: libtree-dagnode-perl
+Section: perl
+Priority: optional
+Maintainer: Jay Bonci <jaybonci at debian.org>
+Build-Depends-Indep: debhelper (>= 4.1), perl (>= 5.6.0-16)
+Standards-Version: 3.6.1.0
+
+Package: libtree-dagnode-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Tree::DAG_Node - (super)class for representing nodes in a tree 
+ Tree::DAG_Node is a (super)class for representing nodes in a tree.
+ .
+ This class encapsulates/makes/manipulates objects that represent nodes
+ in a tree structure.  The tree structure is not an object itself, but
+ is emergent from the linkages you create between nodes.  This class
+ provides the methods for making linkages that can be used to build up
+ a tree, while preventing you from ever making any kinds of linkages
+ which are not allowed in a tree (such as having a node be its own
+ mother or ancestor, or having a node have two mothers).
+

Added: trunk/libtree-dagnode-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/copyright?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/copyright (added)
+++ trunk/libtree-dagnode-perl/debian/copyright Sat Dec  1 12:23:49 2007
@@ -1,0 +1,23 @@
+This package was debianized by Jay Bonci <jaybonci at debian.org> on
+Tue, 11 Nov 2003 17:25:37 -0500.
+
+It was downloaded from http://search.cpan.org/dist/Tree-DAG_Node/
+
+Upstream Author: Sean M. Burke <sburke at cpan.org>
+
+Copyright:
+	This program is free software; you can redistribute it and/or modify
+	it under the terms of either:
+
+	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"
+
+	See:
+
+	/usr/share/common-licenses/Artistic
+	/usr/share/common-licenses/GPL
+
+	For more information regarding these licensing options

Added: trunk/libtree-dagnode-perl/debian/docs
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/docs?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/docs (added)
+++ trunk/libtree-dagnode-perl/debian/docs Sat Dec  1 12:23:49 2007
@@ -1,0 +1,1 @@
+README

Added: trunk/libtree-dagnode-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/rules?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/rules (added)
+++ trunk/libtree-dagnode-perl/debian/rules Sat Dec  1 12:23:49 2007
@@ -1,0 +1,53 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
+
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+clean:
+	dh_testdir
+	dh_testroot
+
+	-$(MAKE) clean
+	rm -f Makefile.old
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" test install
+	-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
+
+binary-arch:;
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installman
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

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

Added: trunk/libtree-dagnode-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libtree-dagnode-perl/debian/watch?rev=10411&op=file
==============================================================================
--- trunk/libtree-dagnode-perl/debian/watch (added)
+++ trunk/libtree-dagnode-perl/debian/watch Sat Dec  1 12:23:49 2007
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-module/Tree/Tree-DAG_Node-([0-9].*)\.tar.gz




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