Advertisement
Guest User

phidgets.bb license file error

a guest
Aug 16th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. #phidgets.bb
  2.  
  3. LICENSE = "GPLv3"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=bb3ca60759f3202f1ae42e3519cd06bc"
  5.  
  6. DESCRIPTION = "Phidgets Linux Library"
  7. SECTION = "base"
  8. PRIORITY = "optional"
  9. PR = "r1"
  10.  
  11. # the link for the tarball is http://www.phidgets.com/docs/OS_-_Linux#Quick_Downloads
  12. # see below for the current (as of 8/16/2013) file which I downloaded.
  13.  
  14. SRC_URI += "file://libphidget_2.1.8.20130723.tar.gz"
  15.  
  16. S = "${WORKDIR}/phidgets/"
  17.  
  18. do_configure () {
  19. echo "No configuration needed for Phidgets library"
  20. }
  21.  
  22. do_compile () {
  23. cd ${S}phidget21
  24. make
  25. }
  26.  
  27. do_install () {
  28. install -d ${D}${libdir}/
  29. install -m 755 ${S}phidget21/libphidget21.so ${D}${libdir}/
  30. }
  31.  
  32. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  33. Output snippet
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35.  
  36. NOTE: Executing RunQueue Tasks
  37. WARNING: /media/toshiba-usb3/work/test/setup-scripts/build/tmp-angstrom_v2012_12-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/phidgets-1.0-r1/phidgets/COPYING could not be copied for some reason. It may not exist. WARN for now.
  38. ERROR: Function failed: phidgets: LIC_FILES_CHKSUM points to an invalid file: /media/toshiba-usb3/work/test/setup-scripts/build/tmp-angstrom_v2012_12-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/phidgets-1.0-r1/phidgets/COPYING
  39. ERROR: Logfile of failure stored in: /media/toshiba-usb3/work/test/setup-scripts/build/tmp-angstrom_v2012_12-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/phidgets-1.0-r1/temp/log.do_configure.16892
  40. Log data follows:
  41. | DEBUG: Executing python function sysroot_cleansstate
  42. | DEBUG: Python function sysroot_cleansstate finished
  43. | DEBUG: Executing shell function do_configure
  44. | No configuration needed for Phidgets library
  45. | DEBUG: Shell function do_configure finished
  46. | DEBUG: Executing python function do_qa_configure
  47. | NOTE: Checking autotools environment for common misconfiguration
  48. | DEBUG: Python function do_qa_configure finished
  49. | ERROR: Function failed: phidgets: LIC_FILES_CHKSUM points to an invalid file: /media/toshiba-usb3/work/test/setup-scripts/build/tmp-angstrom_v2012_12-eglibc/work/armv7a-vfp-neon-angstrom-linux-gnueabi/phidgets-1.0-r1/phidgets/COPYING
  50. ERROR: Task 5 (/media/toshiba-usb3/work/test/setup-scripts/sources/meta-epic/recipes-epic/phidgets/phidgets.bb, do_configure) failed with exit code '1'
  51. NOTE: Tasks Summary: Attempted 982 tasks of which 980 didn't need to be rerun and 1 failed.
  52. Waiting for 0 running tasks to finish:
  53.  
  54. Summary: 1 task failed:
  55. /media/toshiba-usb3/work/test/setup-scripts/sources/meta-epic/recipes-epic/phidgets/phidgets.bb, do_configure
  56. Summary: There were 2 WARNING messages shown.
  57. Summary: There was 1 ERROR message shown, returning a non-zero exit code.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement