commit:     b7075feccceb71b8c8a986fcfaa66610bbdb9e25
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 27 19:51:16 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 27 19:51:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7075fec

net-misc/electrum: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-misc/electrum/Manifest                  |  2 -
 net-misc/electrum/electrum-4.1.5.ebuild     | 99 -----------------------------
 net-misc/electrum/electrum-4.2.0.ebuild     | 93 ---------------------------
 net-misc/electrum/files/3.3.2-desktop.patch | 21 ------
 4 files changed, 215 deletions(-)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index 0de148fa01b2..305abd47b912 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -1,3 +1 @@
-DIST electrum-4.1.5.gh.tar.gz 4998188 BLAKE2B 
c33f1a8fa2af68370319a4f4fefe4d1814a20870114f4929d53bf90eca6bbb555cf9e52681f329d18dec32642ee21ee0e32558ec817936291296ce8e196c8fb1
 SHA512 
9430dfde6d6e78bb71db416cd35f474b44e234d69421b370dc7e4b09584ad86e095051dcf1366c142d5e6c3029aca617b4fb383f50904fc43d2f7f99053b1c92
-DIST electrum-4.2.0.gh.tar.gz 5065087 BLAKE2B 
800667f2661ef45fae7e7f2d73229810eb490e90a9bea7ff84c04c3cf859f07ac71972658a52f802817a42de7eeb0084c6b0e1aba74733918f250228996f0641
 SHA512 
72c8afcd2f3fc3de2b8b6516dc82355718c7dc9a88b06ba91d8e3a3d1e2bf329c02cfc8ea9dc22aff88fbde622dd443606f14e11e0bf8050da5765cd9be75a83
 DIST electrum-4.2.1.gh.tar.gz 5066728 BLAKE2B 
66b1ef4ec21f74f2f5c25de97a31c2ec23f907526df2ac661fdcb563e1e857ca88f4f534f2373e809ba978c66b78af72260af27944ac7aa8a92e86531827fef6
 SHA512 
b32ee5f8779bdb9bcda6a163f3f0a4cd95e91efb37418734c9f08930221ad15e54868fca0d5d0fb1dd3b1fac91b8cdea6c6ec822d98ad6b3d6ee01c841972e88

diff --git a/net-misc/electrum/electrum-4.1.5.ebuild 
b/net-misc/electrum/electrum-4.1.5.ebuild
deleted file mode 100644
index 1efda47c7185..000000000000
--- a/net-misc/electrum/electrum-4.1.5.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8..9} )
-PYTHON_REQ_USE="ncurses?"
-
-inherit desktop distutils-r1 xdg-utils
-
-DESCRIPTION="User friendly Bitcoin client"
-HOMEPAGE="https://electrum.org/";
-SRC_URI="
-       https://github.com/spesmilo/electrum/archive/${PV}.tar.gz
-               -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="cli ncurses qrcode +qt5"
-REQUIRED_USE="|| ( cli ncurses qt5 )"
-
-RDEPEND="${PYTHON_DEPS}
-       dev-libs/libsecp256k1
-       >=dev-python/aiohttp-socks-0.3[${PYTHON_USEDEP}]
-       =dev-python/aiorpcX-0.19*[${PYTHON_USEDEP}]
-       >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
-       dev-python/bitstring[${PYTHON_USEDEP}]
-       dev-python/cryptography[${PYTHON_USEDEP}]
-       >=dev-python/dnspython-2[${PYTHON_USEDEP}]
-       dev-python/pbkdf2[${PYTHON_USEDEP}]
-       dev-python/PySocks[${PYTHON_USEDEP}]
-       dev-python/qrcode[${PYTHON_USEDEP}]
-       dev-python/requests[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       >=dev-python/protobuf-python-3.12[${PYTHON_USEDEP}]
-       qrcode? ( media-gfx/zbar[v4l] )
-       qt5? (
-               dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
-       )
-       ncurses? ( $(python_gen_impl_dep 'ncurses') )
-"
-BDEPEND="
-       test? (
-               dev-python/pyaes[${PYTHON_USEDEP}]
-               dev-python/pycryptodome[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-       eapply "${FILESDIR}/3.1.2-no-user-root.patch"
-       eapply "${FILESDIR}/3.3.2-desktop.patch"
-
-       # unbind aiorpcX dep
-       sed -e '/aiorpcx/s:,<0.19::' \
-               -i contrib/requirements/requirements.txt || die
-       sed -e '/aiorpcx/s:raise.*:pass:' \
-               -i run_electrum || die
-
-       # Prevent icon from being installed in the wrong location
-       sed -i '/icons_dirname/d' setup.py || die
-
-       # use backwards-compatible cryptodome API
-       sed -i -e 's:Cryptodome:Crypto:' electrum/crypto.py || die
-
-       local bestgui
-       if use qt5; then
-               bestgui=qt
-       elif use ncurses; then
-               bestgui=text
-       else
-               bestgui=stdio
-       fi
-       sed -i 's/^\([[:space:]]*\)\(config_options\['\''cwd'\''\] = 
.*\)$/\1\2\n\1config_options.setdefault("gui", "'"${bestgui}"'")\n/' 
${PN}/${PN} || die
-
-       eapply_user
-
-       xdg_environment_reset
-       distutils-r1_src_prepare
-}
-
-src_install() {
-       doicon -s 128 electrum/gui/icons/${PN}.png
-       dodoc RELEASE-NOTES
-       distutils-r1_src_install
-}
-
-pkg_postinst() {
-       xdg_icon_cache_update
-       xdg_desktop_database_update
-}
-
-pkg_postrm() {
-       xdg_icon_cache_update
-       xdg_desktop_database_update
-}

