Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3: add few missing depends
@ 2022-12-12 20:46 dkwo
  2022-12-12 21:09 ` [PR PATCH] [Updated] " dkwo
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 20:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 365 bytes --]

There is a new pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3445 bytes --]

From 7b0ef607f11c3e6d417e566f233e972115e816d5 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 1/3] jupyterlab: add missing depends

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..179e536d2552 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-platformdirs jupyter-notebook-shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

From c9ee611613db24bba9d6211001441e4f03996416 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:22 -0500
Subject: [PATCH 2/3] python3-jupyter_console: add missing dep

---
 srcpkgs/python3-jupyter_console/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 502bef78a4bf..d21a19f8b696 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -5,7 +5,8 @@ revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-ipython python3-ipython_ipykernel python3-jupyter_client
- python3-prompt_toolkit python3-Pygments python3-traitlets"
+ python3-prompt_toolkit python3-Pygments python3-traitlets
+ python3-platformdirs"
 checkdepends="$depends python3-pytest"
 short_desc="Jupyter terminal console (Python3)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"

From 545b969c036fb7c868195f42f4b0b173f047c52f Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 3/3] new package: jupyter-notebook-shim

---
 srcpkgs/jupyter-notebook-shim/template | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 srcpkgs/jupyter-notebook-shim/template

diff --git a/srcpkgs/jupyter-notebook-shim/template b/srcpkgs/jupyter-notebook-shim/template
new file mode 100644
index 000000000000..4a4f9ca48937
--- /dev/null
+++ b/srcpkgs/jupyter-notebook-shim/template
@@ -0,0 +1,22 @@
+# Template file for 'jupyter-notebook-shim'
+pkgname=jupyter-notebook-shim
+version=0.2.2
+revision=1
+#archs="i686 x86_64"
+build_style=python3-pep517
+make_install_target="dist/notebook_shim-${version}-*-*-*.whl"
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="https://github.com/jupyter/notebook_shim/releases/download/v${version}/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "$PKGDESTDIR/usr/etc" $PKGDESTDIR/etc/
+}

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
@ 2022-12-12 21:09 ` dkwo
  2022-12-12 21:17 ` [PR REVIEW] " ahesford
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 21:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3426 bytes --]

From 7b0ef607f11c3e6d417e566f233e972115e816d5 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 1/3] jupyterlab: add missing depends

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..179e536d2552 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-platformdirs jupyter-notebook-shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

From c9ee611613db24bba9d6211001441e4f03996416 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:22 -0500
Subject: [PATCH 2/3] python3-jupyter_console: add missing dep

---
 srcpkgs/python3-jupyter_console/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 502bef78a4bf..d21a19f8b696 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -5,7 +5,8 @@ revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-ipython python3-ipython_ipykernel python3-jupyter_client
- python3-prompt_toolkit python3-Pygments python3-traitlets"
+ python3-prompt_toolkit python3-Pygments python3-traitlets
+ python3-platformdirs"
 checkdepends="$depends python3-pytest"
 short_desc="Jupyter terminal console (Python3)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"

From 09c3bcedcbded58341d9deed34e9e11e14ee5a97 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 3/3] new package: jupyter-notebook-shim

---
 srcpkgs/jupyter-notebook-shim/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/jupyter-notebook-shim/template

diff --git a/srcpkgs/jupyter-notebook-shim/template b/srcpkgs/jupyter-notebook-shim/template
new file mode 100644
index 000000000000..2befaab6a735
--- /dev/null
+++ b/srcpkgs/jupyter-notebook-shim/template
@@ -0,0 +1,21 @@
+# Template file for 'jupyter-notebook-shim'
+pkgname=jupyter-notebook-shim
+version=0.2.2
+revision=1
+build_style=python3-pep517
+make_install_target="dist/notebook_shim-${version}-*-*-*.whl"
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="https://github.com/jupyter/notebook_shim/releases/download/v${version}/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "${PKGDESTDIR}/usr/etc" ${PKGDESTDIR}/etc/
+}

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
  2022-12-12 21:09 ` [PR PATCH] [Updated] " dkwo
