git: 03909f695dbf - main - devel/py-pybind11210: Remove obsoleted port

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Sun, 31 Mar 2024 20:50:33 UTC
The branch main has been updated by sunpoet:

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

commit 03909f695dbf1510ef3c39a1a7f5e03a79a8cada
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-03-31 20:48:45 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-03-31 20:48:45 +0000

    devel/py-pybind11210: Remove obsoleted port
    
    Use devel/py-pybind11 instead.
---
 MOVED                          |  1 +
 devel/Makefile                 |  1 -
 devel/py-pybind11210/Makefile  | 25 -------------------------
 devel/py-pybind11210/distinfo  |  3 ---
 devel/py-pybind11210/pkg-descr |  5 -----
 5 files changed, 1 insertion(+), 34 deletions(-)

diff --git a/MOVED b/MOVED
index 4bef1a9b5ac0..94a6f4fec720 100644
--- a/MOVED
+++ b/MOVED
@@ -3063,3 +3063,4 @@ net-p2p/tooth||2024-03-24|Has expired: Project has been renamed to Tuba. Conside
 www/tidy-devel|www/tidy-html5|2024-03-25|Has expired: no more dev at SF, replaced by www/tidy-html5
 www/tidy-lib|www/tidy-html5|2024-03-25|Has expired: no more dev at SF, replaced by www/tidy-html5
 lang/ruby30||2024-03-31|Has expired: Please migrate to newer versions. Ruby 3.0 will reach its EoL on March 30, 2024
+devel/py-pybind11210|devel/py-pybind11|2024-03-31|Remove obsoleted port. Use devel/py-pybind11 instead
diff --git a/devel/Makefile b/devel/Makefile
index 61d58da07867..781ec5a66f34 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5317,7 +5317,6 @@
     SUBDIR += py-pyasn1
     SUBDIR += py-pyasn1-modules
     SUBDIR += py-pybind11
-    SUBDIR += py-pybind11210
     SUBDIR += py-pybix
     SUBDIR += py-pycadf
     SUBDIR += py-pycalendar
diff --git a/devel/py-pybind11210/Makefile b/devel/py-pybind11210/Makefile
deleted file mode 100644
index 3e0ed51abd0b..000000000000
--- a/devel/py-pybind11210/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-PORTNAME=	pybind11
-PORTVERSION=	2.10.4
-CATEGORIES=	devel python
-MASTER_SITES=	PYPI
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX=	210
-
-MAINTAINER=	sunpoet@FreeBSD.org
-COMMENT=	Seamless operability between C++11 and Python
-WWW=		https://github.com/pybind/pybind11
-
-LICENSE=	BSD3CLAUSE
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=42:devel/py-setuptools@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
-
-USES=		python
-USE_PYTHON=	autoplist concurrent pep517
-
-NO_ARCH=	yes
-
-PORTSCOUT=	limit:^2\.10\.
-
-.include <bsd.port.mk>
diff --git a/devel/py-pybind11210/distinfo b/devel/py-pybind11210/distinfo
deleted file mode 100644
index 9e2a625cb04b..000000000000
--- a/devel/py-pybind11210/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1691069894
-SHA256 (pybind11-2.10.4.tar.gz) = 0bb621d3c45a049aa5923debb87c5c0e2668227905c55ebe8af722608d8ed927
-SIZE (pybind11-2.10.4.tar.gz) = 200838
diff --git a/devel/py-pybind11210/pkg-descr b/devel/py-pybind11210/pkg-descr
deleted file mode 100644
index b32ea63a8631..000000000000
--- a/devel/py-pybind11210/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-pybind11 is a lightweight header-only library that exposes C++ types in Python
-and vice versa, mainly to create Python bindings of existing C++ code. Its goals
-and syntax are similar to the excellent Boost.Python library by David Abrahams:
-to minimize boilerplate code in traditional extension modules by inferring type
-information using compile-time introspection.