From owner-svn-ports-all@FreeBSD.ORG Mon Feb 2 15:43:07 2015 Return-Path: Delivered-To: svn-ports-all@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 B0984B4D; Mon, 2 Feb 2015 15:43:07 +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 917FF6D1; Mon, 2 Feb 2015 15:43:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t12Fh7L1035584; Mon, 2 Feb 2015 15:43:07 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t12Fh6w1035574; Mon, 2 Feb 2015 15:43:06 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201502021543.t12Fh6w1035574@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Mon, 2 Feb 2015 15:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378308 - in head/devel: . py-joblib 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.18-1 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: Mon, 02 Feb 2015 15:43:07 -0000 Author: skreuzer Date: Mon Feb 2 15:43:05 2015 New Revision: 378308 URL: https://svnweb.freebsd.org/changeset/ports/378308 QAT: https://qat.redports.org/buildarchive/r378308/ Log: Joblib is a set of tools to provide lightweight pipelining in Python. In particular, joblib offers: * transparent disk-caching of the output values and lazy re-evaluation * easy simple parallel computing * logging and tracing of the execution Joblib is optimized to be fast and robust in particular on large data and has specific optimizations for numpy arrays. WWW: https://github.com/joblib/joblib Added: head/devel/py-joblib/ head/devel/py-joblib/Makefile (contents, props changed) head/devel/py-joblib/distinfo (contents, props changed) head/devel/py-joblib/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Feb 2 15:25:31 2015 (r378307) +++ head/devel/Makefile Mon Feb 2 15:43:05 2015 (r378308) @@ -3827,6 +3827,7 @@ SUBDIR += py-jellyfish SUBDIR += py-jira SUBDIR += py-jmespath + SUBDIR += py-joblib SUBDIR += py-jsmin SUBDIR += py-json-py SUBDIR += py-jsonlib Added: head/devel/py-joblib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-joblib/Makefile Mon Feb 2 15:43:05 2015 (r378308) @@ -0,0 +1,18 @@ +# Created by: Steven Kreuzer +# $FreeBSD$ + +PORTNAME= joblib +PORTVERSION= 0.8.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Lightweight pipelining using Python functions as jobs + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-joblib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-joblib/distinfo Mon Feb 2 15:43:05 2015 (r378308) @@ -0,0 +1,2 @@ +SHA256 (joblib-0.8.4.tar.gz) = f185b87199525e0805281960f9f91c4f2e382e5834f05678cfcfa8ec666a4d2b +SIZE (joblib-0.8.4.tar.gz) = 314213 Added: head/devel/py-joblib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-joblib/pkg-descr Mon Feb 2 15:43:05 2015 (r378308) @@ -0,0 +1,11 @@ +Joblib is a set of tools to provide lightweight pipelining in Python. In +particular, joblib offers: + + * transparent disk-caching of the output values and lazy re-evaluation + * easy simple parallel computing + * logging and tracing of the execution + +Joblib is optimized to be fast and robust in particular on large data and has +specific optimizations for numpy arrays. + +WWW: https://github.com/joblib/joblib