pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-packaging



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Oct  4 17:14:37 UTC 2023

Modified Files:
        pkgsrc/devel/py-packaging: Makefile distinfo
        pkgsrc/devel/py-packaging/files: setup.py

Log Message:
py-packaging: updated to 23.2

23.2 - 2023-10-01

* Document calendar-based versioning scheme (:issue:`716`)
* Enforce that the entire marker string is parsed (:issue:`687`)
* Requirement parsing no longer automatically validates the URL (:issue:`120`)
* Canonicalize names for requirements comparison (:issue:`644`)
* Introduce ``metadata.Metadata`` (along with ``metadata.ExceptionGroup`` and ``metadata.InvalidMetadata``; :issue:`570`)
* Introduce the ``validate`` keyword parameter to ``utils.validate_name()`` (:issue:`570`)
* Introduce ``utils.is_normalized_name()`` (:issue:`570`)
* Make ``utils.parse_sdist_filename()`` and ``utils.parse_wheel_filename()``
  raise ``InvalidSdistFilename`` and ``InvalidWheelFilename``, respectively,
  when the version component of the name is invalid


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-packaging/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-packaging/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-packaging/files/setup.py

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-packaging/Makefile
diff -u pkgsrc/devel/py-packaging/Makefile:1.18 pkgsrc/devel/py-packaging/Makefile:1.19
--- pkgsrc/devel/py-packaging/Makefile:1.18     Thu Apr 13 14:35:10 2023
+++ pkgsrc/devel/py-packaging/Makefile  Wed Oct  4 17:14:37 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2023/04/13 14:35:10 adam Exp $
+# $NetBSD: Makefile,v 1.19 2023/10/04 17:14:37 adam Exp $
 
-DISTNAME=      packaging-23.1
+DISTNAME=      packaging-23.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/packaging/}

Index: pkgsrc/devel/py-packaging/distinfo
diff -u pkgsrc/devel/py-packaging/distinfo:1.15 pkgsrc/devel/py-packaging/distinfo:1.16
--- pkgsrc/devel/py-packaging/distinfo:1.15     Thu Apr 13 14:35:10 2023
+++ pkgsrc/devel/py-packaging/distinfo  Wed Oct  4 17:14:37 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.15 2023/04/13 14:35:10 adam Exp $
+$NetBSD: distinfo,v 1.16 2023/10/04 17:14:37 adam Exp $
 
-BLAKE2s (packaging-23.1.tar.gz) = 40beab2dba276a0d84f6358580131e762532d66a6a238dddcfda68b0d71ec28b
-SHA512 (packaging-23.1.tar.gz) = 0f2246b8bfeb467623ee72e6fdb7c0416e3b4ba0e00102c1528581e0835cc8e731a812b15e2e429d3ebb0001713d95cc2675f443f4597b092e305a3ef2e9137a
-Size (packaging-23.1.tar.gz) = 134240 bytes
+BLAKE2s (packaging-23.2.tar.gz) = e83f564fcfbc7b1e861067cf140c246124fd201785dc160a917a0326835d1749
+SHA512 (packaging-23.2.tar.gz) = 8ab5e9bc4feef2fac1c9044dc8a6f2d41aaf9fe2dae671de8b98c0b1a19dca2169588b87d85a8c990d808b1e76faee65984ce970eaa3282b75e107ca82cc2863
+Size (packaging-23.2.tar.gz) = 146714 bytes

Index: pkgsrc/devel/py-packaging/files/setup.py
diff -u pkgsrc/devel/py-packaging/files/setup.py:1.2 pkgsrc/devel/py-packaging/files/setup.py:1.3
--- pkgsrc/devel/py-packaging/files/setup.py:1.2        Thu Apr 13 14:35:10 2023
+++ pkgsrc/devel/py-packaging/files/setup.py    Wed Oct  4 17:14:37 2023
@@ -12,7 +12,7 @@ package_dir = \
 {'': 'src'}
 
 setup(name='packaging',
-      version='23.1',
+      version='23.2',
       description='Core utilities for Python packages',
       author=None,
       author_email='Donald Stufft <donald%stufft.io@localhost>',



Home | Main Index | Thread Index | Old Index