| # Maintainer: Peter Budai <peterbudai@hotmail.com> |
| |
| _realname=nbconvert |
| pkgbase=mingw-w64-python-${_realname} |
| pkgname=("${MINGW_PACKAGE_PREFIX}-python-jupyter-${_realname}") |
| provides=("${MINGW_PACKAGE_PREFIX}-python3-jupyter-${_realname}") |
| conflicts=("${MINGW_PACKAGE_PREFIX}-python3-jupyter-${_realname}") |
| replaces=("${MINGW_PACKAGE_PREFIX}-python3-jupyter-${_realname}") |
| pkgver=6.0.7 |
| pkgrel=2 |
| pkgdesc="Convert Jupyter notebooks to other formats (mingw-w64)" |
| arch=('any') |
| mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') |
| url='https://pypi.python.org/pypi/nbconvert' |
| license=('BSD') |
| depends=("${MINGW_PACKAGE_PREFIX}-python" |
| "${MINGW_PACKAGE_PREFIX}-python-defusedxml" |
| "${MINGW_PACKAGE_PREFIX}-python-jupyter_client" |
| "${MINGW_PACKAGE_PREFIX}-python-jupyter-nbformat" |
| "${MINGW_PACKAGE_PREFIX}-python-pygments" |
| "${MINGW_PACKAGE_PREFIX}-python-mistune" |
| "${MINGW_PACKAGE_PREFIX}-python-jinja" |
| "${MINGW_PACKAGE_PREFIX}-python-entrypoints" |
| "${MINGW_PACKAGE_PREFIX}-python-traitlets" |
| "${MINGW_PACKAGE_PREFIX}-python-pandocfilters" |
| "${MINGW_PACKAGE_PREFIX}-python-bleach" |
| "${MINGW_PACKAGE_PREFIX}-python-testpath" |
| ) |
| makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools") |
| source=("${_realname}-${pkgver}.tar.gz::https://github.com/jupyter/${_realname}/archive/${pkgver}.tar.gz") |
| sha256sums=('3f84ec18d7644014c903252bc0717133228d94d098ec2a4726b04d271a141cf8') |
| |
| prepare() { |
| rm -rf python-build-${CARCH} | true |
| cp -r "${_realname}-${pkgver}" "python-build-${CARCH}" |
| } |
| |
| build() { |
| msg "Python build for ${CARCH}" |
| cd "${srcdir}/python-build-${CARCH}" |
| ${MINGW_PREFIX}/bin/python setup.py build |
| } |
| |
| check() { |
| msg "Python test for ${CARCH}" |
| cd "${srcdir}/python-build-${CARCH}" |
| #Todo: Fix a test and possibly nbconvert. The problem is that it attempts |
| #to use inkscape but it locates it using the Windows registry and the MINGW |
| #version from these doesn't set the registry. |
| ${MINGW_PREFIX}/bin/py.test --pyargs nbconvert || true |
| } |
| |
| package() { |
| cd "${srcdir}/python-build-${CARCH}" |
| MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \ |
| ${MINGW_PREFIX}/bin/python setup.py install --prefix=${MINGW_PREFIX} \ |
| --root="${pkgdir}" --optimize=1 --skip-build |
| |
| for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*-script.py; do |
| sed -e '1 { s/^#!.*$// }' -i ${_f} |
| done |
| |
| install -Dm644 "LICENSE" "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" |
| } |