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: Fri, 28 Jun 2019 20:56:39
Message-Id: 1561755365.5161207b2cbedaaa1eaa52f31588e2f9cf70b346.zzam@gentoo
1 commit: 5161207b2cbedaaa1eaa52f31588e2f9cf70b346
2 Author: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 28 20:50:01 2019 +0000
4 Commit: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 28 20:56:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5161207b
7
8 dev-util/dwarves: Version bumped
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.15
11 Signed-off-by: Matthias Schwarzott <zzam <AT> gentoo.org>
12
13 dev-util/dwarves/Manifest | 1 +
14 dev-util/dwarves/dwarves-1.15.ebuild | 42 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/dev-util/dwarves/Manifest b/dev-util/dwarves/Manifest
18 index 8f793eb8702..e6da8f319a3 100644
19 --- a/dev-util/dwarves/Manifest
20 +++ b/dev-util/dwarves/Manifest
21 @@ -1,2 +1,3 @@
22 DIST dwarves-1.12.tar.bz2 112400 BLAKE2B e71051041dfdbefc603dc041303de82e2e44c8b0f4f888577722466aaf7958cab7b04c15154faa8cbfcaa44fe60fc549e09b2fb68747cc3cdd08b8bce487cfdf SHA512 20644344e694253b79ede65e489696a319f10eaf424af81882414ae6efeaf34a82132321430d647916b78f97ef504907b3bd32919420f2cd14384910e283ff27
23 DIST dwarves-1.13.tar.xz 222008 BLAKE2B db73f5c9a319a1a57ef37127350a9da117e3f5c89e199445393e3e312139ce8f88f46e6e5bbf302d708c0b075b1c2b2cd75dc7bc213ed144d1db792c55358220 SHA512 26485b183b4c7b608dd0392f9155dd570a14c86fdeafee232e44ad30f14a1357b408b61b0e8a31ea4bf976ed7fc44e7d5a4a3ccede9713c47265ad52c13dadf0
24 +DIST dwarves-1.15.tar.xz 222272 BLAKE2B a33d128ec899da0f0a1e2fc96703f0425fd1a2082675ddf886df55507b29b5fbad1a1cefd6b0a9002f50193b4c70f87a2eeacd50d94388776bb338fe678849e0 SHA512 29a8a15b7190480e79c2f423c7104d0fd275cd4c3df17518a1dd3c63cce1c528fad4b6f580baa397d9aa9323703009009e2d529939b12dd1af2c65cf7120b237
25
26 diff --git a/dev-util/dwarves/dwarves-1.15.ebuild b/dev-util/dwarves/dwarves-1.15.ebuild
27 new file mode 100644
28 index 00000000000..c941fbf5347
29 --- /dev/null
30 +++ b/dev-util/dwarves/dwarves-1.15.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python3_6 )
38 +inherit multilib cmake-utils python-single-r1
39 +
40 +DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
41 +HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
42 +
43 +LICENSE="GPL-2" # only
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="debug"
47 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 +
49 +RDEPEND="${PYTHON_DEPS}
50 + >=dev-libs/elfutils-0.131
51 + sys-libs/zlib"
52 +DEPEND="${RDEPEND}"
53 +
54 +if [[ ${PV//_p} == ${PV} ]]; then
55 + SRC_URI="http://fedorapeople.org/~acme/dwarves/${P}.tar.xz"
56 + S=${WORKDIR}
57 +else
58 + SRC_URI="https://dev.gentoo.org/~zzam/${PN}/${P}.tar.xz"
59 +fi
60 +
61 +DOCS=( README README.ctracer NEWS )
62 +PATCHES=( "${FILESDIR}"/${PN}-1.10-python-import.patch )
63 +
64 +src_configure() {
65 + local mycmakeargs=( "-D__LIB=$(get_libdir)" )
66 + cmake-utils_src_configure
67 +}
68 +
69 +src_test() { :; }
70 +
71 +src_install() {
72 + cmake-utils_src_install
73 +}