create bsd12 branch

This commit is contained in:
ziggi
2019-12-26 07:26:06 +00:00
commit 5cfdab6bfe
14432 changed files with 2272620 additions and 0 deletions

27
python/py-mock/Makefile Normal file
View File

@@ -0,0 +1,27 @@
# Created by: jessekempf@gmail.com
# $FreeBSD: head/devel/py-mock/Makefile 472884 2018-06-20 17:05:41Z mat $
PORTNAME= mock
PORTVERSION= 2.0.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= jessekempf@gmail.com
COMMENT= Mock unit tests for Python
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.3:python/py-pbr@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>=1.9:python/py-six@${PY_FLAVOR}
RUN_DEPENDS:= ${BUILD_DEPENDS}
NO_ARCH= yes
USES= python
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} < 3300
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}funcsigs>=0:python/py-funcsigs@${PY_FLAVOR}
.endif
.include <bsd.port.post.mk>

3
python/py-mock/distinfo Normal file
View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1490606425
SHA256 (mock-2.0.0.tar.gz) = b158b6df76edd239b8208d481dc46b6afd45a846b7812ff0ce58971cf5bc8bba
SIZE (mock-2.0.0.tar.gz) = 73684

9
python/py-mock/pkg-descr Normal file
View File

@@ -0,0 +1,9 @@
A Python Mocking and Patching Library for Testing
mock is a Python module that provides a core Mock class. It is intended to
reduce the need for creating a host of trivial stubs throughout your test suite.
After performing an action, you can make assertions about which methods /
attributes were used and arguments they were called with. You can also specify
return values and set needed attributes in the normal way.
WWW: https://pypi.org/project/mock/