From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdwarf/
Date: Sat, 18 Jun 2022 19:19:57 +0000 (UTC) [thread overview]
Message-ID: <1655432164.1d4aa38d5af9db0070ac0b091b7296ebcd398b51.andrewammerlaan@gentoo> (raw)
commit: 1d4aa38d5af9db0070ac0b091b7296ebcd398b51
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Jun 17 02:16:04 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Jun 17 02:16:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d4aa38d
dev-libs/libdwarf: new version
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-libs/libdwarf/Manifest | 2 +-
dev-libs/libdwarf/libdwarf-0.4.0.ebuild | 47 +++++++++++++++++++++++
dev-libs/libdwarf/libdwarf-20210528-r1.ebuild | 55 ---------------------------
dev-libs/libdwarf/metadata.xml | 8 ++--
4 files changed, 51 insertions(+), 61 deletions(-)
diff --git a/dev-libs/libdwarf/Manifest b/dev-libs/libdwarf/Manifest
index 0b1edc3e2..1c18e87bb 100644
--- a/dev-libs/libdwarf/Manifest
+++ b/dev-libs/libdwarf/Manifest
@@ -1 +1 @@
-DIST libdwarf-20210528.tar.gz 2869691 BLAKE2B 43fb0a45c5e3ab96d402a09b129764fc47a2ff0a6ea9ea8930e074cf648beaec8dba72fc6a6be939c80de14190f7fb486b0c617de93713a78296b4e6c854bf2a SHA512 e0f9c88554053ee6c1b1333960891189e7820c4a4ddc302b7e63754a4cdcfc2acb1b4b6083a722d1204a75e994fff3401ecc251b8c3b24090f8cb4046d90f870
+DIST libdwarf-0.4.0.tar.xz 2380228 BLAKE2B ee9d02284740b3f4961299e2e4530c2934cde4defefebd8a8ca3aab232f0a18fc35d376c2f61ee323f7db7e6460a3f5e662781f8086438c287f716067c2b7594 SHA512 30e5c6c1fc95aa28a014007a45199160e1d9ba870b196d6f98e6dd21a349e9bb31bba1bd6817f8ef9a89303bed0562182a7d46fcbb36aedded76c2f1e0052e1e
diff --git a/dev-libs/libdwarf/libdwarf-0.4.0.ebuild b/dev-libs/libdwarf/libdwarf-0.4.0.ebuild
new file mode 100644
index 000000000..68f8dd7be
--- /dev/null
+++ b/dev-libs/libdwarf/libdwarf-0.4.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="The DWARF Debugging Information Format"
+HOMEPAGE="
+ https://www.prevanders.net/dwarf.html
+ https://www.dwarfstd.org
+ https://github.com/davea42/libdwarf-code
+"
+SRC_URI="https://www.prevanders.net/${P}.tar.xz"
+
+LICENSE="LGPL-2.1 GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc dwarfexample dwarfgen +elf"
+
+DEPEND="
+ sys-libs/zlib
+ elf? ( virtual/libelf:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+src_configure() {
+
+ local emesonargs=(
+ $(meson_use dwarfgen)
+ $(meson_use dwarfexample)
+ $(meson_use doc)
+ $(meson_use elf libelf)
+ )
+ meson_src_configure
+}
+
+src_install(){
+ meson_src_install
+ dodoc AUTHORS README README.md ChangeLog* NEWS
+ if use doc; then
+ mkdir -p "${ED}/usr/share/doc/${PF}" || die
+ mv "${ED}/usr/share/doc/${PN}/html" "${ED}/usr/share/doc/${PF}/" || die
+ rm -r "${ED}/usr/share/doc/${PN}" || die
+ fi
+}
diff --git a/dev-libs/libdwarf/libdwarf-20210528-r1.ebuild b/dev-libs/libdwarf/libdwarf-20210528-r1.ebuild
deleted file mode 100644
index a1fdd9a05..000000000
--- a/dev-libs/libdwarf/libdwarf-20210528-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="The DWARF Debugging Information Format"
-HOMEPAGE="
- https://www.prevanders.net/dwarf.html
- http://www.dwarfstd.org
-"
-SRC_URI="https://www.prevanders.net/${P}.tar.gz"
-
-LICENSE="LGPL-2.1 GPL-2 BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="dwarfexample dwarfgen +elf global-alloc-sums namestable nonstandardprintf oldframecol sanitize"
-
-DEPEND="
- sys-libs/zlib
- elf? ( virtual/libelf:= )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS README README.md ChangeLog ChangeLog2018 NEWS )
-
-src_configure() {
-
- local myconf=(
- --disable-static
- --disable-windowspath
- --enable-shared
- --includedir="${EPREFIX}/usr/include/${PN}"
- )
-
- #this configure is so bad it enables when passing --disable
- use dwarfexample && myconf+=(--enable-dwarfexample)
- use dwarfgen && myconf+=(--enable-dwarfgen)
- use elf && myconf+=(--enable-libelf)
- use global-alloc-sums && myconf+=(--enable-global-alloc-csums)
- use namestable && myconf+=(--enable-namestable)
- use nonstandardprintf && myconf+=(--enable-nonstandardprintf)
- use oldframecol && myconf+=(--enable-oldframecol)
- use sanitize && myconf+=(--enable-sanitize)
-
- econf "${myconf[@]}"
-}
-
-src_install(){
- emake DESTDIR="${D}" install
- einstalldocs
-
- #--disable-static get ignored ...
- find "${ED}" -name '*.a' -delete || die
- find "${ED}" -name '*.la' -delete || die
-}
diff --git a/dev-libs/libdwarf/metadata.xml b/dev-libs/libdwarf/metadata.xml
index 57f690a05..0ae906ce8 100644
--- a/dev-libs/libdwarf/metadata.xml
+++ b/dev-libs/libdwarf/metadata.xml
@@ -6,14 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">davea42/libdwarf-code</remote-id>
+ </upstream>
<use>
<flag name="dwarfexample">enable dwarfexample compilation</flag>
<flag name="dwarfgen">enable dwarfgen compilation</flag>
- <flag name="global-alloc-sums">Enables some allocation counting in dwarf_alloc.c</flag>
<flag name="elf">enable use of <pkg>virtual/libelf</pkg></flag>
- <flag name="namestable">enable name string functions implemented as binary search">default is with C switch)</flag>
- <flag name="nonstandardprintf">Use a special printf format for 64bit</flag>
- <flag name="oldframecol">enable old frame columns</flag>
- <flag name="sanitize">build with sanitizers</flag>
</use>
</pkgmetadata>
next reply other threads:[~2022-06-18 19:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-18 19:19 Andrew Ammerlaan [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-11 10:15 [gentoo-commits] repo/proj/guru:master commit in: dev-libs/libdwarf/ Florian Schmaus
2024-12-05 12:00 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-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=1655432164.1d4aa38d5af9db0070ac0b091b7296ebcd398b51.andrewammerlaan@gentoo \
--to=andrewammerlaan@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