Date: Sunday, April 9, 2023 @ 18:54:47
  Author: felixonmars
Revision: 1443448

archrelease: copy trunk to community-staging-any

Added:
  electrum/repos/community-staging-any/
  
electrum/repos/community-staging-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
    (from rev 1443447, 
electrum/trunk/0001-prevent-requirements.txt-from-being-installed-to-usr.patch)
  electrum/repos/community-staging-any/PKGBUILD
    (from rev 1443447, electrum/trunk/PKGBUILD)
  electrum/repos/community-staging-any/keys/

-----------------------------------------------------------------+
 0001-prevent-requirements.txt-from-being-installed-to-usr.patch |   39 +++++++
 PKGBUILD                                                        |   49 
++++++++++
 2 files changed, 88 insertions(+)

Copied: 
electrum/repos/community-staging-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
 (from rev 1443447, 
electrum/trunk/0001-prevent-requirements.txt-from-being-installed-to-usr.patch)
===================================================================
--- 
community-staging-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
                               (rev 0)
+++ 
community-staging-any/0001-prevent-requirements.txt-from-being-installed-to-usr.patch
       2023-04-09 18:54:47 UTC (rev 1443448)
@@ -0,0 +1,39 @@
+From e72947c8fd50575d69cb005a52f99aeef66f4186 Mon Sep 17 00:00:00 2001
+From: Marcel O'Neil <[email protected]>
+Date: Wed, 7 Mar 2018 15:15:54 -0500
+Subject: [PATCH] prevent requirements.txt from being installed to /usr
+
+---
+ MANIFEST.in | 2 ++
+ setup.py    | 2 +-
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/MANIFEST.in b/MANIFEST.in
+index 4fa5491a..b7355bd9 100644
+--- a/MANIFEST.in
++++ b/MANIFEST.in
+@@ -4,6 +4,8 @@ include electrum.conf.sample
+ include electrum.desktop
+ include *.py
+ include electrum
++include contrib/requirements/requirements.txt
++include contrib/requirements/requirements-hw.txt
+ recursive-include lib *.py
+ recursive-include gui *.py
+ recursive-include plugins *.py
+diff --git a/setup.py b/setup.py
+index 63581a61..030993b5 100755
+--- a/setup.py
++++ b/setup.py
+@@ -20,7 +20,7 @@ version = imp.load_source('version', 'lib/version.py')
+ if sys.version_info[:3] < (3, 4, 0):
+     sys.exit("Error: Electrum requires Python version >= 3.4.0...")
+ 
+-data_files = ['contrib/requirements/' + r for r in ['requirements.txt', 
'requirements-hw.txt']]
++data_files = []
+ 
+ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
+     parser = argparse.ArgumentParser()
+-- 
+2.16.2
+

Copied: electrum/repos/community-staging-any/PKGBUILD (from rev 1443447, 
electrum/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2023-04-09 18:54:47 UTC (rev 1443448)
@@ -0,0 +1,49 @@
+# Maintainer: Christian Rebischke <[email protected]>
+# Co-Maintainer: Santiago Torres-Arias <[email protected]>
+# Contributor: Timothy Redaelli <[email protected]>
+# Contributor: Andy Weidenbaum <[email protected]>
+
+pkgname=electrum
+pkgver=4.3.2
+pkgrel=2
+pkgdesc="Lightweight Bitcoin wallet"
+arch=('any')
+makedepends=('python-setuptools')
+depends=('python-pyaes' 'python-ecdsa' 'python-pbkdf2' 'python-requests' 
'python-qrcode'
+         'python-protobuf' 'python-dnspython' 'python-jsonrpclib-pelix' 
'python-pysocks'
+         'python-pyqt5' 'python-pycryptodomex' 'python-websocket-client' 
'python-certifi'
+         'python-aiorpcx' 'python-aiohttp' 'python-aiohttp-socks'
+         'libsecp256k1' 'python-bitstring')
+optdepends=('python-btchip: BTChip hardware wallet support'
+            'python-hidapi: Digital Bitbox hardware wallet support'
+            'python-matplotlib: plot transaction history in graphical mode'
+            'zbar: QR code reading support'
+            'python-rpyc: send commands to Electrum Python console from an 
external script'
+            'python-qdarkstyle: optional dark theme in graphical mode'
+            'python-pycryptodomex: use PyCryptodome AES implementation instead 
of pyaes'
+         )
+
+url="https://electrum.org";
+license=('MIT')
+source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz";
+        
"${pkgname^}-${pkgver}.tar.gz.asc::https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz.ThomasV.asc";)
+sha512sums=('6221b21c0da26008b81ba2787bb21f8cb298d11cb04b2c99ce60c68fbafdf213b7cec343d96d7a1aa9de6a605067a643479a33246a1ea4ba305c75022d5834cc'
+            'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+prepare() {
+  cd "${pkgname^}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname^}-${pkgver}"
+
+  python setup.py build
+}
+
+package() {
+  cd "${pkgname^}-${pkgver}"
+
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
+}

Reply via email to