From owner-cvs-ports@FreeBSD.ORG Fri Oct 28 02:09:24 2011 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 425361065673; Fri, 28 Oct 2011 02:09:24 +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 189B88FC16; Fri, 28 Oct 2011 02:09:24 +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 p9S29NgT027010; Fri, 28 Oct 2011 02:09:23 GMT (envelope-from pgollucci@repoman.freebsd.org) Received: (from pgollucci@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p9S29NVY027009; Fri, 28 Oct 2011 02:09:23 GMT (envelope-from pgollucci) Message-Id: <201110280209.p9S29NVY027009@repoman.freebsd.org> From: "Philip M. Gollucci" Date: Fri, 28 Oct 2011 02:09:23 +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/databases Makefile ports/databases/mysql-udf-preg Makefile distinfo pkg-descr pkg-message 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: Fri, 28 Oct 2011 02:09:24 -0000 pgollucci 2011-10-28 02:09:23 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/mysql-udf-preg Makefile distinfo pkg-descr pkg-message Log: lib_mysqludf_preg is a library of mysql UDFs (user-defined-functions) that provide access to the PCRE (perl compatible-regular-expressions) library for pattern matching. The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. This syntax can often handle more complex expressions and capturing than standard regular expression implementations. For more information about PCRE, please see: http://www.pcre.org/ lib_mysqludf_preg is a useful performance optimization for those applications that are already performing these regular expression matches in a high level language (ie. PHP) on the client side. It is also helpful when there is a need to capture a parenthesized subexpression from a regular expression, or simply as a slight performance boost over the builtin RLIKE/REGEXP functions. WWW: http://www.mysqludf.org/lib_mysqludf_preg/index.php Revision Changes Path 1.1040 +1 -0 ports/databases/Makefile 1.1 +41 -0 ports/databases/mysql-udf-preg/Makefile (new) 1.1 +2 -0 ports/databases/mysql-udf-preg/distinfo (new) 1.1 +16 -0 ports/databases/mysql-udf-preg/pkg-descr (new) 1.1 +5 -0 ports/databases/mysql-udf-preg/pkg-message (new)