Date: Thu, 31 Dec 2015 13:41:15 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404936 - in head/science: . py-scikit-fuzzy Message-ID: <201512311341.tBVDfFhw016539@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Thu Dec 31 13:41:14 2015 New Revision: 404936 URL: https://svnweb.freebsd.org/changeset/ports/404936 Log: Fuzzy logic toolkit for SciPy. The goals of scikit-fuzzy are: * To provide the community with a robust toolkit of independently developed and implemented fuzzy logic algorithms * To increase the attractiveness of scientific Python as a valid alternative to closed-source options. WWW: https://github.com/scikit-fuzzy/scikit-fuzzy/ PR: 205621 Submitted by: Yuri Victorovich <yuri@rawbw.com> Added: head/science/py-scikit-fuzzy/ head/science/py-scikit-fuzzy/Makefile (contents, props changed) head/science/py-scikit-fuzzy/distinfo (contents, props changed) head/science/py-scikit-fuzzy/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Thu Dec 31 12:50:32 2015 (r404935) +++ head/science/Makefile Thu Dec 31 13:41:14 2015 (r404936) @@ -156,6 +156,7 @@ SUBDIR += py-pysal SUBDIR += py-pyteomics SUBDIR += py-pyteomics.biolccc + SUBDIR += py-scikit-fuzzy SUBDIR += py-scikit-learn SUBDIR += py-scikit-sparse SUBDIR += py-scimath Added: head/science/py-scikit-fuzzy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-scikit-fuzzy/Makefile Thu Dec 31 13:41:14 2015 (r404936) @@ -0,0 +1,23 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= scikit-fuzzy +PORTVERSION= 0.1.3 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Fuzzy logic toolkit for SciPy + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_SITELIBDIR}/scipy/version.py:${PORTSDIR}/science/py-scipy +BUILD_DEPENDS= ${RUN_DEPENDS} + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/science/py-scikit-fuzzy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-scikit-fuzzy/distinfo Thu Dec 31 13:41:14 2015 (r404936) @@ -0,0 +1,2 @@ +SHA256 (scikit-fuzzy-0.1.3.tar.gz) = 9f1491db05b8cf99793400671eff19307963598214d63508a295d5a6837e0d7f +SIZE (scikit-fuzzy-0.1.3.tar.gz) = 30858 Added: head/science/py-scikit-fuzzy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-scikit-fuzzy/pkg-descr Thu Dec 31 13:41:14 2015 (r404936) @@ -0,0 +1,10 @@ +Fuzzy logic toolkit for SciPy. + +The goals of scikit-fuzzy are: + +* To provide the community with a robust toolkit of independently developed + and implemented fuzzy logic algorithms +* To increase the attractiveness of scientific Python as a valid alternative + to closed-source options. + +WWW: https://github.com/scikit-fuzzy/scikit-fuzzy/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512311341.tBVDfFhw016539>