Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/tuned/
Date: Mon, 31 May 2021 21:00:36
Message-Id: 1622494708.af309185792801e391f1885afc7f73e10685d7b6.mgorny@gentoo
1 commit: af309185792801e391f1885afc7f73e10685d7b6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:58:28 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:58:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af309185
7
8 sys-apps/tuned: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-apps/tuned/Manifest | 1 -
13 sys-apps/tuned/tuned-2.13.0-r1.ebuild | 61 -----------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/sys-apps/tuned/Manifest b/sys-apps/tuned/Manifest
17 index b0f48328bb6..28fa06f019e 100644
18 --- a/sys-apps/tuned/Manifest
19 +++ b/sys-apps/tuned/Manifest
20 @@ -1,2 +1 @@
21 -DIST tuned-2.13.0.tar.gz 193816 BLAKE2B 1e51a9da855f54db9ac8ed6e764c091d513c1101771422a62c7c501dc3c8741430eb3503803b408709868d16d4791fbedb9dbc088b36fb693f065a1b6054fa15 SHA512 d81b0a80f911fe808ca324319da3e42c3c15196c0c37343d33b45c2b34f33e205e2913d77ffda8598379a91ef72ab73d88d7b83a4684b6a067e3f36d98a85927
22 DIST tuned-2.15.0.tar.gz 207775 BLAKE2B 307b0598d9e99831526f2b26d5544df3832db7e17f28935c6f8d9293ec0d03729fb66906dca4739d48690e488f05383d448e7e714f6ae4824489564c295784c9 SHA512 67acdf10ecccd7910c4dcfd737610b4cb7651c7bf937bc0ed9c51869262d9f3a46f262d0b7636bc7a86a8abf579542a46f551e4f6c7561a061d8d58459be4589
23
24 diff --git a/sys-apps/tuned/tuned-2.13.0-r1.ebuild b/sys-apps/tuned/tuned-2.13.0-r1.ebuild
25 deleted file mode 100644
26 index 7dc2f7cefc0..00000000000
27 --- a/sys-apps/tuned/tuned-2.13.0-r1.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_7 )
36 -
37 -inherit python-single-r1 xdg-utils
38 -
39 -DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices"
40 -HOMEPAGE="https://github.com/redhat-performance/tuned"
41 -SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -
47 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 -
49 -DEPEND="
50 - ${PYTHON_DEPS}
51 - $(python_gen_cond_dep '
52 - dev-python/configobj[${PYTHON_MULTI_USEDEP}]
53 - dev-python/decorator[${PYTHON_MULTI_USEDEP}]
54 - dev-python/pyudev[${PYTHON_MULTI_USEDEP}]
55 - dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
56 - dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
57 - dev-python/python-linux-procfs[${PYTHON_MULTI_USEDEP}]
58 - ')"
59 -
60 -RDEPEND="
61 - ${DEPEND}
62 - sys-apps/dbus
63 - sys-apps/ethtool
64 - sys-power/powertop
65 - dev-util/systemtap"
66 -
67 -RESTRICT="test"
68 -
69 -src_prepare() {
70 - default
71 -
72 - sed -i \
73 - -e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \
74 - -e "/\$(DESTDIR)\/run\/tuned/d" \
75 - -e "/\$(DESTDIR)\/var\/lib\/tuned/d" \
76 - -e "/\$(DESTDIR)\/var\/log\/tuned/d" \
77 - Makefile || die
78 -}
79 -
80 -src_install() {
81 - default
82 -
83 - newinitd "${FILESDIR}/${PN}.initd" "${PN}"
84 - python_fix_shebang "${D}"
85 - python_optimize
86 -}
87 -
88 -pkg_postinst() {
89 - xdg_icon_cache_update
90 -}