mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
42 lines
1.3 KiB
BlitzBasic
42 lines
1.3 KiB
BlitzBasic
SUMMARY = "Automatically give your module the ability to have plugins"
|
|
DESCRIPTION = "Provides a simple but, hopefully, extensible way of \
|
|
having 'plugins' for your module. Obviously this isn't going to be the \
|
|
be all and end all of solutions but it works for me.\
|
|
\
|
|
Essentially all it does is export a method into your namespace that \
|
|
looks through a search path for .pm files and turn those into class \
|
|
names.\
|
|
\
|
|
Optionally it instantiates those classes for you."
|
|
SECTION = "libs"
|
|
|
|
HOMEPAGE = "https://github.com/simonwistow/Module-Pluggable"
|
|
|
|
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://README;beginline=322;endline=325;md5=086450ce010f6fda25db0b38fcc41086"
|
|
|
|
SRCNAME = "Module-Pluggable"
|
|
SRC_URI = "${CPAN_MIRROR}/authors/id/S/SI/SIMONW/${SRCNAME}-${PV}.tar.gz"
|
|
SRC_URI[sha256sum] = "b3f2ad45e4fd10b3fb90d912d78d8b795ab295480db56dc64e86b9fa75c5a6df"
|
|
|
|
|
|
UPSTREAM_CHECK_REGEX = "Module\-Pluggable\-(?P<pver>(\d+\.\d+))"
|
|
UPSTREAM_CHECK_URI = "https://metacpan.org/release/${SRCNAME}"
|
|
|
|
S = "${UNPACKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit cpan
|
|
|
|
RDEPENDS:${PN} = " perl-module-base \
|
|
perl-module-deprecate \
|
|
perl-module-file-basename \
|
|
perl-module-file-find \
|
|
perl-module-file-spec \
|
|
perl-module-file-spec-functions \
|
|
perl-module-if \
|
|
perl-module-test-more \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|