From owner-svn-ports-head@freebsd.org Sun Apr 21 00:25:23 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FE2E157AB6D; Sun, 21 Apr 2019 00:25:23 +0000 (UTC) (envelope-from sunpoet@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 D6F6D8226F; Sun, 21 Apr 2019 00:25:22 +0000 (UTC) (envelope-from sunpoet@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 C48421DACF; Sun, 21 Apr 2019 00:25:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3L0PMlj019377; Sun, 21 Apr 2019 00:25:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3L0PLxm019372; Sun, 21 Apr 2019 00:25:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201904210025.x3L0PLxm019372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 21 Apr 2019 00:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499515 - in head/devel: . p5-Color-Theme-Role X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Color-Theme-Role X-SVN-Commit-Revision: 499515 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D6F6D8226F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Apr 2019 00:25:23 -0000 Author: sunpoet Date: Sun Apr 21 00:25:21 2019 New Revision: 499515 URL: https://svnweb.freebsd.org/changeset/ports/499515 Log: Add p5-Color-Theme-Role 0.020 Color::Theme::Role is for class that wants to support color themes. Color theme is represented as a structure according to the specification described in Color::Theme. Color themes are put in modules under Color::Theme::Themes:: (configurable using color_theme_module_prefix attribute). Each color theme modules can contain one or more color themes. The module must define a package global variable named %color_themes that contain color themes keyed by their names. WWW: https://metacpan.org/release/Color-Theme-Role Added: head/devel/p5-Color-Theme-Role/ head/devel/p5-Color-Theme-Role/Makefile (contents, props changed) head/devel/p5-Color-Theme-Role/distinfo (contents, props changed) head/devel/p5-Color-Theme-Role/pkg-descr (contents, props changed) head/devel/p5-Color-Theme-Role/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Apr 21 00:24:50 2019 (r499514) +++ head/devel/Makefile Sun Apr 21 00:25:21 2019 (r499515) @@ -2165,6 +2165,7 @@ SUBDIR += p5-Code-Perl SUBDIR += p5-Color-ANSI-Util SUBDIR += p5-Color-RGB-Util + SUBDIR += p5-Color-Theme-Role SUBDIR += p5-Commandable SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit Added: head/devel/p5-Color-Theme-Role/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-Theme-Role/Makefile Sun Apr 21 00:25:21 2019 (r499515) @@ -0,0 +1,28 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Color-Theme-Role +PORTVERSION= 0.020 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Role for class wanting to support color themes + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Color-ANSI-Util>=0.160:devel/p5-Color-ANSI-Util \ + p5-Module-List>=0:devel/p5-Module-List \ + p5-Moo>=0:devel/p5-Moo \ + p5-Term-App-Roles>=0:devel/p5-Term-App-Roles + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/devel/p5-Color-Theme-Role/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-Theme-Role/distinfo Sun Apr 21 00:25:21 2019 (r499515) @@ -0,0 +1,3 @@ +TIMESTAMP = 1552648823 +SHA256 (Color-Theme-Role-0.020.tar.gz) = 497b2cb90243080865d44569857b4dc1e98dbb027ce478d8bc08eaf8dd151a25 +SIZE (Color-Theme-Role-0.020.tar.gz) = 16905 Added: head/devel/p5-Color-Theme-Role/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-Theme-Role/pkg-descr Sun Apr 21 00:25:21 2019 (r499515) @@ -0,0 +1,10 @@ +Color::Theme::Role is for class that wants to support color themes. Color theme +is represented as a structure according to the specification described in +Color::Theme. + +Color themes are put in modules under Color::Theme::Themes:: (configurable using +color_theme_module_prefix attribute). Each color theme modules can contain one +or more color themes. The module must define a package global variable named +%color_themes that contain color themes keyed by their names. + +WWW: https://metacpan.org/release/Color-Theme-Role Added: head/devel/p5-Color-Theme-Role/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-Theme-Role/pkg-plist Sun Apr 21 00:25:21 2019 (r499515) @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Color/Theme/Role.pm +%%SITE_PERL%%/Color/Theme/Role/ANSI.pm +%%PERL5_MAN3%%/Color::Theme::Role.3.gz +%%PERL5_MAN3%%/Color::Theme::Role::ANSI.3.gz