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: Tue, 05 May 2020 08:47:08
Message-Id: 1588668396.c6b588e77f45948a100b5216c13d644533e14e90.juippis@gentoo
1 commit: c6b588e77f45948a100b5216c13d644533e14e90
2 Author: Gavin Howard <yzena.tech <AT> gmail <DOT> com>
3 AuthorDate: Sat May 2 03:06:53 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 08:46:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b588e7
7
8 sci-calculators/bc-gh: bump to 2.7.0
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Gavin D. Howard <yzena.tech <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/15605
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-2.7.0.ebuild | 19 +++++++++++++++++++
17 2 files changed, 20 insertions(+)
18
19 diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest
20 index fc3289e77bb..47795012600 100644
21 --- a/sci-calculators/bc-gh/Manifest
22 +++ b/sci-calculators/bc-gh/Manifest
23 @@ -1,3 +1,4 @@
24 DIST bc-2.3.2.tar.xz 160120 BLAKE2B b9919d45cb45b69c7b10022d472c480fd6e93ffdf65eda1a0ee3e3990e2ad79fced74e5b72276559c6265fd43d08af28d5590c0e3a7bb14fd294010b8bc7b772 SHA512 732cf67a27b537406418ddb1a11c1da0fcbda23bdb7beba0e16a57a9d6639cdb7b9b43f5028c8fac45fe253dadfcb80b50d7fef0bbe32a7391cd946ace1408f8
25 DIST bc-2.5.3.tar.xz 162784 BLAKE2B 02fc39a3569ca9bc45534a30bc6d991d1a5177cea56add88e6e0bff0a9f99d92813a1e2c14973c315f12e764c1715605deaafbf838263d7e29175a88a5e329ff SHA512 97c0722969c4f2fd907786e0a89f9b403662b1bcdd1aab59418ab3fe140c50584b45eb346008ad94916335418f08433d2634b52b94ae1d7463b665a746f1a608
26 DIST bc-2.6.1.tar.xz 165812 BLAKE2B 5eb45f6cd6059f99550fc76d6b7e32e6ba4ce93f4ff87b789ca6fbc3e4cd9bab19866f317838694d2ca52f44ac26eca9630c25bde46aecfc256ebcd296a2d2f0 SHA512 f9dbc384272a2f570fa3e8d1c3c9d7063349979e8245846a086ade4bfc3b22216e7115e95aeb13b9473939fd174aa50ea9237f7417477fd9f24477fb1f1933da
27 +DIST bc-2.7.0.tar.xz 188752 BLAKE2B 9c2bacaf3b911714aae2213fe5038192408935c072393be782a43baf592efa0db905dc5c2e2cd1bd42e24b2511ba192eea27f3ec96f89ab16510453281b6484c SHA512 a8ceff6455fa62e6656d1bbc7aab14db5839e980feb33c0e8f9e877b82fa73492bd51e7e460b19d04a68c8bcd45a81995f2df2bdbe45b4d411d346400592ed81
28
29 diff --git a/sci-calculators/bc-gh/bc-gh-2.7.0.ebuild b/sci-calculators/bc-gh/bc-gh-2.7.0.ebuild
30 new file mode 100644
31 index 00000000000..6109a61afb4
32 --- /dev/null
33 +++ b/sci-calculators/bc-gh/bc-gh-2.7.0.ebuild
34 @@ -0,0 +1,19 @@
35 +# Copyright 2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +DESCRIPTION="Implementation of POSIX bc with GNU extensions"
41 +HOMEPAGE="https://github.com/gavinhoward/bc"
42 +SRC_URI="https://github.com/gavinhoward/bc/releases/download/${PV}/bc-${PV}.tar.xz"
43 +
44 +LICENSE="BSD-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +S="${WORKDIR}/bc-${PV}"
50 +
51 +src_configure() {
52 + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GT || die
53 +}