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 E6D7F15817D 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 BD39FE2A5E; Thu, 6 Jun 2024 15:06:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 92B33E2A5E 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 9CEC133C1C1 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 382591C7D 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: <1717686395.caaa57ffe241beb6f58dd3b01c8a5a26003a7668.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/cpptrace-0.5.2.ebuild X-VCS-Directories: dev-cpp/cpptrace/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: caaa57ffe241beb6f58dd3b01c8a5a26003a7668 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: 149c6cae-32ed-4bb6-bddb-6fa0e85e608e X-Archives-Hash: d5e530185c4966041b9301c6aab56d83 commit: caaa57ffe241beb6f58dd3b01c8a5a26003a7668 Author: David Roman gmail com> AuthorDate: Thu Jun 6 15:06:35 2024 +0000 Commit: David Roman gmail com> CommitDate: Thu Jun 6 15:06:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=caaa57ff dev-cpp/cpptrace: drop 0.5.2 Signed-off-by: David Roman gmail.com> dev-cpp/cpptrace/cpptrace-0.5.2.ebuild | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/dev-cpp/cpptrace/cpptrace-0.5.2.ebuild b/dev-cpp/cpptrace/cpptrace-0.5.2.ebuild deleted file mode 100644 index 116c15b9d..000000000 --- a/dev-cpp/cpptrace/cpptrace-0.5.2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# 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 -}