pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-fasteners



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Jan 31 12:56:13 UTC 2022

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

Log Message:
py-fasteners: updated to 0.17.3

0.17.3:
  - Allow writer to become a reader in thread ReaderWriter lock

0.17.2:
  - Remove unnecessary setuptools pin

0.17.1:
  - Switch to the modern python package build infrastructure

0.17: [NEVER RELEASED]
  - Remove support for python 3.5 and earlier, including 2.7
  - Add support for python 3.9 and 3.10
  - Fix a conflict with django lock
  - Add __version__ and __all__ attributes
  - Fix a failure to parse README as utf-8
  - Move from nosetest to pytest and cleanup testing infrastructure


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-fasteners/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-fasteners/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-fasteners/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-fasteners/Makefile
diff -u pkgsrc/devel/py-fasteners/Makefile:1.8 pkgsrc/devel/py-fasteners/Makefile:1.9
--- pkgsrc/devel/py-fasteners/Makefile:1.8      Thu Jan 27 10:57:31 2022
+++ pkgsrc/devel/py-fasteners/Makefile  Mon Jan 31 12:56:13 2022
@@ -1,27 +1,20 @@
-# $NetBSD: Makefile,v 1.8 2022/01/27 10:57:31 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2022/01/31 12:56:13 adam Exp $
 
-DISTNAME=      fasteners-0.16.3
+DISTNAME=      fasteners-0.17.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=f/fasteners/}
 
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://fasteners.readthedocs.io/
+HOMEPAGE=      https://github.com/harlowja/fasteners
 COMMENT=       Python package providing useful locks
 LICENSE=       apache-2.0
 
-DEPENDS+=      ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
-
-PYTHON_VERSIONED_DEPENDENCIES+=        testtools:test
-
-.include "../../lang/python/pyversion.mk"
-.if ${_PYTHON_VERSION} == 27
-DEPENDS+=      ${PYPKGPREFIX}-monotonic>=0.1:../../time/py-monotonic
-.endif
+PYSETUP=       -c 'from setuptools import setup; setup()'
 
 USE_LANGUAGES= # none
 
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
 .include "../../lang/python/egg.mk"
-.include "../../lang/python/versioned_dependencies.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-fasteners/PLIST
diff -u pkgsrc/devel/py-fasteners/PLIST:1.3 pkgsrc/devel/py-fasteners/PLIST:1.4
--- pkgsrc/devel/py-fasteners/PLIST:1.3 Sat Feb 13 21:42:51 2021
+++ pkgsrc/devel/py-fasteners/PLIST     Mon Jan 31 12:56:13 2022
@@ -1,8 +1,7 @@
-@comment $NetBSD: PLIST,v 1.3 2021/02/13 21:42:51 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2022/01/31 12:56:13 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/fasteners/__init__.py
 ${PYSITELIB}/fasteners/__init__.pyc
@@ -28,27 +27,6 @@ ${PYSITELIB}/fasteners/pywin32/win32con.
 ${PYSITELIB}/fasteners/pywin32/win32file.py
 ${PYSITELIB}/fasteners/pywin32/win32file.pyc
 ${PYSITELIB}/fasteners/pywin32/win32file.pyo
-${PYSITELIB}/fasteners/test.py
-${PYSITELIB}/fasteners/test.pyc
-${PYSITELIB}/fasteners/test.pyo
-${PYSITELIB}/fasteners/tests/__init__.py
-${PYSITELIB}/fasteners/tests/__init__.pyc
-${PYSITELIB}/fasteners/tests/__init__.pyo
-${PYSITELIB}/fasteners/tests/test_decorators.py
-${PYSITELIB}/fasteners/tests/test_decorators.pyc
-${PYSITELIB}/fasteners/tests/test_decorators.pyo
-${PYSITELIB}/fasteners/tests/test_helpers.py
-${PYSITELIB}/fasteners/tests/test_helpers.pyc
-${PYSITELIB}/fasteners/tests/test_helpers.pyo
-${PYSITELIB}/fasteners/tests/test_lock.py
-${PYSITELIB}/fasteners/tests/test_lock.pyc
-${PYSITELIB}/fasteners/tests/test_lock.pyo
-${PYSITELIB}/fasteners/tests/test_process_lock.py
-${PYSITELIB}/fasteners/tests/test_process_lock.pyc
-${PYSITELIB}/fasteners/tests/test_process_lock.pyo
-${PYSITELIB}/fasteners/tests/test_reader_writer_lock.py
-${PYSITELIB}/fasteners/tests/test_reader_writer_lock.pyc
-${PYSITELIB}/fasteners/tests/test_reader_writer_lock.pyo
 ${PYSITELIB}/fasteners/version.py
 ${PYSITELIB}/fasteners/version.pyc
 ${PYSITELIB}/fasteners/version.pyo

Index: pkgsrc/devel/py-fasteners/distinfo
diff -u pkgsrc/devel/py-fasteners/distinfo:1.7 pkgsrc/devel/py-fasteners/distinfo:1.8
--- pkgsrc/devel/py-fasteners/distinfo:1.7      Tue Oct 26 10:18:26 2021
+++ pkgsrc/devel/py-fasteners/distinfo  Mon Jan 31 12:56:13 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 10:18:26 nia Exp $
+$NetBSD: distinfo,v 1.8 2022/01/31 12:56:13 adam Exp $
 
-BLAKE2s (fasteners-0.16.3.tar.gz) = c9c9e4e55404d301f6c31636aed8300a0f148fc2a675edec77b13df6a172df78
-SHA512 (fasteners-0.16.3.tar.gz) = 08d066e04b9e9ecee754cc99884bee491b0b66e746a7c2aac1d586b06c4d9fa75942bfa6c8f7f3426d8258f52e822e121bb06aebe9fc38ab14c0abc6c15135b1
-Size (fasteners-0.16.3.tar.gz) = 24756 bytes
+BLAKE2s (fasteners-0.17.3.tar.gz) = 587a2c7512c25587ebc952f6c09beb0872c3ba97aaefc67a562a98dcbf2714b3
+SHA512 (fasteners-0.17.3.tar.gz) = 9fdf57065eac0374a5a6e41e76561214ba322736ab8496dbc3e25d41736c4ff2b740efb0e8afd692fce49abfbdc9144b28c3b3ae05669744694e6571447feac1
+Size (fasteners-0.17.3.tar.gz) = 18014 bytes



Home | Main Index | Thread Index | Old Index