Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/bc-gh/
Date: Sun, 28 Nov 2021 00:20:23
Message-Id: 1638058743.4f878a894d22801164c84a7d538b2372ba0b338c.ionen@gentoo
1 commit: 4f878a894d22801164c84a7d538b2372ba0b338c
2 Author: Gavin Howard <gavin <AT> yzena <DOT> com>
3 AuthorDate: Tue Nov 23 05:49:34 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 28 00:19:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f878a89
7
8 sci-calculators/bc-gh: bump to 5.2.1
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Gavin D. Howard <gavin <AT> yzena.com>
12 Closes: https://github.com/gentoo/gentoo/pull/23045
13 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
14
15 sci-calculators/bc-gh/Manifest | 1 +
16 sci-calculators/bc-gh/bc-gh-5.2.1.ebuild | 18 ++++++++++++++++++
17 2 files changed, 19 insertions(+)
18
19 diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest
20 index 937d8bbc72ad..bec1995c4ae6 100644
21 --- a/sci-calculators/bc-gh/Manifest
22 +++ b/sci-calculators/bc-gh/Manifest
23 @@ -1,2 +1,3 @@
24 DIST bc-5.1.1.tar.xz 433944 BLAKE2B d46ae9de6358b3acd1afe9f7013286d8678e26a985664d65e78b51077b494d2b1c1271044170d3488ececeaed5e97df15da2734070a2fbf39b33ab9c01543558 SHA512 d8774fb1e654520abdf7d790783d4a3c04fa8f4982fc1cd0d92331e7e4b5889efa022cafb5e1286b6c82a74c9388f47657c7b9d78888b5d8056fa40d3d5e5c69
25 DIST bc-5.2.0.tar.xz 435820 BLAKE2B babcd26a69b845fa1f50b0f65dc536bdcd7603102224379387e6dc60aaf94faebc30088d429206100e053cfa34945117b090cd75c7d0dcf377467204572b9358 SHA512 f5fcaef5a963baa344972432e20c9747cba7b08b2dd7beac5c783da250abcde37cf85c23bfb3273432c31b292c9c470c836daf990c69f83bd6c7e565a46859e2
26 +DIST bc-5.2.1.tar.xz 437096 BLAKE2B 9ec13897b3489c00761c1478de8ad9428e966ecba4f4582e37ede17cb6d97d492c928f7f931c8e412deb6cdb86e2092b17c5c1b0a31527964a522fd2929e8472 SHA512 8f5cfdfc0b2e1866d8fc1477d7bfc2882cf4d2e4844fcf41ded5f8b52b4d8124c073e845d86b355977f815a5a8a2f22fd98495ec4b5dd41737b808a3a4f4bb56
27
28 diff --git a/sci-calculators/bc-gh/bc-gh-5.2.1.ebuild b/sci-calculators/bc-gh/bc-gh-5.2.1.ebuild
29 new file mode 100644
30 index 000000000000..47aaece3ed37
31 --- /dev/null
32 +++ b/sci-calculators/bc-gh/bc-gh-5.2.1.ebuild
33 @@ -0,0 +1,18 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +DESCRIPTION="Implementation of POSIX bc with GNU extensions"
40 +HOMEPAGE="https://git.yzena.com/gavin/bc"
41 +SRC_URI="https://github.com/gavinhoward/bc/releases/download/${PV}/bc-${PV}.tar.xz"
42 +
43 +LICENSE="BSD-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86"
46 +
47 +S="${WORKDIR}/bc-${PV}"
48 +
49 +src_configure() {
50 + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GTl -sbc.banner -sdc.tty_mode || die
51 +}