summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/cpio/cpio_2.12.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-12-12 19:14:33 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-16 23:25:49 +0000
commitaa4848622c5f832bbad10a126bfe7e7de7b6b703 (patch)
treebd0b2d835cd73e7be6a6b89a9459524570ffa3fc /meta/recipes-extended/cpio/cpio_2.12.bb
parent48a94080931294288e6fa0c05974b7c3ea8556d6 (diff)
downloadpoky-aa4848622c5f832bbad10a126bfe7e7de7b6b703.tar.gz
cpio: update to 2.13
Drop a couple of backports. (From OE-Core rev: 66f3b09364c499d9b0610f7c01763ae5dc1521cf) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/cpio/cpio_2.12.bb')
-rw-r--r--meta/recipes-extended/cpio/cpio_2.12.bb51
1 files changed, 0 insertions, 51 deletions
diff --git a/meta/recipes-extended/cpio/cpio_2.12.bb b/meta/recipes-extended/cpio/cpio_2.12.bb
deleted file mode 100644
index 3713bf0b1f..0000000000
--- a/meta/recipes-extended/cpio/cpio_2.12.bb
+++ /dev/null
@@ -1,51 +0,0 @@
1SUMMARY = "GNU cpio is a program to manage archives of files"
2DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \
3another. It handles a number of cpio formats as well as reading and writing tar files."
4HOMEPAGE = "http://www.gnu.org/software/cpio/"
5SECTION = "base"
6LICENSE = "GPLv3"
7LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
8
9SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \
10 file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
11 file://0001-Fix-CVE-2015-1197.patch \
12 file://0001-CVE-2016-2037-1-byte-out-of-bounds-write.patch \
13 file://0001-Fix-segfault-with-append.patch \
14 "
15
16SRC_URI[md5sum] = "fc207561a86b63862eea4b8300313e86"
17SRC_URI[sha256sum] = "08a35e92deb3c85d269a0059a27d4140a9667a6369459299d08c17f713a92e73"
18
19inherit autotools gettext texinfo
20
21EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}"
22
23do_install () {
24 autotools_do_install
25 if [ "${base_bindir}" != "${bindir}" ]; then
26 install -d ${D}${base_bindir}/
27 mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio"
28 rmdir ${D}${bindir}/
29 fi
30
31 # Avoid conflicts with the version from tar
32 mv "${D}${mandir}/man8/rmt.8" "${D}${mandir}/man8/rmt-cpio.8"
33}
34
35PACKAGES =+ "${PN}-rmt"
36
37FILES_${PN}-rmt = "${sbindir}/rmt*"
38
39inherit update-alternatives
40
41ALTERNATIVE_PRIORITY = "100"
42
43ALTERNATIVE_${PN} = "cpio"
44ALTERNATIVE_${PN}-rmt = "rmt"
45
46ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio"
47
48ALTERNATIVE_PRIORITY[rmt] = "50"
49ALTERNATIVE_LINK_NAME[rmt] = "${sbindir}/rmt"
50
51BBCLASSEXTEND = "native"