diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2018-03-31 01:54:40 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2018-03-31 01:54:40 +0800 |
commit | 209c56879bb89910905dc4affd04d7a6e7e22a59 (patch) | |
tree | cbd20c4483a8dbb424d8e28ee4319694ed742227 /finance | |
parent | 8d481e5c97de5f4922c3a53216fea741da4a6307 (diff) | |
download | freebsd-ports-gnome-209c56879bb89910905dc4affd04d7a6e7e22a59.tar.gz freebsd-ports-gnome-209c56879bb89910905dc4affd04d7a6e7e22a59.tar.zst freebsd-ports-gnome-209c56879bb89910905dc4affd04d7a6e7e22a59.zip |
Update to 3.1.2
Diffstat (limited to 'finance')
-rw-r--r-- | finance/electrum/Makefile | 2 | ||||
-rw-r--r-- | finance/electrum/distinfo | 6 | ||||
-rw-r--r-- | finance/electrum/files/patch-setup.py | 24 |
3 files changed, 4 insertions, 28 deletions
diff --git a/finance/electrum/Makefile b/finance/electrum/Makefile index e41906a4eee1..e5a3a05f77c0 100644 --- a/finance/electrum/Makefile +++ b/finance/electrum/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= electrum -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.2 CATEGORIES= finance python MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \ http://download.electrum.org/${PORTVERSION}/ diff --git a/finance/electrum/distinfo b/finance/electrum/distinfo index 43d379f9d07b..fcf26fcf915d 100644 --- a/finance/electrum/distinfo +++ b/finance/electrum/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1520916612 -SHA256 (Electrum-3.1.1.tar.gz) = 3195679f898bd763c6db32f46bbdf59fa5a211fd3013507f5c7aab25d9b94337 -SIZE (Electrum-3.1.1.tar.gz) = 2722902 +TIMESTAMP = 1522432217 +SHA256 (Electrum-3.1.2.tar.gz) = f5a67c616984e18646a6369e38d203e49e371ad904e6556ff445110f5ab44559 +SIZE (Electrum-3.1.2.tar.gz) = 2800714 diff --git a/finance/electrum/files/patch-setup.py b/finance/electrum/files/patch-setup.py deleted file mode 100644 index ba52667c4755..000000000000 --- a/finance/electrum/files/patch-setup.py +++ /dev/null @@ -1,24 +0,0 @@ ---- setup.py.orig 2018-03-12 17:25:11 UTC -+++ setup.py -@@ -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") -- if not os.access(opts.root_path + usr_share, os.W_OK) and \ -- not os.access(opts.root_path, os.W_OK): -- if 'XDG_DATA_HOME' in os.environ.keys(): -- usr_share = os.environ['XDG_DATA_HOME'] -- else: -- usr_share = os.path.expanduser('~/.local/share') - 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 ] |