[SCM] co-operative multithreaded server using Coro branch, master, updated. debian/1.2-3-12-ga041664
Xavier Guimard
x.guimard at free.fr
Thu Nov 15 21:13:12 UTC 2012
The following commit has been merged in the master branch:
commit a041664eaaabd045b3d8e8ccdb16dc1edddf04f7
Author: Xavier Guimard <x.guimard at free.fr>
Date: Thu Nov 15 22:12:20 2012 +0100
Remove patches (now in upsteam)
diff --git a/debian/changelog b/debian/changelog
index 8e9ba1b..a21cf0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,14 +1,13 @@
-libnet-server-coro-perl (1.3-1) UNRELEASED; urgency=low
+libnet-server-coro-perl (1.3-1) unstable; urgency=low
+ * Imported Upstream version 1.3
* Update copyright to format 1.0
* Bump Standards-Version to 3.9.4
- * Update patches format and reports them to RT
* Update debian/rules to modern format
- * Imported Upstream version 1.3
* Add libfile-spec-perl to dependencies and version >=2 to
libnet-server-perl
- -- Xavier Guimard <x.guimard at free.fr> Thu, 15 Nov 2012 22:03:14 +0100
+ -- Xavier Guimard <x.guimard at free.fr> Thu, 15 Nov 2012 22:12:07 +0100
libnet-server-coro-perl (1.2-3) unstable; urgency=low
diff --git a/debian/patches/fix_perldoc_errors b/debian/patches/fix_perldoc_errors
deleted file mode 100644
index 515bb75..0000000
--- a/debian/patches/fix_perldoc_errors
+++ /dev/null
@@ -1,27 +0,0 @@
-Description: fix pod errors
-Author: Dmitry E. Oboukhov <unera at debian.org>
-Bug: https://rt.cpan.org/Ticket/Display.html?id=81088
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=81088
-Reviewed-By: xavier Guimard <x.guimard at free.fr>
-Last-Update: 2012-11-10
-
---- a/lib/Net/Server/Coro.pm
-+++ b/lib/Net/Server/Coro.pm
-@@ -50,6 +50,8 @@
- Create new Net::Server::Coro object. It accepts these parameters (in
- addition to L<Net::Server> parameters):
-
-+=over
-+
- =item server_cert
-
- Path to the SSL certificate that the server should use. This can be
-@@ -62,6 +64,8 @@
- be either relative or absolute path. Defaults to
- F<certs/server-key.pem>
-
-+=back
-+
- =cut
-
- sub new {
diff --git a/debian/patches/fix_undef_warning b/debian/patches/fix_undef_warning
deleted file mode 100644
index 806e8fb..0000000
--- a/debian/patches/fix_undef_warning
+++ /dev/null
@@ -1,18 +0,0 @@
-Description: fix undefined value warning
-Author: Dmitry E. Oboukhov <unera at debian.org>
-Bug: https://rt.cpan.org/Ticket/Display.html?id=81089
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=81089
-Reviewed-By: xavier Guimard <x.guimard at free.fr>
-Last-Update: 2012-11-10
-
---- a/lib/Net/Server/Coro.pm
-+++ b/lib/Net/Server/Coro.pm
-@@ -102,7 +102,7 @@
- my $self = shift;
- my ($host, $port, $proto) = @_;
-
-- my $is_ssl = ($proto eq "SSL" or $proto eq "SSLEAY");
-+ my $is_ssl = (defined($proto) and ($proto eq "SSL" or $proto eq "SSLEAY"));
- my $socket = $self->SUPER::proto_object(
- $host, $port, $is_ssl ? "TCP" : $proto
- );
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 09afa9d..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-fix_perldoc_errors
-fix_undef_warning
--
co-operative multithreaded server using Coro
More information about the Pkg-perl-cvs-commits
mailing list