Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Feb 2020 19:18:38 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r527453 - head/devel/py-marrow.util
Message-ID:  <202002291918.01TJIc8B068385@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002291918.01TJIc8B068385>