From owner-svn-ports-head@FreeBSD.ORG Sun May 24 15:36:10 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 106B411E; Sun, 24 May 2015 15:36:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 E5A7D1DFD; Sun, 24 May 2015 15:36:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4OFa9aH057196; Sun, 24 May 2015 15:36:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4OFa95m057190; Sun, 24 May 2015 15:36:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505241536.t4OFa95m057190@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 24 May 2015 15:36:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387270 - head/science/rubygem-ai4r X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 May 2015 15:36:10 -0000 Author: sunpoet Date: Sun May 24 15:36:08 2015 New Revision: 387270 URL: https://svnweb.freebsd.org/changeset/ports/387270 Log: - Add LICENSE - Remove trailing space from COMMENT - Reformat pkg-descr - Update WWW Modified: head/science/rubygem-ai4r/Makefile head/science/rubygem-ai4r/pkg-descr Modified: head/science/rubygem-ai4r/Makefile ============================================================================== --- head/science/rubygem-ai4r/Makefile Sun May 24 15:36:04 2015 (r387269) +++ head/science/rubygem-ai4r/Makefile Sun May 24 15:36:08 2015 (r387270) @@ -7,10 +7,12 @@ CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org -COMMENT= Various Ruby artificial intelligence algorithm implementations +COMMENT= Various Ruby artificial intelligence algorithm implementations -USE_RUBY= yes -USE_RUBYGEMS= yes +LICENSE= MPL + +USE_RUBY= yes +USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes .include Modified: head/science/rubygem-ai4r/pkg-descr ============================================================================== --- head/science/rubygem-ai4r/pkg-descr Sun May 24 15:36:04 2015 (r387269) +++ head/science/rubygem-ai4r/pkg-descr Sun May 24 15:36:08 2015 (r387270) @@ -1,30 +1,23 @@ -AI4R is a collection of ruby algorithms implementations, -covering several Artificial intelligence fields. It implements: +AI4R is a collection of ruby algorithms implementations, covering several +Artificial intelligence fields. It implements: +* Genetic algorithms +* Self-organized maps (SOM) +* Neural Networks + - Multilayer perceptron with Backpropagation learning + - Hopfield net +* Automatic classifiers (Machine Learning) + - ID3 (Decision Trees) + - PRISM (J. Cendrowska, 1987) + - Multilayer Perceptron + - OneR (AKA One Attribute Rule, 1R) + - ZeroR + - Hyperpipes + - Naive Bayes + - IB1 (D. Aha, D. Kibler - 1991) +* Data clustering + - K-means, Bisecting K-means + - Single linkage, Complete linkage, Average linkage, Weighted Average linkage, + Centroid linkage, Median linkage, Ward's method linkage + - Diana (Divisive Analysis) - * Genetic algorithms - * Self-organized maps (SOM) - * Neural Networks - - Multilayer perceptron with Backpropagation learning - - Hopfield net - * Automatic classifiers (Machine Learning) - - ID3 (Decision Trees) - - PRISM (J. Cendrowska, 1987) - - Multilayer Perceptron - - OneR (AKA One Attribute Rule, 1R) - - ZeroR - - Hyperpipes - - Naive Bayes - - IB1 (D. Aha, D. Kibler - 1991) - * Data clustering - - K-means - - Bisecting k-means - - Single linkage - - Complete linkage - - Average linkage - - Weighted Average linkage - - Centroid linkage - - Median linkage - - Ward's method linkage - - Diana (Divisive Analysis) - -WWW: http://rubygems.org/gems/ai4r/ +WWW: http://www.ai4r.org/