git: f6950e15928b - main - devel/py-pluggy0: Remove obsoleted port

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Tue, 12 Aug 2025 18:16:57 UTC
The branch main has been updated by sunpoet:

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

commit f6950e15928b09fd68daac63f6625d08c70e304a
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-08-12 17:53:43 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-08-12 18:15:28 +0000

    devel/py-pluggy0: Remove obsoleted port
    
    Use devel/py-pluggy instead.
---
 MOVED                      |  1 +
 devel/Makefile             |  1 -
 devel/py-pluggy0/Makefile  | 28 ----------------------------
 devel/py-pluggy0/distinfo  |  3 ---
 devel/py-pluggy0/pkg-descr | 12 ------------
 5 files changed, 1 insertion(+), 44 deletions(-)

diff --git a/MOVED b/MOVED
index b6d56a95e716..24927052de81 100644
--- a/MOVED
+++ b/MOVED
@@ -4718,3 +4718,4 @@ japanese/font-moralerspace-hwnf|japanese/font-moralerspace-hw|2025-08-09|Moraler
 japanese/font-moralerspace-nf|japanese/font-moralerspace|2025-08-09|Moralerspace variants now include Nerd Fonts by default
 multimedia/gstreamer1-validate|devel/gstreamer1-devtools|2025-08-11|Project renamed
 devel/py-types-PyYAML|devel/py-types-pyyaml|2025-08-12|Move devel/py-types-PyYAML to devel/py-types-pyyaml
+devel/py-pluggy0|devel/py-pluggy|2025-08-12|Remove obsoleted port. Use devel/py-pluggy instead
diff --git a/devel/Makefile b/devel/Makefile
index c7afa00fc9eb..02e8a3ca8060 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5486,7 +5486,6 @@
     SUBDIR += py-plex
     SUBDIR += py-plucky
     SUBDIR += py-pluggy
-    SUBDIR += py-pluggy0
     SUBDIR += py-pluginbase
     SUBDIR += py-plugincode
     SUBDIR += py-plux
diff --git a/devel/py-pluggy0/Makefile b/devel/py-pluggy0/Makefile
deleted file mode 100644
index b92cd66f061c..000000000000
--- a/devel/py-pluggy0/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-PORTNAME=	pluggy
-PORTVERSION=	0.13.1
-PORTREVISION=	1
-CATEGORIES=	devel python
-MASTER_SITES=	PYPI
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX=	0
-
-MAINTAINER=	sunpoet@FreeBSD.org
-COMMENT=	Plugin and hook calling mechanisms for Python
-WWW=		https://github.com/pytest-dev/pluggy
-
-LICENSE=	MIT
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
-
-USES=		python
-USE_PYTHON=	autoplist concurrent pep517 pytest4
-
-NO_ARCH=	yes
-TEST_ENV=	PYTHONPATH=${STAGEDIR}${PYTHON_SITELIBDIR}
-
-PORTSCOUT=	limit:^0\.
-
-.include <bsd.port.mk>
diff --git a/devel/py-pluggy0/distinfo b/devel/py-pluggy0/distinfo
deleted file mode 100644
index 1a76a7112f64..000000000000
--- a/devel/py-pluggy0/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1592561546
-SHA256 (pluggy-0.13.1.tar.gz) = 15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0
-SIZE (pluggy-0.13.1.tar.gz) = 57962
diff --git a/devel/py-pluggy0/pkg-descr b/devel/py-pluggy0/pkg-descr
deleted file mode 100644
index 11a9091d123b..000000000000
--- a/devel/py-pluggy0/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-pluggy is the crystallized core of plugin management and hook calling for
-pytest. It enables 500+ plugins to extend and customize pytest's default
-behaviour. Even pytest itself is composed as a set of pluggy plugins
-which are invoked in sequence according to a well defined set of protocols.
-
-It gives users the ability to extend or modify the behaviour of a host
-program by installing a plugin for that program. The plugin code will run
-as part of normal program execution, changing or enhancing certain aspects
-of it.
-
-In essence, pluggy enables function hooking so you can build "pluggable"
-systems.