Received: by mail.netbsd.org (Postfix, from userid 605) id AA3B484DA5; Wed, 25 Jan 2023 09:37:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5B3AA84DA5 for ; Wed, 25 Jan 2023 09:26:22 +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 suiEmE-Cm74i for ; Wed, 25 Jan 2023 09:26:21 +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 BEAA184CBC for ; Wed, 25 Jan 2023 09:26:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BC050FA90; Wed, 25 Jan 2023 09:26:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167463878191680" MIME-Version: 1.0 Date: Wed, 25 Jan 2023 09:26:21 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-dotenv To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230125092621.BC050FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167463878191680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Jan 25 09:26:21 UTC 2023 Modified Files: pkgsrc/devel/py-dotenv: Makefile distinfo Log Message: py-dotenv: updated to 0.21.1 0.21.1 Added * Use Python 3.11 non-beta in CI * Modernize variables code * Modernize main.py and parser.py code * Improve conciseness of cli.py and __init__.py * Improve error message for `get` and `list` commands when env file can't be opened * Updated Licence to align with BSD OSI template Fixed * Fix Out-of-scope error when "dest" variable is undefined * Fix IPython test warning about deprecated `magic` * Fix type hint for dotenv_path var, add StrPath alias To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-dotenv/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-dotenv/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167463878191680 Content-Disposition: inline Content-Length: 1623 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-dotenv/Makefile diff -u pkgsrc/devel/py-dotenv/Makefile:1.10 pkgsrc/devel/py-dotenv/Makefile:1.11 --- pkgsrc/devel/py-dotenv/Makefile:1.10 Thu Sep 8 15:21:59 2022 +++ pkgsrc/devel/py-dotenv/Makefile Wed Jan 25 09:26:21 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2022/09/08 15:21:59 adam Exp $ +# $NetBSD: Makefile,v 1.11 2023/01/25 09:26:21 adam Exp $ -DISTNAME= python-dotenv-0.21.0 +DISTNAME= python-dotenv-0.21.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^python-//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-dotenv/} Index: pkgsrc/devel/py-dotenv/distinfo diff -u pkgsrc/devel/py-dotenv/distinfo:1.9 pkgsrc/devel/py-dotenv/distinfo:1.10 --- pkgsrc/devel/py-dotenv/distinfo:1.9 Thu Sep 8 15:21:59 2022 +++ pkgsrc/devel/py-dotenv/distinfo Wed Jan 25 09:26:21 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.9 2022/09/08 15:21:59 adam Exp $ +$NetBSD: distinfo,v 1.10 2023/01/25 09:26:21 adam Exp $ -BLAKE2s (python-dotenv-0.21.0.tar.gz) = 677fd3ae25988b24abebefbaa97ed434b2b9bf392f8b21e268e27ae270c1bb72 -SHA512 (python-dotenv-0.21.0.tar.gz) = 618335ad11a1ed8011d7cd0c6a83912b5cc29eddeb967c9594af32c6229ca178b571b08836776661612015ac9cd6753de1935f3f3e0e3b8feb733eccfbb262e7 -Size (python-dotenv-0.21.0.tar.gz) = 34984 bytes +BLAKE2s (python-dotenv-0.21.1.tar.gz) = afd224105d0f88da94d9576dc9356d3088274f00902c444a5b2dd89b433a9eca +SHA512 (python-dotenv-0.21.1.tar.gz) = 30bbff6c4d95ee3e58d0ce895fd9bcceef52f59f66060bcbc66460bb5fff977760d168a09415a6a52587ad560b892da60fafa5824a6634ba3202d07243d2ac8b +Size (python-dotenv-0.21.1.tar.gz) = 35930 bytes --_----------=_167463878191680--