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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6658315817D for ; Thu, 6 Jun 2024 15:06:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFCC5E2A5B; Thu, 6 Jun 2024 15:06:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 913A7E2A5B for ; Thu, 6 Jun 2024 15:06:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8B21033BF39 for ; Thu, 6 Jun 2024 15:06:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2486A1502 for ; Thu, 6 Jun 2024 15:06:40 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1717686374.d5d259b2f156924b685dbea9be69b7cf0b5b7828.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/cpptrace/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/cpptrace/Manifest dev-cpp/cpptrace/cpptrace-0.6.0.ebuild X-VCS-Directories: dev-cpp/cpptrace/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: d5d259b2f156924b685dbea9be69b7cf0b5b7828 X-VCS-Branch: dev Date: Thu, 6 Jun 2024 15:06:40 +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: 73c38469-afed-4d20-9755-43f82e7c2134 X-Archives-Hash: 433e875fcf331b09ea2c5a5594ddeeca commit: d5d259b2f156924b685dbea9be69b7cf0b5b7828 Author: David Roman gmail com> AuthorDate: Thu Jun 6 15:06:14 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Jun 6 15:06:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d5d259b2 dev-cpp/cpptrace: add 0.6.0 Signed-off-by: David Roman gmail.com> dev-cpp/cpptrace/Manifest | 1 + dev-cpp/cpptrace/cpptrace-0.6.0.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-cpp/cpptrace/Manifest b/dev-cpp/cpptrace/Manifest index 064eb6f8d..edb2d9526 100644 --- a/dev-cpp/cpptrace/Manifest +++ b/dev-cpp/cpptrace/Manifest @@ -1 +1,2 @@ DIST cpptrace-0.5.2.tar.gz 311215 BLAKE2B 77f5bce58ac088c5430cfa6b427bc8f019590520be8648a848108f4dbb23d3ce1260f6a3dd1d6bc9acf3a069218f3a25853083f88700d9dbdbeeadd20f9bc873 SHA512 e05a8a070ec7be0a1b36f25901c3ed7b566e4ca69e8e87cde558a0e65743d2dabd4cbad614af32d62a4da4b6a77144853adf7cb1be33335a86f7b1ef2d08c72f +DIST cpptrace-0.6.0.tar.gz 318375 BLAKE2B 5c1694b6e579fb097379e9e9788ae84f89e1cd65848cf6fce79c8f9415e1b047fb018142a4d6fd868c021ae1d140d21e955d30f7eeb55f341f74ce7a4de68e32 SHA512 c5ebd1a733e22006abe2ef2b5e65a9f967ef2a433194d1c2dbed2dea7a81034a56717ad54698eaad20b3c53b941a2766587dc32936b3703ef87fda29eafc5dbf diff --git a/dev-cpp/cpptrace/cpptrace-0.6.0.ebuild b/dev-cpp/cpptrace/cpptrace-0.6.0.ebuild new file mode 100644 index 000000000..116c15b9d --- /dev/null +++ b/dev-cpp/cpptrace/cpptrace-0.6.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Simple, portable, and self-contained stacktrace library for C++" +HOMEPAGE="https://github.com/jeremy-rifkin/cpptrace" +SRC_URI="https://github.com/jeremy-rifkin/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-libs/libdwarf" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DCPPTRACE_USE_EXTERNAL_LIBDWARF=On + ) + + cmake_src_configure +}