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: Mon, 31 Jan 2022 14:53:12
Message-Id: 1643640312.29be1d13f5c32323afe204e1a305c9005d9da21e.dlan@gentoo
1 commit: 29be1d13f5c32323afe204e1a305c9005d9da21e
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 31 14:45:12 2022 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 31 14:45:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29be1d13
7
8 sys-apps/tuned: version bump 2.17.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
12
13 sys-apps/tuned/Manifest | 1 +
14 sys-apps/tuned/tuned-2.17.0.ebuild | 63 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 64 insertions(+)
16
17 diff --git a/sys-apps/tuned/Manifest b/sys-apps/tuned/Manifest
18 index 086fe3abac9f..e206f07ebda0 100644
19 --- a/sys-apps/tuned/Manifest
20 +++ b/sys-apps/tuned/Manifest
21 @@ -1,2 +1,3 @@
22 DIST tuned-2.15.0.tar.gz 207775 BLAKE2B 307b0598d9e99831526f2b26d5544df3832db7e17f28935c6f8d9293ec0d03729fb66906dca4739d48690e488f05383d448e7e714f6ae4824489564c295784c9 SHA512 67acdf10ecccd7910c4dcfd737610b4cb7651c7bf937bc0ed9c51869262d9f3a46f262d0b7636bc7a86a8abf579542a46f551e4f6c7561a061d8d58459be4589
23 DIST tuned-2.16.0.tar.gz 213111 BLAKE2B 865cfffc89459396aa50c7908c88de405dea365084cf1592134391da961e88cc5610b663d93d531febdf881182624a13771493c61915003c59ad24bc64dd8a5c SHA512 35f04e1ee1ab3d8be711f0787db92c089cc210c75a3be0bc60389effaed8dc3fb502eff54ea0336154563f7b194f8ff286a2e408ab439a472b6d4922c64d5b03
24 +DIST tuned-2.17.0.tar.gz 214983 BLAKE2B 76c9609b91910cb5c4da67a18ba7d0c3dd7348e02360084ae6ca9e6b17832071314f5e4e84a4700789ae6c456aebb7c60c44e9951687d43a5e3a82fdbdddaa33 SHA512 e2521caa47c3176528ea1fd595d30c483aec4623eeccc9a7c1aa3b3781c7c9bdc48625488b313d7aaebbfecbae8f540029d2159d522574e334096094da54e868
25
26 diff --git a/sys-apps/tuned/tuned-2.17.0.ebuild b/sys-apps/tuned/tuned-2.17.0.ebuild
27 new file mode 100644
28 index 000000000000..d43f6e41ed30
29 --- /dev/null
30 +++ b/sys-apps/tuned/tuned-2.17.0.ebuild
31 @@ -0,0 +1,63 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit python-single-r1 tmpfiles 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_USEDEP}]
55 + dev-python/decorator[${PYTHON_USEDEP}]
56 + dev-python/pyudev[${PYTHON_USEDEP}]
57 + dev-python/dbus-python[${PYTHON_USEDEP}]
58 + dev-python/pygobject:3[${PYTHON_USEDEP}]
59 + dev-python/python-linux-procfs[${PYTHON_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 "/^PYTHON/s:/usr/bin/python3:${EPREFIX}/usr/bin/${EPYTHON}:" \
76 + -e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \
77 + -e "/\$(DESTDIR)\/run\/tuned/d" \
78 + -e "/\$(DESTDIR)\/var\/lib\/tuned/d" \
79 + -e "/\$(DESTDIR)\/var\/log\/tuned/d" \
80 + Makefile || die
81 +}
82 +
83 +src_install() {
84 + default
85 +
86 + newinitd "${FILESDIR}/${PN}.initd" "${PN}"
87 + python_fix_shebang "${D}"
88 + python_optimize
89 +}
90 +
91 +pkg_postinst() {
92 + tmpfiles_process ${PN}.conf
93 + xdg_icon_cache_update
94 +}