r39696 - in /trunk/libcoro-perl/debian: ./ changelog compat control copyright libcoro-perl.docs libcoro-perl.examples rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Jul 11 04:17:54 UTC 2009


Author: jawnsy-guest
Date: Sat Jul 11 04:17:48 2009
New Revision: 39696

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

Added:
    trunk/libcoro-perl/debian/
    trunk/libcoro-perl/debian/changelog
    trunk/libcoro-perl/debian/compat
    trunk/libcoro-perl/debian/control
    trunk/libcoro-perl/debian/copyright
    trunk/libcoro-perl/debian/libcoro-perl.docs
    trunk/libcoro-perl/debian/libcoro-perl.examples
    trunk/libcoro-perl/debian/rules   (with props)
    trunk/libcoro-perl/debian/watch

Added: trunk/libcoro-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/changelog?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/changelog (added)
+++ trunk/libcoro-perl/debian/changelog Sat Jul 11 04:17:48 2009
@@ -1,0 +1,5 @@
+libcoro-perl (5.151-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Jonathan Yu <frequency at cpan.org>  Fri, 10 Jul 2009 18:34:55 -0400

Added: trunk/libcoro-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/compat?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/compat (added)
+++ trunk/libcoro-perl/debian/compat Sat Jul 11 04:17:48 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libcoro-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/control?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/control (added)
+++ trunk/libcoro-perl/debian/control Sat Jul 11 04:17:48 2009
@@ -1,0 +1,40 @@
+Source: libcoro-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), perl-modules,
+  libanyevent-perl (>= 4.412), libguard-perl (>= 0.5),
+  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/Coro/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcoro-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcoro-perl/
+
+Package: libcoro-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, perl-modules,
+  libanyevent-perl (>= 4.110001), libguard-perl (>= 0.5)
+Description: the only real threads in perl
+ For a tutorial-style introduction, please read the Coro::Intro manpage. This
+ manpage mainly contains reference information.
+ .
+ Coro collection manages continuations in general, most often in the form of
+ cooperative threads (also called coros, or simply "coro" in the
+ documentation). They are similar to kernel threads but don't (in general) run
+ in parallel at the same time even on SMP machines. The specific flavor of
+ thread offered by this module also guarantees you that it will not switch
+ between threads unless necessary, at easily-identified points in your
+ program, so locking and parallel access are rarely an issue, making thread
+ programming much safer and easier than using other thread models.
+ .
+ Unlike the so-called "Perl threads" (which are not actually real threads but
+ only the windows process emulation ported to unix, and as such act as
+ processes), Coro provides a full shared address space, which makes
+ communication between threads very easy. And Coro's threads are fast, too:
+ disabling the Windows process emulation code in your perl and using Coro can
+ easily result in a two to four times speed increase for your programs. A
+ parallel matrix multiplication benchmark runs over 300 times faster on a
+ single core than perl's pseudo-threads on a quad core using all four cores.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libcoro-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/copyright?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/copyright (added)
+++ trunk/libcoro-perl/debian/copyright Sat Jul 11 04:17:48 2009
@@ -1,0 +1,34 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: (information incomplete)
+Upstream-Source: http://search.cpan.org/dist/Coro/
+Upstream-Name: Coro
+Disclaimer: This copyright info was automatically extracted 
+    from the perl module. It may not be accurate, so you better 
+    check the module sources in order to ensure the module for its 
+    inclusion in Debian or for general legal information. Please, 
+    if licensing information is incorrectly generated, file a bug 
+    on dh-make-perl.
+
+Files: *
+Copyright: (information incomplete)
+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/libcoro-perl/debian/libcoro-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/libcoro-perl.docs?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/libcoro-perl.docs (added)
+++ trunk/libcoro-perl/debian/libcoro-perl.docs Sat Jul 11 04:17:48 2009
@@ -1,0 +1,3 @@
+README.linux-glibc
+README
+Coro/libcoro/README

Added: trunk/libcoro-perl/debian/libcoro-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/libcoro-perl.examples?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/libcoro-perl.examples (added)
+++ trunk/libcoro-perl/debian/libcoro-perl.examples Sat Jul 11 04:17:48 2009
@@ -1,0 +1,1 @@
+eg/*

Added: trunk/libcoro-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/rules?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/rules (added)
+++ trunk/libcoro-perl/debian/rules Sat Jul 11 04:17:48 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

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

Added: trunk/libcoro-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcoro-perl/debian/watch?rev=39696&op=file
==============================================================================
--- trunk/libcoro-perl/debian/watch (added)
+++ trunk/libcoro-perl/debian/watch Sat Jul 11 04:17:48 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Coro/   .*/Coro-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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