Github messages for voidlinux
 help / color / mirror / Atom feed
From: dkwo <dkwo@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] python3: add few missing depends
Date: Tue, 13 Dec 2022 01:43:25 +0100	[thread overview]
Message-ID: <20221213004325.Cba_0SQJjv_wPi6LHLAJO5RPsE4d_BIRNBUIm1DXQ_U@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-41046@inbox.vuxu.org>

[-- 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"

  parent reply	other threads:[~2022-12-13  0:43 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-12 20:46 [PR PATCH] " 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 ` dkwo [this message]
2022-12-13  0:44 ` dkwo
2022-12-13  0:47 ` dkwo
2022-12-13  3:42 ` [PR PATCH] [Closed]: " ahesford

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221213004325.Cba_0SQJjv_wPi6LHLAJO5RPsE4d_BIRNBUIm1DXQ_U@z \
    --to=dkwo@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).