summaryrefslogtreecommitdiff
path: root/dev-python/dominate
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/dominate')
-rw-r--r--dev-python/dominate/Manifest1
-rw-r--r--dev-python/dominate/dominate-2.9.1.ebuild26
-rw-r--r--dev-python/dominate/files/dominate-2.9.1-py313.patch37
-rw-r--r--dev-python/dominate/metadata.xml17
4 files changed, 0 insertions, 81 deletions
diff --git a/dev-python/dominate/Manifest b/dev-python/dominate/Manifest
deleted file mode 100644
index 3f68dcdaea0a..000000000000
--- a/dev-python/dominate/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST dominate-2.9.1.tar.gz 37715 BLAKE2B df0271537916e57d50b0d1918f34cdbcd2b1f2bde1e50995593b242e75758f184515dd33518fec0c57c959f5a504dfebf4210814213b159bed2546af7369d915 SHA512 690f7228957cfc3c673bb1863f4e7d15c5e717c4bde24eb8280efc1be07cd50fae514a10b3208ee1b37e4d19d513622c7768b9efb61f11c286430832e873e8e5
diff --git a/dev-python/dominate/dominate-2.9.1.ebuild b/dev-python/dominate/dominate-2.9.1.ebuild
deleted file mode 100644
index 111960066563..000000000000
--- a/dev-python/dominate/dominate-2.9.1.ebuild
+++ /dev/null
@@ -1,26 +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} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Library for creating and manipulating HTML documents using an elegant DOM API"
-HOMEPAGE="
- https://github.com/Knio/dominate/
- https://pypi.org/project/dominate/
-"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-distutils_enable_tests pytest
-
-PATCHES=(
- # https://github.com/Knio/dominate/pull/202
- "${FILESDIR}/${P}-py313.patch"
-)
diff --git a/dev-python/dominate/files/dominate-2.9.1-py313.patch b/dev-python/dominate/files/dominate-2.9.1-py313.patch
deleted file mode 100644
index 944ad8596336..000000000000
--- a/dev-python/dominate/files/dominate-2.9.1-py313.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 58f7d7fdb171f80ed6ce97e6ca4409723975c47f Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
-Date: Sat, 3 Aug 2024 16:07:38 +0200
-Subject: [PATCH] Update tests for docstring dedenting in Python 3.13
-
-Update the `get_expected()` function to account for the fact that
-Python 3.13 automatically dedents all the docstrings, and therefore
-does not require explicitly removing the indent (which effectively
-removes too much indent).
-
-Fixes #199
----
- tests/test_svg.py | 7 ++++++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/tests/test_svg.py b/tests/test_svg.py
-index e5bbec3..ea7d98f 100644
---- a/tests/test_svg.py
-+++ b/tests/test_svg.py
-@@ -1,3 +1,5 @@
-+import sys
-+
- import dominate.svg
- from dominate.tags import *
- from dominate.svg import *
-@@ -14,7 +16,10 @@ def base():
-
-
- def get_expected(func):
-- return func.__doc__.replace('\n ', '\n').strip()
-+ doc = func.__doc__
-+ if sys.version_info < (3, 13):
-+ doc = doc.replace('\n ', '\n')
-+ return doc.strip()
-
-
- def output_test(func):
diff --git a/dev-python/dominate/metadata.xml b/dev-python/dominate/metadata.xml
deleted file mode 100644
index 68c6c4f8a825..000000000000
--- a/dev-python/dominate/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>sbraz@gentoo.org</email>
- <name>Louis Sautier</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">dominate</remote-id>
- <remote-id type="github">Knio/dominate</remote-id>
- <bugs-to>https://github.com/Knio/dominate/issues</bugs-to>
- </upstream>
- <longdescription lang="en">
- Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API. It allows you to write HTML pages in pure Python very concisely, which eliminate the need to learn another template language, and to take advantage of the more powerful features of Python.
- </longdescription>
- <stabilize-allarches/>
-</pkgmetadata>