blob: d136c5c0e4e5b1d488d1dff303e95d57e827200d [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001inherit ptest
2
3SRC_URI += "file://run-ptest \
4 "
5
6do_install_ptest () {
7 mkdir -p ${D}${PTEST_PATH}
Patrick Williamsc0f7c042017-02-23 20:41:17 -06008 sed -e "s:\/usr\/local:${bindir}:g" -i cpan/version/t/*
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009 sed -e "s:\/opt:\/usr:" -i Porting/add-package.pl
10 sed -e "s:\/local\/gnu\/:\/:" -i hints/cxux.sh
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011 tar -c --exclude=\*.o --exclude=libperl.so --exclude=Makefile --exclude=makefile --exclude=hostperl \
12 --exclude=miniperl --exclude=generate_uudmap --exclude=patches * | ( cd ${D}${PTEST_PATH} && tar -x )
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
14 sed -i -e "s,${D},,g" \
15 -e "s,--sysroot=${STAGING_DIR_HOST},,g" \
16 -e "s,-isystem${STAGING_INCDIR} ,,g" \
17 -e "s,${STAGING_LIBDIR},${libdir},g" \
18 -e "s,${STAGING_BINDIR},${bindir},g" \
19 -e "s,${STAGING_INCDIR},${includedir},g" \
20 -e "s,${STAGING_BINDIR_NATIVE}/perl-native/,${bindir}/,g" \
21 -e "s,${STAGING_BINDIR_NATIVE}/,,g" \
22 -e "s,${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX},${bindir},g" \
23 ${D}${PTEST_PATH}/lib/Config.pm
24
25 ln -sf ${bindir}/perl ${D}${PTEST_PATH}/t/perl
26
27}
28
29python populate_packages_prepend() {
30 # Put all *.t files from the lib dir in the ptest package
31 # do_split_packages requires a pair of () in the regex, but we have nothing
32 # to match, so use an empty pair.
33 if bb.utils.contains('DISTRO_FEATURES', 'ptest', True, False, d):
34 do_split_packages(d, d.expand('${libdir}/perl/${PV}'), '.*\.t()',
35 '${PN}-ptest%s', '%s', recursive=True, match_path=True)
36}
37
Patrick Williamsc0f7c042017-02-23 20:41:17 -060038RDEPENDS_${PN}-ptest += "${PN}-modules ${PN}-doc ${PN}-misc sed libssp"