diff --git a/net-misc/electrum/electrum-4.2.0.ebuild 
b/net-misc/electrum/electrum-4.2.0.ebuild
deleted file mode 100644
index 02786de94c6c..000000000000
--- a/net-misc/electrum/electrum-4.2.0.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..9} )
-PYTHON_REQ_USE="ncurses?"
-
-inherit desktop distutils-r1 xdg-utils
-
-DESCRIPTION="User friendly Bitcoin client"
-HOMEPAGE="https://electrum.org/";
-SRC_URI="
-       https://github.com/spesmilo/electrum/archive/${PV}.tar.gz
-               -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cli ncurses qrcode +qt5"
-REQUIRED_USE="|| ( cli ncurses qt5 )"
-
-RDEPEND="${PYTHON_DEPS}
-       dev-libs/libsecp256k1
-       >=dev-python/aiohttp-socks-0.3[${PYTHON_USEDEP}]
-       =dev-python/aiorpcX-0.22*[${PYTHON_USEDEP}]
-       >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
-       dev-python/bitstring[${PYTHON_USEDEP}]
-       dev-python/cryptography[${PYTHON_USEDEP}]
-       >=dev-python/dnspython-2[${PYTHON_USEDEP}]
-       dev-python/pbkdf2[${PYTHON_USEDEP}]
-       dev-python/PySocks[${PYTHON_USEDEP}]
-       dev-python/qrcode[${PYTHON_USEDEP}]
-       dev-python/requests[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       >=dev-python/protobuf-python-3.12[${PYTHON_USEDEP}]
-       qrcode? ( media-gfx/zbar[v4l] )
-       qt5? (
-               dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
-       )
-       ncurses? ( $(python_gen_impl_dep 'ncurses') )
-"
-BDEPEND="
-       test? (
-               dev-python/pyaes[${PYTHON_USEDEP}]
-               dev-python/pycryptodome[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-       eapply "${FILESDIR}/3.1.2-no-user-root.patch"
-
-       # Prevent icon from being installed in the wrong location
-       sed -i '/icons_dirname/d' setup.py || die
-
-       # use backwards-compatible cryptodome API
-       sed -i -e 's:Cryptodome:Crypto:' electrum/crypto.py || die
-
-       local bestgui
-       if use qt5; then
-               bestgui=qt
-       elif use ncurses; then
-               bestgui=text
-       else
-               bestgui=stdio
-       fi
-       sed -i 's/^\([[:space:]]*\)\(config_options\['\''cwd'\''\] = 
.*\)$/\1\2\n\1config_options.setdefault("gui", "'"${bestgui}"'")\n/' 
${PN}/${PN} || die
-
-       eapply_user
-
-       xdg_environment_reset
-       distutils-r1_src_prepare
-}
-
-src_install() {
-       doicon -s 128 electrum/gui/icons/${PN}.png
-       dodoc RELEASE-NOTES
-       distutils-r1_src_install
-}
-
-pkg_postinst() {
-       xdg_icon_cache_update
-       xdg_desktop_database_update
-}
-
-pkg_postrm() {
-       xdg_icon_cache_update
-       xdg_desktop_database_update
-}

diff --git a/net-misc/electrum/files/3.3.2-desktop.patch 
b/net-misc/electrum/files/3.3.2-desktop.patch
deleted file mode 100644
index e932623be246..000000000000
--- a/net-misc/electrum/files/3.3.2-desktop.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Naur Electrum-3.3.2.orig/electrum.desktop Electrum-3.3.2/electrum.desktop
---- Electrum-3.3.2.orig/electrum.desktop       2000-11-11 06:11:11.000000000 
-0500
-+++ Electrum-3.3.2/electrum.desktop    2019-01-08 20:47:55.628978706 -0500
-@@ -3,7 +3,7 @@
- 
- [Desktop Entry]
- Comment=Lightweight Bitcoin Client
--Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum %u"
-+Exec=electrum %u
- GenericName[en_US]=Bitcoin Wallet
- GenericName=Bitcoin Wallet
- Icon=electrum
-@@ -14,8 +14,3 @@
- Terminal=false
- Type=Application
- MimeType=x-scheme-handler/bitcoin;
--Actions=Testnet;
--
--[Desktop Action Testnet]
--Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum --testnet %u"
--Name=Testnet mode

Reply via email to