Gentoo Archives: gentoo-commits

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