@ 2022-12-12 21:17 ` ahesford
  2022-12-12 21:17 ` ahesford
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ahesford @ 2022-12-12 21:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 212 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046396860

Comment:
This package will need a revbump to see the updated dependency.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
  2022-12-12 21:09 ` [PR PATCH] [Updated] " dkwo
  2022-12-12 21:17 ` [PR REVIEW] " ahesford
@ 2022-12-12 21:17 ` ahesford
  2022-12-12 21:54 ` [PR PATCH] [Updated] " dkwo
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ahesford @ 2022-12-12 21:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 362 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046398666

Comment:
Package name should be `python3-notebook_shim`.

Also, please change commit message for this package to

> New package: python3-notebook_shim-0.2.2

to conform to the format used by `xbump` for new packages.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (2 preceding siblings ...)
  2022-12-12 21:17 ` ahesford
@ 2022-12-12 21:54 ` dkwo
  2022-12-12 21:54 ` dkwo
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 21:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3545 bytes --]

From ed9ba436ce09a1e84eb84cf3e6a8ede3020cd0c7 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:22 -0500
Subject: [PATCH 1/3] python3-jupyter_console: add missing dep

---
 srcpkgs/python3-jupyter_console/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 502bef78a4bf..878fbe08eea8 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -1,11 +1,12 @@
 # Template file for 'python3-jupyter_console'
 pkgname=python3-jupyter_console
 version=6.4.4
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-ipython python3-ipython_ipykernel python3-jupyter_client
- python3-prompt_toolkit python3-Pygments python3-traitlets"
+ python3-prompt_toolkit python3-Pygments python3-traitlets
+ python3-platformdirs"
 checkdepends="$depends python3-pytest"
 short_desc="Jupyter terminal console (Python3)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"

From 4dfe3a4c6c543d24b4116abaec98e1cc318e8ee0 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 2/3] New package: python3-notebook_shim-0.2.2

---
 srcpkgs/python3-notebook_shim/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/python3-notebook_shim/template

diff --git a/srcpkgs/python3-notebook_shim/template b/srcpkgs/python3-notebook_shim/template
new file mode 100644
index 000000000000..8ae5302cedd6
--- /dev/null
+++ b/srcpkgs/python3-notebook_shim/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-notebook_shim'
+pkgname=python3-notebook_shim
+version=0.2.2
+revision=1
+build_style=python3-pep517
+make_install_target="dist/notebook_shim-${version}-*-*-*.whl"
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="https://github.com/jupyter/notebook_shim/releases/download/v${version}/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "${PKGDESTDIR}/usr/etc" ${PKGDESTDIR}/etc/
+}

From 7579ce3d88bbd73aa02e4fd5836537fff5292e95 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 3/3] jupyterlab: add missing depends

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..7b199460804f 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-platformdirs python3-notebook_shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (3 preceding siblings ...)
  2022-12-12 21:54 ` [PR PATCH] [Updated] " dkwo
@ 2022-12-12 21:54 ` dkwo
  2022-12-12 21:54 ` [PR REVIEW] " dkwo
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 21:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3545 bytes --]

From 450c323f7680d5af6055a7e259bb8b21f6173822 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:22 -0500
Subject: [PATCH 1/3] python3-jupyter_console: add missing dep

---
 srcpkgs/python3-jupyter_console/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 502bef78a4bf..878fbe08eea8 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -1,11 +1,12 @@
 # Template file for 'python3-jupyter_console'
 pkgname=python3-jupyter_console
 version=6.4.4
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-ipython python3-ipython_ipykernel python3-jupyter_client
- python3-prompt_toolkit python3-Pygments python3-traitlets"
+ python3-prompt_toolkit python3-Pygments python3-traitlets
+ python3-platformdirs"
 checkdepends="$depends python3-pytest"
 short_desc="Jupyter terminal console (Python3)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"

From 3aa354c813c44bbd2f394e9138dbe09c817cbf70 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 2/3] New package: python3-notebook_shim-0.2.2

---
 srcpkgs/python3-notebook_shim/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/python3-notebook_shim/template

