added my Recipes
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
for case in `find t -type f -name '*.t'`; do
|
||||
perl $case >$case.output 2>&1
|
||||
ret=$?
|
||||
cat $case.output
|
||||
if [ $ret -ne 0 ]; then
|
||||
echo "FAIL: ${case%.t}"
|
||||
elif grep -i 'SKIP' $case.output; then
|
||||
echo "SKIP: ${case%.t}"
|
||||
else
|
||||
echo "PASS: ${case%.t}"
|
||||
fi
|
||||
|
||||
rm -f $case.output
|
||||
done
|
||||
@@ -0,0 +1,25 @@
|
||||
SUMMARY = "Keyed-Hashing for Message Authentication"
|
||||
DESCRIPTION = "Keyed-Hashing for Message Authentication"
|
||||
HOMEPAGE = "http://search.cpan.org/~gaas/Digest-HMAC-1.03/"
|
||||
SECTION = "libs"
|
||||
|
||||
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=13;endline=17;md5=da980cdc026faa065e5d5004115334e6"
|
||||
|
||||
RDEPENDS:${PN} = "libdigest-sha1-perl perl-module-extutils-makemaker perl-module-digest-md5"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
"
|
||||
SRC_URI[md5sum] = "e6a5d6f552da16eacb5157ea4369ff9d"
|
||||
SRC_URI[sha256sum] = "3bc72c6d3ff144d73aefb90e9a78d33612d58cf1cd1631ecfb8985ba96da4a59"
|
||||
|
||||
S = "${WORKDIR}/Digest-HMAC-${PV}"
|
||||
|
||||
inherit cpan ptest
|
||||
|
||||
do_install_ptest () {
|
||||
cp -r ${B}/t ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
@@ -0,0 +1,25 @@
|
||||
SUMMARY = "Perl interface to the SHA-1 algorithm "
|
||||
DESCRIPTION = "Digest::SHA1 - Perl interface to the SHA-1 algorithm"
|
||||
HOMEPAGE = "http://search.cpan.org/~gaas/Digest-SHA1-2.13/"
|
||||
SECTION = "libs"
|
||||
|
||||
LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://README;beginline=10;endline=14;md5=ff5867ebb4bc1103a7a416aef2fce00a"
|
||||
|
||||
SRC_URI = "http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-${PV}.tar.gz \
|
||||
file://run-ptest \
|
||||
"
|
||||
SRC_URI[md5sum] = "bd22388f268434f2b24f64e28bf1aa35"
|
||||
SRC_URI[sha256sum] = "68c1dac2187421f0eb7abf71452a06f190181b8fc4b28ededf5b90296fb943cc"
|
||||
|
||||
S = "${WORKDIR}/Digest-SHA1-${PV}"
|
||||
|
||||
inherit cpan ptest
|
||||
|
||||
do_install_ptest () {
|
||||
cp -r ${B}/t ${D}${PTEST_PATH}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND="native"
|
||||
|
||||
FILES:${PN}-dbg =+ "${libdir}/perl/vendor_perl/*/auto/Digest/SHA1/.debug/"
|
||||
Reference in New Issue
Block a user