diff options
author | Gavin Howard <yzena.tech@gmail.com> | 2021-03-04 16:55:33 -0700 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-03-05 18:17:51 +0200 |
commit | aa5a9f0ec7bc12e94593b152700221129ac3a6be (patch) | |
tree | 32264ad725d6f448514d8942989491070eaca00a /sci-calculators | |
parent | app-misc/trash-cli: Drop old stable 0.17.1.14_p20170816-r1 (diff) | |
download | gentoo-aa5a9f0ec7bc12e94593b152700221129ac3a6be.tar.gz gentoo-aa5a9f0ec7bc12e94593b152700221129ac3a6be.tar.bz2 gentoo-aa5a9f0ec7bc12e94593b152700221129ac3a6be.zip |
sci-calculators/bc-gh: bump to 3.3.3
Signed-off-by: Gavin D. Howard <gavin@yzena.com>
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/19766
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.3.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 c87de5400e82..6b52150c491b 100644 --- a/sci-calculators/bc-gh/Manifest +++ b/sci-calculators/bc-gh/Manifest @@ -1,2 +1,3 @@ DIST bc-3.3.0.tar.xz 229580 BLAKE2B 0528d50f566fce648561276434eed45a82fb1dc2d3c56a684758daa866802e7a3781a0e0d6a0993cdc356b416f5ff998de5c51a5e203d2ff415d6b098fb1743a SHA512 b8d0b6d6d9c5d4fc62df62d1b9b7e7006a8b430e063fe0d5f646cfaeb4c6fc9c7037b644e853b7ae7d5c5f42f079221e9cdc32564d70c9ddd6bb867ddc7056de DIST bc-3.3.2.tar.xz 228892 BLAKE2B 013e4708afbe93b3a17ecce002a6e393cd53b28659fb66aec1d857f2d5bef97341b90ca119ba7efdee88545af95d2223e3a4cb0f1c3b04739496053e1c81c00a SHA512 ae3e99c49137e1335c6c6c0f5a39a5488d174b98bdf85ce1c9311546ea093cd6ed2d8d0a3e6d401cdf093d509717ae01ec71e6e60d580e71101c673da5efc953 +DIST bc-3.3.3.tar.xz 229688 BLAKE2B 7d06565161b37216f60d1037b48a254eb467f41a66170e2a6b8f188b33aeeabaf8568ebb66e402d5010aa5991a4a197ea746959808f5c3d2e94c4eab80c90f20 SHA512 dfdd8023453406d9f681e04da7acaad4459e632fded0f2edb2b51607438a27074935af6db4b3580120daf56e6b52283275d0c2c809380caa164957f1901e9dde diff --git a/sci-calculators/bc-gh/bc-gh-3.3.3.ebuild b/sci-calculators/bc-gh/bc-gh-3.3.3.ebuild new file mode 100644 index 000000000000..89c8c7658afa --- /dev/null +++ b/sci-calculators/bc-gh/bc-gh-3.3.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 2021 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 +} |