summaryrefslogtreecommitdiff
path: root/dev-python/pyspf
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pyspf
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pyspf')
-rw-r--r--dev-python/pyspf/Manifest1
-rw-r--r--dev-python/pyspf/files/pyspf-2.0.14-py313.patch23
-rw-r--r--dev-python/pyspf/metadata.xml13
-rw-r--r--dev-python/pyspf/pyspf-2.0.14-r3.ebuild44
4 files changed, 0 insertions, 81 deletions
diff --git a/dev-python/pyspf/Manifest b/dev-python/pyspf/Manifest
deleted file mode 100644
index b7fa173f03d9..000000000000
--- a/dev-python/pyspf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pyspf-2.0.14.tar.gz 69446 BLAKE2B 95a3bf89ab85aad84dcbbe81ada7f19d23cc689893df1d1317c0e06eb1f6b6d21b1e805d68e7c0c84161d711b9c6067f115d78c8786ce384036f7d0c425269b9 SHA512 ca801a899a80c18cd2c6bb8c125817c29898189805040cce8d29ace7a5aa34b43b9d10545150a1f39abd7bc49cd8da4fe753a04ac9b911e7bb9d77473753eeee
diff --git a/dev-python/pyspf/files/pyspf-2.0.14-py313.patch b/dev-python/pyspf/files/pyspf-2.0.14-py313.patch
deleted file mode 100644
index d6f71759fa49..000000000000
--- a/dev-python/pyspf/files/pyspf-2.0.14-py313.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 7c92c9db299a466aad981dd747bbfd2a57db6827 Mon Sep 17 00:00:00 2001
-From: Colin Watson <cjwatson@debian.org>
-Date: Sun, 12 Jan 2025 15:40:39 +0000
-Subject: [PATCH] Fix doctest registration for Python 3.13
-
-`unittest.makeSuite` was deprecated in Python 3.11 and removed in 3.13.
----
- test/testspf.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test/testspf.py b/test/testspf.py
-index eb8d933..beac450 100644
---- a/test/testspf.py
-+++ b/test/testspf.py
-@@ -225,7 +225,7 @@ def makeSuite(filename):
- return suite
-
- def docsuite():
-- suite = unittest.makeSuite(SPFTestCases,'test')
-+ suite = unittest.defaultTestLoader.loadTestsFromTestCase(SPFTestCases)
- try:
- import authres
- except:
diff --git a/dev-python/pyspf/metadata.xml b/dev-python/pyspf/metadata.xml
deleted file mode 100644
index 17e58e6e0d8a..000000000000
--- a/dev-python/pyspf/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">sdgathman/pyspf</remote-id>
- <remote-id type="pypi">pyspf</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pyspf/pyspf-2.0.14-r3.ebuild b/dev-python/pyspf/pyspf-2.0.14-r3.ebuild
deleted file mode 100644
index 7be5221fc004..000000000000
--- a/dev-python/pyspf/pyspf-2.0.14-r3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-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} )
-PYTHON_REQ_USE="ipv6(+)"
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python implementation of the Sender Policy Framework (SPF)"
-HOMEPAGE="
- https://github.com/sdgathman/pyspf/
- https://pypi.org/project/pyspf/
-"
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/authres[${PYTHON_USEDEP}]
- dev-python/dnspython[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
- test? (
- ${RDEPEND}
- dev-python/pyyaml[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=(
- # https://github.com/sdgathman/pyspf/pull/42
- "${FILESDIR}/${P}-py313.patch"
-)
-
-python_test() {
- cd test || die
- "${EPYTHON}" testspf.py || die "Test fail with ${EPYTHON}"
-}