From owner-cvs-ports@FreeBSD.ORG Sat Dec 9 15:46:59 2006 Return-Path: X-Original-To: cvs-ports@FreeBSD.org Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED1E016A40F; Sat, 9 Dec 2006 15:46:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0E2143CB2; Sat, 9 Dec 2006 15:45:50 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kB9FktNb002588; Sat, 9 Dec 2006 15:46:55 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kB9Fkt7O002587; Sat, 9 Dec 2006 15:46:55 GMT (envelope-from miwi) Message-Id: <200612091546.kB9Fkt7O002587@repoman.freebsd.org> From: Martin Wilke Date: Sat, 9 Dec 2006 15:46:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/p5-AnyEvent Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 15:47:00 -0000 miwi 2006-12-09 15:46:55 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-AnyEvent Makefile distinfo pkg-descr pkg-plist Log: AnyEvent provides an identical interface to multiple event loops. This allows module authors to utilise an event loop without forcing module users to use the same event loop (as only a single event loop can coexist peacefully at any one time). The interface itself is vaguely similar but not identical to the Event module. On the first call of any method, the module tries to detect the currently loaded event loop by probing wether any of the following modules is loaded: Coro::Event, Event, Glib, Tk. The first one found is used. If none is found, the module tries to load these modules in the order given. The first one that could be successfully loaded will be used. If still none could be found, AnyEvent will fall back to a pure-perl event loop, which is also not very efficient. WWW: http://search.cpan.org/dist/AnyEvent/ Noted: For index unbreak :( PR: ports/106527 Submitted by: Gea-Suan Lin Revision Changes Path 1.2542 +1 -0 ports/devel/Makefile 1.1 +28 -0 ports/devel/p5-AnyEvent/Makefile (new) 1.1 +3 -0 ports/devel/p5-AnyEvent/distinfo (new) 1.1 +17 -0 ports/devel/p5-AnyEvent/pkg-descr (new) 1.1 +11 -0 ports/devel/p5-AnyEvent/pkg-plist (new)