From owner-svn-ports-all@freebsd.org Wed Jan 6 13:58:39 2021 Return-Path: <owner-svn-ports-all@freebsd.org> 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 20C8B4D14E5; Wed, 6 Jan 2021 13:58:39 +0000 (UTC) (envelope-from pi@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4D9rYq0RLFz3q8d; Wed, 6 Jan 2021 13:58:39 +0000 (UTC) (envelope-from pi@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 01D231FC11; Wed, 6 Jan 2021 13:58:39 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 106Dwc2i075373; Wed, 6 Jan 2021 13:58:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 106Dwbmk075368; Wed, 6 Jan 2021 13:58:37 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202101061358.106Dwbmk075368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger <pi@FreeBSD.org> Date: Wed, 6 Jan 2021 13:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560516 - in head/devel: . p5-Data-Visitor-Tiny X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Data-Visitor-Tiny X-SVN-Commit-Revision: 560516 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.34 Precedence: list List-Id: SVN commit messages for the ports tree <svn-ports-all.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/> List-Post: <mailto:svn-ports-all@freebsd.org> List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 06 Jan 2021 13:58:39 -0000 Author: pi Date: Wed Jan 6 13:58:37 2021 New Revision: 560516 URL: https://svnweb.freebsd.org/changeset/ports/560516 Log: New port: devel/p5-Data-Visitor-Tiny Data::Visitor::Tiny - Recursively walk data structures This module provides a simple framework for recursively iterating over a data structure of hashrefs and/or arrayrefs. WWW: https://metacpan.org/release/Data-Visitor-Tiny PR: 252461 Submitted by: geoffroy desvernay <dgeo@centrale-marseille.fr> Added: head/devel/p5-Data-Visitor-Tiny/ head/devel/p5-Data-Visitor-Tiny/Makefile (contents, props changed) head/devel/p5-Data-Visitor-Tiny/distinfo (contents, props changed) head/devel/p5-Data-Visitor-Tiny/pkg-descr (contents, props changed) head/devel/p5-Data-Visitor-Tiny/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 6 13:57:05 2021 (r560515) +++ head/devel/Makefile Wed Jan 6 13:58:37 2021 (r560516) @@ -2111,6 +2111,7 @@ SUBDIR += p5-Data-Validator SUBDIR += p5-Data-Visitor SUBDIR += p5-Data-Visitor-Encode + SUBDIR += p5-Data-Visitor-Tiny SUBDIR += p5-Data-Walk SUBDIR += p5-Date-Business SUBDIR += p5-Date-Calc Added: head/devel/p5-Data-Visitor-Tiny/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Visitor-Tiny/Makefile Wed Jan 6 13:58:37 2021 (r560516) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= Data-Visitor-Tiny +PORTVERSION= 0.001 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= dgeo@centrale-marseille.fr +COMMENT= Recursively walk data structures + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/p5-Data-Visitor-Tiny/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Visitor-Tiny/distinfo Wed Jan 6 13:58:37 2021 (r560516) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609928316 +SHA256 (Data-Visitor-Tiny-0.001.tar.gz) = 13bbcc9e9848095e3ab456b01f67c044a275d363555544c21041fcf56e0dcc40 +SIZE (Data-Visitor-Tiny-0.001.tar.gz) = 15327 Added: head/devel/p5-Data-Visitor-Tiny/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Visitor-Tiny/pkg-descr Wed Jan 6 13:58:37 2021 (r560516) @@ -0,0 +1,6 @@ +Data::Visitor::Tiny - Recursively walk data structures + +This module provides a simple framework for recursively +iterating over a data structure of hashrefs and/or arrayrefs. + +WWW: https://metacpan.org/release/Data-Visitor-Tiny Added: head/devel/p5-Data-Visitor-Tiny/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Visitor-Tiny/pkg-plist Wed Jan 6 13:58:37 2021 (r560516) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Data/Visitor/Tiny.pm +%%PERL5_MAN3%%/Data::Visitor::Tiny.3.gz