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 11B8515810F for ; Mon, 5 Jun 2023 18:35:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C7D8E0884; Mon, 5 Jun 2023 18:35:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 17FAAE0884 for ; Mon, 5 Jun 2023 18:35:16 +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 4A0A3335D4B for ; Mon, 5 Jun 2023 18:35:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6587A5C for ; Mon, 5 Jun 2023 18:35:13 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1685990092.f2aa3a1f2d911b24b21ad80891b194d36722eaf0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/electrum/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/electrum/electrum-4.4.4-r1.ebuild net-misc/electrum/electrum-4.4.4.ebuild X-VCS-Directories: net-misc/electrum/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f2aa3a1f2d911b24b21ad80891b194d36722eaf0 X-VCS-Branch: master Date: Mon, 5 Jun 2023 18:35:13 +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: 865fc4c7-c26b-402e-aa43-3cbc2c0c384d X-Archives-Hash: 9e70ae76f1dc28cc273216136d42312c commit: f2aa3a1f2d911b24b21ad80891b194d36722eaf0 Author: Efe İzbudak metu edu tr> AuthorDate: Mon Jun 5 06:44:28 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 5 18:34:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2aa3a1f net-misc/electrum: missing dependency pyperclip The program was failing to run with the following error: ``` 1.66 | E | daemon.Daemon | GUI raised exception: ModuleNotFoundError("No module named 'pyperclip'"). shutting down. 1.66 | E | __main__ | daemon.run_gui errored Traceback (most recent call last): File "/usr/lib/python-exec/python3.11/electrum", line 461, in handle_cmd d.run_gui(config, plugins) File "/usr/lib/python3.11/site-packages/electrum/daemon.py", line 591, in run_gui gui = __import__('electrum.gui.' + gui_name, fromlist=['electrum']) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/site-packages/electrum/gui/text.py", line 9, in import pyperclip ModuleNotFoundError: No module named 'pyperclip' ``` which has been fixed by adding the dependency dev-python/pyperclip. Signed-off-by: Efe İzbudak metu.edu.tr> Closes: https://github.com/gentoo/gentoo/pull/31314 Signed-off-by: Michał Górny gentoo.org> net-misc/electrum/{electrum-4.4.4.ebuild => electrum-4.4.4-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/net-misc/electrum/electrum-4.4.4.ebuild b/net-misc/electrum/electrum-4.4.4-r1.ebuild similarity index 98% rename from net-misc/electrum/electrum-4.4.4.ebuild rename to net-misc/electrum/electrum-4.4.4-r1.ebuild index 693674eca7e3..1cc9eb1f94ba 100644 --- a/net-misc/electrum/electrum-4.4.4.ebuild +++ b/net-misc/electrum/electrum-4.4.4-r1.ebuild @@ -35,6 +35,7 @@ RDEPEND=" dev-python/cryptography[${PYTHON_USEDEP}] >=dev-python/dnspython-2[${PYTHON_USEDEP}] dev-python/pbkdf2[${PYTHON_USEDEP}] + dev-python/pyperclip[${PYTHON_USEDEP}] dev-python/PySocks[${PYTHON_USEDEP}] dev-python/qrcode[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}]