summaryrefslogtreecommitdiff
path: root/dev-python/mypy-extensions
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-23 19:11:26 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-04-23 19:11:26 +0000
commitc2c72a6d069149ecb31753fc14d5831edb7b744d (patch)
tree95b5b199bee02b4cf6b5cdcd86f8f4dd57546289 /dev-python/mypy-extensions
parent7aef9701b4d5d8b6c7de39b6fbb56d242bb8082f (diff)
downloadbaldeagleos-repo-c2c72a6d069149ecb31753fc14d5831edb7b744d.tar.gz
baldeagleos-repo-c2c72a6d069149ecb31753fc14d5831edb7b744d.tar.xz
baldeagleos-repo-c2c72a6d069149ecb31753fc14d5831edb7b744d.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/mypy-extensions-1.1.0.ebuild31
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/mypy-extensions/Manifest b/dev-python/mypy-extensions/Manifest
index edb1536892fa..eb02687d626c 100644
--- a/dev-python/mypy-extensions/Manifest
+++ b/dev-python/mypy-extensions/Manifest
@@ -1 +1,2 @@
DIST mypy_extensions-1.0.0.gh.tar.gz 6097 BLAKE2B 099616ee0bacad62d9ce642c3adb1eebe27546f7c567d1e0fa6ec04d9e6cbcda2966fff9769940cfda8b7d6cc9f33100af9d6f416ab2def26079668a16c354b3 SHA512 ac89a9f60a2c3df3457d5a6ab7ed47b72dd173646ef57f1450556051617e62046405a69fadeb40d2c24e68ce6ffed56d9182365e3203477facdc935e1a807847
+DIST mypy_extensions-1.1.0.gh.tar.gz 6853 BLAKE2B 05c7b9b6ccc873d11642057e8c5c16cc4f7a5ad597a2e90f8d540e4875f01bd4e665929cb0f3294aaac3b0720b4ca3c9697e5676ad42e8e59f1111dfe304d9e1 SHA512 f31428ae3315675c7789eba1a92081a2155babc6d2b229482c2d2f2891e9bb50a182a589adaa5b2afee8c2d08c170946ba3eb3b4f76d219be92ba1876eff4b36
diff --git a/dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild b/dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild
new file mode 100644
index 000000000000..afbcc8ebb4ee
--- /dev/null
+++ b/dev-python/mypy-extensions/mypy-extensions-1.1.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9,10,11,12,13} pypy3 )
+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 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+distutils_enable_tests pytest
+
+python_test() {
+ epytest tests/*.py
+}