[gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-rtd-dark-mode/

2024-05-14 Thread Julien Roy
commit: 8b5c074b0b19dbcb8a3b5b0ce8cdbdca85d8fb8f
Author: Julien Roy  jroy  ca>
AuthorDate: Tue May 14 18:58:45 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Tue May 14 18:58:45 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b5c074b

dev-python/sphinx-rtd-dark-mode: enable py3.12

Closes: https://bugs.gentoo.org/931428
Signed-off-by: Julien Roy  jroy.ca>

 dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild 
b/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild
index 4d7c4a49f2..f6a045dbea 100644
--- a/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild
+++ b/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-rtd-dark-mode/

2022-11-12 Thread Anna Vyalkova
commit: 33dce6653916d53287eff808b745b9ebb262d79c
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Nov 12 10:37:49 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Nov 12 17:16:05 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=33dce665

dev-python/sphinx-rtd-dark-mode: new package, add 1.2.4

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/sphinx-rtd-dark-mode/Manifest   |  1 +
 dev-python/sphinx-rtd-dark-mode/metadata.xml   | 11 +++
 .../sphinx-rtd-dark-mode-1.2.4.ebuild  | 36 ++
 3 files changed, 48 insertions(+)

diff --git a/dev-python/sphinx-rtd-dark-mode/Manifest 
b/dev-python/sphinx-rtd-dark-mode/Manifest
new file mode 100644
index 0..96deecacb
--- /dev/null
+++ b/dev-python/sphinx-rtd-dark-mode/Manifest
@@ -0,0 +1 @@
+DIST sphinx-rtd-dark-mode-1.2.4.gh.tar.gz 9964 BLAKE2B 
7aa68205af0578b841d35e7d7ccc8278060eafa13a598889dde6e75c3b27f606ffd7eac0c4bcc946b7e83bd2099e83c5b212768f230cabfcc6a8a0248b8f8ebc
 SHA512 
729fa42c813bdcde8f10633aef54ac55b7ae0c20d67d376141236c3bc96731de3d42c9b890f1314527a2f0faf7de30101d769235b97b53456b6291f4137f9e75

diff --git a/dev-python/sphinx-rtd-dark-mode/metadata.xml 
b/dev-python/sphinx-rtd-dark-mode/metadata.xml
new file mode 100644
index 0..06307abe2
--- /dev/null
+++ b/dev-python/sphinx-rtd-dark-mode/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   sphinx-rtd-dark-mode
+   
+

diff --git a/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild 
b/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild
new file mode 100644
index 0..bad53b4ac
--- /dev/null
+++ b/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+MY_PN="sphinx_rtd_dark_mode"
+DESCRIPTION="Dark mode for the Sphinx Read the Docs theme"
+HOMEPAGE="
+   https://pypi.org/project/sphinx-rtd-dark-mode/
+   https://github.com/MrDogeBro/sphinx_rtd_dark_mode
+"
+SRC_URI="https://github.com/MrDogeBro/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( {CONTRIBUTING,README}.md )
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest tests/build.py
+}