diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2022-01-20 19:55:09 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2022-01-20 19:55:09 +0000 |
commit | 63fb232295bd84878b772493a96c140008e9d410 (patch) | |
tree | c81db5aae735655d6008f2458ecec859b1a3b502 | |
parent | 8f787a8b49cd531b0b800052bd33c4e301c0367d (diff) |
finance/electrum: Fix version requirement, unbreak build
This has been prompted by by the recent update of dns/py-dnspython.
After analyzing the version requirements of electrum it turns out this
has been a typo.
Notified by: pkg-fallout
-rw-r--r-- | finance/electrum/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/finance/electrum/Makefile b/finance/electrum/Makefile index aec5a89561de..ef44e4e034b4 100644 --- a/finance/electrum/Makefile +++ b/finance/electrum/Makefile @@ -2,6 +2,7 @@ PORTNAME= electrum PORTVERSION= 4.1.5 +PORTREVISION= 1 CATEGORIES= finance python MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \ http://download.electrum.org/${PORTVERSION}/ @@ -22,7 +23,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp-socks>=0.3:net/py-aiohttp-socks@${PY ${PYTHON_PKGNAMEPREFIX}bitstring>0:devel/py-bitstring@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cryptography>=2.6:security/py-cryptography@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dnspython<2.0:dns/py-dnspython@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dnspython>=2.0:dns/py-dnspython@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonrpclib-pelix>0:devel/py-jsonrpclib-pelix@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pbkdf2>=1.3:security/py-pbkdf2@${PY_FLAVOR} \ |