Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/sysprof/
Date: Mon, 23 Dec 2019 21:27:01
Message-Id: 1577136345.425236cb9fe18534d1aa19cee72403d397b9aa6c.leio@gentoo
1 commit: 425236cb9fe18534d1aa19cee72403d397b9aa6c
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 23 21:11:45 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 23 21:25:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=425236cb
7
8 dev-util/sysprof: remove old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-util/sysprof/Manifest | 1 -
14 dev-util/sysprof/sysprof-3.30.2-r1.ebuild | 73 -------------------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/dev-util/sysprof/Manifest b/dev-util/sysprof/Manifest
18 index bfb234f676b..d1fc06eee56 100644
19 --- a/dev-util/sysprof/Manifest
20 +++ b/dev-util/sysprof/Manifest
21 @@ -1,2 +1 @@
22 -DIST sysprof-3.30.2.tar.xz 393420 BLAKE2B 5e86a78c231d2d2c601198e066c463d8bec95ab1ae6d0f6678e6e80305b8a6d53c604ce54d9fc2a473e4679695cef709f0e1a9514f1091719f33a58b92c896eb SHA512 70c49f7c20742aad82c8d9b1e303d06ca5fd2d27a6868872d28affea22278d381bf3eb0d181cbd1bfa490bda2878c52748ac29273e9e608452e9bf4f29fd9e2a
23 DIST sysprof-3.32.0.tar.xz 296052 BLAKE2B f409c64d40bd3451037e601683f270ff93ea2a60a2c104d22edc6bad5ff3f5c974f80137776b6329dae932852fa0871f2b7b9960a282147ddef5402ad840d9ef SHA512 7b9d84ac241d376a5e545082b1224e7db96af26ae0ee297d5f0b2d45abc4676e23009dbd560085e5d4879378a8dd79eefb4449df3961fbfd09238bd2056061d0
24
25 diff --git a/dev-util/sysprof/sysprof-3.30.2-r1.ebuild b/dev-util/sysprof/sysprof-3.30.2-r1.ebuild
26 deleted file mode 100644
27 index 66a11836f9b..00000000000
28 --- a/dev-util/sysprof/sysprof-3.30.2-r1.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit gnome.org gnome2-utils meson systemd xdg
37 -
38 -DESCRIPTION="System-wide Linux Profiler"
39 -HOMEPAGE="http://sysprof.com/"
40 -
41 -LICENSE="GPL-3+ GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="elogind gtk systemd"
45 -REQUIRED_USE="?? ( elogind systemd )"
46 -
47 -RDEPEND="
48 - >=dev-libs/glib-2.44:2
49 - sys-auth/polkit
50 - gtk? ( >=x11-libs/gtk+-3.22.0:3 )
51 - elogind? ( >=sys-auth/elogind-239.3 )
52 - systemd? ( >=sys-apps/systemd-222:0= )
53 -"
54 -# libxml2 required for glib-compile-resources; appstream-glib for appdata.xml developer_name tag translation
55 -DEPEND="${RDEPEND}
56 - dev-libs/appstream-glib
57 - dev-libs/libxml2:2
58 - dev-util/itstool
59 - >=sys-devel/gettext-0.19.8
60 - >=sys-kernel/linux-headers-2.6.32
61 - virtual/pkgconfig
62 -"
63 -
64 -PATCHES=( "${FILESDIR}"/${PV}-elogind.patch )
65 -
66 -src_configure() {
67 - # -Dwith_sysprofd=host currently unavailable from ebuild
68 - local emesonargs=(
69 - $(meson_use gtk enable_gtk)
70 - -Dwith_sysprofd=$(usex systemd bundled $(usex elogind bundled none))
71 - -Dsystemdunitdir=$(systemd_get_systemunitdir)
72 - # -Ddebugdir
73 - )
74 - meson_src_configure
75 -}
76 -
77 -pkg_postinst() {
78 - xdg_pkg_postinst
79 - gnome2_schemas_update
80 -
81 - elog "On many systems, especially amd64, it is typical that with a modern"
82 - elog "toolchain -fomit-frame-pointer for gcc is the default, because"
83 - elog "debugging is still possible thanks to gcc4/gdb location list feature."
84 - elog "However sysprof is not able to construct call trees if frame pointers"
85 - elog "are not present. Therefore -fno-omit-frame-pointer CFLAGS is suggested"
86 - elog "for the libraries and applications involved in the profiling. That"
87 - elog "means a CPU register is used for the frame pointer instead of other"
88 - elog "purposes, which means a very minimal performance loss when there is"
89 - elog "register pressure."
90 - if ! use systemd && ! use elogind; then
91 - elog ""
92 - elog "Without systemd or elogind, sysprof may not function when launched as a"
93 - elog "regular user, thus suboptimal running from root account may be necessary."
94 - if use gtk; then
95 - elog "Under wayland, that limits the recording usage to sysprof-cli utility."
96 - fi
97 - fi
98 -}
99 -
100 -pkg_postrm() {
101 - xdg_pkg_postrm
102 - gnome2_schemas_update
103 -}