summaryrefslogtreecommitdiff
path: root/dev-python/mypy-extensions
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-python/mypy-extensions
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-python/mypy-extensions')
-rw-r--r--dev-python/mypy-extensions/Manifest1
-rw-r--r--dev-python/mypy-extensions/metadata.xml10
-rw-r--r--dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild41
3 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/mypy-extensions/Manifest b/dev-python/mypy-extensions/Manifest
deleted file mode 100644
index 41bba785f3b5..000000000000
--- a/dev-python/mypy-extensions/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mypy_extensions-1.1.0.gh.tar.gz 6853 BLAKE2B 05c7b9b6ccc873d11642057e8c5c16cc4f7a5ad597a2e90f8d540e4875f01bd4e665929cb0f3294aaac3b0720b4ca3c9697e5676ad42e8e59f1111dfe304d9e1 SHA512 f31428ae3315675c7789eba1a92081a2155babc6d2b229482c2d2f2891e9bb50a182a589adaa5b2afee8c2d08c170946ba3eb3b4f76d219be92ba1876eff4b36
diff --git a/dev-python/mypy-extensions/metadata.xml b/dev-python/mypy-extensions/metadata.xml
deleted file mode 100644
index 5e95859f915a..000000000000
--- a/dev-python/mypy-extensions/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches />
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild b/dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild
deleted file mode 100644
index c48203d8da87..000000000000
--- a/dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-DISTUTILS_USE_PEP517=flit
-
-inherit distutils-r1
-
-MY_P=mypy_extensions-${PV}
-DESCRIPTION="Type system extensions for programs checked with mypy"
-HOMEPAGE="
- https://www.mypy-lang.org/
- https://github.com/python/mypy_extensions/
-"
-SRC_URI="
- https://github.com/python/mypy_extensions/archive/${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
- case ${EPYTHON} in
- python3.14)
- EPYTEST_DESELECT+=(
- tests/testextensions.py::TypedDictTests::test_py36_class_syntax_usage
- )
- ;;
- esac
-
- epytest tests/*.py
-}