diff --git a/srcpkgs/python3-notebook_shim/template b/srcpkgs/python3-notebook_shim/template
new file mode 100644
index 000000000000..8ae5302cedd6
--- /dev/null
+++ b/srcpkgs/python3-notebook_shim/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-notebook_shim'
+pkgname=python3-notebook_shim
+version=0.2.2
+revision=1
+build_style=python3-pep517
+make_install_target="dist/notebook_shim-${version}-*-*-*.whl"
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="https://github.com/jupyter/notebook_shim/releases/download/v${version}/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "${PKGDESTDIR}/usr/etc" ${PKGDESTDIR}/etc/
+}

From 77c4d565d3a2603f8d098dfa871669c83c0dc061 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 3/3] jupyterlab: add missing depends

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..7b199460804f 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-platformdirs python3-notebook_shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (4 preceding siblings ...)
  2022-12-12 21:54 ` dkwo
@ 2022-12-12 21:54 ` dkwo
  2022-12-12 21:54 ` dkwo
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 21:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

New review comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046431821

Comment:
Done.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (5 preceding siblings ...)
  2022-12-12 21:54 ` [PR REVIEW] " dkwo
@ 2022-12-12 21:54 ` dkwo
  2022-12-12 23:44 ` [PR PATCH] [Updated] " dkwo
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 21:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

New review comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046431928

Comment:
Done.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (6 preceding siblings ...)
  2022-12-12 21:54 ` dkwo
@ 2022-12-12 23:44 ` dkwo
  2022-12-12 23:45 ` dkwo
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 23:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3333 bytes --]

From 7cfec1184f874a616c13d1d00deb5c4df6ebbea5 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 1/3] New package: python3-notebook_shim-0.2.2

---
 srcpkgs/python3-notebook_shim/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/python3-notebook_shim/template

diff --git a/srcpkgs/python3-notebook_shim/template b/srcpkgs/python3-notebook_shim/template
new file mode 100644
index 000000000000..8ae5302cedd6
--- /dev/null
+++ b/srcpkgs/python3-notebook_shim/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-notebook_shim'
+pkgname=python3-notebook_shim
+version=0.2.2
+revision=1
+build_style=python3-pep517
+make_install_target="dist/notebook_shim-${version}-*-*-*.whl"
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="https://github.com/jupyter/notebook_shim/releases/download/v${version}/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "${PKGDESTDIR}/usr/etc" ${PKGDESTDIR}/etc/
+}

From 4b6ca0e0497b8a77bc898eddc610180219f741e1 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 2/3] jupyterlab: add missing dep

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..65597d3b63d5 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-notebook_shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

From 649b57b1574d69cdad4217a6fdf83b5dd9ebe0f6 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 18:44:25 -0500
Subject: [PATCH 3/3] python3-jupyter_core: add missing dep

---
 srcpkgs/python3-jupyter_core/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index 53612296cf69..1c02a0fdff6b 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -1,10 +1,10 @@
 # Template file for 'python3-jupyter_core'
 pkgname=python3-jupyter_core
 version=5.0.0
-revision=1
+revision=2
 build_style=python3-pep517
 hostmakedepends="python3-flit_core hatchling"
-depends="python3-traitlets"
+depends="python3-traitlets python3-platformdirs"
 short_desc="Jupyter core package"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
 license="BSD-3-Clause"

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (7 preceding siblings ...)
  2022-12-12 23:44 ` [PR PATCH] [Updated] " dkwo
@ 2022-12-12 23:45 ` dkwo
  2022-12-12 23:46 ` dkwo
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 23:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3333 bytes --]

From 553a987d4aeb95c071f17de9366eba096e8646b7 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 18:44:25 -0500
Subject: [PATCH 1/3] python3-jupyter_core: add missing dep

---
 srcpkgs/python3-jupyter_core/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index 53612296cf69..1c02a0fdff6b 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -1,10 +1,10 @@
 # Template file for 'python3-jupyter_core'
 pkgname=python3-jupyter_core
 version=5.0.0
-revision=1
+revision=2
 build_style=python3-pep517
 hostmakedepends="python3-flit_core hatchling"
-depends="python3-traitlets"
+depends="python3-traitlets python3-platformdirs"
 short_desc="Jupyter core package"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
 license="BSD-3-Clause"

