pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-isort



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Feb 22 13:31:56 UTC 2026

Modified Files:
        pkgsrc/devel/py-isort: Makefile PLIST distinfo

Log Message:
py-isort: update to 8.0.0.

Changes

    Update CHANGELOG for version 8.0.0 (#2460) @DanielNoord
    Fix edge case of __future__ import. (#2458) @skv0zsneg
    Fix the Plone profile to be compatible with black (#2457) @ale-rt
    typo fix (#2450) @jsta
    Remove the setuptools plugin (#2427) @DanielNoord
    Turn some warnings into errors in test suite (#2449) @DanielNoord
    chore: replace black with ruff in clean.sh (#2448) @joao-faria-dev
    feat!: remove old finders flag and legacy finder logic (#2446) @joao-faria-dev
    Fix whitespace insensitive check triggering on tabs (#2437) @robsdedude
    Fix line separator detection not considering form feed as white space (#2436) @robsdedude
    Fix #1964: lines_before_import sometimes ignored (#1965) @robsdedude
    Remove reference to 3.9 in README (#2434) @DanielNoord

🚀 Features

    Ensure multiprocessing.Pool is always closed and joined (#2442) @DanielNoord

👷 Continuous Integration

    Simplify CI by putting similar steps into a single action file (#2444) @DanielNoord

📦 Dependencies

    Bump actions/checkout from 5 to 6 in the github-actions group (#2451) @dependabot[bot]
    Bump astral-sh/setup-uv from 6 to 7 in the github-actions group (#2441) @dependabot[bot]


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/py-isort/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/py-isort/PLIST
cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/py-isort/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-isort/Makefile
diff -u pkgsrc/devel/py-isort/Makefile:1.33 pkgsrc/devel/py-isort/Makefile:1.34
--- pkgsrc/devel/py-isort/Makefile:1.33 Sun Oct 12 18:07:30 2025
+++ pkgsrc/devel/py-isort/Makefile      Sun Feb 22 13:31:56 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.33 2025/10/12 18:07:30 wiz Exp $
+# $NetBSD: Makefile,v 1.34 2026/02/22 13:31:56 wiz Exp $
 
-DISTNAME=      isort-7.0.0
+DISTNAME=      isort-8.0.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=i/isort/}
@@ -27,7 +27,7 @@ USE_LANGUAGES=        # none
 .if make(test)
 ALLOW_NETWORK_ACCESS=  yes
 .endif
-# 9 failed, 553 passed, 1 skipped, 1 xfailed, 558 warnings, 2 errors
+# 5 failed, 552 passed, 1 skipped, 1 xpassed, 2 errors
 
 post-install:
 .for bin in isort isort-identify-imports
@@ -35,5 +35,9 @@ post-install:
        ${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
 .endfor
 
+pre-test:
+       ${RM} -f ${BUILDLINK_DIR}/bin/isort
+       ${LN} -s ${PREFIX}/bin/isort-${PYVERSSUFFIX} ${BUILDLINK_DIR}/bin/isort
+
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-isort/PLIST
diff -u pkgsrc/devel/py-isort/PLIST:1.12 pkgsrc/devel/py-isort/PLIST:1.13
--- pkgsrc/devel/py-isort/PLIST:1.12    Sun Oct 12 18:07:30 2025
+++ pkgsrc/devel/py-isort/PLIST Sun Feb 22 13:31:56 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2025/10/12 18:07:30 wiz Exp $
+@comment $NetBSD: PLIST,v 1.13 2026/02/22 13:31:56 wiz Exp $
 bin/isort-${PYVERSSUFFIX}
 bin/isort-identify-imports-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
@@ -35,12 +35,6 @@ ${PYSITELIB}/isort/comments.pyo
 ${PYSITELIB}/isort/core.py
 ${PYSITELIB}/isort/core.pyc
 ${PYSITELIB}/isort/core.pyo
-${PYSITELIB}/isort/deprecated/__init__.py
-${PYSITELIB}/isort/deprecated/__init__.pyc
-${PYSITELIB}/isort/deprecated/__init__.pyo
-${PYSITELIB}/isort/deprecated/finders.py
-${PYSITELIB}/isort/deprecated/finders.pyc
-${PYSITELIB}/isort/deprecated/finders.pyo
 ${PYSITELIB}/isort/exceptions.py
 ${PYSITELIB}/isort/exceptions.pyc
 ${PYSITELIB}/isort/exceptions.pyo
@@ -87,9 +81,6 @@ ${PYSITELIB}/isort/sections.pyo
 ${PYSITELIB}/isort/settings.py
 ${PYSITELIB}/isort/settings.pyc
 ${PYSITELIB}/isort/settings.pyo
-${PYSITELIB}/isort/setuptools_commands.py
-${PYSITELIB}/isort/setuptools_commands.pyc
-${PYSITELIB}/isort/setuptools_commands.pyo
 ${PYSITELIB}/isort/sorting.py
 ${PYSITELIB}/isort/sorting.pyc
 ${PYSITELIB}/isort/sorting.pyo

Index: pkgsrc/devel/py-isort/distinfo
diff -u pkgsrc/devel/py-isort/distinfo:1.31 pkgsrc/devel/py-isort/distinfo:1.32
--- pkgsrc/devel/py-isort/distinfo:1.31 Sun Oct 12 18:07:30 2025
+++ pkgsrc/devel/py-isort/distinfo      Sun Feb 22 13:31:56 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.31 2025/10/12 18:07:30 wiz Exp $
+$NetBSD: distinfo,v 1.32 2026/02/22 13:31:56 wiz Exp $
 
-BLAKE2s (isort-7.0.0.tar.gz) = 3610896d5a9373d8b9be04bef6a4d58ef8f2caae7a440d364aa1194d86b99a33
-SHA512 (isort-7.0.0.tar.gz) = 10078b1af89af6fbaefa88f61c80a94723b2633f9fd209d09e419d55a7c3013f0e8ded262cc7addc7cdce40930fd0bb2451e6ac3935d1c96ce42ac5cef041e44
-Size (isort-7.0.0.tar.gz) = 805049 bytes
+BLAKE2s (isort-8.0.0.tar.gz) = 6af481d2295f721337972d958af4b6c0aad4cf1df9f1341ee1c1614418b5fe89
+SHA512 (isort-8.0.0.tar.gz) = 92e27bc00beb2e78284c3ff09e343fa81f9fcbfa9723e1f7e333d49a568de615da0b1b41726b8a50ee6d86e33fa5fbc9449ad6de43b8f72e6281b36b6981cb9e
+Size (isort-8.0.0.tar.gz) = 769482 bytes



Home | Main Index | Thread Index | Old Index