commit: b10114ffadc3e77221982f2b2adc134743113c8e Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> AuthorDate: Fri Aug 30 15:16:38 2024 +0000 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org> CommitDate: Fri Aug 30 15:16:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b10114ff
x11-misc/i3blocks: update EAPI 7 -> 8 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org> x11-misc/i3blocks/i3blocks-1.5-r2.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/x11-misc/i3blocks/i3blocks-1.5-r2.ebuild b/x11-misc/i3blocks/i3blocks-1.5-r2.ebuild new file mode 100644 index 000000000000..416be1d800fd --- /dev/null +++ b/x11-misc/i3blocks/i3blocks-1.5-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools bash-completion-r1 + +DESCRIPTION="highly flexible status line for the i3 window manager" +HOMEPAGE="https://github.com/vivien/i3blocks" +SRC_URI="https://github.com/vivien/i3blocks/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="+contrib" + +PDEPEND="contrib? ( x11-misc/i3blocks-contrib )" + +PATCHES=( "${FILESDIR}"/${PN}-disable-bash-completion.patch ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + newbashcomp bash-completion ${PN} +}
