public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matthias Schwarzott" <zzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pahole/
Date: Fri, 17 Dec 2021 11:45:17 +0000 (UTC)	[thread overview]
Message-ID: <1639741484.cd475073b4cbe12ed8592c2fc9b82407eacce1bb.zzam@gentoo> (raw)

commit:     cd475073b4cbe12ed8592c2fc9b82407eacce1bb
Author:     Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 17 11:21:34 2021 +0000
Commit:     Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 17 11:44:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd475073

dev-util/pahole: add new version. add python 3.10 support

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthias Schwarzott <zzam <AT> gentoo.org>

 dev-util/pahole/Manifest           |  1 +
 dev-util/pahole/pahole-1.23.ebuild | 52 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-util/pahole/Manifest b/dev-util/pahole/Manifest
index 795a1994d309..e2940d66a02d 100644
--- a/dev-util/pahole/Manifest
+++ b/dev-util/pahole/Manifest
@@ -1,3 +1,4 @@
 DIST dwarves-1.20.tar.xz 688728 BLAKE2B c57f390f7e1d20c861a4acb8cd7fe238a3f7c3f2d915d96fc051dba2587942e8fabfa4f524d18555c486863fa02bc4ab63d90e90d477f376dc5e547aa36cccac SHA512 306bb74c498527a5a9bdae4d304e90511336cab627d9acad5237d93cbb48efe11dbca4418c540fa03e3ecdd168ce224cabe9fd2f6fbb50520d0dd17741c80817
 DIST dwarves-1.21.tar.xz 910480 BLAKE2B b6dcdaf008a7714838904b0bc1050e6af4617e00e168f45a3f1a5d4611a05c898182f3395b2f10478240e05c22ce82a3a7381a1ea7ab41684e3b05ea6e73620c SHA512 69f510025f5790a004c356546f7d92996ad84c4ff1636876b48f1c7d81bf66c83da70f11a1912d65b46f81bea79418782021396a018e74baae5cad9221af14e1
 DIST dwarves-1.22.tar.xz 922016 BLAKE2B 79ba94bcbec6ddc9ebcc6d9e72ed63c8704ca9a97bb3df1910114e89cdd4e7cc75024e4281f15f06be8f5b4656dd957a44d561a16beff1af14d8c7dc32fbd184 SHA512 d45b19505cd59eb2cbb42304ab599661355a4085262cb202757822ec1c05476c851dea85e922f9421efb8a978ab475a6a6545757c6ab080f13ac77c5f7186606
+DIST dwarves-1.23.tar.xz 815076 BLAKE2B 2d89ac2d8cacb70a322b1c946356c0b18a2276f7a549efc2cf530c087dd718c7d01f5bcf8b9208965e066770064b6d8db7a9f6ab9a3f3a4612f6fcc8d146c1e8 SHA512 5255930d6898ce35a41e3e553363964663d2b686d12732ff6140fa1d06fcc3806adf28e24ec35ab0712eec0562c52c3943afe9ecce468b0053b852ffeb04c3dc

diff --git a/dev-util/pahole/pahole-1.23.ebuild b/dev-util/pahole/pahole-1.23.ebuild
new file mode 100644
index 000000000000..00db2a3f83ff
--- /dev/null
+++ b/dev-util/pahole/pahole-1.23.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+inherit multilib cmake python-single-r1
+
+DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
+HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
+
+LICENSE="GPL-2" # only
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="debug"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+	>=dev-libs/elfutils-0.178
+	sys-libs/zlib"
+DEPEND="${RDEPEND}"
+
+MY_PN=dwarves
+MY_P=${MY_PN}-${PV}
+S=${WORKDIR}/${MY_P}
+if [[ ${PV//_p} == ${PV} ]]; then
+	SRC_URI="http://fedorapeople.org/~acme/${MY_PN}/${MY_P}.tar.xz"
+else
+	SRC_URI="https://dev.gentoo.org/~zzam/${PN}/${P}.tar.xz"
+fi
+
+DOCS=( README README.ctracer NEWS )
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.10-python-import.patch
+)
+
+src_prepare() {
+	cmake_src_prepare
+	python_fix_shebang ostra/ostra-cg ostra/python/ostra.py
+}
+
+src_configure() {
+	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
+	cmake_src_configure
+}
+
+src_test() { :; }
+
+src_install() {
+	cmake_src_install
+}


             reply	other threads:[~2021-12-17 11:45 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-17 11:45 Matthias Schwarzott [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-04  7:58 [gentoo-commits] repo/gentoo:master commit in: dev-util/pahole/ Sam James
2024-09-05 17:59 Sam James
2024-09-05 14:32 Sam James
2024-09-05 14:30 Sam James
2024-09-05 14:30 Sam James
2024-09-05 12:35 Sam James
2024-09-05 12:33 Sam James
2024-09-05 12:33 Sam James
2024-08-25 10:18 Jakov Smolić
2024-08-25 10:18 Jakov Smolić
2024-08-25 10:18 Jakov Smolić
2024-08-25 10:18 Jakov Smolić
2024-08-25  9:51 Arthur Zamarin
2024-08-25  9:51 Arthur Zamarin
2024-06-24 13:06 Matthias Schwarzott
2024-06-22  5:50 Matthias Schwarzott
2024-06-20 10:31 Sam James
2024-06-05  6:32 Matthias Schwarzott
2024-05-28 13:54 Matthias Schwarzott
2024-03-13  4:48 Sam James
2024-03-10 23:21 Jakov Smolić
2024-03-10 20:00 Arthur Zamarin
2024-03-10 20:00 Arthur Zamarin
2024-03-10 19:52 Arthur Zamarin
2024-03-10 19:52 Arthur Zamarin
2024-02-28 20:10 Matthias Schwarzott
2023-07-16 14:23 Sam James
2023-07-16 14:23 Sam James
2023-07-16 14:23 Sam James
2023-07-16 14:23 Sam James
2023-07-16 14:20 Sam James
2023-07-11 11:03 WANG Xuerui
2023-06-30  4:37 Matthias Schwarzott
2023-04-15  7:17 Matthias Schwarzott
2023-03-22 18:45 Andreas Sturmlechner
2023-03-13 22:11 Sam James
2023-03-13 21:24 Sam James
2023-03-13 20:51 Sam James
2023-03-13 20:51 Sam James
2023-03-13 20:35 Arthur Zamarin
2023-01-19  2:49 Sam James
2022-09-05  7:35 Matthias Schwarzott
2022-06-05  2:32 Matt Turner
2022-05-22  0:54 Yixun Lan
2022-05-20  6:11 Matthias Schwarzott
2022-05-20  6:11 Matthias Schwarzott
2022-04-15  6:36 Arthur Zamarin
2022-04-13 23:01 Sam James
2022-03-12 16:26 Arthur Zamarin
2022-03-10 10:10 Jakov Smolić
2022-03-10  9:03 Jakov Smolić
2021-12-16 21:45 Georgy Yakovlev
2021-11-07 16:16 罗百科
2021-06-02  8:20 Matthias Schwarzott

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=1639741484.cd475073b4cbe12ed8592c2fc9b82407eacce1bb.zzam@gentoo \
    --to=zzam@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