diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-10-18 14:06:49 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-10-18 21:47:35 +0200 |
commit | 22826f0f164d48ceef18343d9e9c2a6eb3de4230 (patch) | |
tree | 14c950e6656b8d6eb08a9b56e758f95c5dde0821 /recipes-support | |
parent | e82b00a13a62499fdbca9505daaa69b35bf2f77d (diff) |
WIP: rm appfw
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I6a90dae780a8eca7d684b5842c3af3ee55ebc509
Diffstat (limited to 'recipes-support')
7 files changed, 0 insertions, 86 deletions
diff --git a/recipes-support/curl/curl_%.bbappend b/recipes-support/curl/curl_%.bbappend deleted file mode 100644 index b126b6d20..000000000 --- a/recipes-support/curl/curl_%.bbappend +++ /dev/null @@ -1 +0,0 @@ -require ${@bb.utils.contains('AGL_FEATURES', 'agldemo', 'curl_agldemo.inc', '', d)} diff --git a/recipes-support/curl/curl_agldemo.inc b/recipes-support/curl/curl_agldemo.inc deleted file mode 100644 index fc24cea15..000000000 --- a/recipes-support/curl/curl_agldemo.inc +++ /dev/null @@ -1,5 +0,0 @@ -# Cannot just append to PACKAGECONFIG, as nghttp2's dependencies do not build -# for native/nativesdk, and appending class-target does not work because of -# the weak definition of PACKAGECONFIG in the recipe, so need to copy the -# definition to add nghttp2... -PACKAGECONFIG = "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} gnutls libidn proxy threaded-resolver verbose zlib nghttp2" diff --git a/recipes-support/lin-config/files/0001-Change-Makefile-to-use-pkg-config-for-libxml-2.0.patch b/recipes-support/lin-config/files/0001-Change-Makefile-to-use-pkg-config-for-libxml-2.0.patch deleted file mode 100644 index fe08b7d81..000000000 --- a/recipes-support/lin-config/files/0001-Change-Makefile-to-use-pkg-config-for-libxml-2.0.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 59acd73ba3bd6cc4151b890d135c6d690a83374d Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Jan-Simon=20M=C3=B6ller?= <jsmoeller@linuxfoundation.org> -Date: Tue, 1 Oct 2019 15:24:07 +0000 -Subject: [PATCH] Change Makefile to use pkg-config for libxml-2.0 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -instead of xml2-config. - -Upstream-Status: Pending - -Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> ---- - lin_config/src/Makefile | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -diff --git a/Makefile b/Makefile -index cf5c515..3fc4df1 100644 ---- a/Makefile -+++ b/Makefile -@@ -1,6 +1,5 @@ --CC=gcc --CFLAGS=-std=gnu99 -Wall -pedantic $(DEBUG) `xml2-config --cflags` `pkg-config --cflags libnl-route-3.0` -I$(INCLUDE) --LIBS=`xml2-config --libs` `pkg-config --libs libnl-route-3.0` -+CFLAGS=-std=gnu99 -Wall -pedantic $(DEBUG) `pkg-config --cflags libxml-2.0` `pkg-config --cflags libnl-route-3.0` -I$(INCLUDE) -+LIBS=`pkg-config --libs libxml-2.0` `pkg-config --libs libnl-route-3.0` - INCLUDE=../../sllin - DEBUG=-ggdb - --- -2.16.4 - diff --git a/recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch b/recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch deleted file mode 100644 index 26364455a..000000000 --- a/recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch +++ /dev/null @@ -1,20 +0,0 @@ -Use LDFLAGS when linking - -Use LDFLAGS when linking the output binary to quiet QA warnings due to -missing link flags. - -Upstream-Status: Pending - -Signed-off-by: Scott Murray <scott.murray@konsulko.com> - ---- a/Makefile 2019-11-05 11:08:11.060565285 +0000 -+++ b/Makefile 2019-11-05 11:09:38.663570084 +0000 -@@ -6,7 +6,7 @@ - objects = linc_parse_xml.o pcl_config.o sllin_config.o lin_config.o - - lin_config: $(objects) -- $(CC) $(objects) $(LIBS) -o lin_config -+ $(CC) $(LDFLAGS) $(objects) $(LIBS) -o lin_config - - %.o : %.c %.h - $(CC) $(CFLAGS) $(LIBS) -c $< -o $@ diff --git a/recipes-support/lin-config/lin-config_git.bb b/recipes-support/lin-config/lin-config_git.bb deleted file mode 100644 index 7585156f2..000000000 --- a/recipes-support/lin-config/lin-config_git.bb +++ /dev/null @@ -1,25 +0,0 @@ -DESCRIPTION = "lin-config tool for the sllin driver module" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://lin_config.c;beginline=4;endline=9;md5=196a29df19a30dbc752937bdfc819d7a" - -DEPENDS += "libnl libxml2" - -SRC_URI = "git://github.com/trainman419/linux-lin.git;protocol=https" -SRCREV = "155d885e8ccc907a56f6c86c4b159fac27ef6fec" -S = "${WORKDIR}/git/lin_config/src" - -SRC_URI:append = " \ - file://0001-Change-Makefile-to-use-pkg-config-for-libxml-2.0.patch \ - file://0002-Change-Makefile-to-use-LDFLAGS.patch \ - " - -inherit pkgconfig - -PV = "0.1+git${SRCPV}" - -do_configure[noexec] = "1" - -do_install:append() { - install -d ${D}/${bindir} - install -m 755 ${S}/lin_config ${D}/${bindir} -} diff --git a/recipes-support/opencv/opencv_4.%.bbappend b/recipes-support/opencv/opencv_4.%.bbappend deleted file mode 100644 index a1016a6d0..000000000 --- a/recipes-support/opencv/opencv_4.%.bbappend +++ /dev/null @@ -1 +0,0 @@ -require ${@bb.utils.contains('AGL_FEATURES', 'agldemo', 'opencv_agldemo.inc', '', d)} diff --git a/recipes-support/opencv/opencv_agldemo.inc b/recipes-support/opencv/opencv_agldemo.inc deleted file mode 100644 index 16640023e..000000000 --- a/recipes-support/opencv/opencv_agldemo.inc +++ /dev/null @@ -1 +0,0 @@ -PACKAGECONFIG:poky = "jpeg png v4l libv4l gstreamer" |