r30945 - in /trunk/libdata-stream-bulk-perl/debian: ./ changelog compat control copyright patches/ patches/dont-require-test-tempdir patches/fix-pod2man-errors patches/series rules watch

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sat Feb 21 06:18:56 UTC 2009


Author: ryan52-guest
Date: Sat Feb 21 06:18:53 2009
New Revision: 30945

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

Added:
    trunk/libdata-stream-bulk-perl/debian/
    trunk/libdata-stream-bulk-perl/debian/changelog
    trunk/libdata-stream-bulk-perl/debian/compat
    trunk/libdata-stream-bulk-perl/debian/control
    trunk/libdata-stream-bulk-perl/debian/copyright
    trunk/libdata-stream-bulk-perl/debian/patches/
    trunk/libdata-stream-bulk-perl/debian/patches/dont-require-test-tempdir
    trunk/libdata-stream-bulk-perl/debian/patches/fix-pod2man-errors
    trunk/libdata-stream-bulk-perl/debian/patches/series
    trunk/libdata-stream-bulk-perl/debian/rules   (with props)
    trunk/libdata-stream-bulk-perl/debian/watch

Added: trunk/libdata-stream-bulk-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/changelog?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/changelog (added)
+++ trunk/libdata-stream-bulk-perl/debian/changelog Sat Feb 21 06:18:53 2009
@@ -1,0 +1,5 @@
+libdata-stream-bulk-perl (0.03-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Fri, 20 Feb 2009 21:43:12 -0800

Added: trunk/libdata-stream-bulk-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/compat?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/compat (added)
+++ trunk/libdata-stream-bulk-perl/debian/compat Sat Feb 21 06:18:53 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libdata-stream-bulk-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/control?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/control (added)
+++ trunk/libdata-stream-bulk-perl/debian/control Sat Feb 21 06:18:53 2009
@@ -1,0 +1,33 @@
+Source: libdata-stream-bulk-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), quilt
+Build-Depends-Indep: perl (>= 5.6.0-12), libnamespace-clean-perl (>= 0.08),
+  libtest-use-ok-perl, libsub-exporter-perl, libmoose-perl, libdbix-class-perl,
+  libdbi-perl, libdbd-sqlite3-perl, libpath-class-perl, libdbd-mock-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ryan Niebur <ryanryan52 at gmail.com>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Data-Stream-Bulk/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-stream-bulk-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdata-stream-bulk-perl/
+
+Package: libdata-stream-bulk-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends},
+  libnamespace-clean-perl (>= 0.08), libtest-use-ok-perl,
+  libsub-exporter-perl, libmoose-perl
+Description:  N at a time iteration API
+ Data::Stream::Bulk tries to find middle ground between one at a time and all
+ at once processing of data sets.
+ .
+ The purpose of this module is to avoid the overhead of implementing an
+ iterative API when this isn't necessary, without breaking forward
+ compatibility in case that becomes necessary later on.
+ .
+ The API optimizes for when a data set typically fits in memory and is
+ returned as an array, but the consumer cannot assume that the data set is
+ bounded.
+ .
+ The API is destructive in order to minimize the chance that resultsets are
+ leaked due to improper usage.

