* [gentoo-commits] repo/gentoo:master commit in: dev-python/dominate/files/, dev-python/dominate/
@ 2023-11-08 14:41 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2023-11-08 14:41 UTC (permalink / raw
To: gentoo-commits
commit: 7badf35b70253965e966a33ad64b24617a0a7651
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 8 14:41:05 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov 8 14:41:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7badf35b
dev-python/dominate: Enable py3.12
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dominate/dominate-2.8.0.ebuild | 7 ++++++-
dev-python/dominate/files/dominate-2.8.0-py312.patch | 20 ++++++++++++++++++++
2 files changed, 26 insertions(+), 1 deletion(-)
diff --git a/dev-python/dominate/dominate-2.8.0.ebuild b/dev-python/dominate/dominate-2.8.0.ebuild
index b6dce9410d70..744551817283 100644
--- a/dev-python/dominate/dominate-2.8.0.ebuild
+++ b/dev-python/dominate/dominate-2.8.0.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..11} )
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
inherit distutils-r1 pypi
@@ -19,3 +19,8 @@ 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
new file mode 100644
index 000000000000..ffd010caf735
--- /dev/null
+++ b/dev-python/dominate/files/dominate-2.8.0-py312.patch
@@ -0,0 +1,20 @@
+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',
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dominate/files/, dev-python/dominate/
@ 2023-12-09 16:13 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2023-12-09 16:13 UTC (permalink / raw
To: gentoo-commits
commit: a383872a60828ce9788c52cc7596a5286521aebf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 15:55:00 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 9 15:55:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a383872a
dev-python/dominate: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dominate/Manifest | 1 -
dev-python/dominate/dominate-2.8.0.ebuild | 26 ----------------------
.../dominate/files/dominate-2.8.0-py312.patch | 20 -----------------
3 files changed, 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',
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-12-09 16:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-08 14:41 [gentoo-commits] repo/gentoo:master commit in: dev-python/dominate/files/, dev-python/dominate/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2023-12-09 16:13 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox