Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 2020 19:34:12 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r539903 - in head/devel: . py-rush
Message-ID:  <202006221934.05MJYCMR076406@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Jun 22 19:34:12 2020
New Revision: 539903
URL: https://svnweb.freebsd.org/changeset/ports/539903

Log:
  Add py-rush 2018.12.1
  
  This library is a small collection of algorithms that can be reused when
  throttling user interactions with a resource (e.g., an API).
  
  This library strives to allow any limiter and backing store to be used together
  without needing to be worried about potential compatibility.
  
  WWW: https://github.com/sigmavirus24/rush

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jun 22 18:42:06 2020	(r539902)
+++ head/devel/Makefile	Mon Jun 22 19:34:12 2020	(r539903)
@@ -5026,6 +5026,7 @@
     SUBDIR += py-ruamel.yaml
     SUBDIR += py-ruamel.yaml.clib
     SUBDIR += py-rubymarshal
+    SUBDIR += py-rush
     SUBDIR += py-rx
     SUBDIR += py-rx1
     SUBDIR += py-sanetime

Added: head/devel/py-rush/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-rush/Makefile	Mon Jun 22 19:34:12 2020	(r539903)
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	rush
+PORTVERSION=	2018.12.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Library for throttling algorithms
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-rush/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-rush/distinfo	Mon Jun 22 19:34:12 2020	(r539903)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1592846024
+SHA256 (rush-2018.12.1.tar.gz) = 402f3ea6d5e3f90d636c2403b84729be831bfc8d6973645ab5febeeeb9fcef41
+SIZE (rush-2018.12.1.tar.gz) = 11147

Added: head/devel/py-rush/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-rush/pkg-descr	Mon Jun 22 19:34:12 2020	(r539903)
@@ -0,0 +1,7 @@
+This library is a small collection of algorithms that can be reused when
+throttling user interactions with a resource (e.g., an API).
+
+This library strives to allow any limiter and backing store to be used together
+without needing to be worried about potential compatibility.
+
+WWW: https://github.com/sigmavirus24/rush



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