summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-12-09 16:55:00 +0100
committerMichał Górny <mgorny@gentoo.org>2023-12-09 16:55:00 +0100
commita383872a60828ce9788c52cc7596a5286521aebf (patch)
treee630b25335eb1540b9cea5fb685f2bb143efaa21 /dev-python/dominate
parentdev-python/trimesh: Stabilize 4.0.5 ALLARCHES, #919568 (diff)
downloadgentoo-a383872a60828ce9788c52cc7596a5286521aebf.tar.gz
gentoo-a383872a60828ce9788c52cc7596a5286521aebf.tar.bz2
gentoo-a383872a60828ce9788c52cc7596a5286521aebf.zip
dev-python/dominate: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/dominate')
-rw-r--r--dev-python/dominate/Manifest1
-rw-r--r--dev-python/dominate/dominate-2.8.0.ebuild26
-rw-r--r--dev-python/dominate/files/dominate-2.8.0-py312.patch20
3 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/dominate/Manifest b/dev-python/dominate/Manifest
index cc3dbea7d591..3d39b3036aa3 100644
--- a/dev-python/dominate/Manifest
+++ b/dev-python/dominate/Manifest
@@ -1,2 +1 @@
-DIST dominate-2.8.0.tar.gz 37089 BLAKE2B 651ff9ee21c4f5331ef990acfead146f816fc45309740220f68714c3accf7b98661a31400fe050c6b2119525749e9a132f8764d60b72661f7abf5246ebdb5835 SHA512 91b392af8e081dcf0df9f09aabe2cb4d8147bb07a398c5f9f06443fc2664d881afa372c8d4d0583b21e9f9bf687d1d14601e96a33a8ae6e099e1e039821f97df
DIST dominate-2.9.0.tar.gz 36289 BLAKE2B 8cc2ee67b027d4f1466ace7d39b47a330c87f5f0396b3bfe6a4b7ec3baff8e4e89d3f2cb7c6aa036aacd67743966508e50cdc289412781830f27878a614914ba SHA512 aec4f67bdc1ee0df9f0ed3fec5e41fca044d930d69bd7c508420d8b06d4f21f5d5fc9ec867cea68bd82723cac7b4df645748592dc4ded9213ec60f5bb6a6f421
diff --git a/dev-python/dominate/dominate-2.8.0.ebuild b/dev-python/dominate/dominate-2.8.0.ebuild
deleted file mode 100644
index 744551817283..000000000000
--- a/dev-python/dominate/dominate-2.8.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-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 x86"
-
-distutils_enable_tests pytest
-
-PATCHES=(
- # quick hack, already fixed in git
- "${FILESDIR}/${P}-py312.patch"
-)
diff --git a/dev-python/dominate/files/dominate-2.8.0-py312.patch b/dev-python/dominate/files/dominate-2.8.0-py312.patch
deleted file mode 100644
index ffd010caf735..000000000000
--- a/dev-python/dominate/files/dominate-2.8.0-py312.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/setup.py b/setup.py
-index f83890f..5454cc3 100644
---- a/setup.py
-+++ b/setup.py
-@@ -19,14 +19,11 @@ Public License along with dominate. If not, see
-
- from setuptools import setup
-
--import imp
--_version = imp.load_source("dominate._version", "dominate/_version.py")
--
- long_description = open('README.md').read()
-
- setup(
- name = 'dominate',
-- version = _version.__version__,
-+ version = '2.8.0',
- author = 'Tom Flanagan and Jake Wharton',
- author_email = 'tom@zkpq.ca',
- license = 'LGPLv3',