summaryrefslogtreecommitdiff
path: root/dev-python/pydiffx
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/pydiffx
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/pydiffx')
-rw-r--r--dev-python/pydiffx/Manifest1
-rw-r--r--dev-python/pydiffx/files/pydiffx-1.1-fix-py3.12.patch14
-rw-r--r--dev-python/pydiffx/metadata.xml13
-rw-r--r--dev-python/pydiffx/pydiffx-1.1.ebuild47
4 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/pydiffx/Manifest b/dev-python/pydiffx/Manifest
deleted file mode 100644
index da088a44fe9b..000000000000
--- a/dev-python/pydiffx/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST diffx-pydiffx-release-1.1.gh.tar.gz 83721 BLAKE2B fb38b40f4385e00bd8ac45111ac6308b8a5ba7148e74c020c9e7c6b5480466b2301e580f93c98d761087f443339394c124eee061edafd454f0d71839103a6caf SHA512 596d9d70134cadcbdb8fbdd10fe22f8922276d1a822c60430e765b70b0fba9cd16578c94743aef4afaae7ab8409cc2e171028a154cd1231ad6c54dbe229b93e3
diff --git a/dev-python/pydiffx/files/pydiffx-1.1-fix-py3.12.patch b/dev-python/pydiffx/files/pydiffx-1.1-fix-py3.12.patch
deleted file mode 100644
index 1be51cdb6c93..000000000000
--- a/dev-python/pydiffx/files/pydiffx-1.1-fix-py3.12.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-https://github.com/beanbaginc/diffx/pull/5
-From: Arthur Zamarin <arthurzam@gentoo.org>
-Date: Tue, 6 Jun 2023 20:32:44 +0300
-Subject: [PATCH] fix usage of deprecated assertRaisesRegex
-
---- a/pydiffx/tests/testcases.py
-+++ b/pydiffx/tests/testcases.py
-@@ -65,5 +65,5 @@ def assertMultiLineBytesEqual(self, first, second, line_endings='unix'):
-
- @contextmanager
- def assertRaisesMessage(self, exception, message):
-- with self.assertRaisesRegexp(exception, re.escape(message)):
-+ with self.assertRaises(exception, msg=message):
- yield
diff --git a/dev-python/pydiffx/metadata.xml b/dev-python/pydiffx/metadata.xml
deleted file mode 100644
index f0d405500367..000000000000
--- a/dev-python/pydiffx/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">beanbaginc/diffx</remote-id>
- <remote-id type="pypi">pydiffx</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
deleted file mode 100644
index ea35a4d2b4f4..000000000000
--- a/dev-python/pydiffx/pydiffx-1.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2022-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} )
-
-inherit distutils-r1
-
-MY_P=diffx-pydiffx-release-${PV}
-DESCRIPTION="Python module for reading and writing DiffX files"
-HOMEPAGE="
- https://diffx.org/pydiffx/
- https://github.com/beanbaginc/diffx/
- https://pypi.org/project/pydiffx/
-"
-SRC_URI="
- https://github.com/beanbaginc/diffx/archive/pydiffx/release-${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}/python
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="
- dev-python/six[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/kgb[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-fix-py3.12.patch
-)
-
-distutils_enable_tests unittest
-
-src_prepare() {
- # remove .dev tag that breaks revdeps
- sed -e '/tag_build/d' -i setup.cfg || die
- distutils-r1_src_prepare
-}