summaryrefslogtreecommitdiff
path: root/dev-python/xattr
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/xattr')
-rw-r--r--dev-python/xattr/Manifest2
-rw-r--r--dev-python/xattr/metadata.xml14
-rw-r--r--dev-python/xattr/xattr-1.3.0.ebuild58
3 files changed, 0 insertions, 74 deletions
diff --git a/dev-python/xattr/Manifest b/dev-python/xattr/Manifest
deleted file mode 100644
index e0ca46fc4d02..000000000000
--- a/dev-python/xattr/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST xattr-1.3.0.tar.gz 17148 BLAKE2B 105c941c7cf78aecc941b59550a1b537f594b044eedee660085438f358cfdc7e3c6dae550072acaf6e1f64046a751d89a36d08e6461585d963e803c735b1aa73 SHA512 ffd680a10f4e5b4c7a00df12e426452d2f2c71986e18429f3064f660145401a4b6d8372c379a1055b36312362c259bc0c186704b7a054c3a3865b862448e6935
-DIST xattr-1.3.0.tar.gz.provenance 9225 BLAKE2B 0be1497bdf4bda73eda67f8ed46d0114fb324c55d493e4378a50e102c1b3e72183c04ac6408ec0e2e74d192e8350da089709b1412a99cae269e0fe0bf5ae6095 SHA512 c69b003c37afa3bce1c3638afed3269367d45598bff4bf44fe75374267aab026ff1f7035af944ce620f4412b8265d617e67afb6167af7ddff6b87a86d56af88c
diff --git a/dev-python/xattr/metadata.xml b/dev-python/xattr/metadata.xml
deleted file mode 100644
index 914c47b33eea..000000000000
--- a/dev-python/xattr/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <bugs-to>https://github.com/xattr/xattr/issues</bugs-to>
- <remote-id type="pypi">xattr</remote-id>
- <remote-id type="github">xattr/xattr</remote-id>
- <maintainer>
- <name>Bob Ippolito</name>
- <email>bob@redivi.com</email>
- </maintainer>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/xattr/xattr-1.3.0.ebuild b/dev-python/xattr/xattr-1.3.0.ebuild
deleted file mode 100644
index 640bf569a5bb..000000000000
--- a/dev-python/xattr/xattr-1.3.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-DISTUTILS_EXT=1
-PYPI_VERIFY_REPO=https://github.com/xattr/xattr
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python wrapper for extended filesystem attributes"
-HOMEPAGE="
- https://pypi.org/project/xattr/
- https://github.com/xattr/xattr
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- $(python_gen_cond_dep '!dev-python/pyxattr[${PYTHON_USEDEP}]')
-"
-BDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/cffi-1.16.0[${PYTHON_USEDEP}]
- ' 'python*')
- test? ( sys-apps/attr )
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_test() {
- cd "${T}" || die
- epytest "${S}"/tests
-}
-
-check_xattr() {
- touch tt || die
-
- setfattr -n "user.testAttr" -v "attribute value" tt || return 1
- getfattr -n "user.testAttr" tt >/dev/null || return 1
-
- rm -f tt
- return 0
-}
-
-src_test() {
- if ! check_xattr; then
- ewarn "Extended attributes not supported on your filesystem, skipping tests"
- return 0
- fi
-
- distutils-r1_src_test
-}