diff options
author | André Draszik <git@andred.net> | 2016-08-26 11:31:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-03 09:58:25 +0100 |
commit | 448411845e5953d498847e9a8d85d4b68e230c37 (patch) | |
tree | 5d5464805f589403b9fac795edecd47332201b5e /meta/recipes-support/libnl/libnl_3.2.28.bb | |
parent | 57ddcbde8aad2a2d37619e11a0cd2e9b8d9fb239 (diff) | |
download | openembedded-core-448411845e5953d498847e9a8d85d4b68e230c37.tar.gz openembedded-core-448411845e5953d498847e9a8d85d4b68e230c37.tar.bz2 openembedded-core-448411845e5953d498847e9a8d85d4b68e230c37.zip |
libnl: update to v3.2.28
See
http://lists.infradead.org/pipermail/libnl/2016-August/002187.html
http://lists.infradead.org/pipermail/libnl/2016-August/002200.html
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libnl/libnl_3.2.28.bb')
-rw-r--r-- | meta/recipes-support/libnl/libnl_3.2.28.bb | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-support/libnl/libnl_3.2.28.bb b/meta/recipes-support/libnl/libnl_3.2.28.bb new file mode 100644 index 0000000000..b792818a46 --- /dev/null +++ b/meta/recipes-support/libnl/libnl_3.2.28.bb @@ -0,0 +1,45 @@ +SUMMARY = "A library for applications dealing with netlink sockets" +HOMEPAGE = "http://www.infradead.org/~tgr/libnl/" +SECTION = "libs/network" + +PE = "1" + +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" + +DEPENDS = "flex-native bison-native" + +SRC_URI = "https://github.com/thom311/${BPN}/releases/download/${BPN}${@d.getVar('PV', True).replace('.','_')}/${BP}.tar.gz \ + file://fix-pktloc_syntax_h-race.patch \ + file://fix-pc-file.patch \ + " +UPSTREAM_CHECK_URI = "https://github.com/thom311/${BPN}/releases" + +SRC_URI[md5sum] = "bab12db1eb94a42129f712a44be91a67" +SRC_URI[sha256sum] = "cd608992c656e8f6e3ab6c1391b162a5a51c49336b9219f7f390e61fc5437c41" + +inherit autotools pkgconfig + +FILES_${PN} = "${libdir}/libnl-3.so.* \ + ${libdir}/libnl.so.* \ + ${sysconfdir}" +RREPLACES_${PN} = "libnl2" +RCONFLICTS_${PN} = "libnl2" +FILES_${PN}-dev += "${libdir}/libnl/cli/*/*.la" +FILES_${PN}-staticdev += "${libdir}/libnl/cli/*/*.a" + +PACKAGES += "${PN}-cli ${PN}-genl ${PN}-idiag ${PN}-nf ${PN}-route ${PN}-xfrm" +FILES_${PN}-cli = "${libdir}/libnl-cli-3.so.* \ + ${libdir}/libnl/cli/*/*.so \ + ${bindir}/genl-ctrl-list \ + ${bindir}/idiag-socket-details \ + ${bindir}/nf-* \ + ${bindir}/nl-*" +FILES_${PN}-genl = "${libdir}/libnl-genl-3.so.* \ + ${libdir}/libnl-genl.so.*" +FILES_${PN}-idiag = "${libdir}/libnl-idiag-3.so.*" +FILES_${PN}-nf = "${libdir}/libnl-nf-3.so.*" +FILES_${PN}-route = "${libdir}/libnl-route-3.so.*" +FILES_${PN}-xfrm = "${libdir}/libnl-xfrm-3.so.*" +RREPLACES_${PN}-genl = "libnl-genl2 libnl-genl-3-200" +RCONFLICTS_${PN}-genl = "libnl-genl2 libnl-genl-3-200" |