* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/
@ 2021-05-15 16:53 Alfredo Tupone
0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2021-05-15 16:53 UTC (permalink / raw
To: gentoo-commits
commit: 4a6dd570db4e52452a8fcb186336e07037c4be05
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat May 15 16:53:30 2021 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat May 15 16:53:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a6dd570
sci-visualization/jupyter-dash: add jupyter-dash
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-visualization/jupyter-dash/Manifest | 1 +
.../jupyter-dash/jupyter-dash-0.4.0.ebuild | 30 ++++++++++++++++++++++
sci-visualization/jupyter-dash/metadata.xml | 16 ++++++++++++
3 files changed, 47 insertions(+)
diff --git a/sci-visualization/jupyter-dash/Manifest b/sci-visualization/jupyter-dash/Manifest
new file mode 100644
index 00000000000..5ee181a10bb
--- /dev/null
+++ b/sci-visualization/jupyter-dash/Manifest
@@ -0,0 +1 @@
+DIST jupyter-dash-0.4.0.tar.gz 42855 BLAKE2B 6ee097892e8175d72883005a4b8097e1069d3550d845dc8728991c78d437d74f571e3e1e4fddf7c8df716c0921a5910c9fbc654f0a56c0f177f14c7b2c1bd336 SHA512 16774dfe54122096cdf672408af8fb7f0246ba7db1429eeee21a9b10645990d859208e13b743119c90e5b0ae042eeb32e91e56205139d9cf792f5995e467ccf9
diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
new file mode 100644
index 00000000000..87d8aedc3a9
--- /dev/null
+++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9} )
+inherit distutils-r1
+
+DESCRIPTION="Plotly Dash apps from within Jupyter environments"
+HOMEPAGE="https://plotly.com/dash/"
+SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+ dev-python/ansi2html[${PYTHON_USEDEP}]
+ sci-visualization/dash[${PYTHON_USEDEP}]
+ dev-python/ipykernel[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/retrying[${PYTHON_USEDEP}]"
+BDEPEND=""
+
+src_install () {
+ distutils-r1_src_install
+ mv "${D}"/usr/etc "${D}"/ || die
+}
diff --git a/sci-visualization/jupyter-dash/metadata.xml b/sci-visualization/jupyter-dash/metadata.xml
new file mode 100644
index 00000000000..50ec7aff92b
--- /dev/null
+++ b/sci-visualization/jupyter-dash/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>tupone@gentoo.org</email>
+ <name>Tupone Alfredo</name>
+ </maintainer>
+ <longdescription lang="en">
+ This library makes it easy to develop Plotly Dash apps interactively
+ from within Jupyter environments (e.g. classic Notebook, JupyterLab,
+ Visual Studio Code notebooks, nteract, PyCharm notebooks, etc.).
+ </longdescription>
+ <upstream>
+ <remote-id type="github">plotly/jupyter-dash</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/
@ 2022-02-05 16:36 Alfredo Tupone
0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2022-02-05 16:36 UTC (permalink / raw
To: gentoo-commits
commit: 3f186f9f2988b6339955de4cef8897418ff718f4
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 5 16:36:18 2022 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Feb 5 16:36:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f186f9f
sci-visualization/jupyter-dash: PythonCompatUpdate
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
index 87d8aedc3a92..e39e8216ae3e 100644
--- a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
+++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Plotly Dash apps from within Jupyter environments"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/
@ 2023-01-10 11:07 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2023-01-10 11:07 UTC (permalink / raw
To: gentoo-commits
commit: 5ddfec81f02f60cfd40d36fefb4cd0bf4dd335dd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 10 10:46:34 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 10 11:03:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ddfec81
sci-visualization/jupyter-dash: disable py3.8, py3.9
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
index e39e8216ae3e..96baecd8a83a 100644
--- a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
+++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_10 )
inherit distutils-r1
DESCRIPTION="Plotly Dash apps from within Jupyter environments"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/
@ 2023-02-19 17:04 Alfredo Tupone
0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2023-02-19 17:04 UTC (permalink / raw
To: gentoo-commits
commit: 9ed1bdb4627cdfc994a3322233973f6542294d53
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 17:03:03 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 17:04:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ed1bdb4
sci-visualization/jupyter-dash: add 0.4.2, drop 0.4.0
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-visualization/jupyter-dash/Manifest | 2 +-
.../{jupyter-dash-0.4.0.ebuild => jupyter-dash-0.4.2.ebuild} | 5 +++--
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/sci-visualization/jupyter-dash/Manifest b/sci-visualization/jupyter-dash/Manifest
index 5ee181a10bb6..7bfd9851502a 100644
--- a/sci-visualization/jupyter-dash/Manifest
+++ b/sci-visualization/jupyter-dash/Manifest
@@ -1 +1 @@
-DIST jupyter-dash-0.4.0.tar.gz 42855 BLAKE2B 6ee097892e8175d72883005a4b8097e1069d3550d845dc8728991c78d437d74f571e3e1e4fddf7c8df716c0921a5910c9fbc654f0a56c0f177f14c7b2c1bd336 SHA512 16774dfe54122096cdf672408af8fb7f0246ba7db1429eeee21a9b10645990d859208e13b743119c90e5b0ae042eeb32e91e56205139d9cf792f5995e467ccf9
+DIST jupyter-dash-0.4.2.tar.gz 44431 BLAKE2B 1155f08d8eab630e5e247e62e27babd4d0fd69740c6d2e32acc346ac13ef08be2524d664c68f7dbb8bee16caf15b644e12bf9e2ecd09e36f887a3413153f0fdf SHA512 23a37a0a8a49148c2bbf3b0388134264554ac03a072cd116aefb7342a08a3b03e93ff6e17301efa81aaf623eb7890a133252f9644555fb77e1f49028f701fd11
diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
similarity index 90%
rename from sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
rename to sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
index 96baecd8a83a..ab632a4fb4aa 100644
--- a/sci-visualization/jupyter-dash/jupyter-dash-0.4.0.ebuild
+++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
@@ -1,9 +1,10 @@
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Plotly Dash apps from within Jupyter environments"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/
@ 2024-01-13 8:44 Alfredo Tupone
0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2024-01-13 8:44 UTC (permalink / raw
To: gentoo-commits
commit: ea482af42d8d4b7b34faca55fd47fe9648ac513a
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 13 08:40:32 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Jan 13 08:43:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea482af4
sci-visualization/jupyter-dash: EmptyGlobalAssignment
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
index ab632a4fb4aa..76fc23983e58 100644
--- a/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
+++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -16,14 +16,12 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-DEPEND=""
-RDEPEND="${DEPEND}
+RDEPEND="
dev-python/ansi2html[${PYTHON_USEDEP}]
sci-visualization/dash[${PYTHON_USEDEP}]
dev-python/ipykernel[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/retrying[${PYTHON_USEDEP}]"
-BDEPEND=""
src_install () {
distutils-r1_src_install
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/
@ 2024-02-28 19:49 Arthur Zamarin
0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-02-28 19:49 UTC (permalink / raw
To: gentoo-commits
commit: 0b6b08441c86c15eae7671dc503c87313d961191
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 19:10:22 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 19:48:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b6b0844
sci-visualization/jupyter-dash: unkeyword for ~x86
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild b/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
index 76fc23983e58..1846dfc13f34 100644
--- a/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
+++ b/sci-visualization/jupyter-dash/jupyter-dash-0.4.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
RDEPEND="
dev-python/ansi2html[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-02-28 19:49 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-19 17:04 [gentoo-commits] repo/gentoo:master commit in: sci-visualization/jupyter-dash/ Alfredo Tupone
-- strict thread matches above, loose matches on Subject: below --
2024-02-28 19:49 Arthur Zamarin
2024-01-13 8:44 Alfredo Tupone
2023-01-10 11:07 Arthur Zamarin
2022-02-05 16:36 Alfredo Tupone
2021-05-15 16:53 Alfredo Tupone
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox