55 lines
1.9 KiB
Bash
55 lines
1.9 KiB
Bash
# Maintainer: Patrick Stewart <patstew@gmail.com>
|
|
# Contributor: Raed Rizqie <raed.rizqie@gmail.com>
|
|
|
|
_realname=jupyter_console
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=6.6.3
|
|
pkgrel=5
|
|
pkgdesc='An IPython-like terminal frontend for Jupyter kernels in any language (mingw-w64)'
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url='https://github.com/jupyter/jupyter_console'
|
|
msys2_references=(
|
|
'archlinux: jupyter_console'
|
|
'purl: pkg:pypi/jupyter-console'
|
|
)
|
|
license=('spdx:BSD-3-Clause')
|
|
depends=(
|
|
${MINGW_PACKAGE_PREFIX}-python
|
|
${MINGW_PACKAGE_PREFIX}-python-ipykernel
|
|
${MINGW_PACKAGE_PREFIX}-python-ipython
|
|
${MINGW_PACKAGE_PREFIX}-python-jupyter_client
|
|
${MINGW_PACKAGE_PREFIX}-python-jupyter_core
|
|
${MINGW_PACKAGE_PREFIX}-python-prompt_toolkit
|
|
${MINGW_PACKAGE_PREFIX}-python-pygments
|
|
${MINGW_PACKAGE_PREFIX}-python-pyzmq
|
|
${MINGW_PACKAGE_PREFIX}-python-traitlets)
|
|
makedepends=(
|
|
${MINGW_PACKAGE_PREFIX}-python-build
|
|
${MINGW_PACKAGE_PREFIX}-python-installer
|
|
${MINGW_PACKAGE_PREFIX}-python-hatchling)
|
|
options=('!strip')
|
|
source=(https://pypi.org/packages/source/${_realname::1}/${_realname/_/-}/${_realname}-${pkgver}.tar.gz)
|
|
sha256sums=('566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"
|
|
rm -rf "python-build-${MSYSTEM}" | true
|
|
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}"
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/python-build-${MSYSTEM}"
|
|
${MINGW_PREFIX}/bin/python -m build --wheel --skip-dependency-check --no-isolation
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/python-build-${MSYSTEM}"
|
|
MSYS2_ARG_CONV_EXCL="--prefix=" \
|
|
${MINGW_PREFIX}/bin/python -m installer --prefix=${MINGW_PREFIX} \
|
|
--destdir="${pkgdir}" dist/*.whl
|
|
|
|
install -Dm644 "LICENSE" "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"
|
|
}
|