git: 13f3619de8bd - 2021Q4 - sysutils/py-salt: remove pyzmq<22.0.0 pin from requirements to fix some states execution.

From: Kirill Ponomarev <krion_at_FreeBSD.org>
Date: Wed, 27 Oct 2021 06:47:08 UTC
The branch 2021Q4 has been updated by krion:

URL: https://cgit.FreeBSD.org/ports/commit/?id=13f3619de8bdc35ce81d7b5d6923782e53faacca

commit 13f3619de8bdc35ce81d7b5d6923782e53faacca
Author:     Kirill Ponomarev <krion@FreeBSD.org>
AuthorDate: 2021-10-27 06:33:33 +0000
Commit:     Kirill Ponomarev <krion@FreeBSD.org>
CommitDate: 2021-10-27 06:47:04 +0000

    sysutils/py-salt: remove pyzmq<22.0.0 pin from requirements to fix some states execution.
    
    (cherry picked from commit ddffa24d1a494a4354d84b553f08f493e0220c11)
---
 sysutils/py-salt/Makefile                            |  1 +
 sysutils/py-salt/files/patch-requirements_zeromq.txt | 10 ++++++++++
 2 files changed, 11 insertions(+)

diff --git a/sysutils/py-salt/Makefile b/sysutils/py-salt/Makefile
index eb09188b9c2c..65c495719ef4 100644
--- a/sysutils/py-salt/Makefile
+++ b/sysutils/py-salt/Makefile
@@ -2,6 +2,7 @@
 
 PORTNAME=	salt
 PORTVERSION=	3004
+PORTREVISION=	1
 CATEGORIES=	sysutils python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
diff --git a/sysutils/py-salt/files/patch-requirements_zeromq.txt b/sysutils/py-salt/files/patch-requirements_zeromq.txt
new file mode 100644
index 000000000000..b6b723131c02
--- /dev/null
+++ b/sysutils/py-salt/files/patch-requirements_zeromq.txt
@@ -0,0 +1,10 @@
+--- requirements/zeromq.txt.old	2021-10-27 08:27:29.631303000 +0200
++++ requirements/zeromq.txt	2021-10-27 08:27:56.967052000 +0200
+@@ -2,5 +2,5 @@
+ -r crypto.txt
+ 
+ pyzmq<=20.0.0 ; python_version < "3.6"
+-pyzmq>=17.0.0,<22.0.0 ; python_version < "3.9"
+-pyzmq>19.0.2,<22.0.0 ; python_version >= "3.9"
++pyzmq>=17.0.0 ; python_version < "3.9"
++pyzmq>19.0.2 ; python_version >= "3.9"