pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-dotenv



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Mar  9 16:56:18 UTC 2026

Modified Files:
        pkgsrc/devel/py-dotenv: Makefile distinfo

Log Message:
py-dotenv: update to 1.2.2.

Added

    Support for Python 3.14, including the free-threaded (3.14t) build. (#)

Changed

    The dotenv run command now forwards flags directly to the specified command by @bbc2 in #607
    Improved documentation clarity regarding override behavior and the reference page.
    Updated PyPy support to version 3.11.
    Documentation for FIFO file support.
    Support for Python 3.9.

Fixed

    Improved set_key and unset_key behavior when interacting with symlinks by @bbc2 in #790c5
    Corrected the license specifier and added missing Python 3.14 classifiers in package metadata by @JYOuyang in #590

Breaking Changes

    dotenv.set_key and dotenv.unset_key used to follow symlinks in some
    situations. This is no longer the case. For that behavior to be restored in
    all cases, follow_symlinks=True should be used.

    In the CLI, set and unset used to follow symlinks in some situations. This
    is no longer the case.

    dotenv.set_key, dotenv.unset_key and the CLI commands set and unset
    used to reset the file mode of the modified .env file to 0o600 in some
    situations. This is no longer the case: The original mode of the file is now
    preserved. Is the file needed to be created or wasn't a regular file, mode
    0o600 is used.

Misc

    skip 000 permission tests for root user by @burnout-projects in #561
    Bump actions/checkout from 5 to 6 in the github-actions group by @dependabot[bot] in #593
    Add Windows testing to CI by @bbc2 in #604
    Improve workflow efficiency with best practices by @theskumar in #609
    Remove the use of sh in tests by @bbc2 in #612


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/py-dotenv/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-dotenv/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-dotenv/Makefile
diff -u pkgsrc/devel/py-dotenv/Makefile:1.20 pkgsrc/devel/py-dotenv/Makefile:1.21
--- pkgsrc/devel/py-dotenv/Makefile:1.20        Thu Nov 27 16:30:50 2025
+++ pkgsrc/devel/py-dotenv/Makefile     Mon Mar  9 16:56:18 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2025/11/27 16:30:50 adam Exp $
+# $NetBSD: Makefile,v 1.21 2026/03/09 16:56:18 wiz Exp $
 
-DISTNAME=      python_dotenv-1.2.1
+DISTNAME=      python_dotenv-1.2.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/^python_//}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/python-dotenv/}
@@ -18,8 +18,14 @@ TEST_DEPENDS+=       ${PYPKGPREFIX}-test-cov-[
 
 USE_LANGUAGES= # none
 
+# as of 1.2.2
+# 1 failed, 215 passed, 1 skipped
+
 post-install:
        cd ${DESTDIR}${PREFIX}/bin && ${MV} dotenv dotenv-${PYVERSSUFFIX} || ${TRUE}
 
+pre-test:
+       ${LN} -fs ${DESTDIR}${PREFIX}/bin/dotenv-${PYVERSSUFFIX} ${BUILDLINK_DIR}/bin/dotenv
+
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-dotenv/distinfo
diff -u pkgsrc/devel/py-dotenv/distinfo:1.15 pkgsrc/devel/py-dotenv/distinfo:1.16
--- pkgsrc/devel/py-dotenv/distinfo:1.15        Thu Nov 27 16:30:50 2025
+++ pkgsrc/devel/py-dotenv/distinfo     Mon Mar  9 16:56:18 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.15 2025/11/27 16:30:50 adam Exp $
+$NetBSD: distinfo,v 1.16 2026/03/09 16:56:18 wiz Exp $
 
-BLAKE2s (python_dotenv-1.2.1.tar.gz) = 1fe9f31444dcaa0960c44fa02908a3ad5b0853de6d40e7140ac1d9c2d8b2058a
-SHA512 (python_dotenv-1.2.1.tar.gz) = 098f9624a53d1a014abae1499ab9ae54989e22e15338f91b1525c0397845f6be4431d4356792e8310dcbb32075026d9416ef4ac479d3bbd135779410cf9c6ff2
-Size (python_dotenv-1.2.1.tar.gz) = 44221 bytes
+BLAKE2s (python_dotenv-1.2.2.tar.gz) = e6f4d198c88145754d024e40fd4ae0b7f0c45b5c1a2fa87b6a47ee978e17c8c3
+SHA512 (python_dotenv-1.2.2.tar.gz) = 2bd70a739dd76d95c30d8272e80e2e168cd41ed1f367da73e044bbe40bd93f5ee3569ece3d050c130c06dfcc9865d7acdb24ca83243868b551e03289821cb2a1
+Size (python_dotenv-1.2.2.tar.gz) = 50135 bytes



Home | Main Index | Thread Index | Old Index