Received: by mail.netbsd.org (Postfix, from userid 605) id 3B25D84D6D; Sat, 27 Feb 2021 09:59:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7530784D0E for ; Sat, 27 Feb 2021 09:59:55 +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 YhoEAOhXkjUD for ; Sat, 27 Feb 2021 09:59:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A20AC84C71 for ; Sat, 27 Feb 2021 09:59:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 99834FA95; Sat, 27 Feb 2021 09:59:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1614419994138020" MIME-Version: 1.0 Date: Sat, 27 Feb 2021 09:59:54 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/sysutils/py-supervisor To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210227095954.99834FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1614419994138020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Feb 27 09:59:54 UTC 2021 Modified Files: pkgsrc/sysutils/py-supervisor: Makefile PLIST distinfo Log Message: py-supervisor: updated to 4.2.2 4.2.2 (2021-02-26) ------------------ - Fixed a bug where ``supervisord`` could crash if a subprocess exited immediately before trying to kill it. - Fixed a bug where the ``stdout_syslog`` and ``stderr_syslog`` options of a ``[program:x]`` section could not be used unless file logging for the same program had also been configured. The file and syslog options can now be used independently. Patch by Scott Stroupe. - Fixed a bug where the ``logfile`` option in the ``[supervisord]`` section would not log to syslog when the special filename of ``syslog`` was supplied, as is supported by all other log filename options. Patch by Franck Cuny. - Fixed a bug where environment variables defined in ``environment=`` in the ``[supervisord]`` section or a ``[program:x]`` section could not be used in ``%(ENV_x)s`` expansions. Patch by MythRen. - The ``supervisorctl signal`` command now allows a signal to be sent when a process is in the ``STOPPING`` state. Patch by Mike Gould. - ``supervisorctl`` and ``supervisord`` now print help when given ``-?`` in addition to the existing ``-h``/``--help``. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/sysutils/py-supervisor/Makefile \ pkgsrc/sysutils/py-supervisor/distinfo cvs rdiff -u -r1.3 -r1.4 pkgsrc/sysutils/py-supervisor/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1614419994138020 Content-Disposition: inline Content-Length: 3690 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-supervisor/Makefile diff -u pkgsrc/sysutils/py-supervisor/Makefile:1.8 pkgsrc/sysutils/py-supervisor/Makefile:1.9 --- pkgsrc/sysutils/py-supervisor/Makefile:1.8 Thu Sep 10 10:24:30 2020 +++ pkgsrc/sysutils/py-supervisor/Makefile Sat Feb 27 09:59:54 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2020/09/10 10:24:30 adam Exp $ +# $NetBSD: Makefile,v 1.9 2021/02/27 09:59:54 adam Exp $ -DISTNAME= supervisor-4.2.1 +DISTNAME= supervisor-4.2.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=s/supervisor/} Index: pkgsrc/sysutils/py-supervisor/distinfo diff -u pkgsrc/sysutils/py-supervisor/distinfo:1.8 pkgsrc/sysutils/py-supervisor/distinfo:1.9 --- pkgsrc/sysutils/py-supervisor/distinfo:1.8 Thu Sep 10 10:24:30 2020 +++ pkgsrc/sysutils/py-supervisor/distinfo Sat Feb 27 09:59:54 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2020/09/10 10:24:30 adam Exp $ +$NetBSD: distinfo,v 1.9 2021/02/27 09:59:54 adam Exp $ -SHA1 (supervisor-4.2.1.tar.gz) = 39df05359470b617120dbe13cfa8f762e21b4b54 -RMD160 (supervisor-4.2.1.tar.gz) = 9f2048cb324a1a8613d43d926aab846eef54642e -SHA512 (supervisor-4.2.1.tar.gz) = c560ef959f8d580fb20c1812aa2a838c9feaeb3726a754e8084fa8c7406ff9258139b55b081558b8d8f33e4672cdfad40695170f55412a5e85a6c1aed0f11657 -Size (supervisor-4.2.1.tar.gz) = 460935 bytes +SHA1 (supervisor-4.2.2.tar.gz) = 459f871f999046954bb079f8e3d5eca5debbdb7d +RMD160 (supervisor-4.2.2.tar.gz) = 5d1db6b8efe504df5b87fac7c7e4ee3ec0e74ef4 +SHA512 (supervisor-4.2.2.tar.gz) = f787206e6c6a5d3dfc4284974a4a87cbcaeac0c705afb2b8eae53f066413bd9e68095c5309e29625e01469a4748613370e1ac0d7be84b9d72c3623244bdd2eb3 +Size (supervisor-4.2.2.tar.gz) = 463657 bytes Index: pkgsrc/sysutils/py-supervisor/PLIST diff -u pkgsrc/sysutils/py-supervisor/PLIST:1.3 pkgsrc/sysutils/py-supervisor/PLIST:1.4 --- pkgsrc/sysutils/py-supervisor/PLIST:1.3 Wed May 27 14:56:16 2020 +++ pkgsrc/sysutils/py-supervisor/PLIST Sat Feb 27 09:59:54 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/05/27 14:56:16 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/02/27 09:59:54 adam Exp $ bin/echo_supervisord_conf-${PYVERSSUFFIX} bin/pidproxy-${PYVERSSUFFIX} bin/supervisorctl-${PYVERSSUFFIX} @@ -135,11 +135,15 @@ ${PYSITELIB}/supervisor/tests/fixtures/d ${PYSITELIB}/supervisor/tests/fixtures/example/included.conf ${PYSITELIB}/supervisor/tests/fixtures/include.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-1054.conf +${PYSITELIB}/supervisor/tests/fixtures/issue-1170a.conf +${PYSITELIB}/supervisor/tests/fixtures/issue-1170b.conf +${PYSITELIB}/supervisor/tests/fixtures/issue-1170c.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-1224.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-1231a.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-1231b.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-1231c.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-1298.conf +${PYSITELIB}/supervisor/tests/fixtures/issue-550.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-565.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-638.conf ${PYSITELIB}/supervisor/tests/fixtures/issue-663.conf @@ -149,6 +153,9 @@ ${PYSITELIB}/supervisor/tests/fixtures/i ${PYSITELIB}/supervisor/tests/fixtures/listener.py ${PYSITELIB}/supervisor/tests/fixtures/listener.pyc ${PYSITELIB}/supervisor/tests/fixtures/listener.pyo +${PYSITELIB}/supervisor/tests/fixtures/print_env.py +${PYSITELIB}/supervisor/tests/fixtures/print_env.pyc +${PYSITELIB}/supervisor/tests/fixtures/print_env.pyo ${PYSITELIB}/supervisor/tests/fixtures/spew.py ${PYSITELIB}/supervisor/tests/fixtures/spew.pyc ${PYSITELIB}/supervisor/tests/fixtures/spew.pyo --_----------=_1614419994138020--