svn commit: r555650 - in head/devel: . py-case

Loïc Bartoletti lbartoletti at FreeBSD.org
Wed Nov 18 16:33:57 UTC 2020


Author: lbartoletti
Date: Wed Nov 18 16:33:56 2020
New Revision: 555650
URL: https://svnweb.freebsd.org/changeset/ports/555650

Log:
  [NEW PORT] devel/py-case: Python unittest utilities
  
  PR:		251104
  Submitted by:	Goran Mekić <meka at tilda.center>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Nov 18 16:26:59 2020	(r555649)
+++ head/devel/Makefile	Wed Nov 18 16:33:56 2020	(r555650)
@@ -4225,6 +4225,7 @@
     SUBDIR += py-cachy
     SUBDIR += py-canonicaljson
     SUBDIR += py-capstone
+    SUBDIR += py-case
     SUBDIR += py-castellan
     SUBDIR += py-castellan1
     SUBDIR += py-cbor

Added: head/devel/py-case/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-case/Makefile	Wed Nov 18 16:33:56 2020	(r555650)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	case
+PORTVERSION=	1.5.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	meka at tilda.center
+COMMENT=	Python unittest utilities
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-case/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-case/distinfo	Wed Nov 18 16:33:56 2020	(r555650)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1605260291
+SHA256 (case-1.5.3.tar.gz) = 48432b01d91913451c3512c5b90e31b0f348f1074b166a3431085eb70d784fb1
+SIZE (case-1.5.3.tar.gz) = 58469

Added: head/devel/py-case/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-case/pkg-descr	Wed Nov 18 16:33:56 2020	(r555650)
@@ -0,0 +1,3 @@
+Python testing framework by Celery project that includes mocks and unit tests
+
+WWW: https://github.com/celery/case


More information about the svn-ports-all mailing list