svn commit: r415562 - in head/devel: . rubygem-pqueue
Brad Davis
brd at FreeBSD.org
Fri May 20 17:18:11 UTC 2016
Author: brd
Date: Fri May 20 17:18:09 2016
New Revision: 415562
URL: https://svnweb.freebsd.org/changeset/ports/415562
Log:
Add a new port: devel/rubygem-pqueue
Approved by: swills (mentor)
Added:
head/devel/rubygem-pqueue/
head/devel/rubygem-pqueue/Makefile (contents, props changed)
head/devel/rubygem-pqueue/distinfo (contents, props changed)
head/devel/rubygem-pqueue/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri May 20 17:16:34 2016 (r415561)
+++ head/devel/Makefile Fri May 20 17:18:09 2016 (r415562)
@@ -5069,6 +5069,7 @@
SUBDIR += rubygem-power_assert
SUBDIR += rubygem-powerbar
SUBDIR += rubygem-powerpack
+ SUBDIR += rubygem-pqueue
SUBDIR += rubygem-progressbar
SUBDIR += rubygem-protected_attributes
SUBDIR += rubygem-prototype-rails
Added: head/devel/rubygem-pqueue/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-pqueue/Makefile Fri May 20 17:18:09 2016 (r415562)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME= pqueue
+PORTVERSION= 2.1.0
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at FreeBSD.org
+COMMENT= Priority queue class for Ruby
+
+NO_ARCH= yes
+USE_RUBY= yes
+USES= gem
+
+.include <bsd.port.mk>
Added: head/devel/rubygem-pqueue/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-pqueue/distinfo Fri May 20 17:18:09 2016 (r415562)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1463762767
+SHA256 (rubygem/pqueue-2.1.0.gem) = 8b79d9baa303a9747e83877def5a698e0e61d145d4c4275487c79fb1642102a9
+SIZE (rubygem/pqueue-2.1.0.gem) = 11264
Added: head/devel/rubygem-pqueue/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-pqueue/pkg-descr Fri May 20 17:18:09 2016 (r415562)
@@ -0,0 +1,6 @@
+A priority queue is like a standard queue, except that each inserted
+elements is given a certain priority, based on the result of the comparison
+block given at instantiation time. Retrieving an element from the queue will
+always return the one with the highest priority.
+
+WWW: http://rubyworks.github.io/pqueue/
More information about the svn-ports-all
mailing list