From owner-dev-commits-ports-all@freebsd.org Tue Jun 8 15:05:50 2021 Return-Path: Delivered-To: dev-commits-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 6F1FD6393C9; Tue, 8 Jun 2021 15:05:50 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Fztpk2kWLz3Hrx; Tue, 8 Jun 2021 15:05:50 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B8082E56; Tue, 8 Jun 2021 15:05:50 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 158F5oN8039612; Tue, 8 Jun 2021 15:05:50 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 158F5ouW039611; Tue, 8 Jun 2021 15:05:50 GMT (envelope-from git) Date: Tue, 8 Jun 2021 15:05:50 GMT Message-Id: <202106081505.158F5ouW039611@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Rainer Hurling Subject: git: 7d44aa5cf310 - main - textproc/p5-Parse-EDID: New port - EDID parser MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: rhurlin X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 7d44aa5cf310dc41f9386b05c05eea2a4c0eafef Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jun 2021 15:05:50 -0000 The branch main has been updated by rhurlin: URL: https://cgit.FreeBSD.org/ports/commit/?id=7d44aa5cf310dc41f9386b05c05eea2a4c0eafef commit 7d44aa5cf310dc41f9386b05c05eea2a4c0eafef Author: Xavier Humbert AuthorDate: 2021-06-08 14:57:17 +0000 Commit: Rainer Hurling CommitDate: 2021-06-08 15:04:37 +0000 textproc/p5-Parse-EDID: New port - EDID parser This module provides functions to parse Extended Display Identification Data binary data (EDID) structures. https://metacpan.org/dist/Parse-EDID PR: 256443 Reported by: Xavier Humbert (maintainer) --- textproc/Makefile | 1 + textproc/p5-Parse-EDID/Makefile | 17 +++++++++++++++++ textproc/p5-Parse-EDID/distinfo | 3 +++ textproc/p5-Parse-EDID/pkg-descr | 4 ++++ textproc/p5-Parse-EDID/pkg-plist | 2 ++ 5 files changed, 27 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index ef4f887b010f..2097709feb57 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -652,6 +652,7 @@ SUBDIR += p5-Parse-ANSIColor-Tiny SUBDIR += p5-Parse-BooleanLogic SUBDIR += p5-Parse-CSV + SUBDIR += p5-Parse-EDID SUBDIR += p5-Parse-FixedLength SUBDIR += p5-Parse-Flex SUBDIR += p5-Parse-PhoneNumber diff --git a/textproc/p5-Parse-EDID/Makefile b/textproc/p5-Parse-EDID/Makefile new file mode 100644 index 000000000000..fd1224f50c1f --- /dev/null +++ b/textproc/p5-Parse-EDID/Makefile @@ -0,0 +1,17 @@ +# Created by: Xavier Humbert + +PORTNAME= Parse-EDID +PORTVERSION= 1.0.7 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= xavier@amdh.fr +COMMENT= Extended display identification data (EDID) parser + +LICENSE= GPLv3 + +USES= perl5 +USE_PERL5= configure + +.include diff --git a/textproc/p5-Parse-EDID/distinfo b/textproc/p5-Parse-EDID/distinfo new file mode 100644 index 000000000000..5fb33de5a650 --- /dev/null +++ b/textproc/p5-Parse-EDID/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1622915563 +SHA256 (Parse-EDID-1.0.7.tar.gz) = 1adc0f105a32198a2a2b4da5b0e0f985f05efed99ce366190a790e165d675bf1 +SIZE (Parse-EDID-1.0.7.tar.gz) = 31836 diff --git a/textproc/p5-Parse-EDID/pkg-descr b/textproc/p5-Parse-EDID/pkg-descr new file mode 100644 index 000000000000..2812c9541507 --- /dev/null +++ b/textproc/p5-Parse-EDID/pkg-descr @@ -0,0 +1,4 @@ +This module provides some function to parse Extended Display Identification +Data binary data structures. + +WWW: https://metacpan.org/dist/Parse-EDID diff --git a/textproc/p5-Parse-EDID/pkg-plist b/textproc/p5-Parse-EDID/pkg-plist new file mode 100644 index 000000000000..d590c4a552ba --- /dev/null +++ b/textproc/p5-Parse-EDID/pkg-plist @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Parse/EDID.pm +%%PERL5_MAN3%%/Parse::EDID.3.gz