From owner-svn-ports-all@freebsd.org Mon Mar 30 19:45:42 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 ACD1326581E; Mon, 30 Mar 2020 19:45:42 +0000 (UTC) (envelope-from bofh@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 48rjcP3Cbsz4c7Q; Mon, 30 Mar 2020 19:45:41 +0000 (UTC) (envelope-from bofh@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 8604C21E1E; Mon, 30 Mar 2020 19:26:50 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02UJQoti044550; Mon, 30 Mar 2020 19:26:50 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02UJQnnG044546; Mon, 30 Mar 2020 19:26:49 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <202003301926.02UJQnnG044546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Mon, 30 Mar 2020 19:26:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529910 - in head/devel: . py-dotted X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: in head/devel: . py-dotted X-SVN-Commit-Revision: 529910 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: Mon, 30 Mar 2020 19:45:43 -0000 Author: bofh Date: Mon Mar 30 19:26:49 2020 New Revision: 529910 URL: https://svnweb.freebsd.org/changeset/ports/529910 Log: [NEW] devel/py-dotted: Access dicts and lists with a dotted path notation A Python library that provides a method of accessing lists and dicts with a dotted path notation. It is useful to access a deep path inside a complex object composed of lists and dicts. WWW: https://github.com/carlosescri/DottedDict/ Added: head/devel/py-dotted/ head/devel/py-dotted/Makefile (contents, props changed) head/devel/py-dotted/distinfo (contents, props changed) head/devel/py-dotted/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 30 19:18:03 2020 (r529909) +++ head/devel/Makefile Mon Mar 30 19:26:49 2020 (r529910) @@ -4321,6 +4321,7 @@ SUBDIR += py-docopt SUBDIR += py-dogpile.cache SUBDIR += py-doit + SUBDIR += py-dotted SUBDIR += py-dtfabric SUBDIR += py-durus SUBDIR += py-dynrules Added: head/devel/py-dotted/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dotted/Makefile Mon Mar 30 19:26:49 2020 (r529910) @@ -0,0 +1,29 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= dotted +PORTVERSION= 0.1.8 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Access dicts and lists with a dotted path notation + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}unittest2>0:devel/py-unittest2@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${PYTHON_CMD} -m dotted.test.test_collection) + +.include Added: head/devel/py-dotted/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dotted/distinfo Mon Mar 30 19:26:49 2020 (r529910) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585595331 +SHA256 (dotted-0.1.8.tar.gz) = e0334688d854461b3b065e54b80781cd7cd2545e0692756c5244be0aeec41bdf +SIZE (dotted-0.1.8.tar.gz) = 8938 Added: head/devel/py-dotted/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dotted/pkg-descr Mon Mar 30 19:26:49 2020 (r529910) @@ -0,0 +1,5 @@ +A Python library that provides a method of accessing lists and dicts with a +dotted path notation. It is useful to access a deep path inside a complex object +composed of lists and dicts. + +WWW: https://github.com/carlosescri/DottedDict/