git: 63fb232295bd - main - finance/electrum: Fix version requirement, unbreak build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Jan 2022 19:59:26 UTC
The branch main has been updated by ehaupt: URL: https://cgit.FreeBSD.org/ports/commit/?id=63fb232295bd84878b772493a96c140008e9d410 commit 63fb232295bd84878b772493a96c140008e9d410 Author: Emanuel Haupt <ehaupt@FreeBSD.org> AuthorDate: 2022-01-20 19:55:09 +0000 Commit: Emanuel Haupt <ehaupt@FreeBSD.org> CommitDate: 2022-01-20 19:55:09 +0000 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 --- finance/electrum/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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} \