git: f10057012323 - main - devel/py-zclockfile: remove duplicate in favor of devel/py-zc.lockfile
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 11 Jan 2025 13:59:48 UTC
The branch main has been updated by rm:
URL: https://cgit.FreeBSD.org/ports/commit/?id=f1005701232336cbaa3d24afd4b01d3c00efcab6
commit f1005701232336cbaa3d24afd4b01d3c00efcab6
Author: Ruslan Makhmatkhanov <rm@FreeBSD.org>
AuthorDate: 2025-01-11 13:59:19 +0000
Commit: Ruslan Makhmatkhanov <rm@FreeBSD.org>
CommitDate: 2025-01-11 13:59:19 +0000
devel/py-zclockfile: remove duplicate in favor of devel/py-zc.lockfile
---
MOVED | 1 +
devel/Makefile | 1 -
devel/py-zclockfile/Makefile | 22 ----------------------
devel/py-zclockfile/distinfo | 3 ---
devel/py-zclockfile/pkg-descr | 8 --------
5 files changed, 1 insertion(+), 34 deletions(-)
diff --git a/MOVED b/MOVED
index c0ffeb732c1d..a446ca7692a3 100644
--- a/MOVED
+++ b/MOVED
@@ -4012,3 +4012,4 @@ devel/py-ExtensionClass||2025-01-11|Remove leaf zope ports that have no sense in
security/py-RestrictedPython||2025-01-11|Remove leaf zope ports that have no sense in absence of zope itself
sysutils/py-zdaemon||2025-01-11|Remove leaf zope ports that have no sense in absence of zope itself
devel/py-DateTime||2025-01-11|Remove leaf zope ports that have no sense in absence of zope itself
+devel/py-zclockfile|devel/py-zc.lockfile|2025-01-11|Switch consumers to latest package version
diff --git a/devel/Makefile b/devel/Makefile
index c3aa360cc25f..9f355ddbbbf3 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -6208,7 +6208,6 @@
SUBDIR += py-yunomi
SUBDIR += py-zarr
SUBDIR += py-zc.lockfile
- SUBDIR += py-zclockfile
SUBDIR += py-zconfig
SUBDIR += py-zfp
SUBDIR += py-zict
diff --git a/devel/py-zclockfile/Makefile b/devel/py-zclockfile/Makefile
deleted file mode 100644
index 70cbd1ec2ea7..000000000000
--- a/devel/py-zclockfile/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-PORTNAME= zclockfile
-DISTVERSION= 2.0
-PORTREVISION= 1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-DISTNAME= zc.lockfile-${DISTVERSION}
-DIST_SUBDIR= zope
-
-MAINTAINER= zope@FreeBSD.org
-COMMENT= Basic inter-process locks
-WWW= https://pypi.org/project/zc.lockfile/
-
-LICENSE= ZPL21
-LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-
-USES= python
-USE_PYTHON= distutils autoplist
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/devel/py-zclockfile/distinfo b/devel/py-zclockfile/distinfo
deleted file mode 100644
index 6f49b571b4e8..000000000000
--- a/devel/py-zclockfile/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1566987285
-SHA256 (zope/zc.lockfile-2.0.tar.gz) = 307ad78227e48be260e64896ec8886edc7eae22d8ec53e4d528ab5537a83203b
-SIZE (zope/zc.lockfile-2.0.tar.gz) = 11923
diff --git a/devel/py-zclockfile/pkg-descr b/devel/py-zclockfile/pkg-descr
deleted file mode 100644
index 91f9632f9906..000000000000
--- a/devel/py-zclockfile/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-The zc.lockfile package provides a basic portable implementation of
-interprocess locks using lock files. The purpose if not specifically
-to lock files, but to simply provide locks with an implementation
-based on file-locking primitives. Of course, these locks could be
-used to mediate access to other files. For example, the ZODB file
-storage implementation uses file locks to mediate access to
-file-storage database files. The database files and lock file files
-are separate files.