From patchwork Tue May 9 13:36:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 23697 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id E2446C7EE2D for ; Tue, 9 May 2023 13:36:42 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.32638.1683639397560020104 for ; Tue, 09 May 2023 06:36:37 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id AD45D1576; Tue, 9 May 2023 06:37:21 -0700 (PDT) Received: from oss-tx204.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id C358D3F663; Tue, 9 May 2023 06:36:36 -0700 (PDT) From: ross.burton@arm.com To: openembedded-devel@lists.openembedded.org Cc: nd@arm.com Subject: [PATCH 4/4] xorriso: remove obsolete recipe Date: Tue, 9 May 2023 14:36:32 +0100 Message-Id: <20230509133632.191360-4-ross.burton@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230509133632.191360-1-ross.burton@arm.com> References: <20230509133632.191360-1-ross.burton@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 09 May 2023 13:36:42 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/102510 From: Ross Burton GNU xorriso is simply a bundling of libisofs+libburn+libisoburn which also "restricts itself to a technical form where the legal commitments of the libburnia project and the legal intentions of FSF match completely".[1] What this actually means is unclear. We can follow upstream faster and have more modular recipes by packaging the pieces directly, instead of building the development snapshot of GNU xorriso 1.5.5. Signed-off-by: Ross Burton --- .../recipes-utils/xorriso/xorriso_1.5.5.bb | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 meta-filesystems/recipes-utils/xorriso/xorriso_1.5.5.bb diff --git a/meta-filesystems/recipes-utils/xorriso/xorriso_1.5.5.bb b/meta-filesystems/recipes-utils/xorriso/xorriso_1.5.5.bb deleted file mode 100644 index a83950db82..0000000000 --- a/meta-filesystems/recipes-utils/xorriso/xorriso_1.5.5.bb +++ /dev/null @@ -1,29 +0,0 @@ -DESCRIPTION = "xorriso copies file objects from POSIX compliant filesystems \ -into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise \ -manipulation of such filesystems" - -LICENSE = "GPL-3.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" - -SRC_URI = "http://www.gnu.org/software/${BPN}/${BPN}-${PV}.tar.gz" - -SRC_URI[md5sum] = "a5e3dc4e0b92be6837f9ed6cbf7f9df5" -SRC_URI[sha256sum] = "91663d61bee61ff790b3f6861fdf57c54af0e238ab14f297b55bae8ab5d17684" - -PACKAGECONFIG ??= "acl attr zlib bzip2 readline" -PACKAGECONFIG[acl] = "--enable-libacl,--disable-libacl,acl," -PACKAGECONFIG[attr] = "--enable-xattr,--disable-xattr,attr," -PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib," -PACKAGECONFIG[bzip2] = "--enable-libbz2,--disable-libbz2,bzip2," -PACKAGECONFIG[readline] = "--enable-libreadline,--disable-libreadline,readline," - -inherit autotools-brokensep pkgconfig features_check - -do_configure:prepend () { - touch NEWS -} - -RDEPENDS:${PN} = "tk" -REQUIRED_DISTRO_FEATURES = "x11" - -BBCLASSEXTEND = "native"