r34845 - in /trunk/libasync-mergepoint-perl/debian: ./ changelog compat control copyright rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed May 6 04:27:16 UTC 2009


Author: jawnsy-guest
Date: Wed May  6 04:27:11 2009
New Revision: 34845

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

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

Added: trunk/libasync-mergepoint-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libasync-mergepoint-perl/debian/changelog?rev=34845&op=file
==============================================================================
--- trunk/libasync-mergepoint-perl/debian/changelog (added)
+++ trunk/libasync-mergepoint-perl/debian/changelog Wed May  6 04:27:11 2009
@@ -1,0 +1,5 @@
+libasync-mergepoint-perl (0.02-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #527183)
+
+ -- Jonathan Yu <frequency at cpan.org>  Tue, 5 May 2009 23:38:19 -0400

Added: trunk/libasync-mergepoint-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libasync-mergepoint-perl/debian/compat?rev=34845&op=file
==============================================================================
--- trunk/libasync-mergepoint-perl/debian/compat (added)
+++ trunk/libasync-mergepoint-perl/debian/compat Wed May  6 04:27:11 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libasync-mergepoint-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libasync-mergepoint-perl/debian/control?rev=34845&op=file
==============================================================================
--- trunk/libasync-mergepoint-perl/debian/control (added)
+++ trunk/libasync-mergepoint-perl/debian/control Wed May  6 04:27:11 2009
@@ -1,0 +1,33 @@
+Source: libasync-mergepoint-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), libmodule-build-perl
+Build-Depends-Indep: libtest-exception-perl, perl (>= 5.6.0-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <frequency at cpan.org>
+Standards-Version: 3.8.1
+Homepage: http://search.cpan.org/dist/Async-MergePoint/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libasync-mergepoint-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libasync-mergepoint-perl/
+
+Package: libasync-mergepoint-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: Perl module to resynchronize multiple control flows
+ Async::Mergepoint is a module designed to provide a way to resynchronize
+ multiple parallel control flows. Often in program logic, multiple different
+ steps need to be taken that are independent of each other, but their total
+ result is needed before the next step can be taken. In synchronous code, the
+ usual approach is to do them sequentially.
+ .
+ An asynchronous or event-based program could do this, but if each step
+ involves some IO idle time, better overall performance can often be gained by
+ running the steps in parallel. A Async::MergePoint object can then be used to
+ wait for all of the steps to complete, before passing the combined result of
+ each step on to the next stage.
+ .
+ A merge point maintains a set of outstanding operations it is waiting on;
+ these are arbitrary string values provided at the object's construction. Each
+ time the done() method is called, the named item is marked as being complete.
+ When all of the required items are so marked, the on_finished continuation is
+ invoked.

Added: trunk/libasync-mergepoint-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libasync-mergepoint-perl/debian/copyright?rev=34845&op=file
==============================================================================
--- trunk/libasync-mergepoint-perl/debian/copyright (added)
+++ trunk/libasync-mergepoint-perl/debian/copyright Wed May  6 04:27:11 2009
@@ -1,0 +1,28 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Paul Evans <leonerd at leonerd.org.uk>
+Upstream-Source: http://search.cpan.org/dist/Async-MergePoint/
+Upstream-Name: Async-MergePoint
+
+Files: *
+Copyright: 2007-2009, Paul Evans <leonerd at leonerd.org.uk>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Jonathan Yu <frequency at cpan.org>
+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/libasync-mergepoint-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libasync-mergepoint-perl/debian/rules?rev=34845&op=file
==============================================================================
--- trunk/libasync-mergepoint-perl/debian/rules (added)
+++ trunk/libasync-mergepoint-perl/debian/rules Wed May  6 04:27:11 2009
@@ -1,0 +1,23 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	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/libasync-mergepoint-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libasync-mergepoint-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libasync-mergepoint-perl/debian/watch?rev=34845&op=file
==============================================================================
--- trunk/libasync-mergepoint-perl/debian/watch (added)
+++ trunk/libasync-mergepoint-perl/debian/watch Wed May  6 04:27:11 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/Async-MergePoint/   .*/Async-MergePoint-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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