git: 8d7631e403c1 - main - devel/py-cachetools3: Remove obsoleted port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 27 Nov 2023 18:08:31 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=8d7631e403c1f2cd1a3095868cd987d6d463459b
commit 8d7631e403c1f2cd1a3095868cd987d6d463459b
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-11-27 18:01:08 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-11-27 18:07:46 +0000
devel/py-cachetools3: Remove obsoleted port
Use devel/py-cachetools instead.
---
MOVED | 1 +
devel/Makefile | 1 -
devel/py-cachetools3/Makefile | 23 -----------------------
devel/py-cachetools3/distinfo | 3 ---
devel/py-cachetools3/pkg-descr | 2 --
5 files changed, 1 insertion(+), 29 deletions(-)
diff --git a/MOVED b/MOVED
index f117a38a244e..f056d682efbe 100644
--- a/MOVED
+++ b/MOVED
@@ -8093,3 +8093,4 @@ math/gri||2023-11-26|Has expired: Last upstream release was in 2012 and gnuplot
comms/telldus-core||2023-11-26|Has expired: BROKEN for more than a year
sysutils/openshift-install||2023-11-26|Has expired: BROKEN for more than a year
devel/capnproto080|devel/capnproto1|2023-11-27|Remove obsoleted port. Use devel/capnproto1 instead
+devel/py-cachetools3|devel/py-cachetools|2023-11-27|Remove obsoleted port. Use devel/py-cachetools instead
diff --git a/devel/Makefile b/devel/Makefile
index 3c1d33b11bb9..b842d81450a1 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4398,7 +4398,6 @@
SUBDIR += py-cabby
SUBDIR += py-cached-property
SUBDIR += py-cachetools
- SUBDIR += py-cachetools3
SUBDIR += py-cacheyou
SUBDIR += py-cachy
SUBDIR += py-cadquery-pywrap
diff --git a/devel/py-cachetools3/Makefile b/devel/py-cachetools3/Makefile
deleted file mode 100644
index 729373c2ae09..000000000000
--- a/devel/py-cachetools3/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-PORTNAME= cachetools
-PORTVERSION= 3.1.1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX= 3
-
-MAINTAINER= sunpoet@FreeBSD.org
-COMMENT= Extensible memoizing collections and decorators
-WWW= https://github.com/tkem/cachetools
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-USES= python
-USE_PYTHON= autoplist concurrent distutils
-
-NO_ARCH= yes
-
-# cachetools 4.0.0+ requires Python 3.5+
-PORTSCOUT= limit:^3\.
-
-.include <bsd.port.mk>
diff --git a/devel/py-cachetools3/distinfo b/devel/py-cachetools3/distinfo
deleted file mode 100644
index 657fd10f2a1b..000000000000
--- a/devel/py-cachetools3/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1577523888
-SHA256 (cachetools-3.1.1.tar.gz) = 8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a
-SIZE (cachetools-3.1.1.tar.gz) = 22055
diff --git a/devel/py-cachetools3/pkg-descr b/devel/py-cachetools3/pkg-descr
deleted file mode 100644
index aeefaa8b5813..000000000000
--- a/devel/py-cachetools3/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-This module provides various memoizing collections and decorators, including
-variants of the Python Standard Library's @lru_cache function decorator.