r6847 - in /trunk/libdata-dump-streamer-perl: .answer debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules debian/watch

sukria at users.alioth.debian.org sukria at users.alioth.debian.org
Fri Aug 17 15:41:49 UTC 2007


Author: sukria
Date: Fri Aug 17 15:41:49 2007
New Revision: 6847

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

Added:
    trunk/libdata-dump-streamer-perl/.answer
    trunk/libdata-dump-streamer-perl/debian/
    trunk/libdata-dump-streamer-perl/debian/changelog
    trunk/libdata-dump-streamer-perl/debian/compat
    trunk/libdata-dump-streamer-perl/debian/control
    trunk/libdata-dump-streamer-perl/debian/copyright
    trunk/libdata-dump-streamer-perl/debian/rules   (with props)
    trunk/libdata-dump-streamer-perl/debian/watch

Added: trunk/libdata-dump-streamer-perl/.answer
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/.answer?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/.answer (added)
+++ trunk/libdata-dump-streamer-perl/.answer Fri Aug 17 15:41:49 2007
@@ -1,0 +1,1 @@
+no

Added: trunk/libdata-dump-streamer-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/debian/changelog?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/debian/changelog (added)
+++ trunk/libdata-dump-streamer-perl/debian/changelog Fri Aug 17 15:41:49 2007
@@ -1,0 +1,5 @@
+libdata-dump-streamer-perl (2.03-30-1) unstable; urgency=low
+
+  * Initial Release (closes: #438484).
+
+ -- Alexis Sukrieh <sukria at debian.org>  Fri, 17 Aug 2007 17:27:37 +0200

Added: trunk/libdata-dump-streamer-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/debian/compat?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/debian/compat (added)
+++ trunk/libdata-dump-streamer-perl/debian/compat Fri Aug 17 15:41:49 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libdata-dump-streamer-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/debian/control?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/debian/control (added)
+++ trunk/libdata-dump-streamer-perl/debian/control Fri Aug 17 15:41:49 2007
@@ -1,0 +1,32 @@
+Source: libdata-dump-streamer-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-7), libb-utils-perl, perl-modules
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Alexis Sukrieh <sukria at debian.org>
+Standards-Version: 3.7.2
+
+Package: libdata-dump-streamer-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, libb-utils-perl, perl-modules
+Description:  Accurately serialize a data structure as Perl code.
+ Given a list of scalars or reference variables, writes out
+ their contents in perl syntax. The references can also be
+ objects. The contents of each variable is output using the least
+ number of Perl statements as convenient, usually only one.
+ Self-referential structures, closures, and objects are output
+ correctly.
+ .
+ The return value can be evaled to get back an identical copy
+ of the original reference structure. In some cases this may
+ require the use of utility subs that
+ Data::Dump::Streamer|Data::Dump::Streamer will optionally
+ export.
+ .
+ This module is very similar in concept to the core module
+ Data::Dumper|Data::Dumper, with the major differences
+ being that this module is designed to output to a stream
+ instead of constructing its output in memory (trading speed
+ for memory), and that the traversal over the data structure
+ is effectively breadth first versus the depth first
+ traversal done by the others.

Added: trunk/libdata-dump-streamer-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/debian/copyright?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/debian/copyright (added)
+++ trunk/libdata-dump-streamer-perl/debian/copyright Fri Aug 17 15:41:49 2007
@@ -1,0 +1,11 @@
+This is the debian package for the Data-Dump-Streamer module.
+It was created by Alexis Sukrieh <sukria at debian.org> using dh-make-perl.
+
+The upstream authro is:
+
+Yves Orton <yves at cpan.org>
+
+Copyright (C) 2003-2005 Yves Orton
+
+The Debian packaging is (C) 2007, Alexis Sukrieh <sukria at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libdata-dump-streamer-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/debian/rules?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/debian/rules (added)
+++ trunk/libdata-dump-streamer-perl/debian/rules Fri Aug 17 15:41:49 2007
@@ -1,0 +1,94 @@
+#!/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.
+
+# 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)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture dependent package, we are not
+	# supposed to install stuff to /usr/share. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+
+	touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installexamples 
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	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-dump-streamer-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdata-dump-streamer-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libdata-dump-streamer-perl/debian/watch?rev=6847&op=file
==============================================================================
--- trunk/libdata-dump-streamer-perl/debian/watch (added)
+++ trunk/libdata-dump-streamer-perl/debian/watch Fri Aug 17 15:41:49 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Data/Data-Dump-Streamer-([\d\.]+)\.(tar\.gz|tar|tgz)




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