From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A2EF138350 for ; Wed, 5 Feb 2020 01:02:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D934EE093A; Wed, 5 Feb 2020 01:02:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AAE76E093A for ; Wed, 5 Feb 2020 01:02:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8487B34E758 for ; Wed, 5 Feb 2020 01:02:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E8E912B for ; Wed, 5 Feb 2020 01:02:26 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1580864509.2c2f75be6d7e5a7ad4e1ab8c3e39c2e3812118d2.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/MooX-StrictConstructor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/MooX-StrictConstructor/Manifest dev-perl/MooX-StrictConstructor/MooX-StrictConstructor-0.10.0.ebuild dev-perl/MooX-StrictConstructor/metadata.xml X-VCS-Directories: dev-perl/MooX-StrictConstructor/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 2c2f75be6d7e5a7ad4e1ab8c3e39c2e3812118d2 X-VCS-Branch: master Date: Wed, 5 Feb 2020 01:02:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d731b74d-4e9a-4b09-9242-418e322d50e6 X-Archives-Hash: b8774cf910fb141cf516a793b4724af8 commit: 2c2f75be6d7e5a7ad4e1ab8c3e39c2e3812118d2 Author: Kent Fredric gentoo org> AuthorDate: Tue Feb 4 01:10:28 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Wed Feb 5 01:01:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c2f75be dev-perl/MooX-StrictConstructor: Add w/ version=0.10.0 Required for dev-perl/GeoIP2, as suggested by Tomáš Mózes Bug: https://github.com/gentoo/gentoo/pull/13973 Bug: https://bugs.gentoo.org/675494 Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Kent Fredric gentoo.org> dev-perl/MooX-StrictConstructor/Manifest | 1 + .../MooX-StrictConstructor-0.10.0.ebuild | 30 ++++++++++++++++++++++ dev-perl/MooX-StrictConstructor/metadata.xml | 17 ++++++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-perl/MooX-StrictConstructor/Manifest b/dev-perl/MooX-StrictConstructor/Manifest new file mode 100644 index 00000000000..27f584fde18 --- /dev/null +++ b/dev-perl/MooX-StrictConstructor/Manifest @@ -0,0 +1 @@ +DIST MooX-StrictConstructor-0.010.tar.gz 14817 BLAKE2B d013ab60dd467d598a4617b3bc354df329d22114e2b4ee53a1f62af99c5ec7797bd8a48056cb43236429d97c74f6f576c2fa764e3c527c9a056f815675a5177f SHA512 17748ee05c1679d3cbade89b40a6f884bafc45244298f1dfcc5441dc81ab807394e6aafce483e302da8441ccb954aa1c7438b4449fcc373ecdcf81ad9e7cd864 diff --git a/dev-perl/MooX-StrictConstructor/MooX-StrictConstructor-0.10.0.ebuild b/dev-perl/MooX-StrictConstructor/MooX-StrictConstructor-0.10.0.ebuild new file mode 100644 index 00000000000..2f53a94bd1c --- /dev/null +++ b/dev-perl/MooX-StrictConstructor/MooX-StrictConstructor-0.10.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=HARTZELL +DIST_VERSION=0.010 +inherit perl-module + +DESCRIPTION="Make your Moo-based object constructors blow up on unknown attributes" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-perl/Class-Method-Modifiers + >=dev-perl/Moo-1.1.0 + dev-perl/strictures +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-File-Spec + virtual/perl-File-Temp + virtual/perl-IO + dev-perl/Test-Fatal + >=virtual/perl-Test-Simple-0.880.0 + ) +" diff --git a/dev-perl/MooX-StrictConstructor/metadata.xml b/dev-perl/MooX-StrictConstructor/metadata.xml new file mode 100644 index 00000000000..7f7d59c64a4 --- /dev/null +++ b/dev-perl/MooX-StrictConstructor/metadata.xml @@ -0,0 +1,17 @@ + + + + + perl@gentoo.org + Gentoo Perl Project + + + hydrapolic@gmail.com + Tomáš Mózes + + + MooX-StrictConstructor + Method::Generate::Constructor::Role::StrictConstructor + MooX::StrictConstructor + +