perl-class-load: new package
Signed-off-by: Christopher McCrory <chrismcc@gmail.com> Acked-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
61b58edfdc
commit
8f93e46b02
@ -487,6 +487,7 @@ F: package/targetcli-fb/
|
||||
N: Christopher McCrory <chrismcc@gmail.com>
|
||||
F: package/perl-appconfig/
|
||||
F: package/perl-astro-suntime/
|
||||
F: package/perl-class-load/
|
||||
F: package/perl-class-std/
|
||||
F: package/perl-class-std-fast/
|
||||
F: package/perl-data-dump/
|
||||
|
@ -667,6 +667,7 @@ if BR2_PACKAGE_PERL
|
||||
menu "Perl libraries/modules"
|
||||
source "package/perl-appconfig/Config.in"
|
||||
source "package/perl-astro-suntime/Config.in"
|
||||
source "package/perl-class-load/Config.in"
|
||||
source "package/perl-class-std/Config.in"
|
||||
source "package/perl-class-std-fast/Config.in"
|
||||
source "package/perl-convert-asn1/Config.in"
|
||||
|
15
package/perl-class-load/Config.in
Normal file
15
package/perl-class-load/Config.in
Normal file
@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_PERL_CLASS_LOAD
|
||||
bool "perl-class-load"
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_PERL_DATA_OPTLIST
|
||||
select BR2_PACKAGE_PERL_MODULE_IMPLEMENTATION
|
||||
select BR2_PACKAGE_PERL_MODULE_RUNTIME
|
||||
select BR2_PACKAGE_PERL_PACKAGE_STASH
|
||||
select BR2_PACKAGE_PERL_TRY_TINY
|
||||
help
|
||||
A working (require "Class::Name") and more
|
||||
|
||||
https://github.com/moose/Class-Load
|
||||
|
||||
comment "perl-class-load needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
6
package/perl-class-load/perl-class-load.hash
Normal file
6
package/perl-class-load/perl-class-load.hash
Normal file
@ -0,0 +1,6 @@
|
||||
# retrieved by scancpan from http://cpan.metacpan.org/
|
||||
md5 e4c831c08df592ce8dfee0c7cfc12fd7 Class-Load-0.25.tar.gz
|
||||
sha256 2a48fa779b5297e56156380e8b32637c6c58decb4f4a7f3c7350523e11275f8f Class-Load-0.25.tar.gz
|
||||
|
||||
# computed by scancpan
|
||||
sha256 dc030e63f20035291b90d09c2c40f296224e85878caf829ea981fc2f10910f9d LICENSE
|
19
package/perl-class-load/perl-class-load.mk
Normal file
19
package/perl-class-load/perl-class-load.mk
Normal file
@ -0,0 +1,19 @@
|
||||
################################################################################
|
||||
#
|
||||
# perl-class-load
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PERL_CLASS_LOAD_VERSION = 0.25
|
||||
PERL_CLASS_LOAD_SOURCE = Class-Load-$(PERL_CLASS_LOAD_VERSION).tar.gz
|
||||
PERL_CLASS_LOAD_SITE = $(BR2_CPAN_MIRROR)/authors/id/E/ET/ETHER
|
||||
PERL_CLASS_LOAD_DEPENDENCIES = \
|
||||
perl-data-optlist \
|
||||
perl-module-implementation \
|
||||
perl-module-runtime \
|
||||
perl-package-stash \
|
||||
perl-try-tiny
|
||||
PERL_CLASS_LOAD_LICENSE = Artistic or GPL-1.0+
|
||||
PERL_CLASS_LOAD_LICENSE_FILES = LICENSE
|
||||
|
||||
$(eval $(perl-package))
|
Loading…
Reference in New Issue
Block a user