From owner-svn-ports-all@freebsd.org Sat Feb 29 19:18:40 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6FAE02660E0; Sat, 29 Feb 2020 19:18:40 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48VGR41Jtmz3Lbk; Sat, 29 Feb 2020 19:18:40 +0000 (UTC) (envelope-from dbaio@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 8DA2F1F67E; Sat, 29 Feb 2020 19:18:39 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01TJIdlM068389; Sat, 29 Feb 2020 19:18:39 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01TJIc8B068385; Sat, 29 Feb 2020 19:18:38 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202002291918.01TJIc8B068385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 29 Feb 2020 19:18:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527453 - head/devel/py-marrow.util X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-marrow.util X-SVN-Commit-Revision: 527453 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Feb 2020 19:18:40 -0000 Author: dbaio Date: Sat Feb 29 19:18:38 2020 New Revision: 527453 URL: https://svnweb.freebsd.org/changeset/ports/527453 Log: Add devel/py-marrow.util: Commonly shared Python utility subclasses and functions Marrow Utilities Collection This package contains many commonly reimplemented utility classes and functions covering the following major areas: - attribute, partial/subset, case-insensitive, and multi-value dicts - py3k source compatibility (without using 2to3) - string to rich datatype conversion of bools, simple arrays, and complex keyword/tag parsing - rich OOP helpers: nested list flattening, a NoDefault implementation, dot-notation object loading, and a LRU cache - path manipulation - UTC, universal time constants, english to numerical month and DotW conversion, and date field range constants WWW: https://github.com/marrow/util Added: head/devel/py-marrow.util/ head/devel/py-marrow.util/Makefile (contents, props changed) head/devel/py-marrow.util/distinfo (contents, props changed) head/devel/py-marrow.util/pkg-descr (contents, props changed) Added: head/devel/py-marrow.util/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-marrow.util/Makefile Sat Feb 29 19:18:38 2020 (r527453) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= marrow.util +PORTVERSION= 1.2.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Commonly shared Python utility subclasses and functions + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-marrow.util/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-marrow.util/distinfo Sat Feb 29 19:18:38 2020 (r527453) @@ -0,0 +1,3 @@ +TIMESTAMP = 1583000300 +SHA256 (marrow.util-1.2.3.tar.gz) = 1e212c51abc1b04cf44aed836f33d7291b040d1e5f87fa61072ddef2743da26f +SIZE (marrow.util-1.2.3.tar.gz) = 17751 Added: head/devel/py-marrow.util/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-marrow.util/pkg-descr Sat Feb 29 19:18:38 2020 (r527453) @@ -0,0 +1,15 @@ +Marrow Utilities Collection + +This package contains many commonly reimplemented utility classes and functions +covering the following major areas: + - attribute, partial/subset, case-insensitive, and multi-value dicts + - py3k source compatibility (without using 2to3) + - string to rich datatype conversion of bools, simple arrays, and complex + keyword/tag parsing + - rich OOP helpers: nested list flattening, a NoDefault implementation, + dot-notation object loading, and a LRU cache + - path manipulation + - UTC, universal time constants, english to numerical month and DotW + conversion, and date field range constants + +WWW: https://github.com/marrow/util