Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Nov 2018 20:44:30 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r485273 - in head/devel: . py-multiprocess
Message-ID:  <201811182044.wAIKiUnQ020227@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Nov 18 20:44:30 2018
New Revision: 485273
URL: https://svnweb.freebsd.org/changeset/ports/485273

Log:
  New port: math/py-multiprocess: Better multiprocessing and multithreading in python

Added:
  head/devel/py-multiprocess/
  head/devel/py-multiprocess/Makefile   (contents, props changed)
  head/devel/py-multiprocess/distinfo   (contents, props changed)
  head/devel/py-multiprocess/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Nov 18 20:38:19 2018	(r485272)
+++ head/devel/Makefile	Sun Nov 18 20:44:30 2018	(r485273)
@@ -4771,6 +4771,7 @@
     SUBDIR += py-msgpack
     SUBDIR += py-multi_key_dict
     SUBDIR += py-multipledispatch
+    SUBDIR += py-multiprocess
     SUBDIR += py-munch
     SUBDIR += py-mwlib
     SUBDIR += py-mwlib.ext

Added: head/devel/py-multiprocess/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-multiprocess/Makefile	Sun Nov 18 20:44:30 2018	(r485273)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	multiprocess
+DISTVERSION=	0.70.6.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Better multiprocessing and multithreading in python
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-multiprocess/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-multiprocess/distinfo	Sun Nov 18 20:44:30 2018	(r485273)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1542573555
+SHA256 (multiprocess-0.70.6.1.tar.gz) = 985d2faa28def907e303b4222b01281d2dcd3baa0fe53a4a0178ac63be62e5c6
+SIZE (multiprocess-0.70.6.1.tar.gz) = 1389496

Added: head/devel/py-multiprocess/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-multiprocess/pkg-descr	Sun Nov 18 20:44:30 2018	(r485273)
@@ -0,0 +1,8 @@
+'multiprocess' is a fork of the 'multiprocessing' package, and is developed
+as part of 'pathos'.
+
+'multiprocessing' is a package for the Python language which supports the
+spawning of processes using the API of the standard library's threading module.
+'multiprocessing' has been distributed in the standard library since python 2.6.
+
+WWW: https://pypi.org/project/multiprocess/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811182044.wAIKiUnQ020227>