Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 May 2015 13:48:12 +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: r387966 - in head/devel: . rubygem-algorithms
Message-ID:  <201505301348.t4UDmCjf004527@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat May 30 13:48:11 2015
New Revision: 387966
URL: https://svnweb.freebsd.org/changeset/ports/387966

Log:
  - Add rubygem-algorithms 0.6.1
  
  algorithms started as a Google Summer of Code 2008 project.
  
  The original proposal is as follows:
  Using the right data structure or algorithm for the situation is an important
  aspect of programming. In computer science literature, many data structures and
  algorithms have been researched and extensively documented. However, there is
  still no standard library in Ruby implementing useful structures and algorithms
  like Red/Black Trees, tries, different sorting algorithms, etc. This project
  will create such a library with documentation on when to use a particular
  structure/algorithm. It will also come with a benchmark suite to compare
  performance in different situations.
  
  WWW: https://github.com/kanwei/algorithms
  RG:  https://rubygems.org/gems/algorithms

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat May 30 13:46:54 2015	(r387965)
+++ head/devel/Makefile	Sat May 30 13:48:11 2015	(r387966)
@@ -4421,6 +4421,7 @@
     SUBDIR += rubygem-activemessaging
     SUBDIR += rubygem-activesupport
     SUBDIR += rubygem-activesupport4
+    SUBDIR += rubygem-algorithms
     SUBDIR += rubygem-allison
     SUBDIR += rubygem-analogger
     SUBDIR += rubygem-annoy

Added: head/devel/rubygem-algorithms/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-algorithms/Makefile	Sat May 30 13:48:11 2015	(r387966)
@@ -0,0 +1,18 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	algorithms
+PORTVERSION=	0.6.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Ruby algorithms and data structures
+
+LICENSE=	MIT
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-algorithms/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-algorithms/distinfo	Sat May 30 13:48:11 2015	(r387966)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/algorithms-0.6.1.gem) = c5cee5cb10bb5810fbc12b8cd52fc53ebf993bc351e122f7214d64b13aa6f28a
+SIZE (rubygem/algorithms-0.6.1.gem) = 322560

Added: head/devel/rubygem-algorithms/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-algorithms/pkg-descr	Sat May 30 13:48:11 2015	(r387966)
@@ -0,0 +1,14 @@
+algorithms started as a Google Summer of Code 2008 project.
+
+The original proposal is as follows:
+Using the right data structure or algorithm for the situation is an important
+aspect of programming. In computer science literature, many data structures and
+algorithms have been researched and extensively documented. However, there is
+still no standard library in Ruby implementing useful structures and algorithms
+like Red/Black Trees, tries, different sorting algorithms, etc. This project
+will create such a library with documentation on when to use a particular
+structure/algorithm. It will also come with a benchmark suite to compare
+performance in different situations.
+
+WWW: https://github.com/kanwei/algorithms
+RG:  https://rubygems.org/gems/algorithms



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