From b6ee13f983e3ee6f83edb77edebaaf9e7dab3c3a Mon Sep 17 00:00:00 2001 From: Marc Mattmueller Date: Mon, 21 Mar 2022 10:48:35 +0100 Subject: [PATCH] recipes-tools: remove scripts-nm recpie (not used anymore) the create support package script and its helpers are not used so far and can be removed. Signed-off-by: Marc Mattmueller --- .../images/netmodule-linux-image-dev.bb | 1 - recipes-tools/scripts-nm/json2textlog_git.bb | 27 ----------------- recipes-tools/scripts-nm/scripts-nm_git.bb | 29 ------------------- 3 files changed, 57 deletions(-) delete mode 100644 recipes-tools/scripts-nm/json2textlog_git.bb delete mode 100644 recipes-tools/scripts-nm/scripts-nm_git.bb diff --git a/recipes-core/images/netmodule-linux-image-dev.bb b/recipes-core/images/netmodule-linux-image-dev.bb index 4b7cd0b..5be320c 100644 --- a/recipes-core/images/netmodule-linux-image-dev.bb +++ b/recipes-core/images/netmodule-linux-image-dev.bb @@ -8,7 +8,6 @@ IMAGE_FEATURES_append = " \ MONITORING = " \ sys-mon \ - scripts-nm \ " BENCH_TOOLS = " \ diff --git a/recipes-tools/scripts-nm/json2textlog_git.bb b/recipes-tools/scripts-nm/json2textlog_git.bb deleted file mode 100644 index 25719f0..0000000 --- a/recipes-tools/scripts-nm/json2textlog_git.bb +++ /dev/null @@ -1,27 +0,0 @@ -SUMMARY = "NetModule Json to Text Log Conversion" -DESCRIPTION = "Scripts providing different features" -SECTION = "base" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=45fbf6e6933c4d44b632377e741f6b70" - -SRC_URI = "git://git.netmodule.intranet/nm-tools/json2textlog.git;protocol=ssh;user=gitea;branch=develop" -SRCREV = "${AUTOREV}" - -PV = "0.0.1+git${SRCPV}" - -RDEPENDS_${PN} = "python3 python3-jsonlines" - -S = "${WORKDIR}/git" - -PACKAGES = "${PN}" - -do_install() { - install -d ${D}${bindir} - install -m 644 ${S}/logconversion.py ${D}${bindir}/ -} - -FILES_${PN} = " \ - ${bindir}/logconversion.py \ - " - -INHIBIT_PACKAGE_DEBUG_SPLIT = "1" diff --git a/recipes-tools/scripts-nm/scripts-nm_git.bb b/recipes-tools/scripts-nm/scripts-nm_git.bb deleted file mode 100644 index 2ad45df..0000000 --- a/recipes-tools/scripts-nm/scripts-nm_git.bb +++ /dev/null @@ -1,29 +0,0 @@ -SUMMARY = "NetModule Scripts" -DESCRIPTION = "Scripts providing different features" -SECTION = "base" -LICENSE = "LGPLv3" -LIC_FILES_CHKSUM = "file://LICENSE;md5=af1a38c2dcc3faf2d13219a0b39fcb16" - -SRC_URI = "git://git.netmodule.intranet/nm-tools/features.git;protocol=ssh;user=gitea;branch=develop" -SRCREV = "${AUTOREV}" - -PV = "0.0.1+git${SRCPV}" - -RDEPENDS_${PN} = "bash json2textlog systemd-analyze" - -S = "${WORKDIR}/git/scripts" - -PACKAGES = "${PN}" - -do_install() { - install -d ${D}${bindir} - install -m 755 ${S}/*.sh ${D}${bindir}/ -} - -FILES_${PN} = " \ - ${bindir}/createSupportPkg.sh \ - ${bindir}/exportJournal.sh \ - ${bindir}/helpers.sh \ - " - -INHIBIT_PACKAGE_DEBUG_SPLIT = "1"