diff options
author | Marcin Woźniak <y0rune@aol.com> | 2020-02-10 18:40:59 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-02-20 15:19:49 +0200 |
commit | a617eb70b391ab3d813aea3fead045b4b5cd1de3 (patch) | |
tree | 0e2a5bfbd0e1e0ff06e39d0c8d7222c0305ab11b /sci-calculators | |
parent | app-admin/syslog-ng: fix building with CFLAGS=-fno-common (diff) | |
download | gentoo-a617eb70b391ab3d813aea3fead045b4b5cd1de3.tar.gz gentoo-a617eb70b391ab3d813aea3fead045b4b5cd1de3.tar.bz2 gentoo-a617eb70b391ab3d813aea3fead045b4b5cd1de3.zip |
sci-calculators/bc-gh: version bump to 2.5.3
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
Closes: https://bugs.gentoo.org/708968
Closes: https://github.com/gentoo/gentoo/pull/14614
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-2.5.3.ebuild | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest index 3930fb1e2051..9f50db9ae5df 100644 --- a/sci-calculators/bc-gh/Manifest +++ b/sci-calculators/bc-gh/Manifest @@ -1 +1,2 @@ DIST bc-2.3.2.tar.xz 160120 BLAKE2B b9919d45cb45b69c7b10022d472c480fd6e93ffdf65eda1a0ee3e3990e2ad79fced74e5b72276559c6265fd43d08af28d5590c0e3a7bb14fd294010b8bc7b772 SHA512 732cf67a27b537406418ddb1a11c1da0fcbda23bdb7beba0e16a57a9d6639cdb7b9b43f5028c8fac45fe253dadfcb80b50d7fef0bbe32a7391cd946ace1408f8 +DIST bc-2.5.3.tar.xz 162784 BLAKE2B 02fc39a3569ca9bc45534a30bc6d991d1a5177cea56add88e6e0bff0a9f99d92813a1e2c14973c315f12e764c1715605deaafbf838263d7e29175a88a5e329ff SHA512 97c0722969c4f2fd907786e0a89f9b403662b1bcdd1aab59418ab3fe140c50584b45eb346008ad94916335418f08433d2634b52b94ae1d7463b665a746f1a608 diff --git a/sci-calculators/bc-gh/bc-gh-2.5.3.ebuild b/sci-calculators/bc-gh/bc-gh-2.5.3.ebuild new file mode 100644 index 000000000000..6109a61afb44 --- /dev/null +++ b/sci-calculators/bc-gh/bc-gh-2.5.3.ebuild @@ -0,0 +1,19 @@ +# 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 ~x86" +IUSE="" + +S="${WORKDIR}/bc-${PV}" + +src_configure() { + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GT || die +} |