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 029621382C5 for ; Sat, 2 Jan 2021 20:31:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52B4AE0837; Sat, 2 Jan 2021 20:31:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 3E40AE0837 for ; Sat, 2 Jan 2021 20:31:40 +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 1C203340F57 for ; Sat, 2 Jan 2021 20:31:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D1CC48F for ; Sat, 2 Jan 2021 20:31:36 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1609619452.db9be58513dc9ad19b64699b9e5f1441cf7e9105.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/rinutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/rinutils/Manifest dev-libs/rinutils/rinutils-0.8.0.ebuild X-VCS-Directories: dev-libs/rinutils/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: db9be58513dc9ad19b64699b9e5f1441cf7e9105 X-VCS-Branch: master Date: Sat, 2 Jan 2021 20:31:36 +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: 295ab3ec-1157-4f6a-b93e-7c544bafbf93 X-Archives-Hash: 63bc5744754cdc2e2e69dcdaf1b19d8b commit: db9be58513dc9ad19b64699b9e5f1441cf7e9105 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 2 16:12:25 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 2 20:30:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db9be585 dev-libs/rinutils: 0.8.0 version bump Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/rinutils/Manifest | 1 + dev-libs/rinutils/rinutils-0.8.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-libs/rinutils/Manifest b/dev-libs/rinutils/Manifest index ff6d6f879ff..9bd0358c13c 100644 --- a/dev-libs/rinutils/Manifest +++ b/dev-libs/rinutils/Manifest @@ -1 +1,2 @@ DIST rinutils-0.6.0.tar.xz 16768 BLAKE2B a4fe413c6a4f18bd8c41a4d933a2515ba64f2dbe180d8a5868eadd8cd6ed7008d30f5b6cd5fa730edcb6548f6ea269ab419b912fd6c7346dd013a737320bb714 SHA512 2523747f9cf5f830e5fb5acc1e92691e8acfb59d6c4474d3768b68de9190dbc63c9e06cdd3c6ac67f8a853d37d1711d4c18550bb24446b2730198668f4ad0c45 +DIST rinutils-0.8.0.tar.xz 17112 BLAKE2B 362cf1e00092347e17a2a7da259316013af19f66ecb435b9e061355c7e3797b695b2334c86595380e70b6ea168fa50d4bcb055e75fa407601368d5a869a6d721 SHA512 06bbcdb5092762bf2ed92d4082eca17e8dc0e822ce8634f8ec8782fe7eccb4b954c081dbba3f1e2f72e0285607a813f020d4277af77accc43135bde50153359d diff --git a/dev-libs/rinutils/rinutils-0.8.0.ebuild b/dev-libs/rinutils/rinutils-0.8.0.ebuild new file mode 100644 index 00000000000..bd309594839 --- /dev/null +++ b/dev-libs/rinutils/rinutils-0.8.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Set of C headers containing macros and static functions" +HOMEPAGE="https://www.shlomifish.org/open-source/projects/ https://github.com/shlomif/rinutils" +SRC_URI="https://github.com/shlomif/${PN}/releases/download/${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +src_configure() { + local mycmakeargs=( + -DDISABLE_APPLYING_RPATH=OFF + -DWITH_TEST_SUITE=OFF # tests require perl + ) + + cmake_src_configure +}