aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorlawrance <lawrance@FreeBSD.org>2005-10-21 22:03:36 +0800
committerlawrance <lawrance@FreeBSD.org>2005-10-21 22:03:36 +0800
commit0896d4e0e5299d64605914f08ec5a7669be754fa (patch)
tree61302489ef3428a9310834dd2c36e0c464290d76 /devel
parent93689fda687440300ba4d0dfc6384e15bf1b40f0 (diff)
downloadfreebsd-ports-gnome-0896d4e0e5299d64605914f08ec5a7669be754fa.tar.gz
freebsd-ports-gnome-0896d4e0e5299d64605914f08ec5a7669be754fa.tar.zst
freebsd-ports-gnome-0896d4e0e5299d64605914f08ec5a7669be754fa.zip
Update to 0.48.
Submitted by: Jacques Marneweck <jacques@powertrip.co.za> (maintainer)
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.