Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/bc-gh/
Date: Wed, 10 Feb 2021 14:55:21
Message-Id: 1612968907.b3782df5ec8f30818292b7ef1b7f4bbeb6977502.juippis@gentoo
1 commit: b3782df5ec8f30818292b7ef1b7f4bbeb6977502
2 Author: Gavin Howard <yzena.tech <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 2 19:49:07 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 10 14:55:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3782df5
7
8 sci-calculators/bc-gh: bump to 3.2.6
9
10 Signed-off-by: Gavin D. Howard <gavin <AT> yzena.com>
11 Package-Manager: Portage-3.0.13, Repoman-3.0.2
12 Closes: https://github.com/gentoo/gentoo/pull/19310
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 sci-calculators/bc-gh/Manifest | 1 +
16 sci-calculators/bc-gh/bc-gh-3.2.6.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 b56d664f1fc..edc91716d38 100644
21 --- a/sci-calculators/bc-gh/Manifest
22 +++ b/sci-calculators/bc-gh/Manifest
23 @@ -1 +1,2 @@
24 DIST bc-3.2.3.tar.xz 225420 BLAKE2B 6d1ec825a03f77a8024ff69f80eaa09301effc1281663aaf33c530d89c917b9cad41813aca731577fae1eb8dfb1c6e3023e54da0cfd89ea2e5aa413f84c347b3 SHA512 efd040d46f2ed1eff5a2eb336e55fd465176c23c728935ee488a474b2f0c8dddd275805ee3be79f20afc523a183adb3d88a0e7bee095047912cf70741e2c0b32
25 +DIST bc-3.2.6.tar.xz 234964 BLAKE2B 4127d1910ee33f7f113c8dd3604bf7c5efacbcb3ae163d943ca9c62e6b1e9769f32766034931aaa3f2251f825cef86e812aaf1974fec643dbe355156c33a8054 SHA512 4b1f43bb0bcd720d2140d41e089aa78fe8d07903fb745ed1a641ffe25fe46f439e480a1e11b687b7555881bd1ee4044c071c50e4bacd579b8909c704db7a6ede
26
27 diff --git a/sci-calculators/bc-gh/bc-gh-3.2.6.ebuild b/sci-calculators/bc-gh/bc-gh-3.2.6.ebuild
28 new file mode 100644
29 index 00000000000..89c8c7658af
30 --- /dev/null
31 +++ b/sci-calculators/bc-gh/bc-gh-3.2.6.ebuild
32 @@ -0,0 +1,18 @@
33 +# Copyright 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://github.com/gavinhoward/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 || die
50 +}