Date: Monday, March 20, 2023 @ 22:36:06
Author: arojas
Revision: 1424530
archrelease: copy trunk to community-any
Added:
jupyter-nbformat/repos/community-any/PKGBUILD
(from rev 1424529, jupyter-nbformat/trunk/PKGBUILD)
Deleted:
jupyter-nbformat/repos/community-any/PKGBUILD
----------+
PKGBUILD | 65 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 33 insertions(+), 32 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-20 22:35:57 UTC (rev 1424529)
+++ PKGBUILD 2023-03-20 22:36:06 UTC (rev 1424530)
@@ -1,32 +0,0 @@
-# Maintainer: Kyle Keen <[email protected]>
-
-pkgname=jupyter-nbformat
-pkgver=5.7.3
-pkgrel=1
-pkgdesc="The base implementation of the Jupyter Notebook format and Python
APIs for working with notebooks"
-arch=('any')
-url="https://pypi.python.org/pypi/nbformat"
-license=('BSD')
-depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema'
'python-fastjsonschema')
-makedepends=('python-build' 'python-installer' 'python-hatch-nodejs-version')
-checkdepends=('python-pytest' 'python-testpath' 'python-pep440')
-source=(https://github.com/jupyter/nbformat/archive/v$pkgver/nbformat-$pkgver.tar.gz)
-sha256sums=('d7d5841d616efca5f15a4f085167364055b3760fbf3bd2d438b29bbb08619f1f')
-
-build() {
- cd nbformat-$pkgver
- python -m build --wheel --no-isolation --skip-dependency-check
-}
-
-check() {
- cd nbformat-$pkgver
- python -m venv --system-site-packages test-env
- test-env/bin/python -m installer dist/*.whl
- test-env/bin/python -m pytest
-}
-
-package() {
- cd nbformat-$pkgver
- python -m installer --destdir="$pkgdir" dist/*.whl
- install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
Copied: jupyter-nbformat/repos/community-any/PKGBUILD (from rev 1424529,
jupyter-nbformat/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-20 22:36:06 UTC (rev 1424530)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Kyle Keen <[email protected]>
+
+pkgname=jupyter-nbformat
+pkgver=5.8.0
+pkgrel=1
+pkgdesc='The base implementation of the Jupyter Notebook format and Python
APIs for working with notebooks'
+arch=(any)
+url='https://pypi.python.org/pypi/nbformat'
+license=(BSD)
+depends=(python-traitlets python-jupyter-core python-jsonschema
python-fastjsonschema)
+makedepends=(python-build python-installer python-hatch-nodejs-version)
+checkdepends=(python-pytest python-testpath python-pep440)
+source=(https://github.com/jupyter/nbformat/archive/v$pkgver/nbformat-$pkgver.tar.gz)
+sha256sums=('f153c23be35a01e5cdef01f51bc2b310fc2fe53da376e19fa12c10bcbcc64bbc')
+
+build() {
+ cd nbformat-$pkgver
+ python -m build --wheel --no-isolation --skip-dependency-check
+}
+
+check() {
+ cd nbformat-$pkgver
+ python -m venv --system-site-packages test-env
+ test-env/bin/python -m installer dist/*.whl
+ test-env/bin/python -m pytest
+}
+
+package() {
+ cd nbformat-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}