diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-05-24 17:14:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-15 17:56:24 +0100 |
commit | b177ee9244e1978bcfcaab799e83fcb7d5e6242c (patch) | |
tree | 54550b922fde19bfeae4e96c9343a59cd1af9fdb /meta/recipes-extended/cpio | |
parent | d7c5ae6ea9362e2c5449c91e590fc388456b0115 (diff) | |
download | poky-b177ee9244e1978bcfcaab799e83fcb7d5e6242c.tar.gz |
cpio: move contents of cpio_v2.inc into the cpio recipe
Merge contents of cpio_v2.inc into the only recipe which uses it.
(From OE-Core rev: 162ff3871779d646dadc7e7287f4667641d6e612)
Signed-off-by: Andre McCurdy <armccurdy@gmail.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/cpio')
-rw-r--r-- | meta/recipes-extended/cpio/cpio_2.12.bb | 40 | ||||
-rw-r--r-- | meta/recipes-extended/cpio/cpio_v2.inc | 43 |
2 files changed, 38 insertions, 45 deletions
diff --git a/meta/recipes-extended/cpio/cpio_2.12.bb b/meta/recipes-extended/cpio/cpio_2.12.bb index 405a90e03a..0b83e9b07d 100644 --- a/meta/recipes-extended/cpio/cpio_2.12.bb +++ b/meta/recipes-extended/cpio/cpio_2.12.bb | |||
@@ -1,8 +1,13 @@ | |||
1 | require cpio_v2.inc | 1 | SUMMARY = "GNU cpio is a program to manage archives of files" |
2 | 2 | DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \ | |
3 | another. It handles a number of cpio formats as well as reading and writing tar files." | ||
4 | HOMEPAGE = "http://www.gnu.org/software/cpio/" | ||
5 | SECTION = "base" | ||
3 | LICENSE = "GPLv3" | 6 | LICENSE = "GPLv3" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" |
5 | 8 | ||
9 | DEPENDS = "texinfo-native" | ||
10 | |||
6 | SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ | 11 | SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ |
7 | file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ | 12 | file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ |
8 | file://0001-Fix-CVE-2015-1197.patch \ | 13 | file://0001-Fix-CVE-2015-1197.patch \ |
@@ -10,3 +15,34 @@ SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ | |||
10 | 15 | ||
11 | SRC_URI[md5sum] = "fc207561a86b63862eea4b8300313e86" | 16 | SRC_URI[md5sum] = "fc207561a86b63862eea4b8300313e86" |
12 | SRC_URI[sha256sum] = "08a35e92deb3c85d269a0059a27d4140a9667a6369459299d08c17f713a92e73" | 17 | SRC_URI[sha256sum] = "08a35e92deb3c85d269a0059a27d4140a9667a6369459299d08c17f713a92e73" |
18 | |||
19 | inherit autotools gettext texinfo | ||
20 | |||
21 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}" | ||
22 | |||
23 | do_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 | |||
32 | PACKAGES =+ "${PN}-rmt" | ||
33 | |||
34 | FILES_${PN}-rmt = "${base_sbindir}/rmt*" | ||
35 | |||
36 | inherit update-alternatives | ||
37 | |||
38 | ALTERNATIVE_PRIORITY = "100" | ||
39 | |||
40 | ALTERNATIVE_${PN} = "cpio" | ||
41 | ALTERNATIVE_${PN}-rmt = "rmt" | ||
42 | |||
43 | ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio" | ||
44 | |||
45 | ALTERNATIVE_PRIORITY[rmt] = "50" | ||
46 | ALTERNATIVE_LINK_NAME[rmt] = "${base_sbindir}/rmt" | ||
47 | |||
48 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/recipes-extended/cpio/cpio_v2.inc b/meta/recipes-extended/cpio/cpio_v2.inc deleted file mode 100644 index 31adb717d4..0000000000 --- a/meta/recipes-extended/cpio/cpio_v2.inc +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | SUMMARY = "GNU cpio is a program to manage archives of files" | ||
2 | DESCRIPTION = "GNU cpio is a tool for creating and extracting archives, or copying files from one place to \ | ||
3 | another. It handles a number of cpio formats as well as reading and writing tar files." | ||
4 | HOMEPAGE = "http://www.gnu.org/software/cpio/" | ||
5 | SECTION = "base" | ||
6 | |||
7 | DEPENDS = "texinfo-native" | ||
8 | |||
9 | SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ | ||
10 | " | ||
11 | |||
12 | inherit autotools gettext texinfo | ||
13 | |||
14 | S = "${WORKDIR}/cpio-${PV}" | ||
15 | |||
16 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}" | ||
17 | |||
18 | do_install () { | ||
19 | autotools_do_install | ||
20 | if [ "${base_bindir}" != "${bindir}" ]; then | ||
21 | install -d ${D}${base_bindir}/ | ||
22 | mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio" | ||
23 | rmdir ${D}${bindir}/ | ||
24 | fi | ||
25 | } | ||
26 | |||
27 | PACKAGES =+ "${PN}-rmt" | ||
28 | |||
29 | FILES_${PN}-rmt = "${base_sbindir}/rmt*" | ||
30 | |||
31 | inherit update-alternatives | ||
32 | |||
33 | ALTERNATIVE_PRIORITY = "100" | ||
34 | |||
35 | ALTERNATIVE_${PN} = "cpio" | ||
36 | ALTERNATIVE_${PN}-rmt = "rmt" | ||
37 | |||
38 | ALTERNATIVE_LINK_NAME[cpio] = "${base_bindir}/cpio" | ||
39 | |||
40 | ALTERNATIVE_PRIORITY[rmt] = "50" | ||
41 | ALTERNATIVE_LINK_NAME[rmt] = "${base_sbindir}/rmt" | ||
42 | |||
43 | BBCLASSEXTEND = "native" | ||