* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-design/
@ 2023-12-06 7:58 Henri Gasc
0 siblings, 0 replies; 4+ messages in thread
From: Henri Gasc @ 2023-12-06 7:58 UTC (permalink / raw
To: gentoo-commits
commit: b2136aa6490ea43eda395c5296f04b3d40ac7bc2
Author: Henri Gasc <gasc <AT> eurecom <DOT> fr>
AuthorDate: Mon Dec 4 11:44:11 2023 +0000
Commit: Henri Gasc <gasc <AT> eurecom <DOT> fr>
CommitDate: Wed Dec 6 07:57:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b2136aa6
dev-python/sphinx-design: new package, add 0.5.0
Signed-off-by: Henri Gasc <gasc <AT> eurecom.fr>
dev-python/sphinx-design/Manifest | 1 +
dev-python/sphinx-design/metadata.xml | 12 +++++++++
.../sphinx-design/sphinx-design-0.5.0.ebuild | 31 ++++++++++++++++++++++
3 files changed, 44 insertions(+)
diff --git a/dev-python/sphinx-design/Manifest b/dev-python/sphinx-design/Manifest
new file mode 100644
index 0000000000..cbd0bc11f5
--- /dev/null
+++ b/dev-python/sphinx-design/Manifest
@@ -0,0 +1 @@
+DIST sphinx-design-0.5.0.gh.tar.gz 2588276 BLAKE2B 2262c8ddcaf108307e2e9d3eab2bfa8e04b7bb891a19450f3c235e81043fe7f886ea74373bb7d8929f6c8fdeae57b7d6b50cd91a9c3a4894d3dc19fbd81ef458 SHA512 26369c17d519e9a8f6a4bfdb68db60599e33c1db867037fdced6292439a9fcbe6a312c2d17ada058b14c95878ced7679bf6b64d7d4f13194f19502cd9be93b69
diff --git a/dev-python/sphinx-design/metadata.xml b/dev-python/sphinx-design/metadata.xml
new file mode 100644
index 0000000000..b2816e5ae9
--- /dev/null
+++ b/dev-python/sphinx-design/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gasc@eurecom.fr</email>
+ <name>Gasc Henri</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="pypi">sphinx_design</remote-id>
+ <remote-id type="github">executablebooks/sphinx-design</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild b/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild
new file mode 100644
index 0000000000..af65ddcaa4
--- /dev/null
+++ b/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="A sphinx extension for designing beautiful, view size responsive web components"
+HOMEPAGE="https://sphinx-design.readthedocs.io https://github.com/executablebooks/sphinx-design"
+SRC_URI="https://github.com/executablebooks/sphinx-design/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ <dev-python/myst-parser-3[${PYTHON_USEDEP}]
+ >=dev-python/furo-2022.06.04[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+ find "${S}/docs" -type f -exec sed -i 's/sphinxcontrib.napoleon/sphinx\.ext\.napoleon/g' {} \;
+ rm -rf "${S}/tests"
+ use doc && HTML_DOCS="${S}/docs/_build/html"
+ distutils-r1_src_prepare
+}
+
+distutils_enable_sphinx docs --no-autodoc
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-design/
@ 2023-12-25 20:33 Henri Gasc
0 siblings, 0 replies; 4+ messages in thread
From: Henri Gasc @ 2023-12-25 20:33 UTC (permalink / raw
To: gentoo-commits
commit: 5f1d3be676c97fe891c5a60226242a22b6fad241
Author: Henri Gasc <gasc <AT> eurecom <DOT> fr>
AuthorDate: Mon Dec 25 20:05:26 2023 +0000
Commit: Henri Gasc <gasc <AT> eurecom <DOT> fr>
CommitDate: Mon Dec 25 20:05:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f1d3be6
dev-python/sphinx-design: die gracefully
Signed-off-by: Henri Gasc <gasc <AT> eurecom.fr>
dev-python/sphinx-design/sphinx-design-0.5.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild b/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild
index af65ddcaa4..67f8e4e04c 100644
--- a/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild
+++ b/dev-python/sphinx-design/sphinx-design-0.5.0.ebuild
@@ -22,8 +22,8 @@ RDEPEND="
"
src_prepare() {
- find "${S}/docs" -type f -exec sed -i 's/sphinxcontrib.napoleon/sphinx\.ext\.napoleon/g' {} \;
- rm -rf "${S}/tests"
+ find "${S}/docs" -type f -exec sed -i 's/sphinxcontrib.napoleon/sphinx\.ext\.napoleon/g' {} \; || die "Could not find and replace sphinxcontrib.napoleon"
+ rm -rf "${S}/tests" || die "Could not remove ${S}/tests"
use doc && HTML_DOCS="${S}/docs/_build/html"
distutils-r1_src_prepare
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-design/
@ 2024-10-10 16:04 Henri Gasc
0 siblings, 0 replies; 4+ messages in thread
From: Henri Gasc @ 2024-10-10 16:04 UTC (permalink / raw
To: gentoo-commits
commit: f1a1494ffe2fe8b5d2f92c354d93820ab1612bf8
Author: Henri Gasc <gasc <AT> eurecom <DOT> fr>
AuthorDate: Thu Oct 10 14:07:59 2024 +0000
Commit: Henri Gasc <gasc <AT> eurecom <DOT> fr>
CommitDate: Thu Oct 10 16:04:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1a1494f
dev-python/sphinx-design: new package, add 0.6.1
Signed-off-by: Henri Gasc <gasc <AT> eurecom.fr>
dev-python/sphinx-design/Manifest | 1 +
dev-python/sphinx-design/metadata.xml | 12 +++++++++
.../sphinx-design/sphinx-design-0.6.1.ebuild | 29 ++++++++++++++++++++++
3 files changed, 42 insertions(+)
diff --git a/dev-python/sphinx-design/Manifest b/dev-python/sphinx-design/Manifest
new file mode 100644
index 000000000..623f48c9c
--- /dev/null
+++ b/dev-python/sphinx-design/Manifest
@@ -0,0 +1 @@
+DIST sphinx-design-0.6.1.gh.tar.gz 2634942 BLAKE2B 24d392aebdfbe62dc5b7aa4459f146f32bd2bf64f53e7fe0bb2732e63501f59e3b06d437cde138b398d2c0c1454cd3678c2ce3fdffaaf11786a7353ac0a8a9b0 SHA512 7733d0f146f26b47c1b4db5c86aeb634194fc3d9330308812e7507aa2b76420d869a6a5846980f034e7127385f79c0b41dfcce2206d0ee69746aa8ced2a4a582
diff --git a/dev-python/sphinx-design/metadata.xml b/dev-python/sphinx-design/metadata.xml
new file mode 100644
index 000000000..b3ae7c45c
--- /dev/null
+++ b/dev-python/sphinx-design/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gasc@eurecom.fr</email>
+ <name>Gasc Henri</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="pypi">sphinx_design</remote-id>
+ <remote-id type="github">executablebooks/sphinx-design</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild b/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild
new file mode 100644
index 000000000..979b65b42
--- /dev/null
+++ b/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_AUTODOC=0
+DOCS_BUILDER="sphinx"
+DOCS_DIR="docs"
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
+
+inherit distutils-r1 docs
+
+DESCRIPTION="A sphinx extension for designing beautiful responsive web components"
+HOMEPAGE="https://github.com/executablebooks/sphinx-design https://pypi.org/project/sphinx_design/"
+SRC_URI="https://github.com/executablebooks/sphinx-design/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+ test? (
+ dev-python/pytest-regressions
+ )
+"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-design/
@ 2024-10-11 15:12 Henri Gasc
0 siblings, 0 replies; 4+ messages in thread
From: Henri Gasc @ 2024-10-11 15:12 UTC (permalink / raw
To: gentoo-commits
commit: 9182f86c687ee42c8212b0b07b74fe9fb0826ee3
Author: Henri Gasc <gasc <AT> eurecom <DOT> fr>
AuthorDate: Fri Oct 11 14:58:13 2024 +0000
Commit: Henri Gasc <gasc <AT> eurecom <DOT> fr>
CommitDate: Fri Oct 11 15:12:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9182f86c
dev-python/sphinx-design: Add myst-parser to dep
Closes: https://bugs.gentoo.org/941279
Signed-off-by: Henri Gasc <gasc <AT> eurecom.fr>
dev-python/sphinx-design/sphinx-design-0.6.1.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild b/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild
index 979b65b42..c9117e4ac 100644
--- a/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild
+++ b/dev-python/sphinx-design/sphinx-design-0.6.1.ebuild
@@ -22,7 +22,10 @@ KEYWORDS="~amd64 ~x86"
BDEPEND="
test? (
- dev-python/pytest-regressions
+ dev-python/pytest-regressions[${PYTHON_USEDEP}]
+ )
+ doc? (
+ dev-python/myst-parser[${PYTHON_USEDEP}]
)
"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-11 15:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-11 15:12 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sphinx-design/ Henri Gasc
-- strict thread matches above, loose matches on Subject: below --
2024-10-10 16:04 Henri Gasc
2023-12-25 20:33 Henri Gasc
2023-12-06 7:58 Henri Gasc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox