git: ede77e96a379 - main - www/py-requests-cache0: Remove obsoleted port

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Sat, 18 Apr 2026 22:00:57 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ede77e96a3790722b9f2de8568e19e11bf834c0f

commit ede77e96a3790722b9f2de8568e19e11bf834c0f
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-04-18 21:19:52 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-04-18 21:19:52 +0000

    www/py-requests-cache0: Remove obsoleted port
    
    Use www/py-requests-cache instead.
---
 MOVED                            |  1 +
 www/Makefile                     |  1 -
 www/py-requests-cache0/Makefile  | 35 -----------------------------------
 www/py-requests-cache0/distinfo  |  3 ---
 www/py-requests-cache0/pkg-descr | 17 -----------------
 5 files changed, 1 insertion(+), 56 deletions(-)

diff --git a/MOVED b/MOVED
index dcadedfeb285..a7be573bedf0 100644
--- a/MOVED
+++ b/MOVED
@@ -5250,3 +5250,4 @@ multimedia/dvdstyler||2026-04-16|Dead upstream
 emulators/emu64||2026-04-16|Broken, fails to build
 databases/py-sqlglotrs|databases/py-sqlglotc|2026-04-18|Remove obsoleted port. Use databases/py-sqlglotc instead
 devel/py-prettytable0|devel/py-prettytable|2026-04-18|Remove obsoleted port. Use devel/py-prettytable instead
+www/py-requests-cache0|www/py-requests-cache|2026-04-18|Remove obsoleted port. Use www/py-requests-cache instead
diff --git a/www/Makefile b/www/Makefile
index f8f2f9c5a613..048f9269e9c4 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1917,7 +1917,6 @@
     SUBDIR += py-requests
     SUBDIR += py-requests-aws4auth
     SUBDIR += py-requests-cache
-    SUBDIR += py-requests-cache0
     SUBDIR += py-requests-cache93
     SUBDIR += py-requests-file
     SUBDIR += py-requests-futures
diff --git a/www/py-requests-cache0/Makefile b/www/py-requests-cache0/Makefile
deleted file mode 100644
index a3df94805bca..000000000000
--- a/www/py-requests-cache0/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-PORTNAME=	requests-cache
-PORTVERSION=	0.9.8
-CATEGORIES=	www python
-MASTER_SITES=	PYPI
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
-DISTNAME=	requests_cache-${PORTVERSION}
-PKGNAMESUFFIX=	0
-
-MAINTAINER=	sunpoet@FreeBSD.org
-COMMENT=	Persistent cache for python requests
-WWW=		https://requests-cache.readthedocs.io/en/stable/ \
-		https://github.com/requests-cache/requests-cache
-
-LICENSE=	BSD2CLAUSE
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0.0:devel/py-poetry-core@${PY_FLAVOR}
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}appdirs>=1.4.4:devel/py-appdirs@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}attrs>=21.2:devel/py-attrs@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}cattrs>=22.2:devel/py-cattrs@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}requests>=2.22:www/py-requests@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}url-normalize>=1.4:net/py-url-normalize@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}urllib3>=1.25.5,1:net/py-urllib3@${PY_FLAVOR}
-
-USES=		python
-USE_PYTHON=	autoplist concurrent pep517
-
-NO_ARCH=	yes
-
-PORTSCOUT=	limit:^0\.
-
-do-test:
-	cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v
-
-.include <bsd.port.mk>
diff --git a/www/py-requests-cache0/distinfo b/www/py-requests-cache0/distinfo
deleted file mode 100644
index cf4d1c1c4305..000000000000
--- a/www/py-requests-cache0/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1688166360
-SHA256 (requests_cache-0.9.8.tar.gz) = eaed4eb5fd5c392ba5e7cfa000d4ab96b1d32c1a1620f37aa558c43741ac362b
-SIZE (requests_cache-0.9.8.tar.gz) = 1508006
diff --git a/www/py-requests-cache0/pkg-descr b/www/py-requests-cache0/pkg-descr
deleted file mode 100644
index 269efab59819..000000000000
--- a/www/py-requests-cache0/pkg-descr
+++ /dev/null
@@ -1,17 +0,0 @@
-requests-cache is a transparent, persistent cache that provides an easy way to
-get better performance with the python requests library.
-
-Features:
-- Ease of use: Keep using the requests library you're already familiar with. Add
-  caching with a drop-in replacement for requests.Session, or install globally
-  to add caching to all requests functions.
-- Performance: Get sub-millisecond response times for cached responses. When
-  they expire, you still save time with conditional requests.
-- Persistence: Works with several storage backends including SQLite, Redis,
-  MongoDB, and DynamoDB; or save responses as plain JSON files, YAML, and more
-- Customization: Works out of the box with zero config, but with a robust set of
-  features for configuring and extending the library to suit your needs
-- Expiration: Keep your cache fresh using Cache-Control, eagerly cache
-  everything for long-term storage, use URL patterns for selective caching, or
-  any combination of strategies
-- Compatibility: Can be combined with other popular libraries based on requests