From owner-svn-ports-all@freebsd.org Wed Aug 3 19:46:35 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 98A84BAEEAA; Wed, 3 Aug 2016 19:46:35 +0000 (UTC) (envelope-from cs@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 5A33F1E26; Wed, 3 Aug 2016 19:46:35 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u73JkYn3039348; Wed, 3 Aug 2016 19:46:34 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u73JkYDD039342; Wed, 3 Aug 2016 19:46:34 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201608031946.u73JkYDD039342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Wed, 3 Aug 2016 19:46:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419546 - in head/devel: . go-bayesian 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: Wed, 03 Aug 2016 19:46:35 -0000 Author: cs Date: Wed Aug 3 19:46:33 2016 New Revision: 419546 URL: https://svnweb.freebsd.org/changeset/ports/419546 Log: Perform naive Bayesian classification into an arbitrary number of classes on sets of strings. WWW: https://github.com/jbrukh/bayesian Added: head/devel/go-bayesian/ head/devel/go-bayesian/Makefile (contents, props changed) head/devel/go-bayesian/distinfo (contents, props changed) head/devel/go-bayesian/pkg-descr (contents, props changed) head/devel/go-bayesian/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 3 19:40:40 2016 (r419545) +++ head/devel/Makefile Wed Aug 3 19:46:33 2016 (r419546) @@ -718,6 +718,7 @@ SUBDIR += gnulibiberty SUBDIR += gnustep SUBDIR += gnustep-make + SUBDIR += go-bayesian SUBDIR += go-bindata SUBDIR += go-btree SUBDIR += go-cobra Added: head/devel/go-bayesian/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-bayesian/Makefile Wed Aug 3 19:46:33 2016 (r419546) @@ -0,0 +1,20 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= bayesian +PORTVERSION= 20160602 +CATEGORIES= devel +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= Naive Bayesian classification for Go + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= jbrukh +GH_TAGNAME= a65fd1effddb7bd71c6bb6ca1876e045a7aeac6e +USES= go +GO_PKGNAME= github.com/jbrukh/bayesian + +.include Added: head/devel/go-bayesian/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-bayesian/distinfo Wed Aug 3 19:46:33 2016 (r419546) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468501956 +SHA256 (jbrukh-bayesian-20160602-a65fd1effddb7bd71c6bb6ca1876e045a7aeac6e_GH0.tar.gz) = 340adc394ec52b962c528a1b671e4829d80cd1d5328fe3911edb792e1eebe1b4 +SIZE (jbrukh-bayesian-20160602-a65fd1effddb7bd71c6bb6ca1876e045a7aeac6e_GH0.tar.gz) = 7686 Added: head/devel/go-bayesian/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-bayesian/pkg-descr Wed Aug 3 19:46:33 2016 (r419546) @@ -0,0 +1,4 @@ +Perform naive Bayesian classification into an arbitrary number of classes on +sets of strings. + +WWW: https://github.com/jbrukh/bayesian Added: head/devel/go-bayesian/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-bayesian/pkg-plist Wed Aug 3 19:46:33 2016 (r419546) @@ -0,0 +1,6 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/bayesian.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/bayesian_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/todo.txt