git: 8ae21d11f415 - main - devel/py-jupyter-builder: Add py-jupyter-builder 1.0.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 08 Jul 2026 13:35:56 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=8ae21d11f4151e43f8d4718cfae1a058121df2a0
commit 8ae21d11f4151e43f8d4718cfae1a058121df2a0
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-07-08 12:56:13 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-07-08 13:30:18 +0000
devel/py-jupyter-builder: Add py-jupyter-builder 1.0.2
Build tools for JupyterLab extensions -- extracted from the core JupyterLab
codebase to be maintained and used independently.
---
devel/Makefile | 1 +
devel/py-jupyter-builder/Makefile | 26 ++++++++++++++++++++++++++
devel/py-jupyter-builder/distinfo | 3 +++
devel/py-jupyter-builder/pkg-descr | 2 ++
4 files changed, 32 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index 34c3aba03b98..647cde29847a 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5296,6 +5296,7 @@
SUBDIR += py-jstyleson
SUBDIR += py-junitparser
SUBDIR += py-jupyter
+ SUBDIR += py-jupyter-builder
SUBDIR += py-jupyter-client
SUBDIR += py-jupyter-collaboration
SUBDIR += py-jupyter-collaboration-ui
diff --git a/devel/py-jupyter-builder/Makefile b/devel/py-jupyter-builder/Makefile
new file mode 100644
index 000000000000..4a290f96ff6a
--- /dev/null
+++ b/devel/py-jupyter-builder/Makefile
@@ -0,0 +1,26 @@
+PORTNAME= jupyter-builder
+PORTVERSION= 1.0.2
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= jupyter_builder-${PORTVERSION}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= JupyterLab build tools
+WWW= https://github.com/jupyterlab/jupyter-builder
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatch-nodejs-version>=0.3.2:devel/py-hatch-nodejs-version@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}hatchling>=1.21.1:devel/py-hatchling@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jupyter-core>=0:devel/py-jupyter-core@${PY_FLAVOR} \
+ ${PY_TOMLI} \
+ ${PYTHON_PKGNAMEPREFIX}traitlets>=0:devel/py-traitlets@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-jupyter-builder/distinfo b/devel/py-jupyter-builder/distinfo
new file mode 100644
index 000000000000..cbeeeb342534
--- /dev/null
+++ b/devel/py-jupyter-builder/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1782966044
+SHA256 (jupyter_builder-1.0.2.tar.gz) = 6155d78a5325010532a6419ffcba89eac643fd1aa56ea83115e661924d6f6aab
+SIZE (jupyter_builder-1.0.2.tar.gz) = 968638
diff --git a/devel/py-jupyter-builder/pkg-descr b/devel/py-jupyter-builder/pkg-descr
new file mode 100644
index 000000000000..dfb53f39bb87
--- /dev/null
+++ b/devel/py-jupyter-builder/pkg-descr
@@ -0,0 +1,2 @@
+Build tools for JupyterLab extensions -- extracted from the core JupyterLab
+codebase to be maintained and used independently.