summaryrefslogtreecommitdiff
path: root/dev-python/pytest-flask
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pytest-flask')
-rw-r--r--dev-python/pytest-flask/Manifest1
-rw-r--r--dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch27
-rw-r--r--dev-python/pytest-flask/metadata.xml24
-rw-r--r--dev-python/pytest-flask/pytest-flask-1.3.0.ebuild33
4 files changed, 0 insertions, 85 deletions
diff --git a/dev-python/pytest-flask/Manifest b/dev-python/pytest-flask/Manifest
deleted file mode 100644
index 2812cc719cff..000000000000
--- a/dev-python/pytest-flask/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-flask-1.3.0.tar.gz 35816 BLAKE2B 008c7f2acdc320dcab3e1745fb8e546a1f4cbdf75155db85f00bb70aea2eb3efa46d68f39fac114e3ddc3675b45d3d6d9a7bba8eb0c331c36e7f3d08c83c5da0 SHA512 4512e261cf6b284540ea9dda4cade52be57776c16f0cc7185755cbec294e526268753dbe663200a6ab3dee2ac0cc42df080d8f0045f88feac5de115fcc71ac21
diff --git a/dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch b/dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch
deleted file mode 100644
index e5c748b61174..000000000000
--- a/dev-python/pytest-flask/files/flask-1.3.0-py3.14.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 6cc0d1162f31302cd95fcca49744847da3071672 Mon Sep 17 00:00:00 2001
-From: Alfred Wingate <parona@protonmail.com>
-Date: Sat, 21 Mar 2026 21:01:11 +0200
-Subject: [PATCH] Explicitly use the fork start method on all platforms
-
-The default has changed away from fork on all platforms in python 3.14.
-
-See-Also: cfc804776f24c7230627b15bd935e5da5f809db7
-See-Also: https://github.com/python/cpython/issues/84559
-Signed-off-by: Alfred Wingate <parona@protonmail.com>
---- a/src/pytest_flask/live_server.py
-+++ b/src/pytest_flask/live_server.py
-@@ -9,9 +9,8 @@ import time
- import pytest
-
-
--# force 'fork' on macOS
--if platform.system() == "Darwin":
-- multiprocessing = multiprocessing.get_context("fork")
-+# errors on start methods other than "fork". Default changed away from it for MacOS in 3.8 and the rest of the platforms in 3.14.
-+multiprocessing = multiprocessing.get_context("fork") # type: ignore[assignment]
-
-
- class LiveServer: # pragma: no cover
---
-2.54.0
-
diff --git a/dev-python/pytest-flask/metadata.xml b/dev-python/pytest-flask/metadata.xml
deleted file mode 100644
index c756da298f94..000000000000
--- a/dev-python/pytest-flask/metadata.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>arsen@gentoo.org</email>
- <name>Arsen Arsenović</name>
- </maintainer>
- <maintainer type="person" proxied="yes">
- <email>stkw0@disroot.org</email>
- <name>David Roman</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">pytest-flask</remote-id>
- <remote-id type="github">pytest-dev/pytest-flask</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytest-flask/pytest-flask-1.3.0.ebuild b/dev-python/pytest-flask/pytest-flask-1.3.0.ebuild
deleted file mode 100644
index 74803228b96f..000000000000
--- a/dev-python/pytest-flask/pytest-flask-1.3.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{13..14} )
-inherit distutils-r1 pypi
-
-DESCRIPTION="A set of pytest fixtures to test Flask applications"
-HOMEPAGE="
- https://pytest-flask.readthedocs.io/
- https://github.com/pytest-dev/pytest-flask/
- https://pypi.org/project/pytest-flask/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="
- dev-python/flask[${PYTHON_USEDEP}]
- dev-python/werkzeug[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGIN_LOAD_VIA_ENV=1
-EPYTEST_PLUGINS=( "${PN}" )
-distutils_enable_tests pytest
-
-PATCHES=(
- "${FILESDIR}"/flask-1.3.0-py3.14.patch
-)