Date: Mon, 26 Mar 2018 19:42:16 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465632 - in head/devel: . py-itypes Message-ID: <201803261942.w2QJgGgD095405@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Mar 26 19:42:16 2018 New Revision: 465632 URL: https://svnweb.freebsd.org/changeset/ports/465632 Log: New port: devel/py-itypes: Simple immutable types for Python PR: 226940 Submitted by: Kai <freebsd_ports@k-worx.org> Added: head/devel/py-itypes/ head/devel/py-itypes/Makefile (contents, props changed) head/devel/py-itypes/distinfo (contents, props changed) head/devel/py-itypes/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 26 19:36:09 2018 (r465631) +++ head/devel/Makefile Mon Mar 26 19:42:16 2018 (r465632) @@ -4534,6 +4534,7 @@ SUBDIR += py-isodate SUBDIR += py-isort SUBDIR += py-iterpipes + SUBDIR += py-itypes SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.itertools Added: head/devel/py-itypes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-itypes/Makefile Mon Mar 26 19:42:16 2018 (r465632) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= itypes +DISTVERSION= 1.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Simple immutable types for Python + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-itypes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-itypes/distinfo Mon Mar 26 19:42:16 2018 (r465632) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522057993 +SHA256 (itypes-1.1.0.tar.gz) = c6e77bb9fd68a4bfeb9d958fea421802282451a25bac4913ec94db82a899c073 +SIZE (itypes-1.1.0.tar.gz) = 2188 Added: head/devel/py-itypes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-itypes/pkg-descr Mon Mar 26 19:42:16 2018 (r465632) @@ -0,0 +1,11 @@ +Basic immutable container types for Python. + +A simple implementation that's designed for simplicity over performance. + +Use these in circumstances where it may result in more comprehensible code, +or when you want to create custom types with restricted, immutable interfaces. + +For an alternative implementation designed for performance, please see +"pyrsistent". + +WWW: https://github.com/tomchristie/itypes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803261942.w2QJgGgD095405>