Received: by mail.netbsd.org (Postfix, from userid 605) id 129CC84DC3; Tue, 9 Feb 2021 09:03:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4F65884DBC for ; Tue, 9 Feb 2021 09:03:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Ps41afO1dR-O for ; Tue, 9 Feb 2021 09:03:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B5F4284D1D for ; Tue, 9 Feb 2021 09:03:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AFC50FA95; Tue, 9 Feb 2021 09:03:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1612861418118510" MIME-Version: 1.0 Date: Tue, 9 Feb 2021 09:03:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-execnet To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210209090338.AFC50FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1612861418118510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Feb 9 09:03:38 UTC 2021 Modified Files: pkgsrc/devel/py-execnet: Makefile distinfo Log Message: py-execnet: updated to 1.8.0 1.8.0 * Dropped support for Python 3.4. * Fixed internal leak that should make ``execnet`` execute remote code in the main thread more often; previously it would sometimes spawn a thread to execute a ``remote_exec`` call, even when the caller didn't issue multiple ``remote_exec`` calls at the same time. Some frameworks require code to execute in the main thread, so the previous behavior would break them on occasion. * Current working directory is now restored when calling ``script/socketserver.py``. The script now also loops by default when called from the command-line. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-execnet/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-execnet/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1612861418118510 Content-Disposition: inline Content-Length: 2066 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-execnet/Makefile diff -u pkgsrc/devel/py-execnet/Makefile:1.7 pkgsrc/devel/py-execnet/Makefile:1.8 --- pkgsrc/devel/py-execnet/Makefile:1.7 Fri Aug 30 10:52:50 2019 +++ pkgsrc/devel/py-execnet/Makefile Tue Feb 9 09:03:38 2021 @@ -1,17 +1,17 @@ -# $NetBSD: Makefile,v 1.7 2019/08/30 10:52:50 adam Exp $ +# $NetBSD: Makefile,v 1.8 2021/02/09 09:03:38 adam Exp $ -DISTNAME= execnet-1.7.1 +DISTNAME= execnet-1.8.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=e/execnet/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://pypi.python.org/pypi/execnet +HOMEPAGE= https://execnet.readthedocs.io/ COMMENT= Rapid multi-Python deployment LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-apipkg>=1.4:../../devel/py-apipkg BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm +DEPENDS+= ${PYPKGPREFIX}-apipkg>=1.4:../../devel/py-apipkg USE_LANGUAGES= # none Index: pkgsrc/devel/py-execnet/distinfo diff -u pkgsrc/devel/py-execnet/distinfo:1.5 pkgsrc/devel/py-execnet/distinfo:1.6 --- pkgsrc/devel/py-execnet/distinfo:1.5 Fri Aug 30 10:52:50 2019 +++ pkgsrc/devel/py-execnet/distinfo Tue Feb 9 09:03:38 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2019/08/30 10:52:50 adam Exp $ +$NetBSD: distinfo,v 1.6 2021/02/09 09:03:38 adam Exp $ -SHA1 (execnet-1.7.1.tar.gz) = 114f06cec49e9449526d95d84c5b8c70e36a6849 -RMD160 (execnet-1.7.1.tar.gz) = b4e599cdaaaab0208202dc518230087a864e233b -SHA512 (execnet-1.7.1.tar.gz) = 375748c03f8d955bd8fca90d5c6308073c31a978fd7a604257512e0a710f899dec5db8a91d5bb5f16de9b0656e1742da9ab513827a1a065a5125bafcf1e63a70 -Size (execnet-1.7.1.tar.gz) = 174157 bytes +SHA1 (execnet-1.8.0.tar.gz) = b9e0dacb1d9074b6f46aa8ed6e04985c026e02b6 +RMD160 (execnet-1.8.0.tar.gz) = 2fee2009d7a30282c2286a9c50b85f728f7a57bc +SHA512 (execnet-1.8.0.tar.gz) = a0ca76002270daa5cbfa00563a51a3412008f893f755a1eb84f53e228dd61a82bdc94fe6152e30d471b4caff3059c662bb9de82100ec2c96df4d014836452698 +Size (execnet-1.8.0.tar.gz) = 173765 bytes --_----------=_1612861418118510--