From owner-svn-ports-all@freebsd.org Fri May 20 17:18:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CACCB43B1F; Fri, 20 May 2016 17:18:11 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9BC0165E; Fri, 20 May 2016 17:18:10 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4KHIAKg080505; Fri, 20 May 2016 17:18:10 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4KHI9Xp080501; Fri, 20 May 2016 17:18:09 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201605201718.u4KHI9Xp080501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Fri, 20 May 2016 17:18:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415562 - in head/devel: . rubygem-pqueue X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2016 17:18:11 -0000 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@FreeBSD.org +COMMENT= Priority queue class for Ruby + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include 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/