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 76D9E13835A for ; Mon, 20 Jul 2020 12:33:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75E29E0909; Mon, 20 Jul 2020 12:33:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 611C1E0909 for ; Mon, 20 Jul 2020 12:33:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D8D1934F0B0 for ; Mon, 20 Jul 2020 12:33:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47B712EA for ; Mon, 20 Jul 2020 12:33:49 +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: <1595248416.e0d99959c1e0d218c2265c7debd35a1b88c21b16.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-3.1.3.ebuild X-VCS-Directories: sci-calculators/bc-gh/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: e0d99959c1e0d218c2265c7debd35a1b88c21b16 X-VCS-Branch: master Date: Mon, 20 Jul 2020 12:33:49 +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: 4c194958-07da-4c61-998d-8cedecb7a612 X-Archives-Hash: 77885187c4db819841715fb799f7217b commit: e0d99959c1e0d218c2265c7debd35a1b88c21b16 Author: Gavin Howard gmail com> AuthorDate: Fri Jun 19 02:10:52 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Jul 20 12:33:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0d99959 sci-calculators/bc-gh: bump to 3.1.3 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Gavin D. Howard gmail.com> Closes: https://github.com/gentoo/gentoo/pull/16620 Signed-off-by: Joonas Niilola gentoo.org> sci-calculators/bc-gh/Manifest | 1 + sci-calculators/bc-gh/bc-gh-3.1.3.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/sci-calculators/bc-gh/Manifest b/sci-calculators/bc-gh/Manifest index e0c8d108892..9f363ba29e9 100644 --- a/sci-calculators/bc-gh/Manifest +++ b/sci-calculators/bc-gh/Manifest @@ -1 +1,2 @@ DIST bc-2.7.2.tar.xz 189020 BLAKE2B 6b4d78deeb6a4724e4a336f51d9489610b9f1069c723a398c30885ebfdf0ba849172bc4b2b5561592b5b004cc5e450da3845bed51751e2d487bcf613ea3606bc SHA512 c2014b16165bf5f8bdadf42bb60ea967a060753c17e13a7c3569d16d218bb3fb644e6a46950e9e7b3aa5a9f6bee4da9b158694909a0ab1fe390b7bb4dc20b303 +DIST bc-3.1.3.tar.xz 210924 BLAKE2B 9a442ad7808231bd5741a70f876dc918ac2747d07ab676f13594e14370f660b9a83a0733c7bcf818d14c2134dfa6da3a87f49b28aff1a1f803525567b3625560 SHA512 fb702e45fb994d4f1be55c2b05c4c4b4c67ae838f4f46864ba944890c1810b871fbafaa323d432f0f600f8182b4370757b75de756ae2795b595776e3fe03ba7b diff --git a/sci-calculators/bc-gh/bc-gh-3.1.3.ebuild b/sci-calculators/bc-gh/bc-gh-3.1.3.ebuild new file mode 100644 index 00000000000..8baa541e759 --- /dev/null +++ b/sci-calculators/bc-gh/bc-gh-3.1.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 ~x86" + +S="${WORKDIR}/bc-${PV}" + +src_configure() { + EXECSUFFIX="-gh" PREFIX="${EPREFIX}/usr" ./configure.sh -GTl || die +}