added my Recipes
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
SUMMARY = "Module::Build::Tiny - A tiny replacement for Module::Build"
|
||||
DESCRIPTION = "Many Perl distributions use a Build.PL file instead of a \
|
||||
Makefile.PL file to drive distribution configuration, build, test and \
|
||||
installation. Traditionally, Build.PL uses Module::Build as the underlying \
|
||||
build system. This module provides a simple, lightweight, drop-in replacement. \
|
||||
Whereas Module::Build has over 6,700 lines of code; this module has less than \
|
||||
120, yet supports the features needed by most distributions."
|
||||
SECTION = "libs"
|
||||
|
||||
HOMEPAGE = "http://search.cpan.org/~leont/Module-Build-Tiny/"
|
||||
|
||||
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=57b8100f0b648cd37fbc3725fe3c111a"
|
||||
|
||||
DEPENDS = "libextutils-config-perl-native libextutils-helpers-perl-native libextutils-installpaths-perl-native"
|
||||
|
||||
SRC_URI = "${CPAN_MIRROR}/authors/id/L/LE/LEONT/Module-Build-Tiny-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "2332c90c17454107fea3f2614e11a3a9"
|
||||
SRC_URI[sha256sum] = "7d580ff6ace0cbe555bf36b86dc8ea232581530cbeaaea09bccb57b55797f11c"
|
||||
|
||||
S = "${WORKDIR}/Module-Build-Tiny-${PV}"
|
||||
|
||||
inherit cpan_build
|
||||
|
||||
do_install () {
|
||||
cpan_build_do_install
|
||||
}
|
||||
|
||||
RDEPENDS:${PN} = " libextutils-config-perl \
|
||||
libextutils-helpers-perl \
|
||||
libextutils-installpaths-perl \
|
||||
perl-module-xsloader \
|
||||
perl-module-file-spec \
|
||||
perl-module-io-handle \
|
||||
perl-module-tap-harness-env \
|
||||
perl-module-ipc-open3 \
|
||||
perl-module-file-path \
|
||||
perl-module-cpan \
|
||||
perl-module-extutils-cbuilder \
|
||||
perl-module-getopt-long \
|
||||
perl-module-extutils-makemaker \
|
||||
perl-module-exporter \
|
||||
perl-module-carp \
|
||||
perl-module-test-more \
|
||||
perl-module-text-parsewords \
|
||||
perl-module-load \
|
||||
perl-module-file-temp \
|
||||
perl-module-data-dumper \
|
||||
perl-module-extutils-parsexs \
|
||||
perl-module-pod-man \
|
||||
perl-module-json-pp \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
@@ -0,0 +1,44 @@
|
||||
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"
|
||||
|
||||
AUTHOR = "Simon Wistow <simon@thegestalt.org>"
|
||||
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[md5sum] = "87ce2971662efd0b69a81bb4dc9ea76c"
|
||||
SRC_URI[sha256sum] = "b3f2ad45e4fd10b3fb90d912d78d8b795ab295480db56dc64e86b9fa75c5a6df"
|
||||
|
||||
PR = "r1"
|
||||
|
||||
UPSTREAM_CHECK_REGEX = "Module\-Pluggable\-(?P<pver>(\d+\.\d+))"
|
||||
UPSTREAM_CHECK_URI = "https://metacpan.org/release/${SRCNAME}"
|
||||
|
||||
S = "${WORKDIR}/${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"
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
SUMMARY = "Module::Runtime - runtime module handling"
|
||||
DESCRIPTION = "The functions exported by this module deal with runtime \
|
||||
handling of Perl modules, which are normally handled at compile time. This \
|
||||
module avoids using any other modules, so that it can be used in low-level \
|
||||
infrastructure. \
|
||||
The parts of this module that work with module names apply the same syntax \
|
||||
that is used for barewords in Perl source. In principle this syntax can vary \
|
||||
between versions of Perl, and this module applies the syntax of the Perl on \
|
||||
which it is running. In practice the usable syntax hasn't changed yet, but \
|
||||
there's a good chance of it changing in Perl 5.18. \
|
||||
The functions of this module whose purpose is to load modules include \
|
||||
workarounds for three old Perl core bugs regarding require. These workarounds \
|
||||
are applied on any Perl version where the bugs exist, except for a case where \
|
||||
one of the bugs cannot be adequately worked around in pure Perl."
|
||||
SECTION = "libs"
|
||||
|
||||
HOMEPAGE = "http://search.cpan.org/~zefram/Module-Runtime/"
|
||||
|
||||
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=36;endline=44;md5=9416434672a57853d6181f3da9094963"
|
||||
|
||||
SRCNAME = "Module-Runtime"
|
||||
SRC_URI = "${CPAN_MIRROR}/authors/id/Z/ZE/ZEFRAM/${SRCNAME}-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "d3d47222fa2e3dfcb4526f6cc8437b20"
|
||||
SRC_URI[sha256sum] = "68302ec646833547d410be28e09676db75006f4aa58a11f3bdb44ffe99f0f024"
|
||||
|
||||
UPSTREAM_CHECK_REGEX = "Module\-Runtime\-(?P<pver>(\d+\.\d+)).tar"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit cpan
|
||||
|
||||
RDEPENDS:${PN} = " perl-module-test-more \
|
||||
perl-module-strict \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user