summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2019-06-23 00:59:12 +0000
committerVlad Glagolev2019-06-23 00:59:12 +0000
commit080281ae48acd783aeb5a36e617b9bdc90cce669 (patch)
tree14884c1ace922c23789b030beaf32f22a1e5081a
parent494d1528f61d4f769921d1b38c61c31aeb8fc72c (diff)
io-socket-timeout: new spell, IO::Socket with read/write timeout
-rw-r--r--ChangeLog2
-rwxr-xr-xperl-cpan/io-socket-timeout/DEPENDS2
-rwxr-xr-xperl-cpan/io-socket-timeout/DETAILS17
-rw-r--r--perl-cpan/io-socket-timeout/HISTORY2
4 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 955297317d..44ea935b4c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* perl-cpan/time-out: new spell, easily timeout long running operations
* perl-cpan/perlio-via-timeout: new spell, PerlIO layer that adds read
& write timeout to a handle
+ * perl-cpan/io-socket-timeout: new spell, IO::Socket with read/write
+ timeout
2019-06-22 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
* graphics-libs/libmypaint: new spell, mypaint's brush library
diff --git a/perl-cpan/io-socket-timeout/DEPENDS b/perl-cpan/io-socket-timeout/DEPENDS
new file mode 100755
index 0000000000..5b8aa014e7
--- /dev/null
+++ b/perl-cpan/io-socket-timeout/DEPENDS
@@ -0,0 +1,2 @@
+depends perl &&
+depends perlio-via-timeout
diff --git a/perl-cpan/io-socket-timeout/DETAILS b/perl-cpan/io-socket-timeout/DETAILS
new file mode 100755
index 0000000000..94cc09b373
--- /dev/null
+++ b/perl-cpan/io-socket-timeout/DETAILS
@@ -0,0 +1,17 @@
+ SPELL=io-socket-timeout
+ SPELLX=IO-Socket-Timeout
+ VERSION=0.32
+ SOURCE=${SPELLX}-${VERSION}.tar.gz
+ SOURCE_URL[0]=${PERL_CPAN_URL}/authors/id/D/DA/DAMS/${SOURCE}
+ SOURCE_HASH=sha512:013ad036c796880ab464b18f642260609095cf40c74f3127abaf3c8a596ba8ee85746129dc84d2d1e6f1bbfc86d75969e99c5a9b67736fa3e5e8bc7f5ddf83a6
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
+ WEB_SITE=http://search.cpan.org/dist/IO-Socket-Timeout/
+ LICENSE[0]=ART
+ ENTERED=20190622
+ SHORT="IO::Socket with read/write timeout"
+cat << EOF
+IO::Socket provides a way to set a timeout on the socket, but the timeout
+will be used only for connection, not for reading / writing operations.
+This module provides a way to set a timeout on read / write operations on an
+IO::Socket instance, or any IO::Socket::* modules, like IO::Socket::INET.
+EOF
diff --git a/perl-cpan/io-socket-timeout/HISTORY b/perl-cpan/io-socket-timeout/HISTORY
new file mode 100644
index 0000000000..42917635b1
--- /dev/null
+++ b/perl-cpan/io-socket-timeout/HISTORY
@@ -0,0 +1,2 @@
+2019-06-22 Vlad Glagolev <stealth@sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 0.32