diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2017-02-07 00:37:22 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 20:06:42 -0800 |
| commit | 3026b4cdd98daf667ca5996ed43c1fcf98cb1cfe (patch) | |
| tree | 107357bf984bed234bbfac16bf137a9820c3ebb8 /meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb | |
| parent | 1831b720c2b939bd2b3c0841c797b39ff8f5493c (diff) | |
| download | poky-3026b4cdd98daf667ca5996ed43c1fcf98cb1cfe.tar.gz | |
rpcbind: 0.2.3 -> 0.2.4
Drop obsolete patch
- 0001-Avoid-use-of-glibc-sys-cdefs.h-header.patch
Drop backport patches:
- 0001-handle_reply-Don-t-use-the-xp_auth-pointer-directly.patch
- cve-2015-7236.patch
(From OE-Core rev: 6d65a58f5c062b503ab41b38fb2e74df71a9a8c6)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb')
| -rw-r--r-- | meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb b/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb deleted file mode 100644 index c19a1976a1..0000000000 --- a/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb +++ /dev/null | |||
| @@ -1,73 +0,0 @@ | |||
| 1 | SUMMARY = "Universal Addresses to RPC Program Number Mapper" | ||
| 2 | DESCRIPTION = "The rpcbind utility is a server that converts RPC \ | ||
| 3 | program numbers into universal addresses." | ||
| 4 | SECTION = "console/network" | ||
| 5 | HOMEPAGE = "http://sourceforge.net/projects/rpcbind/" | ||
| 6 | BUGTRACKER = "http://sourceforge.net/tracker/?group_id=201237&atid=976751" | ||
| 7 | DEPENDS = "libtirpc quota" | ||
| 8 | |||
| 9 | LICENSE = "BSD" | ||
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=b46486e4c4a416602693a711bb5bfa39 \ | ||
| 11 | file://src/rpcinfo.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24" | ||
| 12 | |||
| 13 | SRC_URI = "${SOURCEFORGE_MIRROR}/rpcbind/rpcbind-${PV}.tar.bz2 \ | ||
| 14 | file://init.d \ | ||
| 15 | file://0001-Avoid-use-of-glibc-sys-cdefs.h-header.patch \ | ||
| 16 | file://remove-sys-queue.patch \ | ||
| 17 | file://0001-handle_reply-Don-t-use-the-xp_auth-pointer-directly.patch \ | ||
| 18 | ${UCLIBCPATCHES} \ | ||
| 19 | ${MUSLPATCHES} \ | ||
| 20 | file://rpcbind.conf \ | ||
| 21 | file://rpcbind.socket \ | ||
| 22 | file://rpcbind.service \ | ||
| 23 | file://cve-2015-7236.patch \ | ||
| 24 | " | ||
| 25 | MUSLPATCHES_libc-musl = "file://musl-sunrpc.patch" | ||
| 26 | |||
| 27 | UCLIBCPATCHES ?= "" | ||
| 28 | MUSLPATCHES ?= "" | ||
| 29 | |||
| 30 | SRC_URI[md5sum] = "c8875246b2688a1adfbd6ad43480278d" | ||
| 31 | SRC_URI[sha256sum] = "9897823a9d820ea011d9ea02054d5ab99469b9ca5346265fee380713c8fed27b" | ||
| 32 | |||
| 33 | inherit autotools update-rc.d systemd pkgconfig | ||
| 34 | |||
| 35 | PACKAGECONFIG ??= "tcp-wrappers" | ||
| 36 | PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" | ||
| 37 | |||
| 38 | INITSCRIPT_NAME = "rpcbind" | ||
| 39 | INITSCRIPT_PARAMS = "start 12 2 3 4 5 . stop 60 0 1 6 ." | ||
| 40 | |||
| 41 | SYSTEMD_SERVICE_${PN} = "rpcbind.service" | ||
| 42 | |||
| 43 | inherit useradd | ||
| 44 | |||
| 45 | USERADD_PACKAGES = "${PN}" | ||
| 46 | USERADD_PARAM_${PN} = "--system --no-create-home --home-dir / \ | ||
| 47 | --shell /bin/false --user-group rpc" | ||
| 48 | |||
| 49 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" | ||
| 50 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/, \ | ||
| 51 | --without-systemdsystemunitdir, \ | ||
| 52 | systemd \ | ||
| 53 | " | ||
| 54 | |||
| 55 | EXTRA_OECONF += " --enable-warmstarts --with-rpcuser=rpc" | ||
| 56 | |||
| 57 | do_install_append () { | ||
| 58 | mv ${D}${bindir} ${D}${sbindir} | ||
| 59 | |||
| 60 | install -d ${D}${sysconfdir}/init.d | ||
| 61 | sed -e 's,/etc/,${sysconfdir}/,g' \ | ||
| 62 | -e 's,/sbin/,${sbindir}/,g' \ | ||
| 63 | ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind | ||
| 64 | chmod 0755 ${D}${sysconfdir}/init.d/rpcbind | ||
| 65 | |||
| 66 | install -m 0755 ${WORKDIR}/rpcbind.conf ${D}${sysconfdir} | ||
| 67 | install -d ${D}${systemd_unitdir}/system | ||
| 68 | install -m 0644 ${WORKDIR}/rpcbind.socket ${D}${systemd_unitdir}/system | ||
| 69 | install -m 0644 ${WORKDIR}/rpcbind.service ${D}${systemd_unitdir}/system | ||
| 70 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | ||
| 71 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | ||
| 72 | ${D}${systemd_unitdir}/system/rpcbind.service | ||
| 73 | } | ||
