diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-12-28 08:37:16 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-28 23:59:56 +0000 |
| commit | 9311fb96ae6ceabf60e3eef38f3bbe6098db2b1b (patch) | |
| tree | 5e014bc6d2f97c859d92a40e1ba9e69881458aae /meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb | |
| parent | 7bdc145006e2dc5da5343814116c33b916c3d436 (diff) | |
| download | poky-9311fb96ae6ceabf60e3eef38f3bbe6098db2b1b.tar.gz | |
libmodule-build-perl: update 0.4231 -> 0.4232
License-Update: formatting, position of the license statement moved in the README
(From OE-Core rev: 902e05e254b633ef1e988779504f743a031b5632)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb')
| -rw-r--r-- | meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb b/meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb new file mode 100644 index 0000000000..748412b414 --- /dev/null +++ b/meta/recipes-devtools/perl/libmodule-build-perl_0.4232.bb | |||
| @@ -0,0 +1,123 @@ | |||
| 1 | SUMMARY = "Module::Build - Build and install Perl modules" | ||
| 2 | DESCRIPTION = "Many Perl distributions use a Build.PL file instead of a \ | ||
| 3 | Makefile.PL file to drive distribution configuration, build, test and \ | ||
| 4 | installation. Traditionally, Build.PL uses Module::Build as the underlying \ | ||
| 5 | build system. This module provides a simple, lightweight, drop-in replacement. \ | ||
| 6 | Whereas Module::Build has over 6,700 lines of code; this module has less than \ | ||
| 7 | 120, yet supports the features needed by most distributions." | ||
| 8 | |||
| 9 | SECTION = "libs" | ||
| 10 | |||
| 11 | HOMEPAGE = "https://metacpan.org/release/Module-Build" | ||
| 12 | |||
| 13 | LICENSE = "Artistic-1.0 | GPL-1.0-or-later" | ||
| 14 | LIC_FILES_CHKSUM = "file://README;beginline=881;endline=886;md5=3027f56c664545e54678c26b7f1ac19c" | ||
| 15 | |||
| 16 | SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-${PV}.tar.gz \ | ||
| 17 | file://run-ptest \ | ||
| 18 | " | ||
| 19 | SRC_URI[sha256sum] = "67c82ee245d94ba06decfa25572ab75fdcd26a9009094289d8f45bc54041771b" | ||
| 20 | |||
| 21 | S = "${WORKDIR}/Module-Build-${PV}" | ||
| 22 | |||
| 23 | inherit cpan_build ptest-perl | ||
| 24 | |||
| 25 | # From: | ||
| 26 | # https://github.com/rehsack/meta-cpan/blob/master/recipes-devel/module-build-perl/module-build-perl_0.4216.bb | ||
| 27 | # | ||
| 28 | do_patch_module_build () { | ||
| 29 | cd ${S} | ||
| 30 | sed -i -e 's,my $interpreter = $self->{properties}{perl};,my $interpreter = "${bindir}/perl";,g' lib/Module/Build/Base.pm | ||
| 31 | } | ||
| 32 | |||
| 33 | do_patch[postfuncs] += "do_patch_module_build" | ||
| 34 | |||
| 35 | EXTRA_CPAN_BUILD_FLAGS = "--create_packlist=0" | ||
| 36 | |||
| 37 | do_install:append () { | ||
| 38 | rm -rf ${D}${docdir}/perl/html | ||
| 39 | sed -i "s:^#!.*:#!/usr/bin/env perl:" ${D}${bindir}/config_data | ||
| 40 | } | ||
| 41 | |||
| 42 | do_install_ptest() { | ||
| 43 | cp -r ${B}/inc ${D}${PTEST_PATH} | ||
| 44 | cp -r ${B}/blib ${D}${PTEST_PATH} | ||
| 45 | cp -r ${B}/_build ${D}${PTEST_PATH} | ||
| 46 | cp -r ${B}/lib ${D}${PTEST_PATH} | ||
| 47 | chown -R root:root ${D}${PTEST_PATH} | ||
| 48 | sed -i -e "s,'perl' => .*,'perl' => '/usr/bin/perl'\,,g" \ | ||
| 49 | -e "s,${STAGING_BINDIR_NATIVE}/perl-native/\.\.,${bindir}/,g" \ | ||
| 50 | -e "s,${S},,g" \ | ||
| 51 | -e "s,${D},,g" \ | ||
| 52 | ${D}${PTEST_PATH}/_build/build_params \ | ||
| 53 | ${D}${PTEST_PATH}/_build/runtime_params | ||
| 54 | rm -rf ${D}${PTEST_PATH}/blib/libhtml/site/lib/Module/ | ||
| 55 | rm -rf ${D}${PTEST_PATH}/_build/magicnum | ||
| 56 | } | ||
| 57 | |||
| 58 | RDEPENDS:${PN} += " \ | ||
| 59 | perl-module-carp \ | ||
| 60 | perl-module-cpan \ | ||
| 61 | perl-module-config \ | ||
| 62 | perl-module-cwd \ | ||
| 63 | perl-module-data-dumper \ | ||
| 64 | perl-module-encode \ | ||
| 65 | perl-module-extutils-cbuilder \ | ||
| 66 | perl-module-extutils-command \ | ||
| 67 | perl-module-extutils-install \ | ||
| 68 | perl-module-extutils-installed \ | ||
| 69 | perl-module-extutils-mkbootstrap \ | ||
| 70 | perl-module-extutils-packlist \ | ||
| 71 | perl-module-extutils-parsexs \ | ||
| 72 | perl-module-file-basename \ | ||
| 73 | perl-module-file-compare \ | ||
| 74 | perl-module-file-copy \ | ||
| 75 | perl-module-file-find \ | ||
| 76 | perl-module-file-glob \ | ||
| 77 | perl-module-file-path \ | ||
| 78 | perl-module-file-spec \ | ||
| 79 | perl-module-file-spec-functions \ | ||
| 80 | perl-module-getopt-long \ | ||
| 81 | perl-module-metadata \ | ||
| 82 | perl-module-perl-ostype \ | ||
| 83 | perl-module-pod-man \ | ||
| 84 | perl-module-tap-harness \ | ||
| 85 | perl-module-text-abbrev \ | ||
| 86 | perl-module-text-parsewords \ | ||
| 87 | perl-module-utf8 \ | ||
| 88 | " | ||
| 89 | |||
| 90 | RDEPENDS:${PN}-ptest += " \ | ||
| 91 | packagegroup-core-buildessential \ | ||
| 92 | perl-dev \ | ||
| 93 | perl-module-blib \ | ||
| 94 | perl-module-extutils-command-mm \ | ||
| 95 | perl-module-file-temp \ | ||
| 96 | perl-module-lib \ | ||
| 97 | perl-module-perlio \ | ||
| 98 | perl-module-perlio-encoding \ | ||
| 99 | perl-module-pod-text \ | ||
| 100 | perl-module-tap-harness-env \ | ||
| 101 | perl-module-tap-parser \ | ||
| 102 | perl-module-tap-parser-scheduler \ | ||
| 103 | perl-module-test-harness \ | ||
| 104 | perl-module-test-more \ | ||
| 105 | " | ||
| 106 | |||
| 107 | RPROVIDES:${PN} += "\ | ||
| 108 | libmodule-build-base-perl \ | ||
| 109 | libmodule-build-compat-perl \ | ||
| 110 | libmodule-build-config-perl \ | ||
| 111 | libmodule-build-cookbook-perl \ | ||
| 112 | libmodule-build-dumper-perl \ | ||
| 113 | libmodule-build-notes-perl \ | ||
| 114 | libmodule-build-ppmaker-perl \ | ||
| 115 | libmodule-build-platform-default-perl \ | ||
| 116 | libmodule-build-platform-unix-perl \ | ||
| 117 | libmodule-build-podparser-perl \ | ||
| 118 | " | ||
| 119 | |||
| 120 | # t/xs.t RDEPENDS on "EXTERN.h" provided by perl-dev | ||
| 121 | INSANE_SKIP:${PN}-ptest = "dev-deps" | ||
| 122 | |||
| 123 | BBCLASSEXTEND = "native" | ||
