summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/tar/tar_1.35.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/tar/tar_1.35.bb')
-rw-r--r--meta/recipes-extended/tar/tar_1.35.bb96
1 files changed, 96 insertions, 0 deletions
diff --git a/meta/recipes-extended/tar/tar_1.35.bb b/meta/recipes-extended/tar/tar_1.35.bb
new file mode 100644
index 0000000000..ea0993a909
--- /dev/null
+++ b/meta/recipes-extended/tar/tar_1.35.bb
@@ -0,0 +1,96 @@
1SUMMARY = "GNU file archiving program"
2DESCRIPTION = "GNU tar saves many files together into a single tape \
3or disk archive, and can restore individual files from the archive."
4HOMEPAGE = "http://www.gnu.org/software/tar/"
5SECTION = "base"
6LICENSE = "GPL-3.0-only"
7LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
8
9SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2"
10
11SRC_URI[sha256sum] = "7edb8886a3dc69420a1446e1e2d061922b642f1cf632d2cd0f9ee7e690775985"
12
13inherit autotools gettext texinfo
14
15PACKAGECONFIG ??= ""
16PACKAGECONFIG:append:class-target = " ${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}"
17
18PACKAGECONFIG[acl] = "--with-posix-acls,--without-posix-acls,acl"
19PACKAGECONFIG[selinux] = "--with-selinux,--without-selinux,libselinux"
20
21EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}"
22
23CACHED_CONFIGUREVARS += "tar_cv_path_RSH=no"
24
25do_install () {
26 autotools_do_install
27 ln -s tar ${D}${bindir}/gtar
28}
29
30do_install:append:class-target() {
31 if [ "${base_bindir}" != "${bindir}" ]; then
32 install -d ${D}${base_bindir}
33 mv ${D}${bindir}/tar ${D}${base_bindir}/tar
34 mv ${D}${bindir}/gtar ${D}${base_bindir}/gtar
35 rmdir ${D}${bindir}/
36 fi
37}
38
39# add for ptest support
40SRC_URI += " \
41 file://run-ptest \
42 file://0001-tests-fix-TESTSUITE_AT.patch \
43 file://0002-tests-check-for-recently-fixed-bug.patch \
44 file://0003-Exclude-VCS-directory-with-writing-from-an-archive.patch \
45"
46
47inherit ptest
48
49do_compile_ptest() {
50 oe_runmake -C ${B}/gnu/ check
51 oe_runmake -C ${B}/lib/ check
52 oe_runmake -C ${B}/rmt/ check
53 oe_runmake -C ${B}/src/ check
54 rm -rf ${S}/tests/testsuite
55 oe_runmake -C ${B}/tests/ testsuite
56 oe_runmake -C ${B}/tests/ genfile checkseekhole ckmtime
57}
58
59do_install_ptest() {
60 install -d ${D}${PTEST_PATH}/tests/
61 install --mode=755 ${B}/tests/atconfig ${D}${PTEST_PATH}/tests/
62 sed -i "/abs_/d" ${D}${PTEST_PATH}/tests/atconfig
63 echo "abs_builddir=${PTEST_PATH}/tests/" >> ${D}${PTEST_PATH}/tests/atconfig
64 install --mode=755 ${B}/tests/atlocal ${D}${PTEST_PATH}/tests/
65 sed -i "/PATH=/d" ${D}${PTEST_PATH}/tests/atlocal
66 install --mode=755 ${B}/tests/genfile ${D}${PTEST_PATH}/tests/
67 install --mode=755 ${B}/tests/checkseekhole ${D}${PTEST_PATH}/tests/
68 install --mode=755 ${B}/tests/ckmtime ${D}${PTEST_PATH}/tests/
69 install --mode=755 ${S}/tests/testsuite ${D}${PTEST_PATH}/tests/
70 sed -i "s#@PTEST_PATH@#${PTEST_PATH}#g" ${D}${PTEST_PATH}/run-ptest
71}
72
73PACKAGES =+ "${PN}-rmt"
74
75FILES:${PN}-rmt = "${sbindir}/rmt*"
76
77inherit update-alternatives
78
79ALTERNATIVE_PRIORITY = "100"
80
81ALTERNATIVE:${PN} = "tar"
82ALTERNATIVE:${PN}-rmt = "rmt"
83ALTERNATIVE:${PN}:class-nativesdk = ""
84ALTERNATIVE:${PN}-rmt:class-nativesdk = ""
85
86ALTERNATIVE_LINK_NAME[tar] = "${base_bindir}/tar"
87ALTERNATIVE_LINK_NAME[rmt] = "${sbindir}/rmt"
88
89PROVIDES:append:class-native = " tar-replacement-native"
90NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
91
92BBCLASSEXTEND = "native nativesdk"
93
94# Avoid false positives from CVEs in node-tar package
95# For example CVE-2021-{32803,32804,37701,37712,37713}
96CVE_PRODUCT = "gnu:tar"