svn commit: r497388 - in head/devel: . py-pydantic

Yuri Victorovich yuri at FreeBSD.org
Sun Mar 31 07:33:04 UTC 2019


Author: yuri
Date: Sun Mar 31 07:33:02 2019
New Revision: 497388
URL: https://svnweb.freebsd.org/changeset/ports/497388

Log:
  New port: devel/py-pydantic: Data validation and settings management using python 3.6 type hinting

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Mar 31 06:08:08 2019	(r497387)
+++ head/devel/Makefile	Sun Mar 31 07:33:02 2019	(r497388)
@@ -4962,6 +4962,7 @@
     SUBDIR += py-pycodestyle
     SUBDIR += py-pycompilation
     SUBDIR += py-pycparser
+    SUBDIR += py-pydantic
     SUBDIR += py-pydenticon
     SUBDIR += py-pydevd
     SUBDIR += py-pydispatcher

Added: head/devel/py-pydantic/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pydantic/Makefile	Sun Mar 31 07:33:02 2019	(r497388)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	pydantic
+DISTVERSION=	0.22
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Data validation and settings management using python 3.6 type hinting
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+py36_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dataclasses>=0.6:devel/py-dataclasses@${PY_FLAVOR}
+
+USES=		python:3.6+
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pydantic/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pydantic/distinfo	Sun Mar 31 07:33:02 2019	(r497388)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1554012049
+SHA256 (pydantic-0.22.tar.gz) = 853b4fb72bc5bc9a2e16df09730884fc75bc104d8e331fdc83892899adee21cb
+SIZE (pydantic-0.22.tar.gz) = 46576

Added: head/devel/py-pydantic/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pydantic/pkg-descr	Sun Mar 31 07:33:02 2019	(r497388)
@@ -0,0 +1,4 @@
+Data validation and settings management using python type hinting.
+Define how data should be in pure, canonical python; validate it with pydantic.
+
+WWW: https://github.com/samuelcolvin/pydantic


More information about the svn-ports-all mailing list