From owner-svn-ports-head@freebsd.org Sun Apr 22 08:57:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24035FABB16; Sun, 22 Apr 2018 08:57:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B3EA6F70E; Sun, 22 Apr 2018 08:57:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DC1C13AAF; Sun, 22 Apr 2018 08:57:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3M8vjgY036887; Sun, 22 Apr 2018 08:57:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3M8viXG036884; Sun, 22 Apr 2018 08:57:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201804220857.w3M8viXG036884@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 22 Apr 2018 08:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468010 - head/devel/py-frozendict X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-frozendict X-SVN-Commit-Revision: 468010 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Apr 2018 08:57:52 -0000 Author: sunpoet Date: Sun Apr 22 08:57:44 2018 New Revision: 468010 URL: https://svnweb.freebsd.org/changeset/ports/468010 Log: Update to 1.2 - Allow concurrent installation (USE_PYTHON=concurrent) - Update pkg-descr - Take maintainership Changes: https://github.com/slezica/python-frozendict/commits/master Modified: head/devel/py-frozendict/Makefile head/devel/py-frozendict/distinfo head/devel/py-frozendict/pkg-descr Modified: head/devel/py-frozendict/Makefile ============================================================================== --- head/devel/py-frozendict/Makefile Sun Apr 22 08:57:39 2018 (r468009) +++ head/devel/py-frozendict/Makefile Sun Apr 22 08:57:44 2018 (r468010) @@ -2,19 +2,19 @@ # $FreeBSD$ PORTNAME= frozendict -PORTVERSION= 1.0 +PORTVERSION= 1.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Immutable dictionary implementation for Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/devel/py-frozendict/distinfo ============================================================================== --- head/devel/py-frozendict/distinfo Sun Apr 22 08:57:39 2018 (r468009) +++ head/devel/py-frozendict/distinfo Sun Apr 22 08:57:44 2018 (r468010) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523908903 -SHA256 (frozendict-1.0.tar.gz) = 4852b8d74173f69bfaaca2dc77b69b0ae85ceddbead80d1954aa250d90e66f32 -SIZE (frozendict-1.0.tar.gz) = 2559 +TIMESTAMP = 1524259656 +SHA256 (frozendict-1.2.tar.gz) = 774179f22db2ef8a106e9c38d4d1f8503864603db08de2e33be5b778230f6e45 +SIZE (frozendict-1.2.tar.gz) = 2650 Modified: head/devel/py-frozendict/pkg-descr ============================================================================== --- head/devel/py-frozendict/pkg-descr Sun Apr 22 08:57:39 2018 (r468009) +++ head/devel/py-frozendict/pkg-descr Sun Apr 22 08:57:44 2018 (r468010) @@ -2,4 +2,16 @@ frozendict is an immutable wrapper around dictionaries complete mapping interface. It can be used as a drop-in replacement for dictionaries where immutability is desired. +Of course, this is python, and you can still poke around the object's internals +if you want. + +The frozendict constructor mimics dict, and all of the expected interfaces +(iter, len, repr, hash, getitem) are provided. Note that a frozendict does not +guarantee the immutability of its values, so the utility of hash method is +restricted by usage. + +The only difference is that the copy() method of frozendict takes variable +keyword arguments, which will be present as key/value pairs in the new, +immutable copy. + WWW: https://github.com/slezica/python-frozendict