git: 132c1ac88e5f - main - devel/py-serpent: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Fri, 21 Mar 2025 20:46:53 UTC
The branch main has been updated by rene:

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

commit 132c1ac88e5fa88f93cb4b7a21f91f9fa2d0160b
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-03-21 20:46:47 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-03-21 20:46:47 +0000

    devel/py-serpent: Remove expired port
    
    2025-03-21 devel/py-serpent: Used exclusively by now deprecated devel/py-pyro
---
 MOVED                      |  1 +
 devel/Makefile             |  1 -
 devel/py-serpent/Makefile  | 22 ----------------------
 devel/py-serpent/distinfo  |  3 ---
 devel/py-serpent/pkg-descr |  5 -----
 5 files changed, 1 insertion(+), 31 deletions(-)

diff --git a/MOVED b/MOVED
index 2cd3f5a74520..a7093c49e7d2 100644
--- a/MOVED
+++ b/MOVED
@@ -4211,3 +4211,4 @@ textproc/rubygem-cucumber-gherkin29|textproc/rubygem-cucumber-gherkin|2025-03-19
 devel/utf8cpp3|devel/utf8cpp|2025-03-19|Remove obsoleted port. Use devel/utf8cpp instead
 devel/rubygem-flipper026|devel/rubygem-flipper-gitlab|2025-03-19|Please use devel/rubygem-flipper-gitlab instead
 devel/py-pyro||2025-03-21|Has expired: Upstream development stopped, not compatible with py311, use pyro5 instead
+devel/py-serpent||2025-03-21|Has expired: Used exclusively by now deprecated devel/py-pyro
diff --git a/devel/Makefile b/devel/Makefile
index fb9a78213b8a..b8a627e7ac43 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5888,7 +5888,6 @@
     SUBDIR += py-semver
     SUBDIR += py-sentry-sdk
     SUBDIR += py-serializable
-    SUBDIR += py-serpent
     SUBDIR += py-session-info
     SUBDIR += py-setoptconf
     SUBDIR += py-setproctitle
diff --git a/devel/py-serpent/Makefile b/devel/py-serpent/Makefile
deleted file mode 100644
index c4980f77799f..000000000000
--- a/devel/py-serpent/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-PORTNAME=	serpent
-DISTVERSION=	1.28
-PORTREVISION=	1
-CATEGORIES=	devel python
-MASTER_SITES=	PYPI
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER=	rm@FreeBSD.org
-COMMENT=	Simple serialization library based on ast.literal_eval
-WWW=		https://pypi.org/project/serpent/
-
-LICENSE=	MIT
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-DEPRECATED=	Used exclusively by now deprecated devel/py-pyro
-EXPIRATION_DATE=2025-03-21
-
-NO_ARCH=	yes
-USES=		python
-USE_PYTHON=	autoplist concurrent distutils
-
-.include <bsd.port.mk>
diff --git a/devel/py-serpent/distinfo b/devel/py-serpent/distinfo
deleted file mode 100644
index d84c98d45371..000000000000
--- a/devel/py-serpent/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1572814007
-SHA256 (serpent-1.28.tar.gz) = f306336ca09aa38e526f3b03cab58eb7e45af09981267233167bcf3bfd6436ab
-SIZE (serpent-1.28.tar.gz) = 26912
diff --git a/devel/py-serpent/pkg-descr b/devel/py-serpent/pkg-descr
deleted file mode 100644
index 47a2fdb68fca..000000000000
--- a/devel/py-serpent/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Serpent is a simple serialization library based on ast.literal_eval.
-
-Because it only serializes literals and recreates the objects using
-ast.literal_eval(), the serialized data is safe to transport to other
-machines (over the network for instance) and de-serialize it there.