From 6c991dab48d6bfd930156f754220ec57a7d9e9b5 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Fri, 23 Apr 2021 11:38:43 -0400 Subject: xen-python2: drop recipe python2 is no longer supported, and we are breaking yocto layer compatibilty by keeping this recipe around (since there is no provider of 'python'). This hasn't been updated in over a year, so it is time to retire it. If it is required, we can bring it back in some other manner. Signed-off-by: Bruce Ashfield --- recipes-extended/xen/xen-python2.bb | 71 ------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 recipes-extended/xen/xen-python2.bb (limited to 'recipes-extended') diff --git a/recipes-extended/xen/xen-python2.bb b/recipes-extended/xen/xen-python2.bb deleted file mode 100644 index ad3c1fd6..00000000 --- a/recipes-extended/xen/xen-python2.bb +++ /dev/null @@ -1,71 +0,0 @@ -SUMMARY = "Xen hypervisor tools written in python 2" -DESCRIPTION = "Unported utility scripts for the Xen hypervisor" -HOMEPAGE = "http://xen.org" -LICENSE = "GPLv2" -SECTION = "console/tools" - -SRCREV ?= "a5fcafbfbee55261853fba07149c1c795f2baf58" - -# The same restriction as xen-tools.inc, because of the dependency on xen-tools-xentrace from xen-tools-xentrace-format -COMPATIBLE_HOST = 'i686-.*-linux|(x86_64.*).*-linux|aarch64.*-linux|arm-.*-linux-gnueabi' - -XEN_REL ?= "4.12" -XEN_BRANCH ?= "stable-4.12" - -SRC_URI = "git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH}" - -LIC_FILES_CHKSUM ?= "file://COPYING;md5=bbb4b1bdc2c3b6743da3c39d03249095" - -PV = "${XEN_REL}+git${SRCPV}" - -S = "${WORKDIR}/git" - -# Packages in this recipe do not use ${PN} to allow for simpler -# movement of the package back into the xen-tools recipe if/when -# the scripts are ported to python 3. - -RDEPENDS_xen-tools-xencov-split ="python" -RDEPENDS_xen-tools-xencons = "python" -RDEPENDS_xen-tools-xenpvnetboot = "python" -RDEPENDS_xen-tools-xentrace-format = "python" - -RRECOMMENDS_xen-tools-xencov-trace = "xen-tools-xencov" -RRECOMMENDS_xen-tools-xentrace-format = "xen-tools-xentrace" - -PACKAGES = " \ - xen-tools-xencons \ - xen-tools-xencov-split \ - xen-tools-xenpvnetboot \ - xen-tools-xentrace-format \ - " - -FILES_xen-tools-xencons = " \ - ${bindir}/xencons \ - " - -FILES_xen-tools-xencov-split = " \ - ${bindir}/xencov_split \ - " - -FILES_xen-tools-xenpvnetboot = " \ - ${libdir}/xen/bin/xenpvnetboot \ - " - -FILES_xen-tools-xentrace-format = " \ - ${bindir}/xentrace_format \ - " - -do_configure[noexec] = "1" -do_compile[noexec] = "1" - -do_install() { - install -d ${D}${bindir} - install -m 0755 ${S}/tools/xentrace/xentrace_format \ - ${D}${bindir}/xentrace_format - install -m 0755 ${S}/tools/misc/xencons ${D}${bindir}/xencons - install -m 0755 ${S}/tools/misc/xencov_split ${D}${bindir}/xencov_split - - install -d ${D}${libdir}/xen/bin - install -m 0755 ${S}/tools/misc/xenpvnetboot \ - ${D}${libdir}/xen/bin/xenpvnetboot -} -- cgit v1.2.3-54-g00ecf