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 3713E15ACFB for ; Fri, 14 Apr 2023 01:06:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CE83E0866; Fri, 14 Apr 2023 01:06:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F2B17E0864 for ; Fri, 14 Apr 2023 01:06:12 +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 39519340B57 for ; Fri, 14 Apr 2023 01:06:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D928A49 for ; Fri, 14 Apr 2023 01:06:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1681434320.9474805514651c85628be780897a6317804d9716.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/flameshot/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/flameshot/flameshot-12.1.0-r1.ebuild media-gfx/flameshot/flameshot-12.1.0.ebuild X-VCS-Directories: media-gfx/flameshot/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9474805514651c85628be780897a6317804d9716 X-VCS-Branch: master Date: Fri, 14 Apr 2023 01:06:09 +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: 0eeda815-e212-4df9-8636-8ad13b7621b3 X-Archives-Hash: 35cd7990e5fc40d0a86da2a10559e692 commit: 9474805514651c85628be780897a6317804d9716 Author: Huang Rui gmail com> AuthorDate: Thu Apr 13 10:00:03 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 14 01:05:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94748055 media-gfx/flameshot: fix wayland clipboard behavior Closes: https://bugs.gentoo.org/904266 Signed-off-by: Huang Rui gmail.com> Signed-off-by: Sam James gentoo.org> .../{flameshot-12.1.0.ebuild => flameshot-12.1.0-r1.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/media-gfx/flameshot/flameshot-12.1.0.ebuild b/media-gfx/flameshot/flameshot-12.1.0-r1.ebuild similarity index 90% rename from media-gfx/flameshot/flameshot-12.1.0.ebuild rename to media-gfx/flameshot/flameshot-12.1.0-r1.ebuild index fa3545cbb409..f88dd873b6b5 100644 --- a/media-gfx/flameshot/flameshot-12.1.0.ebuild +++ b/media-gfx/flameshot/flameshot-12.1.0-r1.ebuild @@ -12,16 +12,18 @@ SRC_URI="https://github.com/flameshot-org/flameshot/archive/v${PV}.tar.gz -> ${P LICENSE="Apache-2.0 Free-Art-1.3 GPL-3+" SLOT="0" KEYWORDS="amd64 ~arm64 x86" +IUSE="wayland" DEPEND=" + =dev-qt/qtsingleapplication-2.6*[qt5(+),X] dev-qt/qtcore:5 + dev-qt/qtdbus:5 dev-qt/qtgui:5 - =dev-qt/qtsingleapplication-2.6*[qt5(+),X] - dev-qt/qtwidgets:5 - dev-qt/qtsvg:5 dev-qt/qtnetwork:5 - dev-qt/qtdbus:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 sys-apps/dbus + wayland? ( kde-frameworks/kguiaddons ) " BDEPEND=" dev-qt/linguist-tools:5 @@ -38,6 +40,7 @@ src_configure() { local mycmakeargs=( -DUSE_EXTERNAL_SINGLEAPPLICATION=1 -DENABLE_CACHE=0 + -DUSE_WAYLAND_CLIPBOARD=$(usex wayland) ) cmake_src_configure