Github messages for voidlinux
 help / color / mirror / Atom feed
From: ar-jan <ar-jan@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] [WIP] Update Electrum to 4.0.9
Date: Sun, 21 Feb 2021 19:25:11 +0100	[thread overview]
Message-ID: <20210221182511.h-zu05d7OUiiWHo2IYw-vrIk9pgwgAV87rqs0wMo5L0@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-28305@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 2841 bytes --]

There is an updated pull request by ar-jan against master on the void-packages repository

https://github.com/ar-jan/void-packages electrum-409
https://github.com/void-linux/void-packages/pull/28305

[WIP] Update Electrum to 4.0.9
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

This depends on #28272.

Using package [libbitcoin-secp256k1](https://github.com/void-linux/void-packages/tree/master/srcpkgs/libbitcoin-secp256k1) as dependency might be possible, but: it is based on this release: https://github.com/libbitcoin/secp256k1/releases/tag/v0.1.0.13 with the last commit included dating to December 2016. Electrum currently [uses](https://github.com/spesmilo/electrum/blob/master/contrib/make_libsecp256k1.sh) a commit from from June 2020 from https://github.com/bitcoin-core/secp256k1.

Remaining issues:

- Using `libbitcoin-secp256k1` it builds and runs OK (tested opening and creating wallets), but I don't know if the outdated libsecp256k1 could be problematic with other functionality. So instead I've tried using the `make_libsecp256k1.sh` from Electrum. This works locally on my x86_64, but I'm not sure how to do this correctly for all architectures/compilers.
- Also, the library must be available at `/usr/lib/libsecp256k1.so.0`, how should that work if someone also has `libbitcoin-secp256k1` installed which uses the same library path?
- Difference between libbitcoin/secp256k1 and its upstream bitcoin-core/secp256k1? Possible to provide the bitcoin-core/secp256k1 version instead in Void?

A patch file from https://github.com/void-linux/void-packages/pull/28305.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-electrum-409-28305.patch --]
[-- Type: text/x-diff, Size: 24561 bytes --]

From 6eae111b917ebf9b5fb6df47479d5d8fedd4efb0 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Thu, 28 Jan 2021 01:00:16 +0100
Subject: [PATCH 1/9] New package: python3-trio-0.18.0

---
 srcpkgs/python3-trio/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/python3-trio/template

diff --git a/srcpkgs/python3-trio/template b/srcpkgs/python3-trio/template
new file mode 100644
index 00000000000..991cafdc216
--- /dev/null
+++ b/srcpkgs/python3-trio/template
@@ -0,0 +1,31 @@
+# Template file for 'python3-trio'
+pkgname=python3-trio
+version=0.18.0
+revision=1
+wrksrc="trio-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-async_generator>=1.9 python3-attrs>=19.2.0 python3-idna
+ python3-outcome python3-sniffio python3-sortedcontainers"
+checkdepends="python3-pytest python3-pytest-cov python3-ipython python3-pylint
+ python3-jedi black python3-mypy python3-flake8
+ python3-async_generator>=1.9 python3-attrs>=19.2.0
+ python3-idna python3-outcome python3-sniffio python3-sortedcontainers"
+short_desc="Friendly Python library for async concurrency and I/O"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/python-trio/trio"
+distfiles="${PYPI_SITE}/t/trio/trio-${version}.tar.gz"
+checksum=87a66ae61f27fe500c9024926a9ba482c07e1e0f56380b70a264d19c435ba076
+
+# Tests also need the following to be packaged:
+# pyOpenSSL https://pypi.org/project/pyOpenSSL/
+# trustme https://pypi.org/project/trustme/
+# astor https://pypi.org/project/astor/
+do_check() {
+	:
+}
+
+post_install() {
+	vlicense LICENSE
+}

From b9bcfcff8870c5be4206ebaa04b897866d9dd146 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Thu, 28 Jan 2021 01:01:20 +0100
Subject: [PATCH 2/9] New package: python3-curio-1.4

---
 srcpkgs/python3-curio/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-curio/template

diff --git a/srcpkgs/python3-curio/template b/srcpkgs/python3-curio/template
new file mode 100644
index 00000000000..f9064a84649
--- /dev/null
+++ b/srcpkgs/python3-curio/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-curio'
+pkgname=python3-curio
+version=1.4
+revision=1
+wrksrc="curio-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest"
+short_desc="Coroutine-based library for concurrent programming using async/await"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="BSD-3-Clause"
+homepage="https://github.com/dabeaz/curio"
+distfiles="${PYPI_SITE}/c/curio/curio-${version}.tar.gz"
+checksum=57edce81c837f3c2cf42fbb346dee26e537d1659e6605269fb13bd179e068744
+
+do_check() {
+	# CI container has different privileges than expected in test_errors()
+	# which leads to CI builds timing out on some arches.
+	PYTHONPATH=$(cd build/lib* && pwd) pytest -k 'not test_errors'
+}
+
+post_install() {
+	vlicense LICENSE
+}

From ef81da4b13fdb3508f6fcbf232522d4b411cd337 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Thu, 28 Jan 2021 01:01:37 +0100
Subject: [PATCH 3/9] New package: python3-outcome-1.1.0

---
 srcpkgs/python3-outcome/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/python3-outcome/template

diff --git a/srcpkgs/python3-outcome/template b/srcpkgs/python3-outcome/template
new file mode 100644
index 00000000000..f326b36ace8
--- /dev/null
+++ b/srcpkgs/python3-outcome/template
@@ -0,0 +1,23 @@
+# Template file for 'python3-outcome'
+pkgname=python3-outcome
+version=1.1.0
+revision=1
+wrksrc="outcome-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest python3-pytest-cov python3-pytest-asyncio"
+short_desc="Capture the outcome of Python function calls"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/python-trio/outcome"
+distfiles="${PYPI_SITE}/o/outcome/outcome-${version}.tar.gz"
+checksum=e862f01d4e626e63e8f92c38d1f8d5546d3f9cce989263c521b2e7990d186967
+
+do_check() {
+	PYTHONPATH=$(cd build/lib* && pwd) pytest
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 15602482c6dfee83a9319a7369c35b1e09a0a2b0 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Thu, 28 Jan 2021 01:02:03 +0100
Subject: [PATCH 4/9] New package: python3-sniffio-1.2.0

---
 srcpkgs/python3-sniffio/template | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 srcpkgs/python3-sniffio/template

diff --git a/srcpkgs/python3-sniffio/template b/srcpkgs/python3-sniffio/template
new file mode 100644
index 00000000000..af169ef60b1
--- /dev/null
+++ b/srcpkgs/python3-sniffio/template
@@ -0,0 +1,23 @@
+# Template file for 'python3-sniffio'
+pkgname=python3-sniffio
+version=1.2.0
+revision=1
+wrksrc="sniffio-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest python3-pytest-cov python3-curio"
+short_desc="Sniff out which async library your code is running under"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://github.com/python-trio/sniffio"
+distfiles="${PYPI_SITE}/s/sniffio/sniffio-${version}.tar.gz"
+checksum=c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de
+
+do_check() {
+	PYTHONPATH=$(cd build/lib* && pwd) pytest
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 675d69b45364493e0cfa30588315b5e353108d01 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Thu, 28 Jan 2021 01:02:23 +0100
Subject: [PATCH 5/9] New package: python3-socks-1.2.0

---
 srcpkgs/python3-socks/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/python3-socks/template

diff --git a/srcpkgs/python3-socks/template b/srcpkgs/python3-socks/template
new file mode 100644
index 00000000000..afa0c84fb8c
--- /dev/null
+++ b/srcpkgs/python3-socks/template
@@ -0,0 +1,20 @@
+# Template file for 'python3-socks'
+pkgname=python3-socks
+version=1.2.0
+revision=1
+wrksrc="python-socks-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+checkdepends="python3-async-timeout python3-curio python3-trio python3-attrs
+ python3-async_generator python3-sniffio python3-sortedcontainers
+ python3-outcome python3-idna"
+# Optional dependencies:
+# async-timeout >= 3.0.1
+# trio >= 0.16.0
+# curio >= 1.4
+short_desc="Core proxy client functionality for Python"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/romis2012/python-socks"
+distfiles="${PYPI_SITE}/p/python-socks/python-socks-${version}.tar.gz"
+checksum=3054a8afa984a35144198e00fed1144eeae3287cc231ac7db3908d32ab642cd4

From 3edba931322bec1d05f490cf0f4c83a4cdc5c690 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Thu, 28 Jan 2021 01:14:56 +0100
Subject: [PATCH 6/9] python3-aiohttp_socks: update to 0.5.5.

---
 srcpkgs/python3-aiohttp_socks/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template
index fa75a54302c..5ebdd5b6ab9 100644
--- a/srcpkgs/python3-aiohttp_socks/template
+++ b/srcpkgs/python3-aiohttp_socks/template
@@ -1,15 +1,15 @@
 # Template file for 'python3-aiohttp_socks'
 pkgname=python3-aiohttp_socks
-version=0.2.2
-revision=3
+version=0.5.5
+revision=1
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module
-pycompile_module="aiohttp_socks"
 hostmakedepends="python3-setuptools"
-depends="python3-aiohttp"
+depends="python3-aiohttp python3-socks"
+checkdepends="python3-aiohttp python3-attrs python3-socks"
 short_desc="SOCKS proxy connector for aiohttp"
 maintainer="Christian Buschau <christian.buschau@mailbox.org>"
 license="Apache-2.0"
 homepage="https://github.com/romis2012/aiohttp-socks"
 distfiles="${PYPI_SITE}/a/aiohttp_socks/aiohttp_socks-${version}.tar.gz"
-checksum=eebd8939a7c3c1e3e7e1b2552c60039b4c65ef6b8b2351efcbdd98290538e310
+checksum=2eb2059756bde34c55bb429541cbf2eba3fd53e36ac80875b461221e2858b04a

From 51e04aa6049df749fca97674158a5ae7ddcb5132 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Fri, 29 Jan 2021 17:21:17 +0100
Subject: [PATCH 7/9] New package: python3-bitstring-3.1.7

---
 srcpkgs/python3-bitstring/template | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 srcpkgs/python3-bitstring/template

diff --git a/srcpkgs/python3-bitstring/template b/srcpkgs/python3-bitstring/template
new file mode 100644
index 00000000000..3696935078d
--- /dev/null
+++ b/srcpkgs/python3-bitstring/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-bitstring'
+pkgname=python3-bitstring
+version=3.1.7
+revision=1
+wrksrc="bitstring-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+short_desc="Python module for creation and analysis of binary data"
+maintainer="Arjan Mossel <arjanmossel@gmail.com>"
+license="MIT"
+homepage="https://scott-griffiths.github.io/bitstring/"
+distfiles="${PYPI_SITE}/b/bitstring/bitstring-${version}.tar.gz"
+checksum=fdf3eb72b229d2864fb507f8f42b1b2c57af7ce5fec035972f9566de440a864a
+
+post_install() {
+	vlicense LICENSE
+}

From d1f2ac4c007d0469c99a581d9fc7bf8e18ca91ae Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Sat, 30 Jan 2021 18:40:08 +0100
Subject: [PATCH 8/9] python3-dnspython: update to 2.0.0.

---
 .../python3-dnspython/patches/gh-345.patch    | 166 ------------------
 srcpkgs/python3-dnspython/template            |  15 +-
 2 files changed, 11 insertions(+), 170 deletions(-)
 delete mode 100644 srcpkgs/python3-dnspython/patches/gh-345.patch

diff --git a/srcpkgs/python3-dnspython/patches/gh-345.patch b/srcpkgs/python3-dnspython/patches/gh-345.patch
deleted file mode 100644
index 272c9a7ca5d..00000000000
--- a/srcpkgs/python3-dnspython/patches/gh-345.patch
+++ /dev/null
@@ -1,166 +0,0 @@
-Backport of https://github.com/rthalley/dnspython/pull/345.
-
---- dns/dnssec.py.orig	2018-12-01 07:25:26.000000000 +0100
-+++ dns/dnssec.py	2018-12-29 19:49:57.505384082 +0100
-@@ -18,6 +18,7 @@
- """Common DNSSEC-related functions and constants."""
- 
- from io import BytesIO
-+import hashlib
- import struct
- import time
- 
-@@ -39,6 +40,57 @@
-     """The DNSSEC signature is invalid."""
- 
- 
-+class Hash:
-+    """
-+    Compatibilty Hash method
-+    Has the same inteface as the stdlib hashlib.hash, with the added `oid`
-+    attribute used by the crypto module
-+    """
-+    _oid_map = {
-+        'MD5': '1.2.840.113549.2.5',
-+        'SHA1': '1.3.14.3.2.26',
-+        'SHA256': '2.16.840.1.101.3.4.2.1',
-+        'SHA384': '2.16.840.1.101.3.4.2.2',
-+        'SHA512': '2.16.840.1.101.3.4.2.3',
-+    }
-+
-+    def __init__(self):
-+        self._hash = None
-+
-+    @classmethod
-+    def new(cls, name, data=b''):
-+        self = cls()
-+        self._hash = hashlib.new(name, data)
-+
-+        return self
-+
-+    def update(self, data):
-+        self._hash.update(data)
-+
-+    def digest(self):
-+        return self._hash.digest()
-+
-+    def hexdigest(self):
-+        return self._hash.hexdigest()
-+
-+    def copy(self):
-+        copy = Hash()
-+        copy._hash = self._hash.copy()
-+
-+        return copy
-+
-+    @property
-+    def name(self):
-+        return self._hash.name
-+
-+    @property
-+    def oid(self):
-+        try:
-+            return self._oid_map[self.name]
-+        except KeyError:
-+            raise RuntimeError('OID for algorithm %s is unknown' % self.name)
-+
-+
- #: RSAMD5
- RSAMD5 = 1
- #: DH
-@@ -165,10 +217,10 @@
- 
-     if algorithm.upper() == 'SHA1':
-         dsalg = 1
--        hash = SHA1.new()
-+        hash = Hash.new('SHA1')
-     elif algorithm.upper() == 'SHA256':
-         dsalg = 2
--        hash = SHA256.new()
-+        hash = Hash.new('SHA256')
-     else:
-         raise UnsupportedAlgorithm('unsupported algorithm "%s"' % algorithm)
- 
-@@ -240,15 +292,15 @@
- 
- def _make_hash(algorithm):
-     if _is_md5(algorithm):
--        return MD5.new()
-+        return Hash.new('MD5')
-     if _is_sha1(algorithm):
--        return SHA1.new()
-+        return Hash.new('SHA1')
-     if _is_sha256(algorithm):
--        return SHA256.new()
-+        return Hash.new('sha256')
-     if _is_sha384(algorithm):
--        return SHA384.new()
-+        return Hash.new('sha384')
-     if _is_sha512(algorithm):
--        return SHA512.new()
-+        return Hash.new('sha512')
-     raise ValidationFailure('unknown hash for algorithm %u' % algorithm)
- 
- 
-@@ -479,12 +531,10 @@
- try:
-     try:
-         # test we're using pycryptodome, not pycrypto (which misses SHA1 for example)
--        from Crypto.Hash import MD5, SHA1, SHA256, SHA384, SHA512
-         from Crypto.PublicKey import RSA as CryptoRSA, DSA as CryptoDSA
-         from Crypto.Signature import pkcs1_15, DSS
-         from Crypto.Util import number
-     except ImportError:
--        from Cryptodome.Hash import MD5, SHA1, SHA256, SHA384, SHA512
-         from Cryptodome.PublicKey import RSA as CryptoRSA, DSA as CryptoDSA
-         from Cryptodome.Signature import pkcs1_15, DSS
-         from Cryptodome.Util import number
---- tests/test_dnssec.py.orig	2018-12-01 07:25:26.000000000 +0100
-+++ tests/test_dnssec.py	2018-12-29 19:51:46.799389525 +0100
-@@ -177,10 +177,6 @@
-                                 abs_dnspython_org, when)
-         self.failUnlessRaises(dns.dnssec.ValidationFailure, bad)
- 
--    def testMakeSHA256DS(self): # type: () -> None
--        ds = dns.dnssec.make_ds(abs_dnspython_org, sep_key, 'SHA256')
--        self.failUnless(ds == good_ds)
--
-     def testAbsoluteDSAGood(self): # type: () -> None
-         dns.dnssec.validate(abs_dsa_soa, abs_dsa_soa_rrsig, abs_dsa_keys, None,
-                             when2)
-@@ -191,14 +187,6 @@
-                                 abs_dsa_keys, None, when2)
-         self.failUnlessRaises(dns.dnssec.ValidationFailure, bad)
- 
--    def testMakeExampleSHA1DS(self): # type: () -> None
--        ds = dns.dnssec.make_ds(abs_example, example_sep_key, 'SHA1')
--        self.failUnless(ds == example_ds_sha1)
--
--    def testMakeExampleSHA256DS(self): # type: () -> None
--        ds = dns.dnssec.make_ds(abs_example, example_sep_key, 'SHA256')
--        self.failUnless(ds == example_ds_sha256)
--
-     @unittest.skipUnless(dns.dnssec._have_ecdsa,
-                          "python ECDSA cannot be imported")
-     def testAbsoluteECDSA256Good(self): # type: () -> None
-@@ -228,5 +216,20 @@
-         self.failUnlessRaises(dns.dnssec.ValidationFailure, bad)
- 
- 
-+class DNSSECMakeDSTestCase(unittest.TestCase):
-+
-+    def testMakeSHA256DS(self): # type: () -> None
-+        ds = dns.dnssec.make_ds(abs_dnspython_org, sep_key, 'SHA256')
-+        self.failUnless(ds == good_ds)
-+
-+    def testMakeExampleSHA1DS(self): # type: () -> None
-+        ds = dns.dnssec.make_ds(abs_example, example_sep_key, 'SHA1')
-+        self.failUnless(ds == example_ds_sha1)
-+
-+    def testMakeExampleSHA256DS(self): # type: () -> None
-+        ds = dns.dnssec.make_ds(abs_example, example_sep_key, 'SHA256')
-+        self.failUnless(ds == example_ds_sha256)
-+
-+
- if __name__ == '__main__':
-     unittest.main()
diff --git a/srcpkgs/python3-dnspython/template b/srcpkgs/python3-dnspython/template
index 3673209c402..b10aaed3d33 100644
--- a/srcpkgs/python3-dnspython/template
+++ b/srcpkgs/python3-dnspython/template
@@ -1,17 +1,24 @@
 # Template file for 'python3-dnspython'
 pkgname=python3-dnspython
-version=1.16.0
-revision=5
+version=2.0.0
+revision=1
 wrksrc="dnspython-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools unzip"
 depends="python3"
+checkdepends="python3-attrs python3-async_generator python3-idna python3-curio
+ python3-trio python3-outcome python3-sniffio python3-sortedcontainers
+ python3-requests python3-requests-toolbelt python3-pycryptodome"
 short_desc="DNS toolkit for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="ISC"
-homepage="http://www.dnspython.org/"
+homepage="https://www.dnspython.org/"
 distfiles="${PYPI_SITE}/d/dnspython/dnspython-${version}.zip"
-checksum=36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01
+checksum=044af09374469c3a39eeea1a146e8cac27daec951f1f1f157b1962fc7cb9d1b7
+
+do_check() {
+	:
+}
 
 post_install() {
 	vlicense LICENSE

From 465cf4b7832efc61d3aed59ef95357fc1439ef54 Mon Sep 17 00:00:00 2001
From: Arjan Mossel <arjanmossel@gmail.com>
Date: Fri, 29 Jan 2021 17:22:13 +0100
Subject: [PATCH 9/9] electrum: update to 4.0.9.

---
 common/shlibs                             |  1 +
 srcpkgs/electrum/patches/no-certifi.patch | 71 ++++++++++++-----------
 srcpkgs/electrum/template                 | 29 ++++++---
 3 files changed, 57 insertions(+), 44 deletions(-)

diff --git a/common/shlibs b/common/shlibs
index fd1a20b0f64..36ab5f5d18a 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3547,6 +3547,7 @@ libdwarves_reorganize.so.1 pahole-1.12_1
 libclthreads.so.2 clthreads-2.4.2_1
 libclxclient.so.3 clxclient-3.9.2_1
 libsecp256k1.so.0 libbitcoin-secp256k1-0.1.0.13_1
+libsecp256k1.so.0 electrum-4.0.9_1
 libbitcoin.so.0 libbitcoin-system-3.5.0_1
 libbitcoin-protocol.so.0 libbitcoin-protocol-3.5.0_1
 libbitcoin-client.so.0 libbitcoin-client-3.5.0_1
diff --git a/srcpkgs/electrum/patches/no-certifi.patch b/srcpkgs/electrum/patches/no-certifi.patch
index eb215543b29..102636e3bc2 100644
--- a/srcpkgs/electrum/patches/no-certifi.patch
+++ b/srcpkgs/electrum/patches/no-certifi.patch
@@ -2,28 +2,31 @@ Upstream: No
 Reason: Avoid certifi dependency
 
 diff --git contrib/requirements/requirements.txt contrib/requirements/requirements.txt
-index 1159a0469..9e406b56e 100644
+index b935a68..6e8fd25 100644
 --- contrib/requirements/requirements.txt
 +++ contrib/requirements/requirements.txt
-@@ -8,4 +8,3 @@ qdarkstyle<2.7
+@@ -4,7 +4,6 @@ qdarkstyle<2.9
  aiorpcx>=0.18,<0.19
- aiohttp>=3.3.0
- aiohttp_socks
+ aiohttp>=3.3.0,<4.0.0
+ aiohttp_socks>=0.3
 -certifi
+ bitstring
+ attrs>=19.2.0
+ 
 diff --git electrum/interface.py electrum/interface.py
-index b5eac439c..14bbd7ab9 100644
+index 810727e..4c90e0d 100644
 --- electrum/interface.py
 +++ electrum/interface.py
-@@ -40,7 +40,6 @@ from aiorpcx import RPCSession, Notification, NetAddress
+@@ -42,7 +42,6 @@ from aiorpcx import RPCSession, Notification, NetAddress, NewlineFramer
  from aiorpcx.curio import timeout_after, TaskTimeout
  from aiorpcx.jsonrpc import JSONRPC, CodeMessageError
  from aiorpcx.rawsocket import RSClient
 -import certifi
  
- from .util import ignore_exceptions, log_exceptions, bfh, SilentTaskGroup
- from . import util
-@@ -57,7 +56,7 @@ if TYPE_CHECKING:
-     from .network import Network
+ from .util import (ignore_exceptions, log_exceptions, bfh, SilentTaskGroup, MySocksProxy,
+                    is_integer, is_non_negative_integer, is_hash256_str, is_hex_str,
+@@ -64,7 +63,7 @@ if TYPE_CHECKING:
+     from .simple_config import SimpleConfig
  
  
 -ca_path = certifi.where()
@@ -32,18 +35,18 @@ index b5eac439c..14bbd7ab9 100644
  BUCKET_NAME_OF_ONION_SERVERS = 'onion'
  
 diff --git electrum/paymentrequest.py electrum/paymentrequest.py
-index fedcd1b3a..cba4879c7 100644
+index 2ce0ff2..17048e0 100644
 --- electrum/paymentrequest.py
 +++ electrum/paymentrequest.py
-@@ -29,7 +29,6 @@ import traceback
- import json
- from typing import Optional
+@@ -29,7 +29,6 @@ from typing import Optional, List, TYPE_CHECKING
+ import asyncio
+ import urllib.parse
  
 -import certifi
- import urllib.parse
  import aiohttp
  
-@@ -54,7 +53,7 @@ _logger = get_logger(__name__)
+ 
+@@ -58,7 +57,7 @@ _logger = get_logger(__name__)
  REQUEST_HEADERS = {'Accept': 'application/bitcoin-paymentrequest', 'User-Agent': 'Electrum'}
  ACK_HEADERS = {'Content-Type':'application/bitcoin-payment','Accept':'application/bitcoin-paymentack','User-Agent':'Electrum'}
  
@@ -53,18 +56,18 @@ index fedcd1b3a..cba4879c7 100644
  ca_keyID = None
  
 diff --git electrum/util.py electrum/util.py
-index 62df080a9..9c96055ba 100644
+index 404e410..305cd9c 100644
 --- electrum/util.py
 +++ electrum/util.py
-@@ -44,7 +44,6 @@ import ssl
- import aiohttp
- from aiohttp_socks import SocksConnector, SocksVer
+@@ -51,7 +51,6 @@ import aiohttp
+ from aiohttp_socks import ProxyConnector, ProxyType
+ import aiorpcx
  from aiorpcx import TaskGroup
 -import certifi
+ import dns.resolver
  
  from .i18n import _
- from .logging import get_logger, Logger
-@@ -62,7 +61,7 @@ def inv_dict(d):
+@@ -70,7 +69,7 @@ def inv_dict(d):
      return {v: k for k, v in d.items()}
  
  
@@ -74,33 +77,31 @@ index 62df080a9..9c96055ba 100644
  
  base_units = {'BTC':8, 'mBTC':5, 'bits':2, 'sat':0}
 diff --git electrum/x509.py electrum/x509.py
-index c38edc77a..1c4065444 100644
+index 78ae26c..634f7aa 100644
 --- electrum/x509.py
 +++ electrum/x509.py
-@@ -343,7 +343,5 @@ def load_certificates(ca_path):
- 
- 
+@@ -343,5 +343,5 @@ def load_certificates(ca_path):
  if __name__ == "__main__":
--    import certifi
--
+     import certifi
+ 
 -    ca_path = certifi.where()
 +    ca_path = '/etc/ssl/certs/ca-certificates.crt'
      ca_list, ca_keyID = load_certificates(ca_path)
 diff --git run_electrum run_electrum
-index 1f5ee2f03..7891c50f0 100755
+index 3caf118..6564784 100755
 --- run_electrum
 +++ run_electrum
-@@ -58,7 +58,6 @@ def check_imports():
+@@ -57,7 +57,6 @@ def check_imports():
+     # pure-python dependencies need to be imported here for pyinstaller
+     try:
          import dns
-         import pyaes
-         import ecdsa
 -        import certifi
          import qrcode
          import google.protobuf
-         import jsonrpclib
-@@ -72,7 +71,7 @@ def check_imports():
+         import aiorpcx
+@@ -69,7 +68,7 @@ def check_imports():
+     from google.protobuf import reflection
      from google.protobuf import descriptor_pb2
-     from jsonrpclib import SimpleJSONRPCServer
      # make sure that certificates are here
 -    assert os.path.exists(certifi.where())
 +    assert os.path.exists('/etc/ssl/certs/ca-certificates.crt')
diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 5c3016675e5..8cc5a8c1a5e 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -1,25 +1,36 @@
 # Template file for 'electrum'
 pkgname=electrum
-version=3.3.8
-revision=2
+version=4.0.9
+revision=1
 build_style=python3-module
-pycompile_module="electrum electrum_gui electrum_plugins"
-hostmakedepends="python3-PyQt5-devel-tools python3-setuptools"
-depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx>=0.18<0.19
- python3-dnspython python3-ecdsa python3-jsonrpclib python3-protobuf
- python3-pyaes python3-pycryptodome python3-PyQt5 python3-qrcode"
-# Missing optional dependencies:
+hostmakedepends="python3-setuptools python3-PyQt5-devel-tools
+ git automake libtool"
+depends="python3-aiohttp>=3.3.0<4.0.0 python3-aiohttp_socks>=0.3
+ python3-aiorpcx>=0.18<0.19 python3-bitstring python3-dnspython python3-ecdsa
+ python3-jsonrpclib python3-protobuf python3-pyaes python3-pycryptodomex
+ python3-PyQt5 python3-qrcode python3-socks python3-cryptography
+ libbitcoin-secp256k1"
+# Optional dependencies:
 #  btchip - BTChip hardware wallet support
 #  trezor - TREZOR hardware wallet support
 #  keepkey - KeepKey hardware wallet support
 #  qdarkstyle - Dark theme
+checkdepends="python3-pytest python3-attrs python3-aiohttp>=3.3.0<4.0.0
+ python3-aiohttp_socks>=0.3 python3-aiorpcx>=0.18<0.19 python3-bitstring
+ python3-dnspython python3-ecdsa python3-jsonrpclib python3-protobuf
+ python3-pyaes python3-pycryptodomex python3-socks python3-qrcode
+ python3-PyQt5 python3-QtPy python3-cryptography libbitcoin-secp256k1"
 short_desc="Lightweight Bitcoin wallet"
 maintainer="Charles E. Lehner <cel@celehner.com>"
 license="MIT"
 homepage="https://electrum.org/"
 # patch doesn't apply for PyPI tarball
 distfiles="https://github.com/spesmilo/electrum/archive/${version}.tar.gz"
-checksum=52addd8c0d08d3cc7cc34015efd67f7396fe30a74ac668b8fb77f6b3b927fd8b
+checksum=67e63afe6a9d8944f872500fbf6312a3840f3fa8ebd0c1aadfbba3147d8b3c24
+
+do_check() {
+	: # PYTHONPATH=$(cd build/lib* && pwd) pytest electrum/tests -v
+}
 
 post_install() {
 	sed -i -e 's|electrum %u|electrum|' \

  parent reply	other threads:[~2021-02-21 18:25 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-29 16:42 [PR PATCH] " ar-jan
2021-01-29 16:48 ` [PR PATCH] [Updated] " ar-jan
2021-02-01 23:48 ` ar-jan
2021-02-02  0:16 ` ar-jan
2021-02-08 21:48 ` ar-jan
2021-02-10  0:37 ` atweiden
2021-02-10  0:43 ` ar-jan
2021-02-21 18:25 ` ar-jan [this message]
2021-02-21 19:02 ` [PR PATCH] [Updated] " ar-jan
2021-02-22 10:20 ` ar-jan
2021-03-08 18:05 ` ar-jan
2021-03-08 18:36 ` ar-jan
2021-03-08 20:26 ` ar-jan
2021-03-08 21:55 ` [PR PATCH] [Updated] " ar-jan
2021-03-08 22:35 ` ar-jan
2021-03-08 23:27 ` [PR PATCH] [Updated] " ar-jan
2021-03-08 23:41 ` ericonr
2021-03-08 23:45 ` ar-jan
2021-03-09  0:18 ` ericonr
2021-03-09  0:34 ` [PR PATCH] [Updated] " ar-jan
2021-03-09  0:47 ` ar-jan
2021-03-09  7:06 ` [PR REVIEW] " ericonr
2021-03-09  7:06 ` ericonr
2021-03-09  7:06 ` ericonr
2021-03-09  7:06 ` ericonr
2021-03-09  7:08 ` ericonr
2021-03-15 19:25 ` ar-jan
2021-03-24 18:56 ` [PR REVIEW] " ericonr
2021-03-24 18:56 ` ericonr
2021-03-24 21:01 ` [PR PATCH] [Updated] " ar-jan
2021-03-24 21:04 ` [PR REVIEW] " ar-jan
2021-03-24 21:14 ` ar-jan
2021-03-24 21:17 ` [PR PATCH] [Merged]: " ericonr

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210221182511.h-zu05d7OUiiWHo2IYw-vrIk9pgwgAV87rqs0wMo5L0@z \
    --to=ar-jan@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).