From patchwork Sat Mar 28 21:19:38 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Fitzmayer X-Patchwork-Id: 84698 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 021AB10D1487 for ; Sat, 28 Mar 2026 21:19:49 +0000 (UTC) Received: from mailserv.regfish.com (mailserv.regfish.com [52.57.101.90]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.19265.1774732783811205726 for ; Sat, 28 Mar 2026 14:19:44 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=none, err=permanent DNS error (domain: michael-fitzmayer.de, ip: 52.57.101.90, mailfrom: mail@michael-fitzmayer.de) Received: by mailserv.regfish.com (Postfix, from userid 706) id D50EF60782; Sat, 28 Mar 2026 21:19:41 +0000 (UTC) Received: from DESKTOP-B84SDL6.localdomain (ipservice-092-209-208-070.092.209.pools.vodafone-ip.de [92.209.208.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: 46272-0001) by mailserv.regfish.com (Postfix) with ESMTPSA id B1F2C6076F; Sat, 28 Mar 2026 21:19:41 +0000 (UTC) From: Michael Fitzmayer To: openembedded-devel@lists.openembedded.org Cc: Michael Fitzmayer Subject: [meta-oe][PATCH] Add recipe: isocline 1.0.9 Date: Sat, 28 Mar 2026 22:19:38 +0100 Message-ID: <20260328211938.2297408-1-mail@michael-fitzmayer.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sat, 28 Mar 2026 21:19:49 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/125801 Isocline is a pure C library that can be used as an alternative to the GNU readline library. Signed-off-by: Michael Fitzmayer --- .../isocline/isocline_1.0.9.bb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb diff --git a/meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb b/meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb new file mode 100644 index 0000000000..2afc4500df --- /dev/null +++ b/meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb @@ -0,0 +1,28 @@ +SUMMARY = "Isocline is a portable GNU readline alternative." +DESCRIPTION = "Isocline is a pure C library that can be used \ + as an alternative to the GNU readline library. \ + " +HOMEPAGE = "https://github.com/daanx/isocline" +BUGTRACKER = "https://github.com/daanx/isocline/issues" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=8d05469c537534c7405c82c81a526bcd" + +SRC_URI = "git://github.com/daanx/isocline.git;protocol=https;branch=main;tag=v${PV}" +SRCREV = "74d34bc453f5b91f1f8d8ded2840e1553623d135" + + +inherit cmake + +CFLAGS += "-fPIC" + +do_install() { + install -d ${D}${libdir} + install -m 0644 ${B}/libisocline.a ${D}${libdir}/ + install -d ${D}${includedir} + cp ${S}/include/isocline.h ${D}${includedir}/ +} + +FILES:${PN}-dev = "${libdir}/libisocline.a" +FILES:${PN}-dev = "${includedir}/isocline.h" +FILES:${PN}-dbg += "${libdir}/.debug/libisocline.a"