aboutsummaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorSam Lawrance <lawrance@FreeBSD.org>2005-10-21 14:03:36 +0000
committerSam Lawrance <lawrance@FreeBSD.org>2005-10-21 14:03:36 +0000
commit60918bcbadf947b308f94fd7fa052e2be09216c5 (patch)
tree7ab66267fce7f554ed0110da5925b2574d36d3b8 /devel
parent72a37ced7af76f19a130f9dfa028f0346aa66e35 (diff)
Notes
Diffstat (limited to 'devel')
-rw-r--r--devel/p5-Danga-Socket/Makefile2
-rw-r--r--devel/p5-Danga-Socket/distinfo4
-rw-r--r--devel/p5-Danga-Socket/pkg-descr12
3 files changed, 10 insertions, 8 deletions
diff --git a/devel/p5-Danga-Socket/Makefile b/devel/p5-Danga-Socket/Makefile
index 2e12e8f25149..8ff21ba2eaeb 100644
--- a/devel/p5-Danga-Socket/Makefile
+++ b/devel/p5-Danga-Socket/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= Danga-Socket
-PORTVERSION= 1.43
+PORTVERSION= 1.48
CATEGORIES= devel net
MASTER_SITES= http://www.danga.com/dist/Danga-Socket/
PKGNAMEPREFIX= p5-
diff --git a/devel/p5-Danga-Socket/distinfo b/devel/p5-Danga-Socket/distinfo
index 4aa83762a794..ca7a09ba948f 100644
--- a/devel/p5-Danga-Socket/distinfo
+++ b/devel/p5-Danga-Socket/distinfo
@@ -1,2 +1,2 @@
-MD5 (Danga-Socket-1.43.tar.gz) = e5c652c573c01fdf931d26c9e810532d
-SIZE (Danga-Socket-1.43.tar.gz) = 14084
+MD5 (Danga-Socket-1.48.tar.gz) = e359703d75d71aa10e7d45e9edeaaff5
+SIZE (Danga-Socket-1.48.tar.gz) = 16523
diff --git a/devel/p5-Danga-Socket/pkg-descr b/devel/p5-Danga-Socket/pkg-descr
index 49478d2e8ca7..6702151cc7c5 100644
--- a/devel/p5-Danga-Socket/pkg-descr
+++ b/devel/p5-Danga-Socket/pkg-descr
@@ -1,6 +1,8 @@
-The API takes advantage of the server's opaque flag support and sets its
-"complex" flag whenever the object being stored or retrieved isn't a plain
-scalar. In that case, the Storable module is used to freeze and thaw the
-value automatically going in and out of the memcached.
+This is an abstract base class for objects backed by a socket which
+provides the basic framework for event-driven asynchronous IO,
+designed to be fast. Danga::Socket is both a base class for objects,
+and an event loop.
-WWW: http://www.danga.com/memcached/apis.bml
+Callers subclass Danga::Socket. Danga::Socket's constructor registers
+itself with the Danga::Socket event loop, and invokes callbacks on the
+object for readability, writability, errors, and other conditions.