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 AFC58158091 for ; Fri, 17 Jun 2022 12:11:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33B07E07FE; Fri, 17 Jun 2022 12:11:35 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 169C3E07FE for ; Fri, 17 Jun 2022 12:11:35 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F47F3419E4 for ; Fri, 17 Jun 2022 12:11:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D5B5507 for ; Fri, 17 Jun 2022 12:11:32 +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: <1655467805.903f4e0b5bc406dbaa16576e227f7965beed1e7a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/frescobaldi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/frescobaldi/frescobaldi-3.2-r1.ebuild X-VCS-Directories: media-sound/frescobaldi/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 903f4e0b5bc406dbaa16576e227f7965beed1e7a X-VCS-Branch: master Date: Fri, 17 Jun 2022 12:11:32 +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: 9e31f9e6-92ad-4cda-932a-75be54eb2c63 X-Archives-Hash: 1a3252f634a2e7a0b2feeac639e8a677 commit: 903f4e0b5bc406dbaa16576e227f7965beed1e7a Author: Sam James gentoo org> AuthorDate: Fri Jun 17 01:35:11 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 17 12:10:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=903f4e0b media-sound/frescobaldi: add qpageview dep Closes: https://bugs.gentoo.org/850922 Signed-off-by: Sam James gentoo.org> media-sound/frescobaldi/frescobaldi-3.2-r1.ebuild | 32 +++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/media-sound/frescobaldi/frescobaldi-3.2-r1.ebuild b/media-sound/frescobaldi/frescobaldi-3.2-r1.ebuild new file mode 100644 index 000000000000..c0e548571f49 --- /dev/null +++ b/media-sound/frescobaldi/frescobaldi-3.2-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 xdg + +DESCRIPTION="A LilyPond sheet music text editor" +HOMEPAGE="https://www.frescobaldi.org/" +SRC_URI="https://github.com/wbsoft/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-python/PyQt5[gui,network,printsupport,svg,widgets,${PYTHON_USEDEP}] + dev-python/PyQtWebEngine[${PYTHON_USEDEP}] + dev-python/python-ly[${PYTHON_USEDEP}] + dev-python/python-poppler-qt5[${PYTHON_USEDEP}] + dev-python/qpageview[${PYTHON_USEDEP}] + media-sound/lilypond" +RDEPEND="${DEPEND} + x11-themes/tango-icon-theme +" + +python_prepare_all() { + rm -r frescobaldi_app/icons/Tango || die "failed to remove tango icon theme" + distutils-r1_python_prepare_all +}