From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4BAEE138351 for ; Thu, 20 Feb 2020 13:27:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38615E0920; Thu, 20 Feb 2020 13:27:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5474E091F for ; Thu, 20 Feb 2020 13:27:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A599634EDC9 for ; Thu, 20 Feb 2020 13:27:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61B7414B for ; Thu, 20 Feb 2020 13:27:28 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1582204789.a617eb70b391ab3d813aea3fead045b4b5cd1de3.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/bc-gh/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-calculators/bc-gh/Manifest sci-calculators/bc-gh/bc-gh-2.5.3.ebuild X-VCS-Directories: sci-calculators/bc-gh/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: a617eb70b391ab3d813aea3fead045b4b5cd1de3 X-VCS-Branch: master Date: Thu, 20 Feb 2020 13:27:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 165b0565-9541-42a2-b30f-f6822625b55e X-Archives-Hash: 99aa2f79d8fed842f2c4890c41fa8cfb commit: a617eb70b391ab3d813aea3fead045b4b5cd1de3 Author: Marcin Woźniak aol com> AuthorDate: Mon Feb 10 17:40:59 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Feb 20 13:19:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a617eb70 sci-calculators/bc-gh: version bump to 2.5.3 Signed-off-by: Marcin Woźniak aol.com> Closes: https://bugs.gentoo.org/708968 Closes: https://github.com/gentoo/gentoo/pull/14614 Signed-off-by: Joonas Niilola gentoo.org> sci-calculators/bc-gh/Manifest | 1 + sci-calculators/bc-gh/bc-gh-2.5.3.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest index 3930fb1e205..9f50db9ae5d 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 00000000000..6109a61afb4 --- /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 +}