diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2016-08-17 14:31:25 -0500 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2016-08-22 16:43:26 +0000 |
commit | 60f9d69e016b11c468c98ea75ba0a60c44afbbc4 (patch) | |
tree | ecb49581a9e41a37943c22cd9ef3f63451b20ee7 /import-layers/yocto-poky/meta/recipes-support/libevent | |
parent | e18c61205e0234b03697129c20cc69c9b3940efc (diff) | |
download | talos-openbmc-60f9d69e016b11c468c98ea75ba0a60c44afbbc4.tar.gz talos-openbmc-60f9d69e016b11c468c98ea75ba0a60c44afbbc4.zip |
yocto-poky: Move to import-layers subdir
We are going to import additional layers, so create a subdir to
hold all of the layers that we import with git-subtree.
Change-Id: I6f732153a22be8ca663035c518837e3cc5ec0799
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Diffstat (limited to 'import-layers/yocto-poky/meta/recipes-support/libevent')
-rw-r--r-- | import-layers/yocto-poky/meta/recipes-support/libevent/libevent/run-ptest | 18 | ||||
-rw-r--r-- | import-layers/yocto-poky/meta/recipes-support/libevent/libevent_2.0.22.bb | 41 |
2 files changed, 59 insertions, 0 deletions
diff --git a/import-layers/yocto-poky/meta/recipes-support/libevent/libevent/run-ptest b/import-layers/yocto-poky/meta/recipes-support/libevent/libevent/run-ptest new file mode 100644 index 000000000..d521688e7 --- /dev/null +++ b/import-layers/yocto-poky/meta/recipes-support/libevent/libevent/run-ptest @@ -0,0 +1,18 @@ +#!/bin/sh + +fail=0 +for test in ./test/* +do + $test + if [ $? -eq 0 ] + then + fail=1 + fi +done + +if [ $fail -eq 0 ] +then + echo "PASS: libevent" +else + echo "FAIL: libevent" +fi diff --git a/import-layers/yocto-poky/meta/recipes-support/libevent/libevent_2.0.22.bb b/import-layers/yocto-poky/meta/recipes-support/libevent/libevent_2.0.22.bb new file mode 100644 index 000000000..df8a31c58 --- /dev/null +++ b/import-layers/yocto-poky/meta/recipes-support/libevent/libevent_2.0.22.bb @@ -0,0 +1,41 @@ +SUMMARY = "An asynchronous event notification library" +HOMEPAGE = "http://libevent.org/" +BUGTRACKER = "http://sourceforge.net/tracker/?group_id=50884&atid=461322" +SECTION = "libs" + +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=45c5316ff684bcfe2f9f86d8b1279559" + +SRC_URI = " \ + ${SOURCEFORGE_MIRROR}/levent/${BP}-stable.tar.gz \ + file://run-ptest \ +" + +SRC_URI[md5sum] = "c4c56f986aa985677ca1db89630a2e11" +SRC_URI[sha256sum] = "71c2c49f0adadacfdbe6332a372c38cf9c8b7895bb73dabeaa53cdcc1d4e1fa3" + +UPSTREAM_CHECK_URI = "http://libevent.org/" + +S = "${WORKDIR}/${BPN}-${PV}-stable" + +PACKAGECONFIG ??= "" +PACKAGECONFIG[openssl] = "--enable-openssl,--disable-openssl,openssl" + +inherit autotools + +# Needed for Debian packaging +LEAD_SONAME = "libevent-2.0.so" + +inherit ptest + +DEPENDS = "zlib" + +BBCLASSEXTEND = "native nativesdk" + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/test + for file in ${B}/test/.libs/regress ${B}/test/.libs/test* + do + install -m 0755 $file ${D}${PTEST_PATH}/test + done +} |