public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdwarf/
Date: Thu,  5 Dec 2024 12:00:13 +0000 (UTC)	[thread overview]
Message-ID: <1733327828.c2421a7457c0bf9e01fb1bd81f86d388e76d8f4d.flow@gentoo> (raw)

commit:     c2421a7457c0bf9e01fb1bd81f86d388e76d8f4d
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Wed Dec  4 15:04:48 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Dec  4 15:57:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c2421a74

dev-libs/libdwarf: add 0.11.1

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-libs/libdwarf/Manifest               |  1 +
 dev-libs/libdwarf/libdwarf-0.11.1.ebuild | 47 ++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-libs/libdwarf/Manifest b/dev-libs/libdwarf/Manifest
index 69ab1c003..714292933 100644
--- a/dev-libs/libdwarf/Manifest
+++ b/dev-libs/libdwarf/Manifest
@@ -1,3 +1,4 @@
 DIST libdwarf-0.10.1.tar.xz 2710928 BLAKE2B 3872184ef00b9f2af44be3bb5a0d134b1fbb711de7978b388d2c73cc7cf9c5d756e83dfd4335d312ab880a454286ada463a3f2cab5091bffa2163749cc340a38 SHA512 790317bd81290fa297d19cc6086594f13ea3be8b34d9e3c3494387498f8039d6c7f20fd3628a73ed4442868666600c78fe9cddad4e459e5dfffb14cc0cc4d588
 DIST libdwarf-0.11.0.tar.xz 2727148 BLAKE2B ff061fcd7fe8a9437fe404b3bc2e9002c85777f2bafb37a6a1a10b100ad2faebe0e370ee9c265ced4058c59876539b1249e59ec099cbd55a25955722a71813f4 SHA512 050cb111c1ed94980357011a623190b626b68425639ee1ab39ab09a31d0cc55e557ef35739ce1295cf0e1b51848fbcbb3633fe1f6466784db6d8eb008a93c355
+DIST libdwarf-0.11.1.tar.xz 2747004 BLAKE2B b98467abd547e222594843263ef36a9362aa4a8c8ace770d128016e65a50c7ae15d91e769e6fd966ca9b8c5b5ed471d14e5e7259c713c126ac17e13d5d074a77 SHA512 d927b1d0e8dd1540c2f5da2a9d39b2914bb48225b2b9bdca94e7b36349358e1f537044eadc345f11d75de717fdda07ad99a8a7a5eb45e64fe4c79c37e165012f
 DIST libdwarf-0.9.1.tar.xz 2677488 BLAKE2B 811103cfd12420b35483c3929709d7759747a70d1a7790250fe84e7a467c03fcf095656dda1992b60488ffc15e45fa2ad6197d321fa3483740cd5dc92f363e9b SHA512 ec66f0dbc72df3dd689a2d38ebae029e081e0ec3008dd510372e0c2c387f0092c2f9fe8d9928ded87b9c2ec30f1c3dc63bfaca7cc4a14e1c8c557d3c3b37d227

diff --git a/dev-libs/libdwarf/libdwarf-0.11.1.ebuild b/dev-libs/libdwarf/libdwarf-0.11.1.ebuild
new file mode 100644
index 000000000..b4c0fe545
--- /dev/null
+++ b/dev-libs/libdwarf/libdwarf-0.11.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="The DWARF Debugging Information Format"
+HOMEPAGE="
+	https://www.prevanders.net/dwarf.html
+	https://dwarfstd.org/
+	https://github.com/davea42/libdwarf-code
+"
+SRC_URI="https://www.prevanders.net/${P}.tar.xz"
+
+LICENSE="BSD GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test doc dwarfexample dwarfgen"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	app-arch/zstd:=
+	sys-libs/zlib:=
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS NEWS README.md )
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.2-fix-include-patch.patch" )
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_SHARED=ON
+		-DBUILD_DWARFGEN=$(usex dwarfgen)
+		-DBUILD_DWARFEXAMPLE=$(usex dwarfexample)
+		-DDO_TESTING=$(usex test)
+	)
+
+	cmake_src_configure
+}
+
+src_install(){
+	cmake_src_install
+
+	dodoc ChangeLog* doc/*.pdf
+}


             reply	other threads:[~2024-12-05 12:00 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-05 12:00 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-07  8:45 [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/libdwarf/ David Roman
2025-04-07  9:32 ` [gentoo-commits] repo/proj/guru:master " David Roman
2025-04-07  8:45 [gentoo-commits] repo/proj/guru:dev " David Roman
2025-04-07  9:32 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-12-11 10:15 Florian Schmaus
2024-12-05 12:00 Florian Schmaus
2024-09-01 15:53 David Roman
2024-09-01 15:24 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-09-01 15:53 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-07-09  9:46 David Roman
2024-07-09  9:31 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-07-09  9:46 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-06-28 10:57 David Roman
2024-04-20 15:12 Julien Roy
2024-04-18 14:41 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-18 16:24 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-02-22 13:57 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-02-23  1:36 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-02-22 13:57 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-02-23  1:36 ` [gentoo-commits] repo/proj/guru:master " David Roman
2023-05-19 18:51 Viorel Munteanu
2023-01-14 18:43 Andrew Ammerlaan
2022-06-18 19:19 Andrew Ammerlaan
2022-06-13 10:49 Andrew Ammerlaan
2021-06-15  7:11 Andrew Ammerlaan
2021-05-21 14:10 Michał Górny
2021-04-18  9:10 Andrew Ammerlaan
2021-04-18  9:10 Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1733327828.c2421a7457c0bf9e01fb1bd81f86d388e76d8f4d.flow@gentoo \
    --to=flow@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox