svn commit: r472502 - in head/devel: . py-monty

Yuri Victorovich yuri at FreeBSD.org
Fri Jun 15 23:25:58 UTC 2018


Author: yuri
Date: Fri Jun 15 23:25:56 2018
New Revision: 472502
URL: https://svnweb.freebsd.org/changeset/ports/472502

Log:
  New port: devel/py-monty: Supplementary useful functions for Python not in the standard library

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jun 15 22:34:29 2018	(r472501)
+++ head/devel/Makefile	Fri Jun 15 23:25:56 2018	(r472502)
@@ -4694,6 +4694,7 @@
     SUBDIR += py-mongoengine
     SUBDIR += py-mongokit
     SUBDIR += py-monotonic
+    SUBDIR += py-monty
     SUBDIR += py-more-itertools
     SUBDIR += py-mox
     SUBDIR += py-mox3

Added: head/devel/py-monty/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-monty/Makefile	Fri Jun 15 23:25:56 2018	(r472502)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	monty
+DISTVERSION=	1.0.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Supplementary useful functions for Python not in the standard library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.rst
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-monty/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-monty/distinfo	Fri Jun 15 23:25:56 2018	(r472502)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1529104843
+SHA256 (monty-1.0.3.tar.gz) = 8cc68ee4717f2d306065679eba9bd13e40b40ac4b94937729effdd4ba21d948d
+SIZE (monty-1.0.3.tar.gz) = 34364

Added: head/devel/py-monty/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-monty/pkg-descr	Fri Jun 15 23:25:56 2018	(r472502)
@@ -0,0 +1,6 @@
+Monty is the missing complement to Python. Monty implements supplementary useful
+functions for Python that are not part of the standard library. Examples include
+useful utilities like transparent support for zipped files, useful design
+patterns such as singleton and cached_class, and many more.
+
+WWW: https://github.com/materialsvirtuallab/monty


More information about the svn-ports-all mailing list