summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Davis <brd@FreeBSD.org>2016-05-20 17:18:09 +0000
committerBrad Davis <brd@FreeBSD.org>2016-05-20 17:18:09 +0000
commit73b426e8c97d9d24fc51b6727278c726e350c1b8 (patch)
tree04d8272ccf9c47a24f57556a50fd51ab996739d6
parent- Update to 20160421 snapshot (diff)
Add a new port: devel/rubygem-pqueue
Approved by: swills (mentor)
Notes
Notes: svn path=/head/; revision=415562
-rw-r--r--devel/Makefile1
-rw-r--r--devel/rubygem-pqueue/Makefile15
-rw-r--r--devel/rubygem-pqueue/distinfo3
-rw-r--r--devel/rubygem-pqueue/pkg-descr6
4 files changed, 25 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index da63668b0f12..49b3dedd6604 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -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
diff --git a/devel/rubygem-pqueue/Makefile b/devel/rubygem-pqueue/Makefile
new file mode 100644
index 000000000000..692dbbece8af
--- /dev/null
+++ b/devel/rubygem-pqueue/Makefile
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME= pqueue
+PORTVERSION= 2.1.0
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby@FreeBSD.org
+COMMENT= Priority queue class for Ruby
+
+NO_ARCH= yes
+USE_RUBY= yes
+USES= gem
+
+.include <bsd.port.mk>
diff --git a/devel/rubygem-pqueue/distinfo b/devel/rubygem-pqueue/distinfo
new file mode 100644
index 000000000000..b1f77ebec9f8
--- /dev/null
+++ b/devel/rubygem-pqueue/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1463762767
+SHA256 (rubygem/pqueue-2.1.0.gem) = 8b79d9baa303a9747e83877def5a698e0e61d145d4c4275487c79fb1642102a9
+SIZE (rubygem/pqueue-2.1.0.gem) = 11264
diff --git a/devel/rubygem-pqueue/pkg-descr b/devel/rubygem-pqueue/pkg-descr
new file mode 100644
index 000000000000..152f5d49b1f7
--- /dev/null
+++ b/devel/rubygem-pqueue/pkg-descr
@@ -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/