From owner-cvs-all@FreeBSD.ORG Sun Dec 12 21:38:34 2010 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EE7510656C5; Sun, 12 Dec 2010 21:38:34 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 038848FC15; Sun, 12 Dec 2010 21:38:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oBCLcXq3058254; Sun, 12 Dec 2010 21:38:33 GMT (envelope-from pgollucci@repoman.freebsd.org) Received: (from pgollucci@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oBCLcXDb058253; Sun, 12 Dec 2010 21:38:33 GMT (envelope-from pgollucci) Message-Id: <201012122138.oBCLcXDb058253@repoman.freebsd.org> From: "Philip M. Gollucci" Date: Sun, 12 Dec 2010 21:38:33 +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-Const-Fast Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2010 21:38:34 -0000 pgollucci 2010-12-12 21:38:33 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Const-Fast Makefile distinfo pkg-descr pkg-plist Log: This module was written because I stumbled on some serious issues of Readonly that aren't easily fixable without breaking backwards compatibility in subtle ways. In particular Readonly's use of ties is a source of subtle bugs and bad performance. Instead, this module uses the builtin readonly feature of perl, making access to the variables just as fast as any normal variable without the weird side-effects of ties. Readonly can do the same for scalars when Readonly::XS is installed, but chooses not to do so in the most common case. WWW: http://search.cpan.org/dist/Const-Fast/ Revision Changes Path 1.4169 +1 -0 ports/devel/Makefile 1.1 +24 -0 ports/devel/p5-Const-Fast/Makefile (new) 1.1 +2 -0 ports/devel/p5-Const-Fast/distinfo (new) 1.1 +9 -0 ports/devel/p5-Const-Fast/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Const-Fast/pkg-plist (new)