Update to 3.1.1

This commit is contained in:
Emanuel Haupt
2018-03-13 10:09:09 +00:00
parent 80739103c9
commit 153125ed76
3 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= electrum
PORTVERSION= 3.1.0
PORTVERSION= 3.1.1
CATEGORIES= finance python
MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \
http://download.electrum.org/${PORTVERSION}/
+3 -3
View File
@@ -1,3 +1,3 @@
TIMESTAMP = 1520325647
SHA256 (Electrum-3.1.0.tar.gz) = e8f87fc2c36086e550c543e9fc0eac978c3bce85826c353c4f85248427f580c1
SIZE (Electrum-3.1.0.tar.gz) = 2727509
TIMESTAMP = 1520916612
SHA256 (Electrum-3.1.1.tar.gz) = 3195679f898bd763c6db32f46bbdf59fa5a211fd3013507f5c7aab25d9b94337
SIZE (Electrum-3.1.1.tar.gz) = 2722902
+11 -2
View File
@@ -1,6 +1,6 @@
--- setup.py.orig 2017-03-23 01:56:41 UTC
--- setup.py.orig 2018-03-12 17:25:11 UTC
+++ setup.py
@@ -21,12 +21,6 @@ if platform.system() in ['Linux', 'FreeB
@@ -27,12 +27,6 @@ if platform.system() in ['Linux', 'FreeB
parser.add_argument('--root=', dest='root_path', metavar='dir', default='/')
opts, _ = parser.parse_known_args(sys.argv[1:])
usr_share = os.path.join(sys.prefix, "share")
@@ -13,3 +13,12 @@
data_files += [
(os.path.join(usr_share, 'applications/'), ['electrum.desktop']),
(os.path.join(usr_share, 'pixmaps/'), ['icons/electrum.png'])
@@ -86,8 +80,3 @@ setup(
url="https://electrum.org",
long_description="""Lightweight Bitcoin Wallet"""
)
-
-# Optional modules (not required to run Electrum)
-import pip
-opt_modules = requirements_hw + ['pycryptodomex']
-[ pip.main(['install', m]) for m in opt_modules ]