public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdwarf/
Date: Sun,  1 Sep 2024 15:53:21 +0000 (UTC)	[thread overview]
Message-ID: <1725204220.f0731ec0aca21fd661eb4b4c66d6357d68c79c36.davidroman@gentoo> (raw)
Message-ID: <20240901155321.ZovmIUL59deRkfsI2-gYCCNjlYS6Gm8Z_24zffWr83E@z> (raw)

commit:     f0731ec0aca21fd661eb4b4c66d6357d68c79c36
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Sun Sep  1 15:23:40 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Sep  1 15:23:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f0731ec0

dev-libs/libdwarf: add 0.11.0

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

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

diff --git a/dev-libs/libdwarf/Manifest b/dev-libs/libdwarf/Manifest
index 061ea7400..d5559f723 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.9.1.tar.xz 2677488 BLAKE2B 811103cfd12420b35483c3929709d7759747a70d1a7790250fe84e7a467c03fcf095656dda1992b60488ffc15e45fa2ad6197d321fa3483740cd5dc92f363e9b SHA512 ec66f0dbc72df3dd689a2d38ebae029e081e0ec3008dd510372e0c2c387f0092c2f9fe8d9928ded87b9c2ec30f1c3dc63bfaca7cc4a14e1c8c557d3c3b37d227
 DIST libdwarf-0.9.2.tar.xz 2692980 BLAKE2B bef2788b217916cf0887915a12695a82232bdeaf91bf1c5f5844db079d13e8b38996c5b8137ade9fd58297b5bf5ca2af4bce99c9bdf526217fce161755881c69 SHA512 f502b6da4b96d5962da1197c4ae522bfdb2858496c4af198109d844e0021318cb2a5ebc9c8cf9fc2e4439997ca9545c650ca4f28f0d96cb66b05c9b89b98f2f8

diff --git a/dev-libs/libdwarf/libdwarf-0.11.0.ebuild b/dev-libs/libdwarf/libdwarf-0.11.0.ebuild
new file mode 100644
index 000000000..b4c0fe545
--- /dev/null
+++ b/dev-libs/libdwarf/libdwarf-0.11.0.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-09-01 15:53 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-01 15:24 David Roman [this message]
2024-09-01 15:53 ` [gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdwarf/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-09-01 15:53 David Roman
2024-09-01 15:24 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-07-09  9:46 [gentoo-commits] repo/proj/guru:master " David Roman
2024-07-09  9:31 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-07-09  9:31 David Roman
2024-06-28 10:57 [gentoo-commits] repo/proj/guru:master " David Roman
2024-06-27 13:15 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-20 13:49 David Roman
2024-04-18 14:41 David Roman
2024-02-22 13:57 David Roman
2024-02-22 13:57 David Roman
2023-05-17 22:26 Lucio Sauer
2023-01-17 14:27 Anna Vyalkova
2023-01-14 13:34 Anna Vyalkova
2022-07-07  7:59 Alessandro Barbieri
2022-06-17  2:21 Alessandro Barbieri
2022-06-11 12:24 Alessandro Barbieri
2021-06-14 23:09 Alessandro Barbieri
2021-05-19 17:36 Alessandro Barbieri
2021-04-18  2:07 Alessandro Barbieri
2021-04-18  1:20 Alessandro Barbieri

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=1725204220.f0731ec0aca21fd661eb4b4c66d6357d68c79c36.davidroman@gentoo \
    --to=davidroman96@gmail.com \
    --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