svn commit: r387966 - in head/devel: . rubygem-algorithms

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat May 30 13:48:13 UTC 2015


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 at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	algorithms
+PORTVERSION=	0.6.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at 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


More information about the svn-ports-all mailing list