Added: trunk/libdata-stream-bulk-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/copyright?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/copyright (added)
+++ trunk/libdata-stream-bulk-perl/debian/copyright Sat Feb 21 06:18:53 2009
@@ -1,0 +1,28 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Yuval Kogman <nothingmuch at woobling.org>
+Upstream-Source: http://search.cpan.org/dist/Data-Stream-Bulk/
+Upstream-Name: Data-Stream-Bulk
+
+Files: *
+Copyright: 2008 Yuval Kogman <nothingmuch at woobling.org>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Ryan Niebur <ryanryan52 at gmail.com>
+License: Artistic | GPL-1+
+
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libdata-stream-bulk-perl/debian/patches/dont-require-test-tempdir
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/patches/dont-require-test-tempdir?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/patches/dont-require-test-tempdir (added)
+++ trunk/libdata-stream-bulk-perl/debian/patches/dont-require-test-tempdir Sat Feb 21 06:18:53 2009
@@ -1,0 +1,26 @@
+Description: use File::Temp instead of the author's own Test::TempDir ... I didn't want to package it
+Author: Ryan Niebur
+
+--- a/t/dbic.t
++++ b/t/dbic.t
+@@ -12,8 +12,6 @@
+ 		require DBIx::Class;
+ 		require DBI;
+ 		require DBD::SQLite;
+-		require Test::TempDir;
+-		Test::TempDir->import('temp_root');
+ 		1;
+ 	}
+ }
+@@ -39,8 +37,9 @@
+ 
+ 			1;
+ 		}
+-
+-		my $file = temp_root()->file("db");
++                use File::Temp qw(tempdir);
++                my $temp_root = tempdir(CLEANUP => 1);
++		my $file = $temp_root . "/db";
+ 		$schema = Schema->connect("dbi:SQLite:dbname=$file", undef, undef, { RaiseError => 1 } );
+ 		$schema->storage->dbh->do("create table foo ( id integer primary key, name varchar )");
+ 	};

Added: trunk/libdata-stream-bulk-perl/debian/patches/fix-pod2man-errors
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/patches/fix-pod2man-errors?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/patches/fix-pod2man-errors (added)
+++ trunk/libdata-stream-bulk-perl/debian/patches/fix-pod2man-errors Sat Feb 21 06:18:53 2009
@@ -1,0 +1,45 @@
+Description: fixes mistakes in the POD syntax
+Author: Ryan Niebur
+
+--- a/lib/Data/Stream/Bulk/DBI.pm
++++ b/lib/Data/Stream/Bulk/DBI.pm
+@@ -106,7 +106,7 @@
+ =item all
+ 
+ Calls C<fetchall_arrayref> to get the raminder of the data (without specifying
+-C<max_rows).
++C<max_rows>.
+ 
+ =back
+ 
+--- a/lib/Data/Stream/Bulk/Filter.pm
++++ b/lib/Data/Stream/Bulk/Filter.pm
+@@ -76,6 +76,8 @@
+ 
+ =head1 METHODS
+ 
++=over 4
++
+ =item is_done
+ 
+ =item loaded
+--- a/lib/Data/Stream/Bulk/Path/Class.pm
++++ b/lib/Data/Stream/Bulk/Path/Class.pm
+@@ -154,6 +154,8 @@
+ 
+ =head1 ATTRIBUTES
+ 
++=over 4
++
+ =item chunk_size
+ 
+ Defaults to 250.
+@@ -167,6 +169,8 @@
+ If true only L<Path::Class::File> items will be returned in the output streams
+ (no directories).
+ 
++=back
++
+ =head1 METHODS
+ 
+ =over 4

Added: trunk/libdata-stream-bulk-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/patches/series?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/patches/series (added)
+++ trunk/libdata-stream-bulk-perl/debian/patches/series Sat Feb 21 06:18:53 2009
@@ -1,0 +1,2 @@
+dont-require-test-tempdir
+fix-pod2man-errors

Added: trunk/libdata-stream-bulk-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/rules?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/rules (added)
+++ trunk/libdata-stream-bulk-perl/debian/rules Sat Feb 21 06:18:53 2009
@@ -1,0 +1,25 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+build: build-stamp
+build-stamp: $(QUILT_STAMPFN)
+	dh build
+	touch $@
+
+clean: unpatch
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Propchange: trunk/libdata-stream-bulk-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libdata-stream-bulk-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-stream-bulk-perl/debian/watch?rev=30945&op=file
==============================================================================
--- trunk/libdata-stream-bulk-perl/debian/watch (added)
+++ trunk/libdata-stream-bulk-perl/debian/watch Sat Feb 21 06:18:53 2009
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/Data-Stream-Bulk/   .*/Data-Stream-Bulk-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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