Received: by mail.netbsd.org (Postfix, from userid 605) id C0F1384F41; Wed, 15 Jun 2022 21:58:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 060BD84E5F for ; Wed, 15 Jun 2022 21:58:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id fkfKcaFVrNCv for ; Wed, 15 Jun 2022 21:58:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5146E84DBF for ; Wed, 15 Jun 2022 21:58:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A397AFB1A; Wed, 15 Jun 2022 22:00:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655330426108310" MIME-Version: 1.0 Date: Wed, 15 Jun 2022 22:00:26 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/devel/py-collections_extended To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20220615220026.A397AFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655330426108310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Wed Jun 15 22:00:26 UTC 2022 Added Files: pkgsrc/devel/py-collections_extended: DESCR Makefile PLIST distinfo Log Message: devel/py-collections-extended: Add version 2.0.2 collections_extended is a pure Python module with no dependencies providing extra collections. The new collections include bags AKA multisets, setlists AKA unique lists or ordered sets, a bijection, a RangeMap which is a mapping from ranges to values, and an IndexedDict class. There are also frozen (hashable) varieties of bags and setlists. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-collections_extended/DESCR \ pkgsrc/devel/py-collections_extended/Makefile \ pkgsrc/devel/py-collections_extended/PLIST \ pkgsrc/devel/py-collections_extended/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655330426108310 Content-Disposition: inline Content-Length: 3767 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-collections_extended/DESCR diff -u /dev/null pkgsrc/devel/py-collections_extended/DESCR:1.1 --- /dev/null Wed Jun 15 22:00:26 2022 +++ pkgsrc/devel/py-collections_extended/DESCR Wed Jun 15 22:00:26 2022 @@ -0,0 +1,6 @@ +collections_extended is a pure Python module with no dependencies +providing extra collections. The new collections include bags AKA +multisets, setlists AKA unique lists or ordered sets, a bijection, a +RangeMap which is a mapping from ranges to values, and an IndexedDict +class. There are also frozen (hashable) varieties of bags and +setlists. Index: pkgsrc/devel/py-collections_extended/Makefile diff -u /dev/null pkgsrc/devel/py-collections_extended/Makefile:1.1 --- /dev/null Wed Jun 15 22:00:26 2022 +++ pkgsrc/devel/py-collections_extended/Makefile Wed Jun 15 22:00:26 2022 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2022/06/15 22:00:26 gdt Exp $ + +DISTNAME= collections-extended-2.0.2 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=c/collections-extended/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/mlenzen/collections-extended +COMMENT= Python Collections (Bag, setlist, IndexedDict, etc.) +LICENSE= apache-2.0 + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-collections_extended/PLIST diff -u /dev/null pkgsrc/devel/py-collections_extended/PLIST:1.1 --- /dev/null Wed Jun 15 22:00:26 2022 +++ pkgsrc/devel/py-collections_extended/PLIST Wed Jun 15 22:00:26 2022 @@ -0,0 +1,32 @@ +@comment $NetBSD: PLIST,v 1.1 2022/06/15 22:00:26 gdt Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/collections_extended/__init__.py +${PYSITELIB}/collections_extended/__init__.pyc +${PYSITELIB}/collections_extended/__init__.pyo +${PYSITELIB}/collections_extended/_util.py +${PYSITELIB}/collections_extended/_util.pyc +${PYSITELIB}/collections_extended/_util.pyo +${PYSITELIB}/collections_extended/_version.py +${PYSITELIB}/collections_extended/_version.pyc +${PYSITELIB}/collections_extended/_version.pyo +${PYSITELIB}/collections_extended/bags.py +${PYSITELIB}/collections_extended/bags.pyc +${PYSITELIB}/collections_extended/bags.pyo +${PYSITELIB}/collections_extended/bijection.py +${PYSITELIB}/collections_extended/bijection.pyc +${PYSITELIB}/collections_extended/bijection.pyo +${PYSITELIB}/collections_extended/indexed_dict.py +${PYSITELIB}/collections_extended/indexed_dict.pyc +${PYSITELIB}/collections_extended/indexed_dict.pyo +${PYSITELIB}/collections_extended/range_map.py +${PYSITELIB}/collections_extended/range_map.pyc +${PYSITELIB}/collections_extended/range_map.pyo +${PYSITELIB}/collections_extended/sentinel.py +${PYSITELIB}/collections_extended/sentinel.pyc +${PYSITELIB}/collections_extended/sentinel.pyo +${PYSITELIB}/collections_extended/setlists.py +${PYSITELIB}/collections_extended/setlists.pyc +${PYSITELIB}/collections_extended/setlists.pyo Index: pkgsrc/devel/py-collections_extended/distinfo diff -u /dev/null pkgsrc/devel/py-collections_extended/distinfo:1.1 --- /dev/null Wed Jun 15 22:00:26 2022 +++ pkgsrc/devel/py-collections_extended/distinfo Wed Jun 15 22:00:26 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/06/15 22:00:26 gdt Exp $ + +BLAKE2s (collections-extended-2.0.2.tar.gz) = c149cfeda5d40df434787decad32e16f2bc45f33612c04bfcaf77723db4f89ee +SHA512 (collections-extended-2.0.2.tar.gz) = 7849ae7a3194f7023478eb8fc4328e6ace3c973444d078cdbaec18d791436ec7cac0d192dec976b3af61985040904fdcac5ba1a930aca62a9c71acc2fd0676ee +Size (collections-extended-2.0.2.tar.gz) = 22753 bytes --_----------=_1655330426108310--