From bcb664a7f130f2b6a3c449a4106a0027cc4dae67 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Fri, 7 Feb 2020 21:19:39 +0100 Subject: sys-apps/tuned: Switch to PYTHON_MULTI_USEDEP API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- sys-apps/tuned/tuned-2.13.0-r1.ebuild | 61 +++++++++++++++++++++++++++++++++++ sys-apps/tuned/tuned-2.13.0.ebuild | 59 --------------------------------- 2 files changed, 61 insertions(+), 59 deletions(-) create mode 100644 sys-apps/tuned/tuned-2.13.0-r1.ebuild delete mode 100644 sys-apps/tuned/tuned-2.13.0.ebuild diff --git a/sys-apps/tuned/tuned-2.13.0-r1.ebuild b/sys-apps/tuned/tuned-2.13.0-r1.ebuild new file mode 100644 index 000000000000..89a8dadb552a --- /dev/null +++ b/sys-apps/tuned/tuned-2.13.0-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit python-single-r1 xdg-utils + +DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices" +HOMEPAGE="https://github.com/redhat-performance/tuned" +SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/configobj[${PYTHON_MULTI_USEDEP}] + dev-python/decorator[${PYTHON_MULTI_USEDEP}] + dev-python/pyudev[${PYTHON_MULTI_USEDEP}] + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}] + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}] + dev-python/python-linux-procfs[${PYTHON_MULTI_USEDEP}] + ')" + +RDEPEND=" + ${DEPEND} + sys-apps/dbus + sys-apps/ethtool + sys-power/powertop + dev-util/systemtap" + +RESTRICT="test" + +src_prepare() { + default + + sed -i \ + -e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \ + -e "/\$(DESTDIR)\/run\/tuned/d" \ + -e "/\$(DESTDIR)\/var\/lib\/tuned/d" \ + -e "/\$(DESTDIR)\/var\/log\/tuned/d" \ + Makefile || die +} + +src_install() { + default + + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + python_fix_shebang "${D}" + python_optimize +} + +pkg_postinst() { + xdg_icon_cache_update +} diff --git a/sys-apps/tuned/tuned-2.13.0.ebuild b/sys-apps/tuned/tuned-2.13.0.ebuild deleted file mode 100644 index fe231367c6c7..000000000000 --- a/sys-apps/tuned/tuned-2.13.0.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit python-single-r1 xdg-utils - -DESCRIPTION="Daemon for monitoring and adaptive tuning of system devices" -HOMEPAGE="https://github.com/redhat-performance/tuned" -SRC_URI="https://github.com/redhat-performance/tuned/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND=" - ${PYTHON_DEPS} - dev-python/configobj[${PYTHON_USEDEP}] - dev-python/decorator[${PYTHON_USEDEP}] - dev-python/pyudev[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/python-linux-procfs[${PYTHON_USEDEP}]" - -RDEPEND=" - ${DEPEND} - sys-apps/dbus - sys-apps/ethtool - sys-power/powertop - dev-util/systemtap" - -RESTRICT="test" - -src_prepare() { - default - - sed -i \ - -e "/^export DOCDIR/s/$/&\-\$(VERSION)/g" \ - -e "/\$(DESTDIR)\/run\/tuned/d" \ - -e "/\$(DESTDIR)\/var\/lib\/tuned/d" \ - -e "/\$(DESTDIR)\/var\/log\/tuned/d" \ - Makefile || die -} - -src_install() { - default - - newinitd "${FILESDIR}/${PN}.initd" "${PN}" - python_fix_shebang "${D}" - python_optimize -} - -pkg_postinst() { - xdg_icon_cache_update -} -- cgit v1.2.3-65-gdbad