summaryrefslogtreecommitdiff
path: root/dev-python/attrs
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-01 07:10:50 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-05-01 07:10:50 +0000
commit706713a94f1df034ca3d007ff5919ca256311d8f (patch)
tree6306ed2898fc8baa0a474b00975b5ebae1a3ab48 /dev-python/attrs
parent4ae305f4f8a7a8d004ff4470e38b93ee13c6540c (diff)
downloadbaldeagleos-repo-706713a94f1df034ca3d007ff5919ca256311d8f.tar.gz
baldeagleos-repo-706713a94f1df034ca3d007ff5919ca256311d8f.tar.xz
baldeagleos-repo-706713a94f1df034ca3d007ff5919ca256311d8f.zip
Adding metadata
Diffstat (limited to 'dev-python/attrs')
-rw-r--r--dev-python/attrs/Manifest1
-rw-r--r--dev-python/attrs/attrs-25.4.0.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-python/attrs/Manifest b/dev-python/attrs/Manifest
index 2f7663864a0f..06e0f8beb6a6 100644
--- a/dev-python/attrs/Manifest
+++ b/dev-python/attrs/Manifest
@@ -1,3 +1,2 @@
-DIST attrs-25.4.0.tar.gz 934251 BLAKE2B 5d3a4ef1c5821ac8998a401239d73ea8e6fa2508b779c2772eca9240375835193b0ed62c40d0502f5f31c6582fc9b4a62d5505236d6ae5c878695bfecd336ba4 SHA512 945ea1766adf7e8c8cc8b8f8c63c3dca652553522cede6a09d479f9919a41d43539819da2fe6fdc0e0b42822e353c7cb04b79fb9cecfd54bde5e301574a82341
DIST attrs-26.1.0.tar.gz 952055 BLAKE2B d03f39e5c47775e0c19aaf12ba9df4c2765c61d918f8cecd0d2f9107396259c3af90c4a1ba367845e20efd610a5807676f6209e926166a336c65b12097bb08ff SHA512 f9ae9f3a3d313c5f111870d14308fdbb3e2d75a077e76a3b8304d6b9688902c256d7d5b097eaa41e674c29db08c5034e635ee564252096c62f64b6b817f145ae
DIST attrs-26.1.0.tar.gz.provenance 9709 BLAKE2B 7313bb97036329c6f82179291fc9df3e273a0d3e94214be8b21da715795e6ca73fac517aa92ee83c015b15a0af399acd57cb786b9f76a19346bcd3ce51ce3b0b SHA512 fa6631c56b5f5354c470a880d4b6c9c845a4d209643cf057e9eb47951213dc22922e0c5169dcb4f9fc9ae9ecf5b54bfc36f0384c7cc00807c1431903706bb924
diff --git a/dev-python/attrs/attrs-25.4.0.ebuild b/dev-python/attrs/attrs-25.4.0.ebuild
deleted file mode 100644
index 6807f97b5f69..000000000000
--- a/dev-python/attrs/attrs-25.4.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Attributes without boilerplate"
-HOMEPAGE="
- https://github.com/python-attrs/attrs/
- https://attrs.readthedocs.io/
- https://pypi.org/project/attrs/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
-
-BDEPEND="
- >=dev-python/hatchling-1.26.0[${PYTHON_USEDEP}]
- >=dev-python/hatch-fancy-pypi-readme-23.2.0[${PYTHON_USEDEP}]
- dev-python/hatch-vcs[${PYTHON_USEDEP}]
- test? (
- $(python_gen_impl_dep sqlite)
- $(python_gen_cond_dep '
- dev-python/cloudpickle[${PYTHON_USEDEP}]
- ' python3_{11..14})
- $(python_gen_cond_dep '
- dev-python/zope-interface[${PYTHON_USEDEP}]
- ' python3_{11..14} pypy3_11)
- )
-"
-
-EPYTEST_PLUGINS=( hypothesis )
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
-
- case ${EPYTHON} in
- pypy3*)
- EPYTEST_DESELECT+=(
- # https://github.com/python-attrs/attrs/issues/1418
- tests/test_make.py::TestClassBuilder::test_handles_missing_meta_on_class
- )
- ;;
- esac
-
- epytest
-}