commit: d69e2569cb501f7c91bbffc15d3d3489290e4afa Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat May 24 10:55:41 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat May 24 10:56:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d69e2569
app-crypt/moolticute: Fix missing DEPEND, drop RDEPEND from BDEPEND Goes all the way back to EAPI 7 upgrade from 2019. Fixes commit 1598d783e5f2ad6ef73963e7d4249dbcec611ad8. Bug: https://bugs.gentoo.org/956506 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-crypt/moolticute/moolticute-1.03.0-r1.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/app-crypt/moolticute/moolticute-1.03.0-r1.ebuild b/app-crypt/moolticute/moolticute-1.03.0-r1.ebuild index 583d9b162471..20e8f41d2c69 100644 --- a/app-crypt/moolticute/moolticute-1.03.0-r1.ebuild +++ b/app-crypt/moolticute/moolticute-1.03.0-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit qmake-utils systemd udev xdg-utils -if [[ ${PV} == 9999* ]]; then +if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/mooltipass/moolticute.git" inherit git-r3 else @@ -30,19 +30,16 @@ RDEPEND=" dev-qt/qtwidgets:5 virtual/libudev:= " -BDEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" +DEPEND="${RDEPEND}" +BDEPEND="dev-qt/linguist-tools:5" -PATCHES=( - "${FILESDIR}"/${PN}-1.03.0-fix-return-type.patch -) +PATCHES=( "${FILESDIR}"/${PN}-1.03.0-fix-return-type.patch ) src_prepare() { default # Fill version.h with package version - if [[ ${PV} != 9999* ]]; then + if [[ ${PV} != *9999* ]]; then sed -i "s/\"git\"/\"v${PV/_/-}\"/" src/version.h || die fi }
