Received: by mail.netbsd.org (Postfix, from userid 605) id 0A7D5850D8; Fri, 7 May 2021 18:00:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 44DDA84CFC for ; Fri, 7 May 2021 18:00:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id txDylEV0RXIn for ; Fri, 7 May 2021 18:00:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 675AD850C7 for ; Fri, 7 May 2021 18:00:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5AF8CFA95; Fri, 7 May 2021 18:00:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620410435244170" MIME-Version: 1.0 Date: Fri, 7 May 2021 18:00:35 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/py-kombu To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210507180035.5AF8CFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620410435244170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri May 7 18:00:35 UTC 2021 Modified Files: pkgsrc/net/py-kombu: Makefile PLIST distinfo Removed Files: pkgsrc/net/py-kombu: options.mk Log Message: py-kombu: updated to 5.0.2 5.0.2 Bump required amqp version to 5.0.0. 5.0.1 Removed kombu.five from the reference documentation since it no longer exists Adjusted the stable documentation’s version in Sphinx’s configuration since that was overlooked in the latest release 5.0.0 BREAKING CHANGE: Dropped support for Python 2 Add an SQS transport option for custom botocore config 4.6.11 Revert incompatible changes in Default_channel should reconnect automatically 4.6.10 Doc improvement. set _connection in _ensure_connection Fix for the issue reuse connection [bug fix] 4.6.9 Prevent failure if AWS creds are not explicitly defined on predefined. Raise RecoverableConnectionError in maybe_declare with retry on and. Fix for the issue possible fix for Fix: make SQLAlchemy Channel init thread-safe Added integration testing infrastructure for RabbitMQ Initial redis integration tests implementation SQLAlchemy transport: Use Query.with_for_update() instead of deprecated Fix Consumer Encoding Added Integration tests for direct, topic and fanout exchange types Added TTL integration tests Added integration tests for priority queues fix 100% cpu usage on linux while using sqs Modified Mutex to use redis LuaLock implementation Fix: eliminate remaining race conditions from SQLAlchemy Channel Fix connection imaybe_declare Fix for issue Ensure connection when connecting to broker update pyamqp to 2.6 with optional cythonization To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/net/py-kombu/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/py-kombu/PLIST cvs rdiff -u -r1.24 -r1.25 pkgsrc/net/py-kombu/distinfo cvs rdiff -u -r1.5 -r0 pkgsrc/net/py-kombu/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620410435244170 Content-Disposition: inline Content-Length: 3550 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-kombu/Makefile diff -u pkgsrc/net/py-kombu/Makefile:1.28 pkgsrc/net/py-kombu/Makefile:1.29 --- pkgsrc/net/py-kombu/Makefile:1.28 Sat May 16 18:00:31 2020 +++ pkgsrc/net/py-kombu/Makefile Fri May 7 18:00:35 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2020/05/16 18:00:31 adam Exp $ +# $NetBSD: Makefile,v 1.29 2021/05/07 18:00:35 adam Exp $ -DISTNAME= kombu-4.6.8 +DISTNAME= kombu-5.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=k/kombu/} @@ -10,25 +10,23 @@ HOMEPAGE= https://kombu.readthedocs.io/ COMMENT= Messaging framework for Python LICENSE= modified-bsd -DEPENDS+= ${PYPKGPREFIX}-amqp>=2.5.2:../../net/py-amqp +DEPENDS+= ${PYPKGPREFIX}-amqp>=5.0.0:../../net/py-amqp DEPENDS+= ${PYPKGPREFIX}-yaml>=3.10:../../textproc/py-yaml TEST_DEPENDS+= ${PYPKGPREFIX}-Pyro4-[0-9]*:../../devel/py-Pyro TEST_DEPENDS+= ${PYPKGPREFIX}-case>=1.5.2:../../devel/py-case TEST_DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz +TEST_DEPENDS+= ${PYPKGPREFIX}-test>=3.0:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-sugar-[0-9]*:../../devel/py-test-sugar .include "../../lang/python/pyversion.mk" .if ${_PYTHON_VERSION} < 38 DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=0.18:../../devel/py-importlib-metadata .endif -PYTHON_VERSIONED_DEPENDENCIES= test:test - USE_LANGUAGES= # none -REPLACE_PYTHON+= kombu/tests/test_serialization.py +PYTHON_VERSIONS_INCOMPATIBLE= 27 -.include "options.mk" +REPLACE_PYTHON+= kombu/tests/test_serialization.py .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/py-kombu/PLIST diff -u pkgsrc/net/py-kombu/PLIST:1.9 pkgsrc/net/py-kombu/PLIST:1.10 --- pkgsrc/net/py-kombu/PLIST:1.9 Wed Mar 6 18:43:55 2019 +++ pkgsrc/net/py-kombu/PLIST Fri May 7 18:00:35 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2019/03/06 18:43:55 adam Exp $ +@comment $NetBSD: PLIST,v 1.10 2021/05/07 18:00:35 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -80,9 +80,6 @@ ${PYSITELIB}/kombu/entity.pyo ${PYSITELIB}/kombu/exceptions.py ${PYSITELIB}/kombu/exceptions.pyc ${PYSITELIB}/kombu/exceptions.pyo -${PYSITELIB}/kombu/five.py -${PYSITELIB}/kombu/five.pyc -${PYSITELIB}/kombu/five.pyo ${PYSITELIB}/kombu/log.py ${PYSITELIB}/kombu/log.pyc ${PYSITELIB}/kombu/log.pyo Index: pkgsrc/net/py-kombu/distinfo diff -u pkgsrc/net/py-kombu/distinfo:1.24 pkgsrc/net/py-kombu/distinfo:1.25 --- pkgsrc/net/py-kombu/distinfo:1.24 Sun Apr 12 11:01:36 2020 +++ pkgsrc/net/py-kombu/distinfo Fri May 7 18:00:35 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.24 2020/04/12 11:01:36 adam Exp $ +$NetBSD: distinfo,v 1.25 2021/05/07 18:00:35 adam Exp $ -SHA1 (kombu-4.6.8.tar.gz) = af5a0b95b22b6d1c36da5d2a8292112b7979f397 -RMD160 (kombu-4.6.8.tar.gz) = a0fd181e53eae9af684c8e6d03188723a5192ae9 -SHA512 (kombu-4.6.8.tar.gz) = 65b4ebb283ae380388de5d9f8fdc1ec0f41a9910744906b23eb150bc62ecb55ae6d65bb96ad31d8a033f26c2a8dc386939fced393866b6467e77a9760dfa17cc -Size (kombu-4.6.8.tar.gz) = 406196 bytes +SHA1 (kombu-5.0.2.tar.gz) = 2ba573c2595358986651e6ddd87d9f0a3ef7d896 +RMD160 (kombu-5.0.2.tar.gz) = 0cc65d5d36c8b6d469e865e4625b19bb52ae3789 +SHA512 (kombu-5.0.2.tar.gz) = e9d97c65d2a4f50adde367197661bd49e235a8f8a3de65f7725be89d5c9921c6ad59b752c188292ba3d05cd98c9d7930f2f1061bc8c9503082af941c755448d2 +Size (kombu-5.0.2.tar.gz) = 406267 bytes --_----------=_1620410435244170--