From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6CE711581D3 for ; Sun, 26 May 2024 12:44:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9460CE29D5; Sun, 26 May 2024 12:44:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75DFEE29D5 for ; Sun, 26 May 2024 12:44:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E500343063 for ; Sun, 26 May 2024 12:44:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E046F1B4F for ; Sun, 26 May 2024 12:44:51 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1716687505.749a583965a44f70a73c36e2fed85c7c3739f0ed.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/doublecmd-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/doublecmd-bin/doublecmd-bin-9999.ebuild X-VCS-Directories: app-misc/doublecmd-bin/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 749a583965a44f70a73c36e2fed85c7c3739f0ed X-VCS-Branch: master Date: Sun, 26 May 2024 12:44:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 82e89967-d490-4051-a846-4e319dd2809a X-Archives-Hash: 0fbce46fbe7401307d7e8a49ebce4a99 commit: 749a583965a44f70a73c36e2fed85c7c3739f0ed Author: Vitaly Zdanevich ya ru> AuthorDate: Sun May 26 01:38:25 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sun May 26 01:38:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=749a5839 app-misc/doublecmd-bin: AppImage version add Signed-off-by: Vitaly Zdanevich ya.ru> app-misc/doublecmd-bin/doublecmd-bin-9999.ebuild | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/app-misc/doublecmd-bin/doublecmd-bin-9999.ebuild b/app-misc/doublecmd-bin/doublecmd-bin-9999.ebuild new file mode 100644 index 000000000..4ab2d8555 --- /dev/null +++ b/app-misc/doublecmd-bin/doublecmd-bin-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Double Commander: file manager with two panels, similar to Total Commander" +HOMEPAGE="https://doublecmd.sourceforge.io/" + +S="${WORKDIR}" + +LICENSE="GPL-2" +SLOT="0" +PROPERTIES="live" +IUSE="+gtk qt5" +REQUIRED_USE=" ^^ ( gtk qt5 ) " + +RESTRICT="strip" + +RDEPEND="sys-fs/fuse:0" + +QA_PREBUILT="*" + +src_unpack() { + if use gtk; then + wget https://download.opensuse.org/repositories/home:/Alexx2000/AppImage/doublecmd-gtk-latest-x86_64.AppImage + else + wget https://download.opensuse.org/repositories/home:/Alexx2000/AppImage/doublecmd-qt-latest-x86_64.AppImage + fi +} + +src_install() { + newbin *.AppImage doublecmd-appimage +}