From f7b734cc7baa8294581f8ee9bb2ff2a716faca43 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 2/3] New package: python3-notebook_shim-0.2.2

---
 srcpkgs/python3-notebook_shim/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/python3-notebook_shim/template

diff --git a/srcpkgs/python3-notebook_shim/template b/srcpkgs/python3-notebook_shim/template
new file mode 100644
index 000000000000..8ae5302cedd6
--- /dev/null
+++ b/srcpkgs/python3-notebook_shim/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-notebook_shim'
+pkgname=python3-notebook_shim
+version=0.2.2
+revision=1
+build_style=python3-pep517
+make_install_target="dist/notebook_shim-${version}-*-*-*.whl"
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="https://github.com/jupyter/notebook_shim/releases/download/v${version}/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "${PKGDESTDIR}/usr/etc" ${PKGDESTDIR}/etc/
+}

From 2cc84d7979334b32b97e7e68d8766c7702f793c1 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 3/3] jupyterlab: add missing dep

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..65597d3b63d5 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-notebook_shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (8 preceding siblings ...)
  2022-12-12 23:45 ` dkwo
@ 2022-12-12 23:46 ` dkwo
  2022-12-13  0:29 ` [PR REVIEW] " ahesford
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-12 23:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#issuecomment-1347534677

Comment:
@tornaria @ahesford I believe this is the right way to fix it.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (9 preceding siblings ...)
  2022-12-12 23:46 ` dkwo
@ 2022-12-13  0:29 ` ahesford
  2022-12-13  0:29 ` ahesford
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ahesford @ 2022-12-13  0:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 235 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046547497

Comment:
We prefer `${PYPI_SITE}/n/notebook_shim/notebook_shim-${version}.tar.gz` if it exists.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (10 preceding siblings ...)
  2022-12-13  0:29 ` [PR REVIEW] " ahesford
@ 2022-12-13  0:29 ` ahesford
  2022-12-13  0:43 ` [PR PATCH] [Updated] " dkwo
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: ahesford @ 2022-12-13  0:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 183 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046547552

Comment:
Won't this be found automatically?

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Updated] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (11 preceding siblings ...)
  2022-12-13  0:29 ` ahesford
@ 2022-12-13  0:43 ` dkwo
  2022-12-13  0:44 ` [PR REVIEW] " dkwo
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-13  0:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages pytfix
https://github.com/void-linux/void-packages/pull/41046

python3: add few missing depends
@ahesford Forgot to explicitly add a couple of depends.

A patch file from https://github.com/void-linux/void-packages/pull/41046.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pytfix-41046.patch --]
[-- Type: text/x-diff, Size: 3227 bytes --]

From 553a987d4aeb95c071f17de9366eba096e8646b7 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 18:44:25 -0500
Subject: [PATCH 1/3] python3-jupyter_core: add missing dep

---
 srcpkgs/python3-jupyter_core/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index 53612296cf69..1c02a0fdff6b 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -1,10 +1,10 @@
 # Template file for 'python3-jupyter_core'
 pkgname=python3-jupyter_core
 version=5.0.0
-revision=1
+revision=2
 build_style=python3-pep517
 hostmakedepends="python3-flit_core hatchling"
-depends="python3-traitlets"
+depends="python3-traitlets python3-platformdirs"
 short_desc="Jupyter core package"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
 license="BSD-3-Clause"

From 8c008342821cad2035deee69c96ca5164f3a0f6f Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:44:45 -0500
Subject: [PATCH 2/3] New package: python3-notebook_shim-0.2.2

---
 srcpkgs/python3-notebook_shim/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/python3-notebook_shim/template

