sysutils/py-salt: Update to 3004.2

This commit is contained in:
Kirill Ponomarev 2022-06-21 21:45:50 +02:00
parent e0b2bfa92c
commit 4723912355
3 changed files with 4 additions and 16 deletions

View File

@ -1,8 +1,7 @@
# Created by: Christer Edwards <christer.edwards@gmail.com>
PORTNAME= salt
PORTVERSION= 3004.1
PORTREVISION= 1
PORTVERSION= 3004.2
CATEGORIES= sysutils python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1648497978
SHA256 (salt-3004.1.tar.gz) = 7f344a2432648a4f078daa5accc68dcdffe1095cea13ec21e50413560f04c298
SIZE (salt-3004.1.tar.gz) = 17685649
TIMESTAMP = 1655840123
SHA256 (salt-3004.2.tar.gz) = 2fa644f6200d4e36b55846cb372b6e67b6ca0fbec0697f1d8d73e771b665ed70
SIZE (salt-3004.2.tar.gz) = 17685127

View File

@ -1,11 +0,0 @@
--- salt/transport/tcp.py.orig 2022-03-29 19:46:48 UTC
+++ salt/transport/tcp.py
@@ -1561,7 +1561,7 @@ class PubServer(salt.ext.tornado.tcpserver.TCPServer):
@salt.ext.tornado.gen.coroutine
def publish_payload(self, package, _):
log.debug("TCP PubServer sending payload: %s", package)
- payload = self.pack_publish(package)
+ package = self.pack_publish(package)
payload = salt.transport.frame.frame_msg(package["payload"])
to_remove = []