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: Thu, 20 Feb 2020 13:27:35
Message-Id: 1582204789.a617eb70b391ab3d813aea3fead045b4b5cd1de3.juippis@gentoo
1 commit: a617eb70b391ab3d813aea3fead045b4b5cd1de3
2 Author: Marcin Woźniak <y0rune <AT> aol <DOT> com>
3 AuthorDate: Mon Feb 10 17:40:59 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 20 13:19:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a617eb70
7
8 sci-calculators/bc-gh: version bump to 2.5.3
9
10 Signed-off-by: Marcin Woźniak <y0rune <AT> aol.com>
11 Closes: https://bugs.gentoo.org/708968
12 Closes: https://github.com/gentoo/gentoo/pull/14614
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.5.3.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 3930fb1e205..9f50db9ae5d 100644
21 --- a/sci-calculators/bc-gh/Manifest
22 +++ b/sci-calculators/bc-gh/Manifest
23 @@ -1 +1,2 @@
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
27 diff --git a/sci-calculators/bc-gh/bc-gh-2.5.3.ebuild b/sci-calculators/bc-gh/bc-gh-2.5.3.ebuild
28 new file mode 100644
29 index 00000000000..6109a61afb4
30 --- /dev/null
31 +++ b/sci-calculators/bc-gh/bc-gh-2.5.3.ebuild
32 @@ -0,0 +1,19 @@
33 +# Copyright 2020 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 ~x86"
45 +IUSE=""
46 +
47 +S="${WORKDIR}/bc-${PV}"
48 +
49 +src_configure() {
50 + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GT || die
51 +}