Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id B40701A9239 for ; Thu, 25 Nov 2021 08:13:30 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EE2EB84D2E; Thu, 25 Nov 2021 08:13:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 31ACE84E8E for ; Thu, 25 Nov 2021 08:13:29 +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 jJcjNUGVF1iM for ; Thu, 25 Nov 2021 08:13:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 523F784CD9 for ; Thu, 25 Nov 2021 08:13:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4BC68FAEC; Thu, 25 Nov 2021 08:13:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163782800865890" MIME-Version: 1.0 Date: Thu, 25 Nov 2021 08:13:28 +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: <20211125081328.4BC68FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163782800865890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Nov 25 08:13:28 UTC 2021 Modified Files: pkgsrc/devel/py-dotenv: Makefile PLIST distinfo Log Message: py-dotenv: updated to 0.19.2 0.19.2 Fixed - In `set_key`, add missing newline character before new entry if necessary. 0.19.1 Added - Add support for Python 3.10. 0.19.0 Changed - Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported. by [@bbc2]). Added - The `dotenv_path` argument of `set_key` and `unset_key` now has a type of `Union[str, os.PathLike]` instead of just `os.PathLike` - The `stream` argument of `load_dotenv` and `dotenv_values` can now be a text stream (`IO[str]`), which includes values like `io.StringIO("foo")` and `open("file.env", "r")` 0.18.0 Changed - Raise `ValueError` if `quote_mode` isn't one of `always`, `auto` or `never` in `set_key` - When writing a value to a .env file with `set_key` or `dotenv set ` - Use single quotes instead of double quotes. - Don't strip surrounding quotes. - In `auto` mode, don't add quotes if the value is only made of alphanumeric characters (as determined by `string.isalnum`). 0.17.1 Fixed - Fixed tests for build environments relying on `PYTHONPATH` [0.17.0 Changed - Make `dotenv get ` only show the value, not `key=value` Added - Add `--override`/`--no-override` option to `dotenv run` 0.16.0 Changed - The default value of the `encoding` parameter for `load_dotenv` and `dotenv_values` is now `"utf-8"` instead of `None` - Fix resolution order in variable expansion with `override=False` To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-dotenv/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-dotenv/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-dotenv/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163782800865890 Content-Disposition: inline Content-Length: 3300 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.5 pkgsrc/devel/py-dotenv/Makefile:1.6 --- pkgsrc/devel/py-dotenv/Makefile:1.5 Mon Nov 9 12:16:14 2020 +++ pkgsrc/devel/py-dotenv/Makefile Thu Nov 25 08:13:28 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2020/11/09 12:16:14 adam Exp $ +# $NetBSD: Makefile,v 1.6 2021/11/25 08:13:28 adam Exp $ -DISTNAME= python-dotenv-0.15.0 +DISTNAME= python-dotenv-0.19.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^python-//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-dotenv/} @@ -15,15 +15,12 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9] TEST_DEPENDS+= ${PYPKGPREFIX}-sh-[0-9]*:../../sysutils/py-sh TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner -.include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} == 27 -DEPENDS+= ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing -.endif - USE_LANGUAGES= # none PYSETUPTESTTARGET= pytest +PYTHON_VERSIONS_INCOMPATIBLE= 27 + post-install: cd ${DESTDIR}${PREFIX}/bin && ${MV} dotenv dotenv-${PYVERSSUFFIX} || ${TRUE} Index: pkgsrc/devel/py-dotenv/PLIST diff -u pkgsrc/devel/py-dotenv/PLIST:1.1 pkgsrc/devel/py-dotenv/PLIST:1.2 --- pkgsrc/devel/py-dotenv/PLIST:1.1 Sat Mar 21 19:41:56 2020 +++ pkgsrc/devel/py-dotenv/PLIST Thu Nov 25 08:13:28 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2020/03/21 19:41:56 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/11/25 08:13:28 adam Exp $ bin/dotenv-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -12,9 +12,6 @@ ${PYSITELIB}/dotenv/__init__.pyo ${PYSITELIB}/dotenv/cli.py ${PYSITELIB}/dotenv/cli.pyc ${PYSITELIB}/dotenv/cli.pyo -${PYSITELIB}/dotenv/compat.py -${PYSITELIB}/dotenv/compat.pyc -${PYSITELIB}/dotenv/compat.pyo ${PYSITELIB}/dotenv/ipython.py ${PYSITELIB}/dotenv/ipython.pyc ${PYSITELIB}/dotenv/ipython.pyo @@ -25,6 +22,9 @@ ${PYSITELIB}/dotenv/parser.py ${PYSITELIB}/dotenv/parser.pyc ${PYSITELIB}/dotenv/parser.pyo ${PYSITELIB}/dotenv/py.typed +${PYSITELIB}/dotenv/variables.py +${PYSITELIB}/dotenv/variables.pyc +${PYSITELIB}/dotenv/variables.pyo ${PYSITELIB}/dotenv/version.py ${PYSITELIB}/dotenv/version.pyc ${PYSITELIB}/dotenv/version.pyo Index: pkgsrc/devel/py-dotenv/distinfo diff -u pkgsrc/devel/py-dotenv/distinfo:1.6 pkgsrc/devel/py-dotenv/distinfo:1.7 --- pkgsrc/devel/py-dotenv/distinfo:1.6 Tue Oct 26 10:18:24 2021 +++ pkgsrc/devel/py-dotenv/distinfo Thu Nov 25 08:13:28 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2021/10/26 10:18:24 nia Exp $ +$NetBSD: distinfo,v 1.7 2021/11/25 08:13:28 adam Exp $ -BLAKE2s (python-dotenv-0.15.0.tar.gz) = 8b6e52317b168003af2a3030dc0219e8b24026c895f2aaaf81fc956fb1536c35 -SHA512 (python-dotenv-0.15.0.tar.gz) = f1f16d2688041259027b12920ac5f47c2d1d96cfc3ec8a362a05ddfb13fee2cf4926c20ad38eda521fcafb6eef8d7895d86dedadef1b1ea2ecd7e33734b07cbe -Size (python-dotenv-0.15.0.tar.gz) = 30008 bytes +BLAKE2s (python-dotenv-0.19.2.tar.gz) = 173a7038dd5ce04b83ec5f5fe293a2e02b608d566d812ca60f00e158ac883082 +SHA512 (python-dotenv-0.19.2.tar.gz) = da411fa02326ec7407bbb6760dd4e5f22eaca60d725ade3ac89302ec4e33d00fe8c231e8a64d0bc22698a93701143085c098b6703e598c6d8c2e4c57b9bafa20 +Size (python-dotenv-0.19.2.tar.gz) = 31508 bytes --_----------=_163782800865890--