libtest-fatal-perl_0.017.bb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. SUMMARY = "Incredibly simple helpers for testing code with exceptions"
  2. DESCRIPTION = "Test::Fatal is an alternative to the popular Test::Exception.\
  3. It does much less, but should allow greater flexibility in testing \
  4. exception-throwing code with about the same amount of typing."
  5. HOMEPAGE = "https://github.com/rjbs/Test-Fatal"
  6. BUGTRACKER = "https://github.com/rjbs/Test-Fatal/issues"
  7. SECTION = "libs"
  8. LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
  9. LIC_FILES_CHKSUM = "file://LICENSE;md5=b5c851290cab1dda12fcfb0e9ec43639"
  10. SRC_URI = "${CPAN_MIRROR}/authors/id/R/RJ/RJBS/Test-Fatal-${PV}.tar.gz"
  11. SRC_URI[sha256sum] = "37dfffdafb84b762efe96b02fb2aa41f37026c73e6b83590db76229697f3c4a6"
  12. S = "${WORKDIR}/Test-Fatal-${PV}"
  13. inherit cpan ptest-perl
  14. RDEPENDS:${PN} += "\
  15. libtry-tiny-perl \
  16. perl-module-carp \
  17. perl-module-exporter \
  18. perl-module-test-builder \
  19. "
  20. RDEPENDS:${PN}-ptest += "\
  21. perl-module-extutils-makemaker \
  22. perl-module-extutils-mm-unix \
  23. perl-module-file-spec \
  24. perl-module-overload \
  25. perl-module-test-builder-tester \
  26. perl-module-test-more \
  27. "
  28. BBCLASSEXTEND = "native nativesdk"