Search Criteria
Package Details: electron-cash-git android.4.2.3.0.r28.g496418f74-1
Git Clone URL: | https://aur.archlinux.org/electron-cash-git.git (read-only, click to copy) |
---|---|
Package Base: | electron-cash-git |
Description: | Lightweight Bitcoin Cash wallet |
Upstream URL: | http://www.electroncash.org/ |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | 0x647262 |
Maintainer: | 0e4ef622 |
Last Packager: | 0e4ef622 |
Votes: | 6 |
Popularity: | 0.070631 |
First Submitted: | 2017-08-18 14:54 |
Last Updated: | 2020-12-30 18:27 |
Dependencies (32)
- hicolor-icon-theme (hicolor-icon-theme-git)
- python (python-dbg)
- python-dateutil
- python-dnspython (python-dnspython-git, python-dnspython1.16)
- python-ecdsa
- python-jsonrpclib-pelix
- python-protobuf (python-protobuf-git)
- python-pyaes
- python-pyqt5
- python-pysocks
- python-qrcode
- python-requests
- python-six
- python-stem (python-stem-git)
- qt5-base (qt5-base-git, qt5-base-fractional-fix, qt5-base-headless)
- qt5-svg (qt5-svg-git)
- ttf-bitstream-vera
- git (git-git) (make)
- protobuf (protobuf3-git, protobuf-git, protobuf-static) (make)
- python-requests (make)
- python-setuptools (make)
- python-tox (make)
- python-btchip (python-btchip-git) (optional) – Ledger hardware wallet support
- python-hidapi (optional) – Digital Bitbox hardware wallet support
- python-keepkey (optional) – Trezor hardware wallet support
- python-matplotlib (python-matplotlib-git) (optional) – plot transaction history in graphical mode
- python-pycryptodomex (optional) – use PyCryptodome AES implementation instead of pyaes
- python-qdarkstyle (optional) – optional dark theme in graphical mode
- python-rpyc (optional) – send commands to Electrum Python console from an external script
- python-trezor (optional) – Trezor hardware wallet support
- tor (tor-unstable, tor-git) (optional) – Tor support
- zbar (optional) – QR code reading support
Latest Comments
esthersherryworl commented on 2020-08-02 05:39
I agree with your comment about Elecron Cash / Electrum and it not really being much different to BRD. Good argument.
I will start refering to Electron Cash as an SPV wallet. https://sites.google.com/site/bestessaywritingservicereview/
ichundes commented on 2019-07-23 11:20
It would be good to add a dependency on ttf-bitstream-vera as we blacklist DejaVu due to emoji rendering issues:
https://github.com/Electron-Cash/Electron-Cash/pull/1537/commits/1a2dc0c173a1e42f95a1143321a804873b758bb0
marceloneil commented on 2019-04-09 02:09
@pizzaman thanks! This should be fixed now. Please let me know if it still doesn't work.
pizzaman commented on 2019-04-09 01:56
Throws that error when building, only file in that directory is 'Electron Cash-4.0.2.tar.gz'
0x647262 commented on 2017-11-08 16:43
TIL!
felipeac commented on 2017-11-08 16:24
The `tox` command in the PKGBUILD should be changed to `tox2`, otherwise it will try to use the python 3 version of tox, which is not specified as a dependency in this package.
LucidComplex commented on 2017-11-01 04:02
This package also requires `python2-pyqt5` apparently.
0x647262 commented on 2017-10-09 02:08
Thanks a bunch @fatmike!
Would you mind if I added you as a co-maintainer on this package?
fatmike commented on 2017-10-08 08:14
Ok, this patch isn't needed anymore as the maintainer merged my pull request upstream.
fatmike commented on 2017-10-07 18:22
When trying to install this package beside electron, there are file conflicts.
I suggest to apply the following diff to your PKGBUILD until upstream code gets refactored:
diff --git a/PKGBUILD b/PKGBUILD
index 9a386e9..5d7fe42 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -87,6 +87,11 @@ package() {
msg2 'Cleaning up pkgdir...'
find "${pkgdir}" -type d -name .git -exec rm -r '{}' +
find "${pkgdir}" -type f -name .gitignore -exec rm -r '{}' +
+
+ msg2 'Fixing file names...'
+ mv "${pkgdir}/usr/share/pixmaps/electron.png" "${pkgdir}/usr/share/pixmaps/${pkgname/-git/}.png"
+ mv "${pkgdir}/usr/share/applications/electron.desktop" "${pkgdir}/usr/share/applications/${pkgname/-git/}.desktop"
+ sed -i s/Icon=electron/Icon=electron-cash/g "${pkgdir}/usr/share/applications/${pkgname/-git/}.desktop"
}
# vim: ts=2 sw=2 et: