perl-params-util: 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>
2018.11.x
Christopher McCrory 2018-08-10 09:14:58 -07:00 committed by Thomas Petazzoni
parent c1c0bc1f56
commit 276c59c7c5
5 changed files with 31 additions and 0 deletions

View File

@ -493,6 +493,7 @@ F: package/perl-io-interface/
F: package/perl-json-maybexs/
F: package/perl-module-runtime/
F: package/perl-number-bytes-human/
F: package/perl-params-util/
N: Clayton Shotwell <clayton.shotwell@rockwellcollins.com>
F: package/audit/

View File

@ -719,6 +719,7 @@ menu "Perl libraries/modules"
source "package/perl-net-telnet/Config.in"
source "package/perl-netaddr-ip/Config.in"
source "package/perl-number-bytes-human/Config.in"
source "package/perl-params-util/Config.in"
source "package/perl-path-tiny/Config.in"
source "package/perl-time-hires/Config.in"
source "package/perl-timedate/Config.in"

View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_PERL_PARAMS_UTIL
bool "perl-params-util"
depends on !BR2_STATIC_LIBS
help
Simple, compact and correct param-checking functions
https://metacpan.org/release/Params-Util
comment "perl-params-util needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS

View File

@ -0,0 +1,6 @@
# retrieved by scancpan from http://cpan.metacpan.org/
md5 02db120c0eef87aae1830cc62bdec37b Params-Util-1.07.tar.gz
sha256 30f1ec3f2cf9ff66ae96f973333f23c5f558915bb6266881eac7423f52d7c76c Params-Util-1.07.tar.gz
# computed by scancpan
sha256 71b5fb95de1ba013a517c926feaa2a7d0fb0e8f132818e8529e0da5ec01187cd LICENSE

View File

@ -0,0 +1,13 @@
################################################################################
#
# perl-params-util
#
################################################################################
PERL_PARAMS_UTIL_VERSION = 1.07
PERL_PARAMS_UTIL_SOURCE = Params-Util-$(PERL_PARAMS_UTIL_VERSION).tar.gz
PERL_PARAMS_UTIL_SITE = $(BR2_CPAN_MIRROR)/authors/id/A/AD/ADAMK
PERL_PARAMS_UTIL_LICENSE = Artistic or GPL-1.0+
PERL_PARAMS_UTIL_LICENSE_FILES = LICENSE
$(eval $(perl-package))