From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by mail.openembedded.org (Postfix) with ESMTP id 871F760780 for ; Thu, 27 Jun 2013 22:43:17 +0000 (UTC) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by azsmga101.ch.intel.com with ESMTP; 27 Jun 2013 15:43:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.87,955,1363158000"; d="scan'208";a="356926300" Received: from unknown (HELO swold-linux.bigsur.com) ([10.255.13.111]) by fmsmga001.fm.intel.com with ESMTP; 27 Jun 2013 15:44:05 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Thu, 27 Jun 2013 15:43:14 -0700 Message-Id: <1372372997-1604-2-git-send-email-sgw@linux.intel.com> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1372372997-1604-1-git-send-email-sgw@linux.intel.com> References: <1372372997-1604-1-git-send-email-sgw@linux.intel.com> Subject: [PATCH 1/4] mc: Don't remove libdir and split helpers into packages X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jun 2013 22:43:17 -0000 It contains helper programs that are needed to make mc do the right actions for the various file formats it understands. The helpers are perl, python and shell scripts, split them out so the core mc does not try to pull in perl and python, it will still run without these helpers. [YOCTO #4432] Signed-off-by: Saul Wold --- meta/recipes-extended/mc/mc_4.8.8.bb | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/mc/mc_4.8.8.bb b/meta/recipes-extended/mc/mc_4.8.8.bb index 20ae797..b2851bb 100644 --- a/meta/recipes-extended/mc/mc_4.8.8.bb +++ b/meta/recipes-extended/mc/mc_4.8.8.bb @@ -19,5 +19,25 @@ FILES_${PN}-dbg += "${libexecdir}/mc/.debug/" do_install_append () { sed -i -e '1s,#!.*perl,#!${bindir}/env perl,' ${D}${libexecdir}/mc/extfs.d/* - rm -rf ${D}${libdir} } + +PACKAGES =+ "${BPN}-helpers-perl ${BPN}-helpers-python ${BPN}-helpers ${BPN}-fish" + +DESCRIPTION_${BPN}-helpers-perl = "Midnight Commander perl based helper scripts" +FILES_${BPN}-helpers-perl = "${libexecdir}/mc/extfs.d/a+ ${libexecdir}/mc/extfs.d/apt+ \ + ${libexecdir}/mc/extfs.d/deb ${libexecdir}/mc/extfs.d/deba \ + ${libexecdir}/mc/extfs.d/debd ${libexecdir}/mc/extfs.d/dpkg+ \ + ${libexecdir}/mc/extfs.d/mailfs ${libexecdir}/mc/extfs.d/patchfs \ + ${libexecdir}/mc/extfs.d/rpms+ ${libexecdir}/mc/extfs.d/ulib \ + ${libexecdir}/mc/extfs.d/uzip" +RDEPENDS_${BPN}-helpers-perl = "perl" + +DESCRIPTION_${BPN}-helpers-python = "Midnight Commander python based helper scripts" +FILES_${BPN}-helpers-python = "${libexecdir}/mc/extfs.d/s3+ ${libexecdir}/mc/extfs.d/uc1541" +RDEPENDS_${BPN}-helpers-python = "python" + +DESCRIPTION_${BPN}-helpers = "Midnight Commander shell helper scripts" +FILES_${BPN}-helpers = "${libexecdir}/mc/extfs.d/* ${libexecdir}/mc/ext.d/*" + +DESCRIPTION_${BPN}-fish = "Midnight Commander Fish scripts" +FILES_${BPN}-fish = "${libexecdir}/mc/fish" -- 1.8.1.4