finance/electrum: Update to 4.3.3

This commit is contained in:
Emanuel Haupt 2023-01-15 10:20:54 +01:00
parent f6766c1ab8
commit 06877ab042
3 changed files with 17 additions and 4 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= electrum
PORTVERSION= 4.3.2
PORTVERSION= 4.3.3
CATEGORIES= finance python
MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \
http://download.electrum.org/${PORTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1664567618
SHA256 (Electrum-4.3.2.tar.gz) = bd3640ad3c1b29c7fafef3d03af8ee6cf79cb20fa1f90959eab75b97aa8d7ecd
SIZE (Electrum-4.3.2.tar.gz) = 13578146
TIMESTAMP = 1673690253
SHA256 (Electrum-4.3.3.tar.gz) = 34f5c67db1234fd97cf199c66c3704dfea06c53853cd6ed87deb01cecb06b1b7
SIZE (Electrum-4.3.3.tar.gz) = 13665972

View File

@ -0,0 +1,13 @@
--- electrum/ecc_fast.py.orig 2023-01-14 09:57:57 UTC
+++ electrum/ecc_fast.py
@@ -46,8 +46,8 @@ def load_library():
elif 'ANDROID_DATA' in os.environ:
library_paths = ('libsecp256k1.so',)
else: # desktop Linux and similar
- library_paths = (os.path.join(os.path.dirname(__file__), 'libsecp256k1.so.0'),
- 'libsecp256k1.so.0')
+ library_paths = (os.path.join(os.path.dirname(__file__), 'libsecp256k1.so'),
+ 'libsecp256k1.so')
exceptions = []
secp256k1 = None