Bug 177535 - [NEW PORT] devel/pecl-judy: PHP Judy implements sparse dynamic arrays
Summary: [NEW PORT] devel/pecl-judy: PHP Judy implements sparse dynamic arrays
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-01 08:30 UTC by Gasol Wu
Modified: 2013-05-21 07:20 UTC (History)
0 users

See Also:


Attachments
.shar (1.79 KB, text/plain)
2013-04-01 08:30 UTC, Gasol Wu
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gasol Wu 2013-04-01 08:30:00 UTC
supersedes by ports/177409

PHP Judy implements sparse dynamic arrays (aka Judy Arrays). This extension
is based on the Judy C library. A Judy array consumes memory only when it is
populated, yet can grow to take advantage of all available memory if desired.
Judy's key benefits are scalability, high performance, and memory efficiency.

WWW: http://pecl.php.net/package/Judy

Generated with FreeBSD Port Tools 0.99_7 (mode: new)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-01 08:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

miwi@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Gasol Wu 2013-04-01 09:58:20 UTC
Sorry for wrong description.

ports/177409 has superseded by this ports.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-05-21 07:12:54 UTC
Author: miwi
Date: Tue May 21 06:12:41 2013
New Revision: 318645
URL: http://svnweb.freebsd.org/changeset/ports/318645

Log:
  PHP Judy implements sparse dynamic arrays (aka Judy Arrays). This extension
  is based on the Judy C library. A Judy array consumes memory only when it is
  populated, yet can grow to take advantage of all available memory if desired.
  Judy's key benefits are scalability, high performance, and memory efficiency.
  
  WWW: http://pecl.php.net/package/Judy
  
  PR:		ports/177535
  Submitted by:	Gasol Wu <gasol.wu@gmail.com>

Added:
  head/devel/pecl-judy/
  head/devel/pecl-judy/Makefile   (contents, props changed)
  head/devel/pecl-judy/distinfo   (contents, props changed)
  head/devel/pecl-judy/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue May 21 06:10:06 2013	(r318644)
+++ head/devel/Makefile	Tue May 21 06:12:41 2013	(r318645)
@@ -3212,6 +3212,7 @@
     SUBDIR += pecl-inclued
     SUBDIR += pecl-inotify
     SUBDIR += pecl-intl
+    SUBDIR += pecl-judy
     SUBDIR += pecl-libevent
     SUBDIR += pecl-mcve
     SUBDIR += pecl-ncurses

Added: head/devel/pecl-judy/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-judy/Makefile	Tue May 21 06:12:41 2013	(r318645)
@@ -0,0 +1,25 @@
+# Created by: Gasol Wu <gasol.wu@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	judy
+PORTVERSION=	0.1.6
+CATEGORIES=	devel
+MASTER_SITES=	http://pecl.php.net/get/
+PKGNAMEPREFIX=	pecl-
+DISTNAME=	Judy-${PORTVERSION}
+EXTRACT_SUFX=	.tgz
+DIST_SUBDIR=	PECL
+
+MAINTAINER=	gasol.wu@gmail.com
+COMMENT=	PHP Judy implements sparse dynamic arrays
+
+LICENSE=	PHP301
+
+RUN_DEPENDS=	Judy>=0:${PORTSDIR}/devel/judy
+BUILD_DEPENDS=	Judy>=0:${PORTSDIR}/devel/judy
+
+CONFIGURE_ARGS=	--with-judy=${LOCALBASE}
+USE_PHP=	yes
+USE_PHPEXT=	yes
+
+.include <bsd.port.mk>

Added: head/devel/pecl-judy/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-judy/distinfo	Tue May 21 06:12:41 2013	(r318645)
@@ -0,0 +1,2 @@
+SHA256 (PECL/Judy-0.1.6.tgz) = e02a652f529189216410597fb6b64ec62976d66931bb2479168434f46ce26be6
+SIZE (PECL/Judy-0.1.6.tgz) = 19349

Added: head/devel/pecl-judy/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-judy/pkg-descr	Tue May 21 06:12:41 2013	(r318645)
@@ -0,0 +1,6 @@
+PHP Judy implements sparse dynamic arrays (aka Judy Arrays). This extension
+is based on the Judy C library. A Judy array consumes memory only when it is
+populated, yet can grow to take advantage of all available memory if desired.
+Judy's key benefits are scalability, high performance, and memory efficiency.
+
+WWW: http://pecl.php.net/package/Judy
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 Martin Wilke freebsd_committer freebsd_triage 2013-05-21 07:13:45 UTC
State Changed
From-To: open->closed

Committed. Thanks!