diff options
author | Maxin B. John <maxin.john@intel.com> | 2017-07-19 18:01:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-21 22:51:38 +0100 |
commit | 187aa1b9bbf3387139a2e03fb0d7d2ea3bde0dcf (patch) | |
tree | 2915457c26b07b24e5e8a6e91b0ec1dc0523909a /meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb | |
parent | e25ff31d950bf3ab8d7986ee497b3af845aee260 (diff) | |
download | poky-187aa1b9bbf3387139a2e03fb0d7d2ea3bde0dcf.tar.gz |
libtirpc: upgrade to 1.0.2
1.0.1 -> 1.0.2
Remove these Backported and upstreamed patches:
1. 0001-Fix-for-CVE-2017-8779.patch
2. libtirpc-0.2.1-fortify.patch
3. libtirpc-1.0.2-rc3.patc
(From OE-Core rev: 351a629114c67691ba434a27ec42671474fdc605)
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb')
-rw-r--r-- | meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb b/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb new file mode 100644 index 0000000000..f9718c576b --- /dev/null +++ b/meta/recipes-extended/libtirpc/libtirpc_1.0.2.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | SUMMARY = "Transport-Independent RPC library" | ||
2 | DESCRIPTION = "Libtirpc is a port of Suns Transport-Independent RPC library to Linux" | ||
3 | SECTION = "libs/network" | ||
4 | HOMEPAGE = "http://sourceforge.net/projects/libtirpc/" | ||
5 | BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784" | ||
6 | LICENSE = "BSD" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \ | ||
8 | file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24" | ||
9 | |||
10 | PROVIDES = "virtual/librpc" | ||
11 | |||
12 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2;name=libtirpc \ | ||
13 | ${GENTOO_MIRROR}/${BPN}-glibc-nfs.tar.xz;name=glibc-nfs \ | ||
14 | file://export_key_secretkey_is_set.patch \ | ||
15 | file://0001-replace-__bzero-with-memset-API.patch \ | ||
16 | file://0001-include-stdint.h-for-uintptr_t.patch \ | ||
17 | " | ||
18 | |||
19 | SRC_URI_append_libc-musl = " \ | ||
20 | file://Use-netbsd-queue.h.patch \ | ||
21 | " | ||
22 | |||
23 | SRC_URI[libtirpc.md5sum] = "d5a37f1dccec484f9cabe2b97e54e9a6" | ||
24 | SRC_URI[libtirpc.sha256sum] = "723c5ce92706cbb601a8db09110df1b4b69391643158f20ff587e20e7c5f90f5" | ||
25 | SRC_URI[glibc-nfs.md5sum] = "5ae500b9d0b6b72cb875bc04944b9445" | ||
26 | SRC_URI[glibc-nfs.sha256sum] = "2677cfedf626f3f5a8f6e507aed5bb8f79a7453b589d684dbbc086e755170d83" | ||
27 | |||
28 | inherit autotools pkgconfig | ||
29 | |||
30 | EXTRA_OECONF = "--disable-gssapi" | ||
31 | |||
32 | do_configure_prepend () { | ||
33 | cp -r ${WORKDIR}/tirpc ${S} | ||
34 | } | ||
35 | |||
36 | do_install_append() { | ||
37 | chown root:root ${D}${sysconfdir}/netconfig | ||
38 | } | ||