package/perl-clone: new package

perl-clone is a new mandatory dependency of perl-http-message v6.44
that is already available in Buildroot since commit [1].

[1] 79e8aad721

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Romain Naour 2023-05-28 12:12:40 +02:00 committed by Peter Korsgaard
parent 2816038d8b
commit 0ac6713cee
4 changed files with 31 additions and 0 deletions

View File

@ -796,6 +796,7 @@ menu "Perl libraries/modules"
source "package/perl-class-method-modifiers/Config.in"
source "package/perl-class-std/Config.in"
source "package/perl-class-std-fast/Config.in"
source "package/perl-clone/Config.in"
source "package/perl-convert-asn1/Config.in"
source "package/perl-cookie-baker/Config.in"
source "package/perl-crypt-blowfish/Config.in"

View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_PERL_CLONE
bool "perl-clone"
depends on !BR2_STATIC_LIBS
help
recursively copy Perl datatypes.
https://metacpan.org/release/Clone
comment "perl-clone needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS

View File

@ -0,0 +1,6 @@
# retrieved by scancpan from https://cpan.metacpan.org/
md5 cafa8984a2c2e005e54b27dd1e3f0afe Clone-0.46.tar.gz
sha256 aadeed5e4c8bd6bbdf68c0dd0066cb513e16ab9e5b4382dc4a0aafd55890697b Clone-0.46.tar.gz
# computed by scancpan
sha256 40aa7eb133e97b075024380640528760a54aefc344781741ed02539a375db5ac README.md

View File

@ -0,0 +1,14 @@
################################################################################
#
# perl-clone
#
################################################################################
PERL_CLONE_VERSION = 0.46
PERL_CLONE_SOURCE = Clone-$(PERL_CLONE_VERSION).tar.gz
PERL_CLONE_SITE = $(BR2_CPAN_MIRROR)/authors/id/G/GA/GARU
PERL_CLONE_LICENSE = Artistic or GPL-1.0+
PERL_CLONE_LICENSE_FILES = README.md
PERL_CLONE_DISTNAME = Clone
$(eval $(perl-package))