Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jun 2015 13:52:52 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390908 - in head/devel: . p5-Array-Heap
Message-ID:  <201506291352.t5TDqqmZ044689@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Jun 29 13:52:51 2015
New Revision: 390908
URL: https://svnweb.freebsd.org/changeset/ports/390908

Log:
  - Add p5-Array-Heap 3.1
  - While I'm here:
    - Fix MAINTAINER
    - Simplify post-install:
    - Fix and sort PLIST
  
  A Heap implementation for Perl using functions that are loosely
  modeled after the C++ STL's binary heap functions. They all take an
  array as argument, just like perl's built-in functions "push", "pop"
  etc. The implementation itself is in C for maximum speed.
  
  WWW: http://search.cpan.org/dist/Array-Heap/
  
  PR:		195496
  Submitted by:	<eserte12@yahoo.de>

Added:
  head/devel/p5-Array-Heap/
  head/devel/p5-Array-Heap/Makefile   (contents, props changed)
  head/devel/p5-Array-Heap/distinfo   (contents, props changed)
  head/devel/p5-Array-Heap/pkg-descr   (contents, props changed)
  head/devel/p5-Array-Heap/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jun 29 13:51:03 2015	(r390907)
+++ head/devel/Makefile	Mon Jun 29 13:52:51 2015	(r390908)
@@ -1581,6 +1581,7 @@
     SUBDIR += p5-AppConfig
     SUBDIR += p5-AppConfig-Std
     SUBDIR += p5-Array-Group
+    SUBDIR += p5-Array-Heap
     SUBDIR += p5-Array-Iterator
     SUBDIR += p5-Array-Unique
     SUBDIR += p5-Array-Window

Added: head/devel/p5-Array-Heap/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Array-Heap/Makefile	Mon Jun 29 13:52:51 2015	(r390908)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	Array-Heap
+PORTVERSION=	3.1
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	eserte12@yahoo.de
+COMMENT=	Perl module implementing fast binary heaps/priority queues
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+USES=		perl5
+USE_PERL5=	configure
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Array/Heap/Heap.so
+
+.include <bsd.port.mk>

Added: head/devel/p5-Array-Heap/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Array-Heap/distinfo	Mon Jun 29 13:52:51 2015	(r390908)
@@ -0,0 +1,2 @@
+SHA256 (Array-Heap-3.1.tar.gz) = 23be55000c5869fb5580bcff85c50c64fff0f6877ad2db73c6d850de3d2176de
+SIZE (Array-Heap-3.1.tar.gz) = 9457

Added: head/devel/p5-Array-Heap/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Array-Heap/pkg-descr	Mon Jun 29 13:52:51 2015	(r390908)
@@ -0,0 +1,6 @@
+A Heap implementation for Perl using functions that are loosely
+modeled after the C++ STL's binary heap functions. They all take an
+array as argument, just like perl's built-in functions "push", "pop"
+etc. The implementation itself is in C for maximum speed.
+
+WWW: http://search.cpan.org/dist/Array-Heap/

Added: head/devel/p5-Array-Heap/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Array-Heap/pkg-plist	Mon Jun 29 13:52:51 2015	(r390908)
@@ -0,0 +1,3 @@
+%%SITE_ARCH%%/Array/Heap.pm
+%%SITE_ARCH%%/auto/Array/Heap/Heap.so
+%%PERL5_MAN3%%/Array::Heap.3.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506291352.t5TDqqmZ044689>