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: Fri, 24 Sep 2021 01:52:21
Message-Id: 1632448318.7dd90ee56dbbf12d43eb5982feee8b5d85f4c677.dlan@gentoo
1 commit: 7dd90ee56dbbf12d43eb5982feee8b5d85f4c677
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 24 01:51:58 2021 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 24 01:51:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dd90ee5
7
8 sys-apps/tuned: version bump, 2.16.0
9
10 Package-Manager: Portage-3.0.23, 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.16.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 28fa06f019e..086fe3abac9 100644
19 --- a/sys-apps/tuned/Manifest
20 +++ b/sys-apps/tuned/Manifest
21 @@ -1 +1,2 @@
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
25 diff --git a/sys-apps/tuned/tuned-2.16.0.ebuild b/sys-apps/tuned/tuned-2.16.0.ebuild
26 new file mode 100644
27 index 00000000000..bb7ae49d1f9
28 --- /dev/null
29 +++ b/sys-apps/tuned/tuned-2.16.0.ebuild
30 @@ -0,0 +1,63 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{8,9} )
37 +
38 +inherit python-single-r1 xdg-utils tmpfiles
39 +
40 +DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices"
41 +HOMEPAGE="https://github.com/redhat-performance/tuned"
42 +SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 +
50 +DEPEND="
51 + ${PYTHON_DEPS}
52 + $(python_gen_cond_dep '
53 + dev-python/configobj[${PYTHON_USEDEP}]
54 + dev-python/decorator[${PYTHON_USEDEP}]
55 + dev-python/pyudev[${PYTHON_USEDEP}]
56 + dev-python/dbus-python[${PYTHON_USEDEP}]
57 + dev-python/pygobject:3[${PYTHON_USEDEP}]
58 + dev-python/python-linux-procfs[${PYTHON_USEDEP}]
59 + ')"
60 +
61 +RDEPEND="
62 + ${DEPEND}
63 + sys-apps/dbus
64 + sys-apps/ethtool
65 + sys-power/powertop
66 + dev-util/systemtap"
67 +
68 +RESTRICT="test"
69 +
70 +src_prepare() {
71 + default
72 +
73 + sed -i \
74 + -e "/^PYTHON/s:/usr/bin/python3:${EPREFIX}/usr/bin/${EPYTHON}:" \
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 + tmpfiles_process ${PN}.conf
93 +}