git: 55a077ccb87b - main - devel/py-pytest-relaxed: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 23 Jun 2025 19:14:34 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=55a077ccb87bb0d6233b69038b6114ba33070ab5
commit 55a077ccb87bb0d6233b69038b6114ba33070ab5
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-06-23 19:14:19 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-06-23 19:14:19 +0000
devel/py-pytest-relaxed: Remove expired port
2025-06-21 devel/py-pytest-relaxed: Depends on expiring devel/py-pytest4
---
MOVED | 1 +
devel/Makefile | 1 -
devel/py-pytest-relaxed/Makefile | 27 ----------------------
devel/py-pytest-relaxed/distinfo | 3 ---
.../files/patch-tests_test__display.py | 23 ------------------
devel/py-pytest-relaxed/pkg-descr | 6 -----
6 files changed, 1 insertion(+), 60 deletions(-)
diff --git a/MOVED b/MOVED
index b119c815f6b6..353f2069c15d 100644
--- a/MOVED
+++ b/MOVED
@@ -4537,3 +4537,4 @@ www/onionshare||2025-06-23|Has expired: Depends on expired devel/py-atomicwrites
deskutils/py-todoman||2025-06-23|Has expired: Depends on expired devel/py-atomicwrites
deskutils/py-khard||2025-06-23|Has expired: Depends on expired devel/py-atomicwrites
deskutils/py-khal||2025-06-23|Has expired: Depends on expired devel/py-atomicwrites
+devel/py-pytest-relaxed||2025-06-23|Has expired: Depends on expiring devel/py-pytest4
diff --git a/devel/Makefile b/devel/Makefile
index 2457fd3e0050..9bdf65528ae9 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5722,7 +5722,6 @@
SUBDIR += py-pytest-recording
SUBDIR += py-pytest-regressions
SUBDIR += py-pytest-regtest
- SUBDIR += py-pytest-relaxed
SUBDIR += py-pytest-remotedata
SUBDIR += py-pytest-repeat
SUBDIR += py-pytest-rerunfailures
diff --git a/devel/py-pytest-relaxed/Makefile b/devel/py-pytest-relaxed/Makefile
deleted file mode 100644
index e9a83c19d882..000000000000
--- a/devel/py-pytest-relaxed/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-PORTNAME= pytest-relaxed
-DISTVERSION= 2.0.2
-PORTREVISION= 1
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= bofh@FreeBSD.org
-COMMENT= Relaxed test discovery/organization for pytest
-WWW= https://pytest-relaxed.readthedocs.io/
-
-LICENSE= BSD2CLAUSE
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Depends on expiring devel/py-pytest4
-EXPIRATION_DATE=2025-06-21
-
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest4>=3:devel/py-pytest4@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}six>=1:devel/py-six@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}decorator>=4:devel/py-decorator@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= autoplist distutils pytest
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/devel/py-pytest-relaxed/distinfo b/devel/py-pytest-relaxed/distinfo
deleted file mode 100644
index 25d4af770626..000000000000
--- a/devel/py-pytest-relaxed/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1711809605
-SHA256 (pytest-relaxed-2.0.2.tar.gz) = 956ea028ec30dbbfb680dd8e7b4a7fb8f80a239595e88bace018bf2c0d718248
-SIZE (pytest-relaxed-2.0.2.tar.gz) = 27876
diff --git a/devel/py-pytest-relaxed/files/patch-tests_test__display.py b/devel/py-pytest-relaxed/files/patch-tests_test__display.py
deleted file mode 100644
index 9bfced24100d..000000000000
--- a/devel/py-pytest-relaxed/files/patch-tests_test__display.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Two tests fail when warnings are present in the test run
-# https://github.com/bitprophet/pytest-relaxed/issues/7
-
---- tests/test_display.py.orig 2022-12-17 02:40:44 UTC
-+++ tests/test_display.py
-@@ -18,7 +18,7 @@ def _expect_regular_output(testdir):
- assert "== FAILURES ==" in output
- assert "AssertionError" in output
- # Summary
-- assert "== 1 failed, 4 passed, 1 skipped in " in output
-+ assert "== 1 failed, 4 passed, 1 skipped" in output
-
-
- class TestRegularFunctions:
-@@ -166,7 +166,7 @@ OtherBehaviors
- assert "== FAILURES ==" in output
- assert "AssertionError" in output
- # Summary
-- assert "== 1 failed, 4 passed, 1 skipped in " in output
-+ assert "== 1 failed, 4 passed, 1 skipped" in output
-
- def test_tests_are_colorized_by_test_result(
- self, testdir, environ # noqa: F811,E501
diff --git a/devel/py-pytest-relaxed/pkg-descr b/devel/py-pytest-relaxed/pkg-descr
deleted file mode 100644
index 5f2e68860ea4..000000000000
--- a/devel/py-pytest-relaxed/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-This pytest plugin takes a page from the rest of Python, where you don't
-have to explicitly note public module/class members, but only need to
-hint as to which ones are private.
-
-By default, all files and objects pytest is told to scan will be considered
-tests; to mark something as not-a-test, simply prefix it with an underscore.