summaryrefslogtreecommitdiff
path: root/devel/py-pytest-runner
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-pytest-runner')
-rw-r--r--devel/py-pytest-runner/Makefile25
-rw-r--r--devel/py-pytest-runner/distinfo3
-rw-r--r--devel/py-pytest-runner/files/patch-setup.py9
-rw-r--r--devel/py-pytest-runner/pkg-descr13
4 files changed, 0 insertions, 50 deletions
diff --git a/devel/py-pytest-runner/Makefile b/devel/py-pytest-runner/Makefile
deleted file mode 100644
index 05e85828798b..000000000000
--- a/devel/py-pytest-runner/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-PORTNAME= pytest-runner
-PORTVERSION= 6.0.1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= bofh@FreeBSD.org
-COMMENT= Test support for pytest runner in setup.py
-WWW= https://github.com/pytest-dev/pytest-runner
-
-LICENSE= MIT
-
-DEPRECATED= pytest-runner depends on deprecated features of setuptools
-EXPIRATION_DATE= 2024-12-31
-
-BUILD_DEPENDS= ${PY_SETUPTOOLS} \
- ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=3.4.1:devel/py-setuptools-scm@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= autoplist pep517 pytest
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/devel/py-pytest-runner/distinfo b/devel/py-pytest-runner/distinfo
deleted file mode 100644
index ebbbbc8656ba..000000000000
--- a/devel/py-pytest-runner/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1701687286
-SHA256 (pytest-runner-6.0.1.tar.gz) = 70d4739585a7008f37bf4933c013fdb327b8878a5a69fcbb3316c88882f0f49b
-SIZE (pytest-runner-6.0.1.tar.gz) = 16056
diff --git a/devel/py-pytest-runner/files/patch-setup.py b/devel/py-pytest-runner/files/patch-setup.py
deleted file mode 100644
index d2372d7538e9..000000000000
--- a/devel/py-pytest-runner/files/patch-setup.py
+++ /dev/null
@@ -1,9 +0,0 @@
---- setup.py.orig 2022-09-10 13:31:26 UTC
-+++ setup.py
-@@ -0,0 +1,6 @@
-+#!/usr/bin/env python
-+
-+import setuptools
-+
-+if __name__ == "__main__":
-+ setuptools.setup()
diff --git a/devel/py-pytest-runner/pkg-descr b/devel/py-pytest-runner/pkg-descr
deleted file mode 100644
index b774ab9399b1..000000000000
--- a/devel/py-pytest-runner/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-Setup scripts can use pytest-runner to add setup.py test support
-for pytest runner.
-
-Notice: pytest-runner depends on deprecated features of setuptools and relies on
-features that break security mechanisms in pip.
-
-It is recommended that you:
-
-- Remove 'pytest-runner' from your setup_requires, preferably removing the
- setup_requires option.
-- Remove 'pytest' and any other testing requirements from tests_require,
- preferably removing the tests_requires option.
-- Select a tool to bootstrap and then run tests such as tox.