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:   adam
Date:           Sun Dec 18 10:24:46 UTC 2022

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

Log Message:
py-isort: updated to 5.11.3

5.11.3 December 16 2022
- Fixed 2007: settings for py3.11
- Fixed 2038: packaging pypoetry
- Docs: renable portray
- Ci: add minimum GitHub token permissions for workflows
- Ci: general CI improvements
- Ci: add release workflow

5.11.1 December 12 2022
- Hotfix 2031: only call `colorama.init` if `colorama` is available

5.11.0 December 12 2022
- Added official support for Python 3.11
- Dropped support for Python 3.6
- Fixed problematic tests
- Fixed 1960: Rich compatibility
- Fixed 1945, 1986: Python 4.0 upper bound dependency resolving issues @staticdev
- Fixed Pyodide CDN URL
- Docs: clarify description of use_parentheses
- Fixed 1976: `black` compatibility for `.pyi` files @XuehaiPan
- Implemented 1683: magic trailing comma option
- Add missing space in unrecoverable exception message
- Fixed 1895: skip-gitignore: use allow list, not deny list @bmalehorn
- Fixed 1917: infinite loop for unmatched parenthesis
- Docs: shared profiles
- Fixed build-backend values in the example plugins
- Remove reference to jamescurtin/isort-action
- Split long cython import lines
- Update plone profile: copy of `black`, plus three settings.
- Fixed 1815, 1862: Add a command-line flag to sort all re-exports
- Fixed 1854: `lines_before_imports` appending lines after comments
- Remove redundant `multi_line_output = 3` from "Compatibility with black"
- Add tox config example
- Docs: add examples for frozenset and tuple settings
- Docs: add multiple config documentation


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-isort/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-isort/PLIST
cvs rdiff -u -r1.21 -r1.22 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.22 pkgsrc/devel/py-isort/Makefile:1.23
--- pkgsrc/devel/py-isort/Makefile:1.22 Wed Jan  5 15:41:04 2022
+++ pkgsrc/devel/py-isort/Makefile      Sun Dec 18 10:24:46 2022
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2022/01/05 15:41:04 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2022/12/18 10:24:46 adam Exp $
 
-DISTNAME=      isort-5.10.1
+DISTNAME=      isort-5.11.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   2
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=i/isort/}
 
@@ -12,7 +11,10 @@ COMMENT=     Python utility/library to sort 
 LICENSE=       mit
 
 DEPENDS+=      ${PYPKGPREFIX}-colorama>=0.4.3:../../comms/py-colorama
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=6.10.1:../../devel/py-hypothesis
+TEST_DEPENDS+= ${PYPKGPREFIX}-lama>=7.7:../../devel/py-lama
+TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.0:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-toml>=0.10.2:../../textproc/py-toml
 
 USE_LANGUAGES= # none
 
@@ -27,7 +29,7 @@ post-install:
 .endfor
 
 do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests/unit/test_isort.py
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests/unit
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-isort/PLIST
diff -u pkgsrc/devel/py-isort/PLIST:1.6 pkgsrc/devel/py-isort/PLIST:1.7
--- pkgsrc/devel/py-isort/PLIST:1.6     Tue Nov  9 10:17:02 2021
+++ pkgsrc/devel/py-isort/PLIST Sun Dec 18 10:24:46 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2021/11/09 10:17:02 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2022/12/18 10:24:46 adam Exp $
 bin/isort-${PYVERSSUFFIX}
 bin/isort-identify-imports-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -121,9 +121,9 @@ ${PYSITELIB}/isort/stdlibs/py3.pyo
 ${PYSITELIB}/isort/stdlibs/py310.py
 ${PYSITELIB}/isort/stdlibs/py310.pyc
 ${PYSITELIB}/isort/stdlibs/py310.pyo
-${PYSITELIB}/isort/stdlibs/py35.py
-${PYSITELIB}/isort/stdlibs/py35.pyc
-${PYSITELIB}/isort/stdlibs/py35.pyo
+${PYSITELIB}/isort/stdlibs/py311.py
+${PYSITELIB}/isort/stdlibs/py311.pyc
+${PYSITELIB}/isort/stdlibs/py311.pyo
 ${PYSITELIB}/isort/stdlibs/py36.py
 ${PYSITELIB}/isort/stdlibs/py36.pyc
 ${PYSITELIB}/isort/stdlibs/py36.pyo

Index: pkgsrc/devel/py-isort/distinfo
diff -u pkgsrc/devel/py-isort/distinfo:1.21 pkgsrc/devel/py-isort/distinfo:1.22
--- pkgsrc/devel/py-isort/distinfo:1.21 Tue Nov  9 10:17:02 2021
+++ pkgsrc/devel/py-isort/distinfo      Sun Dec 18 10:24:46 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2021/11/09 10:17:02 adam Exp $
+$NetBSD: distinfo,v 1.22 2022/12/18 10:24:46 adam Exp $
 
-BLAKE2s (isort-5.10.1.tar.gz) = 7d8b06243bed8ff59481e3042c2f65fbd5dc83a06ad744a6e65d7694c5dc5763
-SHA512 (isort-5.10.1.tar.gz) = ac02a1ae0138a6d85c06335a286c16def68cfe17915a94b3838a7b9f216f435d16244f3519d04f51ec77f9d68d649d6126c0a6316b7b868ff1f1390bc61ca0d2
-Size (isort-5.10.1.tar.gz) = 174062 bytes
+BLAKE2s (isort-5.11.3.tar.gz) = 21f4da3bf409c044d6d4068659d8fe60f6a6a5e197145e5c2900f1b591c8d302
+SHA512 (isort-5.11.3.tar.gz) = 9eba4eabec8fdd4a1b7344d3d7857837bd028e490ee561d5801835e9e7553c30f2d7b2c6a6a4cb6ce7c916198581e90d147ae27ba9938bc643951e7926de30c8
+Size (isort-5.11.3.tar.gz) = 187083 bytes



Home | Main Index | Thread Index | Old Index