Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 732924 | Differences between
and this patch

Collapse All | Expand All

(-)a/dev-util/dwarves/dwarves-1.17.ebuild (-5 / +4 lines)
Lines 1-10 Link Here
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2020 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=6
4
EAPI=7
5
5
6
PYTHON_COMPAT=( python3_{6,7,8} )
6
PYTHON_COMPAT=( python3_{6,7,8} )
7
inherit multilib cmake-utils python-single-r1
7
inherit cmake python-single-r1
8
8
9
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
9
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
10
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
10
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
Lines 12-18 HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/" Link Here
12
LICENSE="GPL-2" # only
12
LICENSE="GPL-2" # only
13
SLOT="0"
13
SLOT="0"
14
KEYWORDS="~amd64 ~x86"
14
KEYWORDS="~amd64 ~x86"
15
IUSE="debug"
16
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
15
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
17
16
18
RDEPEND="${PYTHON_DEPS}
17
RDEPEND="${PYTHON_DEPS}
Lines 34-44 PATCHES=( Link Here
34
33
35
src_configure() {
34
src_configure() {
36
	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
35
	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
37
	cmake-utils_src_configure
36
	cmake_src_configure
38
}
37
}
39
38
40
src_test() { :; }
39
src_test() { :; }
41
40
42
src_install() {
41
src_install() {
43
	cmake-utils_src_install
42
	cmake_src_install
44
}
43
}
(-)a/dev-util/dwarves/dwarves-9999.ebuild (-7 / +5 lines)
Lines 1-12 Link Here
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2020 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=6
4
EAPI=7
5
5
6
EGIT_REPO_URI="https://git.kernel.org/pub/scm/devel/pahole/pahole.git"
6
EGIT_REPO_URI="https://git.kernel.org/pub/scm/devel/pahole/pahole.git"
7
7
8
PYTHON_COMPAT=( python3_6 )
8
PYTHON_COMPAT=( python3_{6,7,8} )
9
inherit multilib cmake-utils git-r3 python-single-r1
9
inherit cmake git-r3 python-single-r1
10
10
11
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
11
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
12
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
12
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
Lines 14-20 HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/" Link Here
14
LICENSE="GPL-2" # only
14
LICENSE="GPL-2" # only
15
SLOT="0"
15
SLOT="0"
16
KEYWORDS=""
16
KEYWORDS=""
17
IUSE="debug"
18
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
17
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
19
18
20
RDEPEND="${PYTHON_DEPS}
19
RDEPEND="${PYTHON_DEPS}
Lines 30-40 PATCHES=( Link Here
30
29
31
src_configure() {
30
src_configure() {
32
	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
31
	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
33
	cmake-utils_src_configure
32
	cmake_src_configure
34
}
33
}
35
34
36
src_test() { :; }
35
src_test() { :; }
37
36
38
src_install() {
37
src_install() {
39
	cmake-utils_src_install
38
	cmake_src_install
40
}
39
}
41
- 

Return to bug 732924