r7639 - in /trunk/libdata-walk-perl/debian: ./ changelog compat control copyright rules watch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Sep 17 10:53:11 UTC 2007


Author: dmn
Date: Mon Sep 17 10:53:11 2007
New Revision: 7639

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

Added:
    trunk/libdata-walk-perl/debian/
    trunk/libdata-walk-perl/debian/changelog
    trunk/libdata-walk-perl/debian/compat
    trunk/libdata-walk-perl/debian/control
    trunk/libdata-walk-perl/debian/copyright
    trunk/libdata-walk-perl/debian/rules   (with props)
    trunk/libdata-walk-perl/debian/watch

Added: trunk/libdata-walk-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdata-walk-perl/debian/changelog?rev=7639&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/changelog (added)
+++ trunk/libdata-walk-perl/debian/changelog Mon Sep 17 10:53:11 2007
@@ -1,0 +1,5 @@
+libdata-walk-perl (1.00-1) unstable; urgency=low
+
+  * Initial Release (Closes: #442837).
+
+ -- Damyan Ivanov <dmn at debian.org>  Mon, 17 Sep 2007 13:33:07 +0300

Added: trunk/libdata-walk-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdata-walk-perl/debian/compat?rev=7639&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/compat (added)
+++ trunk/libdata-walk-perl/debian/compat Mon Sep 17 10:53:11 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libdata-walk-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdata-walk-perl/debian/control?rev=7639&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/control (added)
+++ trunk/libdata-walk-perl/debian/control Mon Sep 17 10:53:11 2007
@@ -1,0 +1,21 @@
+Source: libdata-walk-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Damyan Ivanov <dmn at debian.org>
+Standards-Version: 3.7.2
+
+Package: libdata-walk-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Traverse Perl data structures
+ With Data::Walk, one can have a call back function being called for each node
+ in a given structure. It works with hash references, array references and
+ blessed references of arbitrary depth.
+ .
+ Data::Walk is similar to File::Find, but instead of directory hiearchies, it
+ works with Perl data.
+ .
+  Homepage: http://search.cpan.org/dist/Data-Walk/

Added: trunk/libdata-walk-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdata-walk-perl/debian/copyright?rev=7639&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/copyright (added)
+++ trunk/libdata-walk-perl/debian/copyright Mon Sep 17 10:53:11 2007
@@ -1,0 +1,30 @@
+This is the debian package for the Data-Walk module.
+It was created by Damyan Ivanov <dmn at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Data-Walk/
+
+Author and Copyright:
+    Copyright (C) 2005-2006, Guido Flohr <guido at imperia.net>, all rights
+    reserved.
+
+License:
+    This program is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Library General Public License as published
+    by the Free Software Foundation; either version 2, or (at your option)
+    any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public
+    License along with this program; if not, write to the Free Software
+    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+    USA.
+
+On Debian systems, the full text of GNU Library General Public License can be
+found in /usr/share/common-licenses/LGPL.
+
+The Debian packaging is (C) 2007, Damyan Ivanov <dmn at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdata-walk-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdata-walk-perl/debian/rules?rev=7639&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/rules (added)
+++ trunk/libdata-walk-perl/debian/rules Mon Sep 17 10:53:11 2007
@@ -1,0 +1,77 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+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
+
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+	$(PERL) Build test
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build distclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(PERL) Build install destdir=$(TMP)
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs NEWS README
+	#dh_installexamples
+	dh_installchangelogs ChangeLog
+	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/libdata-walk-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdata-walk-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libdata-walk-perl/debian/watch?rev=7639&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/watch (added)
+++ trunk/libdata-walk-perl/debian/watch Mon Sep 17 10:53:11 2007
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://www.cpan.org/modules/by-module/Data/Data-Walk-([\.\d]+)\.(?:tar\.gz|tar|tgz)$




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