perl-moo: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Francois Perrad 2018-10-10 10:18:29 +02:00 committed by Thomas Petazzoni
parent bc1d5fe199
commit b10bdca05e
4 changed files with 31 additions and 0 deletions

View File

@ -733,6 +733,7 @@ menu "Perl libraries/modules"
source "package/perl-module-runtime/Config.in"
source "package/perl-mojolicious-plugin-authentication/Config.in"
source "package/perl-mojolicious/Config.in"
source "package/perl-moo/Config.in"
source "package/perl-net-dns/Config.in"
source "package/perl-net-http/Config.in"
source "package/perl-net-ping/Config.in"

View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_PERL_MOO
bool "perl-moo"
select BR2_PACKAGE_PERL_CLASS_METHOD_MODIFIERS # runtime
select BR2_PACKAGE_PERL_DEVEL_GLOBALDESTRUCTION # runtime
select BR2_PACKAGE_PERL_MODULE_RUNTIME # runtime
select BR2_PACKAGE_PERL_ROLE_TINY # runtime
select BR2_PACKAGE_PERL_SUB_QUOTE # runtime
help
Minimalist Object Orientation (with Moose compatibility)
https://metacpan.org/release/Moo

View File

@ -0,0 +1,6 @@
# retrieved by scancpan from http://cpan.metacpan.org/
md5 d4fcd0f240033198571fcc81ce7c5f15 Moo-2.003004.tar.gz
sha256 f8bbb625f8e963eabe05cff9048fdd72bdd26777404ff2c40bc690f558be91e1 Moo-2.003004.tar.gz
# computed by scancpan
sha256 3fe29ec1d93827ee69825ed4bf916cc5ce4e7bf0b940ec6dd2d4ed30f4755dc3 README

View File

@ -0,0 +1,13 @@
################################################################################
#
# perl-moo
#
################################################################################
PERL_MOO_VERSION = 2.003004
PERL_MOO_SOURCE = Moo-$(PERL_MOO_VERSION).tar.gz
PERL_MOO_SITE = $(BR2_CPAN_MIRROR)/authors/id/H/HA/HAARG
PERL_MOO_LICENSE = Artistic or GPL-1.0+
PERL_MOO_LICENSE_FILES = README
$(eval $(perl-package))