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: Tue, 19 Oct 2021 03:04:59
Message-Id: 1634612454.f7e4c03e308dee9f5e1e2d6c0be7e68144a3f8c1.ionen@gentoo
1 commit: f7e4c03e308dee9f5e1e2d6c0be7e68144a3f8c1
2 Author: Gavin Howard <gavin <AT> yzena <DOT> com>
3 AuthorDate: Mon Oct 4 18:44:59 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 19 03:00:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e4c03e
7
8 sci-calculators/bc-gh: bump to 5.1.1
9
10 Signed-off-by: Gavin Howard <gavin <AT> yzena.com>
11 Closes: https://github.com/gentoo/gentoo/pull/22487
12 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
13
14 sci-calculators/bc-gh/Manifest | 1 +
15 sci-calculators/bc-gh/bc-gh-5.1.1.ebuild | 18 ++++++++++++++++++
16 2 files changed, 19 insertions(+)
17
18 diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest
19 index 46ffb9fdeee..a380f5f0942 100644
20 --- a/sci-calculators/bc-gh/Manifest
21 +++ b/sci-calculators/bc-gh/Manifest
22 @@ -1,2 +1,3 @@
23 DIST bc-4.0.2.tar.xz 235464 BLAKE2B 8a0a2a77bdeba924994060ba8b1dd8e6f7fbbc9ac850f58e98fdfcf2bc50890772b1f8cc344ed2e05a936487a693a26f6a2a349b93e520c01a7ac7ad0465d66d SHA512 f3564cb953bca2003c9fd565b3114a2701de4437c6db3cace29edab186d3270cd98f66f3eb1a45fd074a44736fef39f78675959f400c1c23a4a2e930d469c059
24 DIST bc-5.0.0.tar.xz 429376 BLAKE2B 8e184270e18ccabe2c1b6b95df7110dfd29cb4357667380fb5d71991b98f78c48f49e0f9176df89e058b00d2998a727ff95c166ce69085f17bb1914e957d870e SHA512 3ac4639922398e633aae3c3679ee3e53f3688da3992c55c120165b5718860f9857b7f46c43a9e18da0dd67ac92c8855f7449dfdfdfd11c419dc4ab6683550740
25 +DIST bc-5.1.1.tar.xz 433944 BLAKE2B d46ae9de6358b3acd1afe9f7013286d8678e26a985664d65e78b51077b494d2b1c1271044170d3488ececeaed5e97df15da2734070a2fbf39b33ab9c01543558 SHA512 d8774fb1e654520abdf7d790783d4a3c04fa8f4982fc1cd0d92331e7e4b5889efa022cafb5e1286b6c82a74c9388f47657c7b9d78888b5d8056fa40d3d5e5c69
26
27 diff --git a/sci-calculators/bc-gh/bc-gh-5.1.1.ebuild b/sci-calculators/bc-gh/bc-gh-5.1.1.ebuild
28 new file mode 100644
29 index 00000000000..47aaece3ed3
30 --- /dev/null
31 +++ b/sci-calculators/bc-gh/bc-gh-5.1.1.ebuild
32 @@ -0,0 +1,18 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DESCRIPTION="Implementation of POSIX bc with GNU extensions"
39 +HOMEPAGE="https://git.yzena.com/gavin/bc"
40 +SRC_URI="https://github.com/gavinhoward/bc/releases/download/${PV}/bc-${PV}.tar.xz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86"
45 +
46 +S="${WORKDIR}/bc-${PV}"
47 +
48 +src_configure() {
49 + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GTl -sbc.banner -sdc.tty_mode || die
50 +}