diff options
| author | Alexander Kanavin <alex@linutronix.de> | 2025-01-08 09:42:12 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-10 11:10:00 +0000 |
| commit | e5a2faf045abfafbc23d6eb759e43d2d04237ba2 (patch) | |
| tree | 8557befbc256ef1602c220d545351d3f2aed301d /meta/recipes-extended/bc/bc_1.08.1.bb | |
| parent | bc7d32e16a81b6cbac49c92441796d3f47509cd6 (diff) | |
| download | poky-e5a2faf045abfafbc23d6eb759e43d2d04237ba2.tar.gz | |
bc: update 1.07.1 -> 1.08.1
Upstream now ships pre-generated libmath.h, so we don't need to do so.
Drop 0001-dc-fix-exit-code-of-q-command.patch
(merged upstream).
License-update: copyright years.
(From OE-Core rev: ab7c33ba324af89a0f96d9eb480ce422f3b92fb5)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/bc/bc_1.08.1.bb')
| -rw-r--r-- | meta/recipes-extended/bc/bc_1.08.1.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-extended/bc/bc_1.08.1.bb b/meta/recipes-extended/bc/bc_1.08.1.bb new file mode 100644 index 0000000000..473d78d8a7 --- /dev/null +++ b/meta/recipes-extended/bc/bc_1.08.1.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | SUMMARY = "Arbitrary precision calculator language" | ||
| 2 | HOMEPAGE = "http://www.gnu.org/software/bc/bc.html" | ||
| 3 | DESCRIPTION = "bc is an arbitrary precision numeric processing language. Syntax is similar to C, but differs in many substantial areas. It supports interactive execution of statements." | ||
| 4 | |||
| 5 | LICENSE = "GPL-3.0-or-later" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
| 7 | file://COPYING.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \ | ||
| 8 | file://bc/bcdefs.h;endline=17;md5=4295c06df9e833519a342f7b5d43db06 \ | ||
| 9 | file://dc/dc.h;endline=18;md5=bad31533d57fe5948c996f9ef6643206 \ | ||
| 10 | file://lib/number.c;endline=20;md5=cf43068cc88f837731dc53240456cfaf" | ||
| 11 | |||
| 12 | SECTION = "base" | ||
| 13 | DEPENDS = "flex-native" | ||
| 14 | |||
| 15 | SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz \ | ||
| 16 | file://run-ptest" | ||
| 17 | SRC_URI[sha256sum] = "b71457ffeb210d7ea61825ff72b3e49dc8f2c1a04102bbe23591d783d1bfe996" | ||
| 18 | |||
| 19 | inherit autotools texinfo update-alternatives ptest | ||
| 20 | |||
| 21 | PACKAGECONFIG ??= "readline" | ||
| 22 | PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline" | ||
| 23 | PACKAGECONFIG[libedit] = "--with-libedit,--without-libedit,libedit" | ||
| 24 | |||
| 25 | do_install_ptest() { | ||
| 26 | install ${S}/Test/*.b ${D}${PTEST_PATH} | ||
| 27 | } | ||
| 28 | |||
| 29 | ALTERNATIVE:${PN} = "bc dc" | ||
| 30 | ALTERNATIVE_PRIORITY = "100" | ||
| 31 | |||
| 32 | BBCLASSEXTEND = "native nativesdk" | ||