diff --git a/srcpkgs/python3-notebook_shim/template b/srcpkgs/python3-notebook_shim/template
new file mode 100644
index 000000000000..3c4ce103f789
--- /dev/null
+++ b/srcpkgs/python3-notebook_shim/template
@@ -0,0 +1,20 @@
+# Template file for 'python3-notebook_shim'
+pkgname=python3-notebook_shim
+version=0.2.2
+revision=1
+build_style=python3-pep517
+hostmakedepends="hatchling"
+depends="python3-jupyter_server"
+checkdepends="python3-pytest python3-jupyter_server python3-platformdirs"
+short_desc="Shim layer for notebook traits and config"
+maintainer="dkwo <npiazza@disroot.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/jupyter/notebook_shim"
+distfiles="${PYPI_SITE}/n/notebook_shim/notebook_shim-${version}.tar.gz"
+checksum=090e0baf9a5582ff59b607af523ca2db68ff216da0c69956b62cab2ef4fc9c3f
+make_check=no # missing pytest_tornasync
+
+post_install() {
+	vlicense LICENSE
+	mv "${PKGDESTDIR}/usr/etc" ${PKGDESTDIR}/etc/
+}

From 21db401928b2415ad85efe7a57419ebdcc7d1d63 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 12 Dec 2022 15:43:58 -0500
Subject: [PATCH 3/3] jupyterlab: add missing dep

---
 srcpkgs/jupyterlab/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template
index d10fe2436e23..65597d3b63d5 100644
--- a/srcpkgs/jupyterlab/template
+++ b/srcpkgs/jupyterlab/template
@@ -1,11 +1,12 @@
 # Template file for 'jupyterlab'
 pkgname=jupyterlab
 version=3.5.0
-revision=1
+revision=2
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jupyterlab_server nodejs python3-nbclassic
- python3-requests-unixsocket python3-jupyter_ipywidgets"
+ python3-requests-unixsocket python3-jupyter_ipywidgets
+ python3-notebook_shim"
 short_desc="JupyterLab computational environment"
 maintainer="dkwo <nicolopiazzalunga@gmail.com>"
 license="custom:jupyterlab"

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (12 preceding siblings ...)
  2022-12-13  0:43 ` [PR PATCH] [Updated] " dkwo
@ 2022-12-13  0:44 ` dkwo
  2022-12-13  0:47 ` dkwo
  2022-12-13  3:42 ` [PR PATCH] [Closed]: " ahesford
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-13  0:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 147 bytes --]

New review comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046553877

Comment:
ok

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR REVIEW] python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (13 preceding siblings ...)
  2022-12-13  0:44 ` [PR REVIEW] " dkwo
@ 2022-12-13  0:47 ` dkwo
  2022-12-13  3:42 ` [PR PATCH] [Closed]: " ahesford
  15 siblings, 0 replies; 17+ messages in thread
From: dkwo @ 2022-12-13  0:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

New review comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/41046#discussion_r1046555502

Comment:
yes

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PR PATCH] [Closed]: python3: add few missing depends
  2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
                   ` (14 preceding siblings ...)
  2022-12-13  0:47 ` dkwo
@ 2022-12-13  3:42 ` ahesford
  15 siblings, 0 replies; 17+ messages in thread
From: ahesford @ 2022-12-13  3:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 221 bytes --]

There's a closed pull request on the void-packages repository

python3: add few missing depends
https://github.com/void-linux/void-packages/pull/41046

Description:
@ahesford Forgot to explicitly add a couple of depends.

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2022-12-13  3:42 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-12 20:46 [PR PATCH] python3: add few missing depends dkwo
2022-12-12 21:09 ` [PR PATCH] [Updated] " dkwo
2022-12-12 21:17 ` [PR REVIEW] " ahesford
2022-12-12 21:17 ` ahesford
2022-12-12 21:54 ` [PR PATCH] [Updated] " dkwo
2022-12-12 21:54 ` dkwo
2022-12-12 21:54 ` [PR REVIEW] " dkwo
2022-12-12 21:54 ` dkwo
2022-12-12 23:44 ` [PR PATCH] [Updated] " dkwo
2022-12-12 23:45 ` dkwo
2022-12-12 23:46 ` dkwo
2022-12-13  0:29 ` [PR REVIEW] " ahesford
2022-12-13  0:29 ` ahesford
2022-12-13  0:43 ` [PR PATCH] [Updated] " dkwo
2022-12-13  0:44 ` [PR REVIEW] " dkwo
2022-12-13  0:47 ` dkwo
2022-12-13  3:42 ` [PR PATCH] [Closed]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).