Gentoo Archives: gentoo-commits

From: Matthias Schwarzott <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/dwarves/
Date: Wed, 05 Jun 2019 19:44:37
Message-Id: 1559763846.0c017fff6990fc6385b22b4fd32cc522c5086686.zzam@gentoo
1 commit: 0c017fff6990fc6385b22b4fd32cc522c5086686
2 Author: Michal Privoznik <mprivozn <AT> redhat <DOT> com>
3 AuthorDate: Mon Jun 3 08:36:21 2019 +0000
4 Commit: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 5 19:44:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c017fff
7
8 dev-util/dwarves: Switch to python3
9
10 In the upstream commit of 139a3b337381c dwarves switched to
11 python3. Update our ebuild to reflect that.
12
13 Signed-off-by: Michal Privoznik <mprivozn <AT> redhat.com>
14 Signed-off-by: Matthias Schwarzott <zzam <AT> gentoo.org>
15
16 dev-util/dwarves/dwarves-9999.ebuild | 4 +---
17 1 file changed, 1 insertion(+), 3 deletions(-)
18
19 diff --git a/dev-util/dwarves/dwarves-9999.ebuild b/dev-util/dwarves/dwarves-9999.ebuild
20 index 247fa281974..ad35a947177 100644
21 --- a/dev-util/dwarves/dwarves-9999.ebuild
22 +++ b/dev-util/dwarves/dwarves-9999.ebuild
23 @@ -5,7 +5,7 @@ EAPI=6
24
25 EGIT_REPO_URI="https://git.kernel.org/pub/scm/devel/pahole/pahole.git"
26
27 -PYTHON_COMPAT=( python2_7 )
28 +PYTHON_COMPAT=( python3_6 )
29 inherit multilib cmake-utils git-r3 python-single-r1
30
31 DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
32 @@ -34,6 +34,4 @@ src_test() { :; }
33
34 src_install() {
35 cmake-utils_src_install
36 - python_fix_shebang "${D}"/usr/bin/ostra-cg \
37 - "${D}"/usr/share/dwarves/runtime/python/ostra.py
38 }