diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-05-18 20:43:44 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-21 18:11:01 -0700 |
commit | 5a1942ebb8daeed04b4d854cc291365ae1f458d3 (patch) | |
tree | 4571283dd6ae3986d88e706207d5a66427d1aca4 | |
parent | 46af44ffe6a89dc9c6eccab0a7d60b377a3bb00f (diff) | |
download | meta-openembedded-5a1942ebb8daeed04b4d854cc291365ae1f458d3.tar.gz |
libtraceevent: Delete
Recipe is moved to oe-core layer
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-kernel/libtraceevent/libtraceevent/0001-makefile-Do-not-preserve-ownership-in-cp-command.patch | 40 | ||||
-rw-r--r-- | meta-oe/recipes-kernel/libtraceevent/libtraceevent_1.7.2.bb | 25 |
2 files changed, 0 insertions, 65 deletions
diff --git a/meta-oe/recipes-kernel/libtraceevent/libtraceevent/0001-makefile-Do-not-preserve-ownership-in-cp-command.patch b/meta-oe/recipes-kernel/libtraceevent/libtraceevent/0001-makefile-Do-not-preserve-ownership-in-cp-command.patch deleted file mode 100644 index 5e88048817..0000000000 --- a/meta-oe/recipes-kernel/libtraceevent/libtraceevent/0001-makefile-Do-not-preserve-ownership-in-cp-command.patch +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | From ed0a31000305d937abe47c44d705b5b52bb36f79 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Thu, 22 Dec 2022 18:32:17 -0800 | ||
4 | Subject: [PATCH] makefile: Do not preserve ownership in cp command | ||
5 | |||
6 | Fixes | ||
7 | |||
8 | ERROR: libtraceevent-1.7.0-r0 do_package_qa: QA Issue: libtraceevent: /usr/lib/libtraceevent.a is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination [host-user-contaminated] | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
12 | --- | ||
13 | Makefile | 4 ++-- | ||
14 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
15 | |||
16 | diff --git a/Makefile b/Makefile | ||
17 | index 965ff47..0e782cb 100644 | ||
18 | --- a/Makefile | ||
19 | +++ b/Makefile | ||
20 | @@ -287,7 +287,7 @@ $(BUILD_PREFIX): force | ||
21 | $(Q)$(call build_prefix,$(prefix)) | ||
22 | |||
23 | define do_make_pkgconfig_file | ||
24 | - cp -f ${PKG_CONFIG_SOURCE_FILE}.template ${PKG_CONFIG_FILE}; \ | ||
25 | + install -m 0644 ${PKG_CONFIG_SOURCE_FILE}.template ${PKG_CONFIG_FILE}; \ | ||
26 | sed -i "s|INSTALL_PREFIX|${1}|g" ${PKG_CONFIG_FILE}; \ | ||
27 | sed -i "s|LIB_VERSION|${EVENT_PARSE_VERSION}|g" ${PKG_CONFIG_FILE}; \ | ||
28 | sed -i "s|LIB_DIR|${libdir_relative}|g" ${PKG_CONFIG_FILE}; \ | ||
29 | @@ -335,7 +335,7 @@ install: install_libs install_plugins | ||
30 | |||
31 | install_libs: libs install_headers install_pkgconfig | ||
32 | $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)); \ | ||
33 | - cp -fpR $(LIB_INSTALL) $(DESTDIR)$(libdir_SQ) | ||
34 | + cp --no-preserve=ownership --recursive $(LIB_INSTALL) $(DESTDIR)$(libdir_SQ) | ||
35 | $(Q)$(call install_ld_config) | ||
36 | |||
37 | install_pkgconfig: $(PKG_CONFIG_FILE) | ||
38 | -- | ||
39 | 2.39.0 | ||
40 | |||
diff --git a/meta-oe/recipes-kernel/libtraceevent/libtraceevent_1.7.2.bb b/meta-oe/recipes-kernel/libtraceevent/libtraceevent_1.7.2.bb deleted file mode 100644 index 089b6814c7..0000000000 --- a/meta-oe/recipes-kernel/libtraceevent/libtraceevent_1.7.2.bb +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | # Copyright (C) 2022 Khem Raj <raj.khem@gmail.com> | ||
2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
3 | |||
4 | SUMMARY = "API to access the kernel tracefs directory" | ||
5 | HOMEPAGE = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/" | ||
6 | LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0;md5=e6a75371ba4d16749254a51215d13f97 \ | ||
8 | file://LICENSES/LGPL-2.1;md5=b370887980db5dd40659b50909238dbd" | ||
9 | SECTION = "libs" | ||
10 | |||
11 | SRCREV = "1c6f0f3b2bb47571fc455dc565dc343152517d98" | ||
12 | SRC_URI = "git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git;branch=${BPN};protocol=https \ | ||
13 | file://0001-makefile-Do-not-preserve-ownership-in-cp-command.patch" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | inherit pkgconfig | ||
18 | |||
19 | do_install() { | ||
20 | oe_runmake install DESTDIR=${D} pkgconfig_dir=${libdir}/pkgconfig | ||
21 | } | ||
22 | |||
23 | PACKAGES += "${PN}-plugins" | ||
24 | |||
25 | FILES:${PN}-plugins += "${libdir}/traceevent/plugins" | ||