summaryrefslogtreecommitdiff
path: root/dev-python/pytest-mypy-plugins
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pytest-mypy-plugins
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-python/pytest-mypy-plugins')
-rw-r--r--dev-python/pytest-mypy-plugins/Manifest1
-rw-r--r--dev-python/pytest-mypy-plugins/metadata.xml15
-rw-r--r--dev-python/pytest-mypy-plugins/pytest-mypy-plugins-3.2.0.ebuild54
3 files changed, 0 insertions, 70 deletions
diff --git a/dev-python/pytest-mypy-plugins/Manifest b/dev-python/pytest-mypy-plugins/Manifest
deleted file mode 100644
index 73a5d8660e22..000000000000
--- a/dev-python/pytest-mypy-plugins/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-mypy-plugins-3.2.0.gh.tar.gz 25568 BLAKE2B 60143ea5316cb3efd1aa356123cd40b52e7883dc201c22f108e0f4fb3aa3e9aae296920a1422cb1f8084c7657c29c955f07892b09a643a88f9024f726209ab6f SHA512 3d5a6490b626f5dbb3f3c946f2ffbbb56cd0128b8234e9d98020d147e9f8f0841c76ca72f3cadb5ad568a5663e403417028fc07f85ec7f0e3a50b592bde734a7
diff --git a/dev-python/pytest-mypy-plugins/metadata.xml b/dev-python/pytest-mypy-plugins/metadata.xml
deleted file mode 100644
index 3da79fbbd29c..000000000000
--- a/dev-python/pytest-mypy-plugins/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>watermanpaint@posteo.net</email>
- <name>Lucio Sauer</name>
- </maintainer>
- <upstream>
- <changelog>
- https://github.com/typeddjango/pytest-mypy-plugins/blob/master/CHANGELOG.md
- </changelog>
- <remote-id type="github">typeddjango/pytest-mypy-plugins</remote-id>
- <remote-id type="pypi">pytest-mypy-plugins</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytest-mypy-plugins/pytest-mypy-plugins-3.2.0.ebuild b/dev-python/pytest-mypy-plugins/pytest-mypy-plugins-3.2.0.ebuild
deleted file mode 100644
index da1e5e5637a9..000000000000
--- a/dev-python/pytest-mypy-plugins/pytest-mypy-plugins-3.2.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-inherit distutils-r1
-
-DESCRIPTION="pytest plugin for testing mypy types, stubs, plugins"
-HOMEPAGE="
- https://pypi.org/project/pytest-mypy-plugins/
- https://github.com/typeddjango/pytest-mypy-plugins/
-"
-
-SRC_URI="https://github.com/typeddjango/pytest-mypy-plugins/archive/refs/tags/${PV}.tar.gz
- -> ${P}.gh.tar.gz"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DOCS="README* CHANGELOG*"
-
-RDEPEND="
- dev-python/decorator[${PYTHON_USEDEP}]
- dev-python/jinja2[${PYTHON_USEDEP}]
- dev-python/jsonschema[${PYTHON_USEDEP}]
- >=dev-python/mypy-1.3.0[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- >=dev-python/pytest-7.0.0[${PYTHON_USEDEP}]
- dev-python/pyyaml[${PYTHON_USEDEP}]
- dev-python/regex[${PYTHON_USEDEP}]
- >=dev-python/tomlkit-0.11[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGINS=( ${PN} )
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # circumvents our test setup by calling "pytest"; do the test manually
- pytest_mypy_plugins/tests/test_explicit_configs.py
- )
- distutils-r1_python_test
-
- local config= testfile="${S}"/pytest_mypy_plugins/tests/test-mypy-config.yml
-
- for config in pytest_mypy_plugins/tests/test_configs/*{1,2}.toml; do
- epytest --mypy-pyproject-toml-file "${config}" "${testfile}"
- done
- for config in pytest_mypy_plugins/tests/test_configs/*.{ini,cfg}; do
- epytest --mypy-ini-file "${config}" "${testfile}"
- done
-}