Date: Wed, 3 Aug 2016 19:46:34 +0000 (UTC) From: Carlo Strub <cs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419546 - in head/devel: . go-bayesian Message-ID: <201608031946.u73JkYDD039342@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <cs@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608031946.u73JkYDD039342>