diff options
author | Gavin Howard <yzena.tech@gmail.com> | 2020-12-02 19:45:15 -0700 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-12-09 11:42:40 +0200 |
commit | 65da436e4f34a9a2bf18280cddbede59014030c3 (patch) | |
tree | 428a86ea8dac55cb8a83b04fddd1bdd739f4a3cb /sci-calculators | |
parent | sci-calculators/bc-gh: update upstream email (diff) | |
download | gentoo-65da436e4f34a9a2bf18280cddbede59014030c3.tar.gz gentoo-65da436e4f34a9a2bf18280cddbede59014030c3.tar.bz2 gentoo-65da436e4f34a9a2bf18280cddbede59014030c3.zip |
sci-calculators/bc-gh: bump to 3.2.3
Signed-off-by: Gavin Howard <gavin@yzena.com>
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/18479
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sci-calculators')
-rw-r--r-- | sci-calculators/bc-gh/Manifest | 1 | ||||
-rw-r--r-- | sci-calculators/bc-gh/bc-gh-3.2.3.ebuild | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest index b707fba0ff2f..3af8bac2f0ad 100644 --- a/sci-calculators/bc-gh/Manifest +++ b/sci-calculators/bc-gh/Manifest @@ -1,2 +1,3 @@ DIST bc-3.1.5.tar.xz 211632 BLAKE2B f5a38bd87d3c8d674d79141ee00a071e474e7c1ccb2e1fc9944b4496ae8a4613d57cc0b6dfbad5ea35bd59300c23f307364b96cdbffef4b07b10863df413cecd SHA512 34be1c186df5906ab7a966739220a20afd7e3b227a5c7ba32a77256a36e097bbcc39b99ce6d6855de3e6e2296612f8fbe63dc0983ad91d4eb4c1e630dbb587a0 DIST bc-3.1.6.tar.xz 210976 BLAKE2B 3d3c3102cb97b83e09e3ed61b4bf5862791b4ea8131b5c8dfa6a55bbb42d423b627cd9c5ac8ba6ed6fc7f58f1e92e662541fbd1ea2fdf834292271a16c193564 SHA512 1219a074845b8c66a431ddb78bab643793f5275c26404e92e360e655418d70d1aafa02be2fc4dec25d99a85ae2da1aab7d615de893f85913ca8834448dcade53 +DIST bc-3.2.3.tar.xz 225420 BLAKE2B 6d1ec825a03f77a8024ff69f80eaa09301effc1281663aaf33c530d89c917b9cad41813aca731577fae1eb8dfb1c6e3023e54da0cfd89ea2e5aa413f84c347b3 SHA512 efd040d46f2ed1eff5a2eb336e55fd465176c23c728935ee488a474b2f0c8dddd275805ee3be79f20afc523a183adb3d88a0e7bee095047912cf70741e2c0b32 diff --git a/sci-calculators/bc-gh/bc-gh-3.2.3.ebuild b/sci-calculators/bc-gh/bc-gh-3.2.3.ebuild new file mode 100644 index 000000000000..31daa94bd5ce --- /dev/null +++ b/sci-calculators/bc-gh/bc-gh-3.2.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Implementation of POSIX bc with GNU extensions" +HOMEPAGE="https://github.com/gavinhoward/bc" +SRC_URI="https://github.com/gavinhoward/bc/releases/download/${PV}/bc-${PV}.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +S="${WORKDIR}/bc-${PV}" + +src_configure() { + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GTl || die +} |