aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-11-27 18:01:08 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-11-27 18:07:46 +0000
commit8d7631e403c1f2cd1a3095868cd987d6d463459b (patch)
tree488d333feee9d50a128489d3339fe9d50a087733
parent90bfd87af8dfbdb40b7b81a0a07282292204bea7 (diff)
devel/py-cachetools3: Remove obsoleted port
Use devel/py-cachetools instead.
-rw-r--r--MOVED1
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-cachetools3/Makefile23
-rw-r--r--devel/py-cachetools3/distinfo3
-rw-r--r--devel/py-cachetools3/pkg-descr2
5 files changed, 1 insertions, 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.