View | Details | Raw Unified | Return to bug 259307 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/py-circuitbreaker/Makefile (+25 lines)
Added Link Here
1
# Created by: Alessando Sagratini <ale_sagra@hotmail.com>
2
3
PORTNAME=	circuitbreaker
4
PORTVERSION=	1.3.1
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	ale_sagra@hotmail.com
10
COMMENT=	Python Circuit Breaker pattern implementation
11
12
LICENSE=	BSD
13
LICENSE_FILE=	${WRKSRC}/LICENSE.rst
14
15
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
16
17
USES=		python:3.6+
18
USE_PYTHON=	autoplist concurrent distutils
19
20
NO_ARCH=	yes
21
22
do-test:
23
	@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v
24
25
.include <bsd.port.mk>
(-)b/devel/py-circuitbreaker/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1634730666
2
SHA256 (circuitbreaker-1.3.1.tar.gz) = 1b2d01cd5d02ddb248e1e4d34c1e9d4ee8ebef1d0b8e648b514c936a90df4f7d
3
SIZE (circuitbreaker-1.3.1.tar.gz) = 6032
(-)b/devel/py-circuitbreaker/pkg-descr (+7 lines)
Added Link Here
1
This is a Python implementation of the "Circuit Breaker" Pattern.
2
(http://martinfowler.com/bliki/CircuitBreaker.html)
3
4
Inspired by Michael T. Nygard's highly recommendable book Release It!
5
(https://pragprog.com/book/mnee/release-it)
6
7
WWW: https://github.com/fabfuel/circuitbreaker

Return to bug 259307