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 01F0F158043 for ; Thu, 18 Apr 2024 14:41:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4270E2A19; Thu, 18 Apr 2024 14:41:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7E963E2A16 for ; Thu, 18 Apr 2024 14:41:32 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A780A343377 for ; Thu, 18 Apr 2024 14:41:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFA991721 for ; Thu, 18 Apr 2024 14:41:29 +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: <1713451281.34489f55cb1c58e2435cc61c4efd2f42bb7f6228.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.5.2.ebuild dev-cpp/cpptrace/metadata.xml X-VCS-Directories: dev-cpp/cpptrace/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 34489f55cb1c58e2435cc61c4efd2f42bb7f6228 X-VCS-Branch: dev Date: Thu, 18 Apr 2024 14:41:29 +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: 704ade08-df20-461b-84ba-93d99c1b9a2a X-Archives-Hash: ce275637968c9d263103aadbd6eea8e8 Message-ID: <20240418144129.nnio4UwY2MO5kIqsK-DJra9em5_kteaNHh9qhURdffo@z> commit: 34489f55cb1c58e2435cc61c4efd2f42bb7f6228 Author: David Roman gmail com> AuthorDate: Thu Apr 18 14:41:21 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Apr 18 14:41:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=34489f55 dev-cpp/cpptrace: new package, add 0.5.2 Signed-off-by: David Roman gmail.com> dev-cpp/cpptrace/Manifest | 1 + dev-cpp/cpptrace/cpptrace-0.5.2.ebuild | 25 +++++++++++++++++++++++++ dev-cpp/cpptrace/metadata.xml | 11 +++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-cpp/cpptrace/Manifest b/dev-cpp/cpptrace/Manifest new file mode 100644 index 0000000000..064eb6f8d7 --- /dev/null +++ b/dev-cpp/cpptrace/Manifest @@ -0,0 +1 @@ +DIST cpptrace-0.5.2.tar.gz 311215 BLAKE2B 77f5bce58ac088c5430cfa6b427bc8f019590520be8648a848108f4dbb23d3ce1260f6a3dd1d6bc9acf3a069218f3a25853083f88700d9dbdbeeadd20f9bc873 SHA512 e05a8a070ec7be0a1b36f25901c3ed7b566e4ca69e8e87cde558a0e65743d2dabd4cbad614af32d62a4da4b6a77144853adf7cb1be33335a86f7b1ef2d08c72f diff --git a/dev-cpp/cpptrace/cpptrace-0.5.2.ebuild b/dev-cpp/cpptrace/cpptrace-0.5.2.ebuild new file mode 100644 index 0000000000..116c15b9d1 --- /dev/null +++ b/dev-cpp/cpptrace/cpptrace-0.5.2.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 +} diff --git a/dev-cpp/cpptrace/metadata.xml b/dev-cpp/cpptrace/metadata.xml new file mode 100644 index 0000000000..eefb7955ca --- /dev/null +++ b/dev-cpp/cpptrace/metadata.xml @@ -0,0 +1,11 @@ + + + + + davidroman96@gmail.com + David Roman + + + jeremy-rifkin/cpptrace + +