diff options
author | zhengruoqin <zhengrq.fnst@cn.fujitsu.com> | 2020-04-21 00:21:57 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-24 14:10:08 +0100 |
commit | 65f8df550a8ddda9b95c8502e2d421f9c4063270 (patch) | |
tree | 61a219c6ba72232d530f9d45a14ad3b2a65211a6 /meta/recipes-extended/libtirpc/libtirpc_1.2.6.bb | |
parent | 70be29c49333b549b1ed74b102f5a0ad50d04907 (diff) | |
download | poky-65f8df550a8ddda9b95c8502e2d421f9c4063270.tar.gz |
libtirpc: upgrade 1.2.5 -> 1.2.6
0001-xdr_float-do-not-include-bits-endian.h.patch
removed since it is included in 1.2.6
(From OE-Core rev: c940792e1492923036cae97010f9945e7ad43a32)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libtirpc/libtirpc_1.2.6.bb')
-rw-r--r-- | meta/recipes-extended/libtirpc/libtirpc_1.2.6.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/libtirpc/libtirpc_1.2.6.bb b/meta/recipes-extended/libtirpc/libtirpc_1.2.6.bb new file mode 100644 index 0000000000..6100d157e5 --- /dev/null +++ b/meta/recipes-extended/libtirpc/libtirpc_1.2.6.bb | |||
@@ -0,0 +1,28 @@ | |||
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-3-Clause" | ||
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" | ||
13 | UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/libtirpc/files/libtirpc/" | ||
14 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)/" | ||
15 | SRC_URI[md5sum] = "b25f9cc18bfad50f7c446c77f4ae00bb" | ||
16 | SRC_URI[sha256sum] = "4278e9a5181d5af9cd7885322fdecebc444f9a3da87c526e7d47f7a12a37d1cc" | ||
17 | |||
18 | inherit autotools pkgconfig | ||
19 | |||
20 | EXTRA_OECONF = "--disable-gssapi" | ||
21 | |||
22 | CFLAGS += "-fcommon" | ||
23 | |||
24 | do_install_append() { | ||
25 | chown root:root ${D}${sysconfdir}/netconfig | ||
26 | } | ||
27 | |||
28 | BBCLASSEXTEND = "native nativesdk" | ||