From patchwork Sun Apr 27 15:27:46 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wen Yang X-Patchwork-Id: 61988 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 6518DC369DC for ; Sun, 27 Apr 2025 20:49:42 +0000 (UTC) Received: from out-174.mta1.migadu.com (out-174.mta1.migadu.com [95.215.58.174]) by mx.groups.io with SMTP id smtpd.web10.28245.1745767682098465198 for ; Sun, 27 Apr 2025 08:28:02 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@linux.dev header.s=key1 header.b=qW4bOemY; spf=pass (domain: linux.dev, ip: 95.215.58.174, mailfrom: wen.yang@linux.dev) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1745767679; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=PaPLhVQj9ZZYzT40udRzxllnfk8uEYBKQkuFXdtyL/g=; b=qW4bOemYTehMRRJf9gT6kdeTyEdRVo3xyzfXXbNA3zvkTl6HnM3VWmXzgVbXykkllAY48o RzmuVzQQ7du1HlgVlda31adzbtWBf3hW4pELTu8tC4aOCNLC2VvKYDl/1kweMO9/y73lpB 1xFQ+bCcE0TH4TQ35qXB4Vj5g7P1d28= From: Wen Yang To: openembedded-core@lists.openembedded.org, openembedded-devel@lists.openembedded.org Cc: Wen Yang Subject: [meta-oe][PATCH] testdisk: add recipe Date: Sun, 27 Apr 2025 23:27:46 +0800 Message-Id: <20250427152746.8099-1-wen.yang@linux.dev> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT 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 ; Sun, 27 Apr 2025 20:49:42 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/117176 testdisk is a free data recovery software primarily designed to help recover lost partitions and/or make non-booting disks bootable again when these symptoms are caused by faulty software. Signed-off-by: Wen Yang --- .../recipes-support/testdisk/testdisk_7.2.bb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 meta-oe/recipes-support/testdisk/testdisk_7.2.bb diff --git a/meta-oe/recipes-support/testdisk/testdisk_7.2.bb b/meta-oe/recipes-support/testdisk/testdisk_7.2.bb new file mode 100644 index 0000000000..64e3d612c1 --- /dev/null +++ b/meta-oe/recipes-support/testdisk/testdisk_7.2.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "TestDisk is a free data recovery software primarily designed to help recover lost partitions and/or make non-booting disks bootable again when these symptoms are caused by faulty software, certain types of viruses or human error (such as accidentally deleting your Partition Table)." +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" +PR = "r1" + +DEPENDS = "jpeg ncurses e2fsprogs" + +SRC_URI = "https://github.com/cgsecurity/testdisk/archive/refs/tags/v7.2.tar.gz" +S = "${WORKDIR}/testdisk-7.2" + +inherit autotools pkgconfig + +PACKAGES =+ "photorec" + +DESCRIPTION_photorec = "Photorec is file data recovery software designed to recover lost files including video, documents and archives from Hard Disks and CDRom and lost pictures (Photo Recovery) from digital camera memory." +FILES_photorec = "${sbindir}/photorec" + +SRC_URI[md5sum] = "c47d69e2c950b6b2f0dadb2a2921d6c6" +SRC_URI[sha256sum] = "f3fe7ec02cafcbe792a4c783976de3a6312963b0ce8a613d38adbcd8bdca0517"