debian/0000755000000000000000000000000012211176222007162 5ustar debian/source/0000755000000000000000000000000012010726473010470 5ustar debian/source/format0000644000000000000000000000001412010726473011676 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000122512211176222011034 0ustar libanyevent-connection-perl (0.06-2) unstable; urgency=low * Team upload [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ Damyan Ivanov ] * add patch fixing syntax error in regular expression with perl 5.18 Closes: #711425 * Standards-Version: 3.9.4 (no changes needed) * Improve description -- Damyan Ivanov Tue, 03 Sep 2013 00:00:42 +0300 libanyevent-connection-perl (0.06-1) unstable; urgency=low * Initial Release. closes: #681336. -- Dmitry E. Oboukhov Thu, 12 Jul 2012 16:21:43 +0400 debian/rules0000755000000000000000000000003612010726473010247 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000215412211176122010566 0ustar Source: libanyevent-connection-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Dmitry E. Oboukhov Build-Depends: debhelper (>= 8) Build-Depends-Indep: libanyevent-perl (>= 5), libcommon-sense-perl (>= 2), liblib-abs-perl (>= 0.90), libobject-event-perl (>= 1.21), libtest-nowarnings-perl, libtest-tcp-perl (>= 0.14), perl, perl-modules Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libanyevent-connection-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libanyevent-connection-perl.git Homepage: https://metacpan.org/release/AnyEvent-Connection/ Package: libanyevent-connection-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libanyevent-perl (>= 5), libcommon-sense-perl (>= 2), libobject-event-perl (>= 1.21), perl Description: Base class for TCP clients AnyEvent::Connection provides a base interface for creating TCP connection using perl and AnyEvent framework. It provides four standard events: connected, disconnect, connfail and error. debian/compat0000644000000000000000000000000212010726473010366 0ustar 8 debian/patches/0000755000000000000000000000000012211175326010615 5ustar debian/patches/series0000644000000000000000000000002512211172562012026 0ustar perl5.18-fixes.patch debian/patches/perl5.18-fixes.patch0000644000000000000000000000111612211175326014227 0ustar Description: fix RE syntax error with perl 5.18 curly brackets need no escaping unless they form {a,b} notion Author: Damyan Ivanov Bug: https://rt.cpan.org/Ticket/Display.html?id=85967 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711425 Forwarded: yes --- a/lib/AnyEvent/Connection/Util.pm +++ b/lib/AnyEvent/Connection/Util.pm @@ -29,7 +29,7 @@ sub dumper (@) { ->Useqq(1) ->Quotekeys(0) ->Dump; - $s =~ s{\\x\{([a-f0-9]{1,4})\}}{chr hex $1}sge; + $s =~ s{\\x{([a-f0-9]{1,4})}}{chr hex $1}sge; $s; }; goto &{ caller().'::dumper' }; debian/libanyevent-connection-perl.docs0000644000000000000000000000000712010726473015454 0ustar README debian/watch0000644000000000000000000000020412125343401010206 0ustar version=3 https://metacpan.org/release/AnyEvent-Connection/ .*/AnyEvent-Connection-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/copyright0000644000000000000000000000206612125343401011120 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Mons Anderson Source: https://metacpan.org/release/AnyEvent-Connection/ Name: AnyEvent-Connection Files: * Copyright: 2009, Mons Anderson License: Artistic or GPL-1+ Files: debian/* Copyright: 2012, Dmitry E. Oboukhov License: Artistic or 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'.