Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/tiptop/
Date: Sat, 09 Oct 2021 04:42:53
Message-Id: 1633754548.f1896c9a059f26839c23028eeafb27a2c34dc999.sam@gentoo
1 commit: f1896c9a059f26839c23028eeafb27a2c34dc999
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 9 04:40:14 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 9 04:42:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1896c9a
7
8 sys-process/tiptop: add 2.3.1_p4 (Debian patchset)
9
10 Import Debian patchset for a parallel build fix
11 but also some other quality of life fixes:
12 - cross-compile fix from non-x86
13 - mention needing root depending on kernel settings
14
15 Bug: https://bugs.gentoo.org/810838
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 sys-process/tiptop/Manifest | 1 +
19 sys-process/tiptop/tiptop-2.3.1_p4.ebuild | 33 +++++++++++++++++++++++++++++++
20 2 files changed, 34 insertions(+)
21
22 diff --git a/sys-process/tiptop/Manifest b/sys-process/tiptop/Manifest
23 index 65c53895cb1..ac377174f70 100644
24 --- a/sys-process/tiptop/Manifest
25 +++ b/sys-process/tiptop/Manifest
26 @@ -1 +1,2 @@
27 DIST tiptop-2.3.1.tar.gz 100993 BLAKE2B fd05d9d59fda2e81c194dedabb7d9d94220e790a8118048ebc3edd84706471a8892a918e02ebc7436c3c75e7a98c5c3ab98e11d614ced304ac81fdf8ce1951ed SHA512 73d275bc3957583524c872b401cf4fa773de7b4e7b7177f1787851f43e7c4aeefd953eb50b2dbce3babfc7a1c46707370ba4ad06998260177994b2eafb91395b
28 +DIST tiptop_2.3.1-4.debian.tar.xz 3716 BLAKE2B 14e5192888b99681f8114fd9abcafb4c2fc00b1923560ea93ba4c714dc1164731cdf16d42d73946413f743fe48b6d27151804f5f6e65cab7afa8834f54c683e1 SHA512 45d34abc16327bc443387c941c0477b2c491510c7cda1da8a7f7a704c8b891ef07c96122be46c501e55e471df5bcfd50919f586a67d8b91b764d3bdefa599872
29
30 diff --git a/sys-process/tiptop/tiptop-2.3.1_p4.ebuild b/sys-process/tiptop/tiptop-2.3.1_p4.ebuild
31 new file mode 100644
32 index 00000000000..12c132e4234
33 --- /dev/null
34 +++ b/sys-process/tiptop/tiptop-2.3.1_p4.ebuild
35 @@ -0,0 +1,33 @@
36 +# Copyright 1999-2021 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +inherit autotools
42 +
43 +DESCRIPTION="top for performance counters"
44 +HOMEPAGE="http://tiptop.gforge.inria.fr/"
45 +SRC_URI="http://${PN}.gforge.inria.fr/releases/${PN}-$(ver_cut 1-3).tar.gz"
46 +SRC_URI+=" http://deb.debian.org/debian/pool/main/t/tiptop/tiptop_${PV/_p/-}.debian.tar.xz"
47 +S="${WORKDIR}/${PN}-$(ver_cut 1-3)"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE=""
53 +
54 +RDEPEND="
55 + sys-libs/ncurses:=
56 + dev-libs/libxml2:2
57 +"
58 +DEPEND="${RDEPEND}"
59 +
60 +PATCHES=(
61 + "${FILESDIR}"/${PN}-2.3.1-tinfo.patch #618124
62 + "${WORKDIR}"/debian/patches
63 +)
64 +
65 +src_prepare() {
66 + default
67 + eautoreconf #618124
68 +}