aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ipynb2html
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2020-01-23 18:12:51 +0100
committerJakub Jirutka <jakub@jirutka.cz>2020-01-23 18:11:15 +0100
commit426927d771f045ec18443f26ce1189c5a527ec63 (patch)
tree407d65e05d5318e1a7407f70dc19fa784202ec37 /testing/ipynb2html
parentf4c0ef79fae20023f8e91889497398c80f43f14b (diff)
downloadaports-426927d771f045ec18443f26ce1189c5a527ec63.tar.bz2
aports-426927d771f045ec18443f26ce1189c5a527ec63.tar.xz
community/ipynb2html: move from testing
Diffstat (limited to 'testing/ipynb2html')
-rw-r--r--testing/ipynb2html/APKBUILD39
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/ipynb2html/APKBUILD b/testing/ipynb2html/APKBUILD
deleted file mode 100644
index 0864bd215f..0000000000
--- a/testing/ipynb2html/APKBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-# Contributor: Jakub Jirutka <jakub@jirutka.cz>
-# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
-pkgname=ipynb2html
-pkgver=0.1.0
-pkgrel=0
-pkgdesc="Convert Jupyter Notebook to static HTML"
-url="https://github.com/jirutka/ipynb2html"
-arch="noarch"
-license="MIT BSD-3-Clause"
-depends="nodejs"
-makedepends="yarn"
-subpackages="$pkgname-dbg"
-source="https://github.com/jirutka/$pkgname/releases/download/v$pkgver/ipynb2html-v$pkgver-src.tar.gz"
-builddir="$srcdir/$pkgname-v$pkgver-src"
-
-build() {
- yarn build --force
- yarn workspace ipynb2html-cli bundle
-}
-
-check() {
- ./packages/ipynb2html-cli/dist/ipynb2html --version
-}
-
-package() {
- cd "$builddir"/packages/ipynb2html-cli/dist
-
- install -D -m 755 ipynb2html "$pkgdir"/usr/bin/ipynb2html
-}
-
-dbg() {
- pkgdesc="$pkgdesc (source map)"
- depends="$pkgname=$pkgver-r$pkgrel"
-
- cd "$builddir"/packages/ipynb2html-cli/dist
- install -D -m 644 ipynb2html.map "$subpkgdir"/usr/bin/ipynb2html.map
-}
-
-sha512sums="0a1441f3a2b02abb4c0d08fbed0a6e3c74327e3b076793ecf724066493f1815f99d62ba1941c3aba6bd11b459ad12c06cd09b2dace43b6269ea8999c5774970e ipynb2html-v0.1.0-src.tar.gz"