devel/py-multitasking: Add py-multitasking 0.0.9

MultiTasking is a tiny Python library lets you convert your Python methods into
asynchronous, non-blocking methods simply by using a decorator.

WWW: https://github.com/ranaroussi/multitasking
This commit is contained in:
Po-Chuan Hsieh 2021-06-15 01:32:31 +08:00
parent e98b8518a0
commit 32640edbe9
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
4 changed files with 28 additions and 0 deletions

View file

@ -4690,6 +4690,7 @@
SUBDIR += py-multi_key_dict
SUBDIR += py-multipledispatch
SUBDIR += py-multiprocess
SUBDIR += py-multitasking
SUBDIR += py-munch
SUBDIR += py-murmurhash
SUBDIR += py-mygpoclient

View file

@ -0,0 +1,20 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= multitasking
PORTVERSION= 0.0.9
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Non-blocking Python methods using decorators
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1622213962
SHA256 (multitasking-0.0.9.tar.gz) = b59d99f709d2e17d60ccaa2be09771b6e9ed9391c63f083c0701e724f624d2e0
SIZE (multitasking-0.0.9.tar.gz) = 8094

View file

@ -0,0 +1,4 @@
MultiTasking is a tiny Python library lets you convert your Python methods into
asynchronous, non-blocking methods simply by using a decorator.
WWW: https://github.com/ranaroussi/multitasking